Ich habe 3 Netzwerkkarten, 1 LAN (verkabelt), 1 drahtlose Netzwerkkarte und 1 ist drahtlos USB
Wie pinge ich von einer bestimmten Netzwerkkarte?
& Wie verwende ich eine bestimmte Netzwerkkarte für eine bestimmte Anwendung?
Beispiel
i want to ping google from wlan0
Beispiel für eine bestimmte Anwendung
i want to use firefox or transmission from wan1
AKTUALISIERT
Lan ip 192.168.0.2> Richtig funktionieren
Wlan1 ip 192.168.0.3
pin -I wlan1 google.com
AKTUALISIEREN
Versuchen Sie, die Ausgabe von route -n und / oder ip route einzufügen. Mir scheint, dass für die wlan1-Schnittstelle kein gültiges Gateway konfiguriert ist. - @ 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
route -n
und / oder einzufügenip route
. Mir scheint, dass für die wlan1-Schnittstelle kein gültiges Gateway konfiguriert ist.