尝试让 Transmission 仅使用我的 wifi 接口 (wlan0),而其他所有接口都使用以太网 (eth0)。我能够将 Transmission 绑定到 wlan0 IP,但除非我断开以太网连接,否则无法使其工作。如何让它工作,同时保持以太网连接处于活动状态?
答案1
问题在于默认网关。尝试添加具有更多度量的第二个默认网关。
sudo route add default gw xxx.xxx.xxx.xxx metric 200
xxx.xxx.xxx.xxx
- 命令中表示路由器无线接口的 IP 地址
命令输出将显示两个 gw
xxx@xxx ~ $ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 213.xxx.xx.xxx 0.0.0.0 UG 0 0 0 eth0
default 192.xxx.x.xxx 0.0.0.0 UG 200 0 0 wlan0
192.xxx.x.x * 255.255.255.0 U 9 0 0 wlan0
213.xxx.xx.x * 255.255.255.0 U 1 0 0 eth0