如何在ubuntu服务器上设置多个网络接口。 [RTNETLINK答案:文件存在]

时间:2014-09-12 09:58:21

标签: ubuntu configuration routing gateway ubuntu-server

界面文件

auto eth0
iface eth0 inet dhcp
        up route add 192.168.11.2 dev eth0
        up route add default gw 192.168.11.2 dev eth0

auto eth1
iface eth1 inet static
        address 10.95.163.14
        netmask 255.255.255.0
        up route add 172.16.0.0/16 via 10.95.163.1 dev eth1

问题

sudo /etc/init.d/networking restart 

RTNETLINK answers: File exists

Failed to bring up eth1.

使用

eth0 is used for internet access
eth1 is used for communicate within 2 internal networks

解决方法现在我需要使用

手动添加路线
sudo ip route add 172.16.0.0/16 via 10.95.163.1 dev eth1

问题

  1. 我的配置是否有任何问题
  2. 有没有更好的解决方案

0 个答案:

没有答案