I am unable to get the Link Aggregation and Link failover interface (LAGG) configured correctly.
I need to be able to use this interface with a static ip address. The following are the config settings I am using:
A couple interesting things I see above:
1.) wlan0 shows status: no carrier
2.) There is not a second laggport declaration for the wlan0
Is there something obviously wrong with my configuration here or is there a known issue with this type of setup?
Thanks in advance for any help on this.
I need to be able to use this interface with a static ip address. The following are the config settings I am using:
Code:
cat /boot/loader.conf
bwi_v3_ucode_load="YES"
if_bwi_load="YES"
wlan_scan_ap_load="YES"
wlan_scan_sta_load="YES"
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
if_vlan_load="YES"
if_lagg_load="YES"
Code:
cat /etc/rc.conf
hostname=mob-ss1771
sshd_enable="YES"
hald_enable="YES"
dbus_enable="YES"
tcp_extensions="YES"
wpa_supplicant_enable="YES"
wpa_supplicant_conf_file="/etc/wpa_supplicant.conf"
#Set the bwi wireless adapters MAC address to the bfe mac address for use in the lagg failover interface
ifconfig_bwi0="ether 00:0d:56:33:99:c8"
vaps_bwi0="wlan0"
wlans_bwi0="wlan0"
ifconfig_wlan0="WPA"
ifconfig_bfe0="up"
cloned_interfaces="lagg0"
ifconfig_lagg0="laggproto failover laggport bfe0 laggport wlan0 inet 192.168.0.10 netmask 255.255.255.0"
#ifconfig_lagg0_ipv4="192.168.0.10"
#ipv4_addrs_lagg0="192.168.0.10"
defaultrouter=192.168.0.1
network_interfaces=lagg0
Code:
ifconfig
bfe0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 00:0d:56:33:99:c8
media: Ethernet autoselect (100baseTX <full-duplex>)
status: active
bwi0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 2290
ether 00:0d:56:33:99:c8
media: IEEE 802.11 Wireless Ethernet autoselect mode 11g
status: associated
lagg0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=8<VLAN_MTU>
ether 00:0d:56:33:99:c8
media: Ethernet autoselect
status: active
laggproto failover
laggport: bfe0 flags=5<MASTER,ACTIVE>
wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
ether 00:0d:56:33:99:c8
media: IEEE 802.11 Wireless Ethernet autoselect (autoselect)
status: no carrier
ssid "" channel 10 (2457 Mhz 11g)
country US authmode WPA1+WPA2/802.11i privacy ON deftxkey UNDEF
txpower 0 bmiss 7 scanvalid 450 bgscan bgscanintvl 300 bgscanidle 250
roam:rssi 7 roam:rate 5 protmode CTS roaming MANUAL bintval 0
A couple interesting things I see above:
1.) wlan0 shows status: no carrier
2.) There is not a second laggport declaration for the wlan0
Is there something obviously wrong with my configuration here or is there a known issue with this type of setup?
Thanks in advance for any help on this.