ifconfig
to list network cofiguration.ip addr
or ip link
can be used instead.Use ip route
to list routing configuration, or route
if available, for better formatting.
If you have multiple connections (for example: wireless and wired connections on same computer) and you want to force requests to go through one of them..
sudo route add default gw [IP] [Interface]
sudo route delete default gw [name]
If you have multiple connections (for example: wireless and wired connections ton same computer) and you want to force requests to a specific destination to go through one of them..
sudo ip route add [DestinationServer] via [IP]
For permenant changes edit /etc/network/interfaces
then restart /etc/init.d/networking restart