mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Seems that mtu and up parameters of ifconfig cannot be specified together, at least on lagg(4) case.
This commit is contained in:
parent
3b61390437
commit
cea35dd83f
@ -290,7 +290,8 @@ function interface_lagg_configure(&$lagg) {
|
||||
$realif = escapeshellarg($member);
|
||||
$mtu = get_interface_mtu($realif);
|
||||
/* make sure the parent interface is up */
|
||||
mwexec("/sbin/ifconfig {$realif} mtu {$mtu} up");
|
||||
mwexec("/sbin/ifconfig {$realif} mtu {$mtu}");
|
||||
mwexec("/sbin/ifconfig {$realif} up");
|
||||
$cmd .= " laggport {$realif}";
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user