Difference between revisions of "Configure static routes in debian"

From Notes_Wiki
m
m
Line 1: Line 1:
<yambe:breadcrumb>Debian</yambe:breadcrumb>
<yambe:breadcrumb self="Configure static routes in debian">Debian|Debian</yambe:breadcrumb>
=Configure static routes in debian=
=Configure static routes in debian=


Line 45: Line 45:




 
<yambe:breadcrumb self="Configure static routes in debian">Debian|Debian</yambe:breadcrumb>
<yambe:breadcrumb>Debian</yambe:breadcrumb>

Revision as of 04:59, 18 September 2018

<yambe:breadcrumb self="Configure static routes in debian">Debian|Debian</yambe:breadcrumb>

Configure static routes in debian

To configure static routes in debian edit file '/etc/network/interfaces' and use

up route add -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.2.1
down route del -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.2.1

Sample file that uses same technique is:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 10.4.7.2
    netmask 255.255.255.0
#   gateway 10.4.7.1


up route add -net 10.0.0.0 netmask 255.0.0.0 gw 10.4.7.1
down route del -net 10.0.0.0 netmask 255.0.0.0 gw 10.4.7.1

up route add -net 172.16.0.0 netmask 255.240.0.0 gw 10.4.7.1
down route del -net 172.16.0.0 netmask 255.240.0.0 gw 10.4.7.1

up route add -net 192.168.0.0 netmask 255.255.0.0 gw 10.4.7.1
down route del -net 192.168.0.0 netmask 255.255.0.0 gw 10.4.7.1


auto eth1
iface eth1 inet static
    address 10.4.8.54
    netmask 255.255.255.0
    gateway 10.4.8.2


For DHCP based addressing use: 'iface <interface-name> inet dhcp'. For example:

auto eth1
iface eth1 inet dhcp


<yambe:breadcrumb self="Configure static routes in debian">Debian|Debian</yambe:breadcrumb>