Hi Community, I need your help solving this issue.
I had lagg0 and other interfaces assigned in /etc/rc.conf as follows:
This worked great in 13.2 (well I didn't know how to manually switch from WLAN0 active to em0 active after failover or should it be automatic, it didn't work, but this is not related here).
Since upgrading to 14.0 lagg0 interface is not getting IP address assigned from DHCP after reboot.
I am not sure if anything changed, but current documentation doesn't mention this. I only noticed that wlan0 now can connect to 5GHz network since the upgrade.
em0 and wlan0 work without problems if they are assigned individually with DHCP.
Manually creating lagg0 from command line also has issues. I can create the interface manually, but if I do
Thanks
I had lagg0 and other interfaces assigned in /etc/rc.conf as follows:
Code:
ifconfig_em0="ether 8c:70:5a:XX:XX:XX" ##MAC address of the wlan0
ifconfig_em0="up"
wlans_iwn0="wlan0"
create_args_wlan0="regdomain FCC country XX"
ifconfig_wlan0="up WPA"
cloned_interfaces="lagg0"
ifconfig_lagg0="up laggproto failover laggport em0 laggport wlan0 DHCP"
This worked great in 13.2 (well I didn't know how to manually switch from WLAN0 active to em0 active after failover or should it be automatic, it didn't work, but this is not related here).
Since upgrading to 14.0 lagg0 interface is not getting IP address assigned from DHCP after reboot.
I am not sure if anything changed, but current documentation doesn't mention this. I only noticed that wlan0 now can connect to 5GHz network since the upgrade.
em0 and wlan0 work without problems if they are assigned individually with DHCP.
Manually creating lagg0 from command line also has issues. I can create the interface manually, but if I do
dhclient lagg0
it complains dhclient is running already, so I kill this process. After I kill it, the lagg0 interface is destroyed and not available anymore.Thanks