有很多类似的问题,但所有问题都询问如何对流量进行优先级排序(使用度量作为解决方案)。我想同时只使用一张网卡。例如,如果wlan1
插入了外部卡(),则尝试使用它,否则使用内部卡(wlan0
)。我尝试connection.autoconnect-priority
在/etc/NetworkManager/system-connections/*.nmconnection
文件中使用,但它不会对具有不同接口的连接进行优先级排序。这是我的connection
部分/etc/NetworkManager/system-connections/my_home_from_usb.nmconnection
:
id=my_home_usb
uuid=c481eb20-a299-4703-9537-e2e4849e4983
type=wifi
autoconnect-priority=10
interface-name=wlan1
permissions=
timestamp=1581203793
和/etc/NetworkManager/system-connections/my_home.nmconnection
:
[connection]
id=my_home_internal
uuid=9d4cdada-1550-497e-b3b7-a82619bbd072
type=wifi
autoconnect-priority=5
interface-name=wlan0
permissions=
timestamp=1581203793
和nmcli -f NAME,UUID,AUTOCONNECT,AUTOCONNECT-PRIORITY,ACTIVE,DEVICE,STATE,ACTIVE-PATH c
输出
NAME UUID AUTOCONNECT AUTOCONNECT-PRIORITY ACTIVE DEVICE STATE ACTIVE-PATH
lan 153501bf-9e36-43e8-b63e-67d2d6d18076 yes 3 yes eth0 activated /org/freedesktop/NetworkManager/ActiveConnection/2
my_home_internal 9d4cdada-1550-497e-b3b7-a82619bbd072 yes 5 yes wlan0 activated /org/freedesktop/NetworkManager/ActiveConnection/4
my_home_usb c481eb20-a299-4703-9537-e2e4849e4983 yes 10 yes wlan1 activated /org/freedesktop/NetworkManager/ActiveConnection/5
那么,如何才能同时只使用一张网卡?