mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
If the interface is "lan" and bridging is enabled then skip creation of the DHCP Server subnet.
This commit is contained in:
parent
8f798977a2
commit
d254fe7bfc
@ -185,6 +185,9 @@ EOPP;
|
||||
(!isset($ifcfg['enable']) || !$ifcfg['if'] || $ifcfg['bridge'])))
|
||||
continue;
|
||||
|
||||
if($dhcpif == "lan" && $ifcfg['bridge'])
|
||||
continue;
|
||||
|
||||
$subnet = gen_subnet($ifcfg['ipaddr'], $ifcfg['subnet']);
|
||||
$subnetmask = gen_subnet_mask($ifcfg['subnet']);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user