add default route on boot [closed]
I'm trying to add a default route on my ppp0 connection, I want the default route points to that connection. I tried to add it in /etc/rc.local but I don't think that is the right place to do so. I would like to know where is the right place to accomplish this.
4 Answers
The right place should be the file /etc/network/interfaces. You add a line like:
up route add default gw 192.168.0.1 dev eth0The IP address is the one of your default gateway and the last entry is the device name of your device.
3Already long time ago, but none of the above described solutions worked for me. I finally found the solution in the comments in the ip-up file under the /etc/ppp directory in Ubuntu.
I created a script in the /etc/ppp/ip-up.d directory, where I put the route add command in.
The script is picked up automatically after the pptp connection was created. It works like a charm.
1If you are using Network Manager, you can add a route via the Configure VPN... menu option under the networking widget. Then on the VPN, click on edit for the VPN you need to add a route to. Then under IPV4 settings, change Method to Automatic VPN. Then click on routes and add your route there (eg network 192.168.1.0 netmask 255.255.255.0 gateway 192.168.1.20) where the gateway is the VPN server you are connecting to.
Your default route for your primary interface? This should be done by default if you're using DHCP. If you have a statically configured interface, you'll need to add a stanza to /etc/network/interfaces. Assuming your interface is eth0 and network is 192.168.1.0/24:
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.123
netmask 255.255.255.0
gateway 192.168.1.1(Obviously these numbers would be adjusted for your network.)
Add this to /etc/network/interfaces and that's it. Now if you want a static route that is NOT your default route, that is different.