I'm sure this has been asked and answered before, but I wasn't able to find it, so hopefully this will at least link someone to the right place.
I want to find out my local interface and ip address used to reach a certain host. For instance, if I had 3 adapters connected to my box and they all three went to different networks, I'd like to know which of the three (specifically, its ip address) is used to reach my.local.intranet (in this case, it would be a vpn tunnel interface). I suspect this is a job for ifconfig or traceroute, but I haven't been able to find the correct switches.
I'm running OSX 10.7 (Darwin)
EDIT: For easy access, This is what I ended up writing to get the trick done:
ifconfig `route get <host> | grep "interface: " | sed "s/[^:]*: \(.*\)/\1/"` | grep "inet " | sed "s/.*inet \([0-9.]*\) .*/\1/"
Any improvements / optimizations are welcome.
route -n get www.yahoo.com
I am running os x 10.6.8
You can try "route" to print you're routing table which will show you the destination networks and gateways for your various interfaces.
If the IP addresses don't help you determine the interface easily, run "traceroute," after running route, look at the first hop and compare it with the associated gateways from "route," and voila - that's your interface.
You can use
ip route get
to find and output the route which would be used for a specified destination. The output should include the interface and source address.I'm not sure if this is correct, but netstat might do it. It shows local address of established connections.