mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Do not reconfigure wireless on a link up event, or else it can get stuck in a loop. Fixes #7960
This commit is contained in:
parent
e8972c2faf
commit
93d3a06526
@ -3400,7 +3400,7 @@ function interface_configure($interface = "wan", $reloadall = false, $linkupeven
|
||||
mwexec("/sbin/ifconfig " . escapeshellarg($realif) . " inet6 -accept_rtadv", true);
|
||||
}
|
||||
/* wireless configuration? */
|
||||
if (is_array($wancfg['wireless'])) {
|
||||
if (is_array($wancfg['wireless']) && !$linkupevent) {
|
||||
interface_wireless_configure($realif, $wancfg, $wancfg['wireless']);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user