Como adicionar aliases de IP com dois gateways no mesmo nic Centos

0

Eu tenho 2 intervalo de endereços alocados, exemplo

  1. 10.10.12.25/28
  2. 10.12.12.24/28

Como adicionar aliases de IP com dois gateways no mesmo nic com o Centos?

    
por CentosNewbie 25.04.2014 / 14:56

2 respostas

1

É muito simples adicionar endereços IP em intervalos diferentes usando o comando ip ou simplesmente criando ifcfg-eth0:xxx arquivos, mas você pode ter apenas um gateway padrão. Aqui está um exemplo em um dos meus servidores:

[dkaarsemaker@gateway-001 network-scripts]$ cat ifcfg-eth1:179
# Broadcom Corporation NetXtreme BCM5704 Gigabit Ethernet
DEVICE=eth1:179
BOOTPROTO=static
ONBOOT=yes
IPADDR=87.233.215.179
NETMASK=255.255.255.240
[dkaarsemaker@gateway-001 network-scripts]$ cat ifcfg-eth1:42
DEVICE=eth1:179
BOOTPROTO=static
ONBOOT=yes
IPADDR=213.239.169.42
NETMASK=255.255.255.240
[dkaarsemaker@gateway-001 network-scripts]$ ip a l dev eth1
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether e4:11:5b:e0:14:5c brd ff:ff:ff:ff:ff:ff
    inet 87.233.215.178/28 brd 87.233.215.191 scope global eth1
    inet 87.233.215.179/28 brd 87.233.215.191 scope global secondary eth1:179
    inet 213.239.169.42/25 brd 213.239.169.127 scope global secondary eth1:42
    inet6 fe80::e611:5bff:fee0:145c/64 scope link 
       valid_lft forever preferred_lft forever

Mas ainda é apenas um gateway padrão:

[dkaarsemaker@gateway-001 ~]$ route -n | grep G
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         87.233.215.177  0.0.0.0         UG    0      0        0 eth1
    
por 27.04.2014 / 13:02
0

Adicione o gateway padrão aqui.

cat<<.>>/etc/sysconfig/network
GATEWAY=<default gateway ip>
.

Para o primeiro bloco 10.10.12.25/28; rede = 10.10.12.16, transmissão = 10.10.12.31. Assumindo ip = 10.10.12.17 para host e ip = 10.10.12.18 para gateway.

cd /etc/sysconfig/network-scripts
cat<<. >ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=10.10.12.17
PREFIX=28
DEFROUTE=no
GATEWAY=10.10.12.18
.

Adicione rotas estáticas;

cat<<.>route-eth0
ADDRESS0=<address of the network you want to reach thru this gateway>
NETMASK0=<netmask for ADDRESS0>
GATEWAY0=10.10.12.18
.

Para o segundo bloco 10.12.12.24/28; rede = 10.12.12.16, transmissão = 10.12.12.31. Assumindo ip = 10.12.12.17 para host e ip = 10.12.12.18 para gateway.

cat<<. >ifcfg-eth0:1
BOOTPROTO=static
ONBOOT=yes
IPADDR=10.12.12.17
NETMASK=255.255.255.240
DEFROUTE=no
GATEWAY=10.12.12.18
.

Adicione rotas estáticas;

cat<<.>route-eth0:1
ADDRESS0=<address of the network you want to reach thru this gateway>
NETMASK0=<netmask for ADDRESS0>
GATEWAY0=10.12.12.18
.       
service network restart
netstat -rn
    
por 02.02.2015 / 08:51