É 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