I have a Lenovo X390, and sometimes connect a docking station with wired Ethernet via USB-C. I have followed the handbook to setup the lagg0 interface to give me failover for the wifi and this usb network connection, but I am struggling to get the usb connection recognised. This is what I have in my
So you can see the lagg0 interface only has the wlan0 interface listed.
If I run
- it seems to be up and active.
Have I missed something significant in my setup? I have read, and re-read and checked the handbook before posting, so would appreciate your comments!
Many thanks!
/etc/rc.conf:
Code:
# Set up lagg0 interface for wifi/ethernet fail over
ifconfig_ue0="ether 58:96:1d:5a:01:90" # Set the MAC to equal wlan0 interface
wlans_iwm0="wlan0" # Configure the wlan0 interface
ifconfig_wlan0="WPA"
create_args_wlan0="country GB regdomain ETSI" # Based in the UK
cloned_interfaces="lagg0" # failover interface
ifconfig_lagg0="up laggproto failover laggport ue0 laggport wlan0 DHCP"
ifconfig lagg gives:
Code:
lagg0: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=0
ether 58:96:1d:5a:01:90
hwaddr 00:00:00:00:00:00
inet 10.1.1.167 netmask 0xffffff00 broadcast 10.1.1.255
laggproto failover lagghash l2,l3,l4
laggport: wlan0 flags=5<MASTER,ACTIVE>
groups: lagg
media: Ethernet autoselect
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
So you can see the lagg0 interface only has the wlan0 interface listed.
If I run
ifconfig ue0, I get this:
Code:
ue0: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=68009b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,LINKSTATE,RXCSUM_IPV6,TXCSUM_IPV6>
ether 58:96:1d:5a:01:90
hwaddr 48:2a:e3:6f:aa:a5
media: Ethernet autoselect (1000baseT <full-duplex>)
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
Have I missed something significant in my setup? I have read, and re-read and checked the handbook before posting, so would appreciate your comments!
Many thanks!