Qual é a melhor maneira de adicionar uma rota permanente?

7

Eu preciso adicionar uma rota que não será excluída após a reinicialização. Eu li essas duas maneiras de fazer isso:

Add up route add -net 172.X.X.0/24 gw 172.X.X.X dev ethX to the file /etc/network/interfaces

ou

Create the file /etc/network/if-up.d/route with:

#!/bin/sh
route add -net 172.X.X.0/24 gw 172.X.X.X dev ethX

e torná-lo executável:

chmod +x /etc/network/if-up.d/route

Então estou confuso. Qual é a melhor maneira de fazer isso?

    
por Pozinux 07.11.2016 / 18:36

2 respostas

9

Você mencionou /etc/network/interfaces , então é um sistema Debian ...

Crie uma tabela de roteamento nomeada. Como exemplo, usei o nome "mgmt" abaixo.

echo '200 mgmt' >> /etc/iproute2/rt_tables

Acima, o kernel suporta muitas tabelas de roteamento e se refere a elas por números inteiros únicos numerados de 0 a 255. Um nome, mgmt, também é definido para a tabela.

Abaixo, uma olhada no padrão /etc/iproute2/rt_tables a seguir, mostrando que alguns números estão reservados. A escolha nesta resposta de 200 é arbitrária; pode-se usar qualquer número que ainda não esteja em uso, 1-252.

#
# reserved values
#
255     local
254     main
253     default
0       unspec
#
# local
#

Abaixo, um arquivo de interfaces Debian 7/8 define eth0 e eth1 . eth1 é a rede 172. eth0 poderia usar o DHCP também. 172.16.100.10 é o endereço IP a ser atribuído a eth1 . 172.16.100.1 é o endereço IP do roteador.

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The production network interface
auto eth0
allow-hotplug eth0
# iface eth0 inet dhcp 
# Remove the stanzas below if using DHCP.
iface eth0 inet static
  address 10.10.10.140
  netmask 255.255.255.0
  gateway 10.10.10.1

# The management network interface
auto eth1
allow-hotplug eth1
iface eth1 inet static
  address 172.16.100.10
  netmask 255.255.255.0
  post-up ip route add 172.16.100.0/24 dev eth1 src 172.16.100.10 table mgmt
  post-up ip route add default via 172.16.100.1 dev eth1 table mgmt
  post-up ip rule add from 172.16.100.10/32 table mgmt
  post-up ip rule add to 172.16.100.10/32 table mgmt

Reinicie ou reinicie a rede.

Atualização - expondo em EL

Eu notei em um comentário que você estava "se perguntando pelo RHEL também". No Enterprise Linux ("EL" - RHEL / CentOS / et al), crie uma tabela de roteamento nomeada, conforme mencionado acima.

O arquivo EL /etc/sysconfig/network :

NETWORKING=yes
HOSTNAME=host.sld.tld
GATEWAY=10.10.10.1

O arquivo EL /etc/sysconfig/network-scripts/ifcfg-eth0 , usando uma configuração estática (sem o NetworkManager e não especificando "HWADDR" e "UUID" para o exemplo, abaixo), segue.

DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTOCOL=none
IPADDR=10.10.10.140
NETMASK=255.255.255.0
NETWORK=10.10.10.0
BROADCAST=10.10.10.255

O arquivo EL /etc/sysconfig/network-scripts/ifcfg-eth1 (sem NetworkManager e não especificando "HWADDR" e "UUID" para o exemplo abaixo) segue.

DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTOCOL=none
IPADDR=172.16.100.10
NETMASK=255.255.255.0
NETWORK=172.16.100.0
BROADCAST=172.16.100.255

O arquivo EL /etc/sysconfig/network-scripts/route-eth1 :

172.16.100.0/24 dev eth1 table mgmt
default via 172.16.100.1 dev eth1 table mgmt

O arquivo EL /etc/sysconfig/network-scripts/rule-eth1 :

from 172.16.100.0/24 lookup mgmt
    
por 07.11.2016 / 19:13
3

Na distro baseada em Debian você pode adicionar uma rota estática permanentemente da seguinte forma:

 echo "up route add -net 172.X.X.X/24 gw 172.X.X.X dev ethX" | sudo tee --append /etc/network/interfaces

Na distro baseada em RHEL:

echo "172.X.X.X/24 via 172.X.X.X" | sudo tee --append /etc/sysconfig/network-scripts/route-ethX
    
por 07.11.2016 / 18:55