Sie können route
verwenden So finden Sie Ihre Standardroute:
$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 1 0 0 eth0
link-local * 255.255.0.0 U 1000 0 0 eth0
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
Die Iface
Spalte in der Zeile mit dem Ziel default
sagt Ihnen, welche Schnittstelle verwendet wird.
Meine Version, die im Wesentlichen auf diesem und diesem basiert:
route | grep '^default' | grep -o '[^ ]*$'
Und das experimentell , für macOS:
route -n get default | grep 'interface:' | grep -o '[^ ]*$'
Auf GNU/Linux-Systemen:
#!/bin/sh
# host we want to "reach"
host=google.com
# get the ip of that host (works with dns and /etc/hosts. In case we get
# multiple IP addresses, we just want one of them
host_ip=$(getent ahosts "$host" | awk '{print $1; exit}')
# only list the interface used to reach a specific host/IP. We only want the part
# between dev and src (use grep for that)
ip route get "$host_ip" | grep -Po '(?<=(dev )).*(?= src| proto)'