Get your default gateway from the terminal
Wednesday, June 22nd, 2016 | Tech
If you are inside a Vagrant box and want to SSH to the host machine, you will need to get the default gateway. Or, maybe you just need the default gateway for a completely different reason. Either way, the following command should do it.
netstat -rn | grep "^0.0.0.0 " | cut -d " " -f10
This is really useful if you don’t have ifconfig installed.
If you are inside a Vagrant box and want to SSH to the host machine, you will need to get the default gateway. Or, maybe you just need the default gateway for a completely different reason. Either way, the following command should do it.
netstat -rn | grep "^0.0.0.0 " | cut -d " " -f10
This is really useful if you don’t have ifconfig installed.