我有3个网卡,1个Lan(有线),1个无线网卡和1个是无线USB
如何从特定的网卡ping?
以及如何将特定的网卡用于特定的应用
例
i want to ping google from wlan0
具体应用示例
i want to use firefox or transmission from wan1
更新
Lan ip 192.168.0.2>正常工作
Wlan1 IP 192.168.0.3
pin -I wlan1 google.com
更新
尝试粘贴route -n和/或ip route的输出。在我看来,wlan1接口尚未配置有效的网关。– @ MrShunz
one@onezero:~$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 eth0
172.16.221.0 0.0.0.0 255.255.255.0 U 0 0 0 vmnet8
192.168.0.0 0.0.0.0 255.255.255.0 U 1 0 0 eth0
192.168.0.0 0.0.0.0 255.255.255.0 U 2 0 0 wlan1
192.168.48.0 0.0.0.0 255.255.255.0 U 0 0 0 vmnet1
one@onezero:~$ ip route
default via 192.168.0.1 dev eth0 proto static
169.254.0.0/16 dev eth0 scope link metric 1000
172.16.221.0/24 dev vmnet8 proto kernel scope link src 172.16.221.1
192.168.0.0/24 dev eth0 proto kernel scope link src 192.168.0.2 metric 1
192.168.0.0/24 dev wlan1 proto kernel scope link src 192.168.0.3 metric 2
192.168.48.0/24 dev vmnet1 proto kernel scope link src 192.168.48.1
@MrShunz>更新
—
零零
我相应地更新了我的答案
—
Shunz先生2012年
route -n
和/或的输出ip route
。在我看来,wlan1接口尚未配置有效的网关。