这是我的路线表
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
10.1.1.0 * 255.255.255.0 U 9 0 0 wlan0
192.168.1.0 * 255.255.255.0 U 1 0 0 eth0
我正在尝试为wlan0
添加不同的网关,以便我可以通过wlan0
和指定的网关发出一些请求,而不会使用此命令影响eth0
route add -n 10.1.1.0 gw 10.1.1.1 netmask 255.255.255.0 dev wlan0
但是现有的没有更新它正在添加新的
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
10.1.1.0 10.1.1.1 255.255.255.0 UG 0 0 0 wlan0
10.1.1.0 * 255.255.255.0 U 9 0 0 wlan0
192.168.1.0 * 255.255.255.0 U 1 0 0 eth0
因此,我无法专门使用wlan0
发送任何请求curl
,因为即使在指定eth0
--interface wlan0
发送请求