Meu servidor físico tem duas interfaces: eth0 e eth1. Pretendo habilitar as duas interfaces de rede tanto para internet no ubuntu12.04. Eu configuro o / etc / network / interfaces como abaixo:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.10.101.105
gateway 10.10.101.254
netmask 255.255.255.0
auto eth1
iface eth1 inet static
address 10.10.101.205
gateway 10.10.101.254
netmask 255.255.255.0
E a saída do ifconfig é mostrada abaixo:
eth0 Link encap:Ethernet HWaddr e0:db:55:25:ed:10
inet addr:10.10.101.105 Bcast:10.10.101.255 Mask:255.255.255.0
inet6 addr: fe80::e2db:55ff:fe25:ed10/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1148531 errors:0 dropped:0 overruns:0 frame:0
TX packets:554215 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1636019748 (1.6 GB) TX bytes:40068201 (40.0 MB)
Interrupt:35
eth1 Link encap:Ethernet HWaddr e0:db:55:25:ed:11
inet addr:10.10.101.205 Bcast:10.10.101.255 Mask:255.255.255.0
inet6 addr: fe80::e2db:55ff:fe25:ed11/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:56699 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:4077879 (4.0 MB) TX bytes:492 (492.0 B)
Interrupt:38
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:124891 errors:0 dropped:0 overruns:0 frame:0
TX packets:124891 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1484482588 (1.4 GB) TX bytes:1484482588 (1.4 GB)
Então, acho que as duas interfaces de rede estão ativas. No entanto, acho que posso acessar meu servidor físico apenas via eth0 (10.10.101.105) e não conseguir acessá-lo via eth1 (10.10.101.205).
Quando eu uso route -n
para verificar a tabela do roteador no meu servidor, ele mostra:
vli05@vli05:~$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.10.101.254 0.0.0.0 UG 100 0 0 eth0
10.10.101.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
10.10.101.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
Eu não encontrei nada de errado. Você poderia por favor me dar algumas idéias? Obrigado.
Tags networking ubuntu