配置第二张网卡/接口

配置第二张网卡/接口

我正在配置一台服务器(ubuntu 12.04 64 位,带 kvm),带有 2 个卡适配器。第一个 (eth0) 配置为与虚拟桥 (vbr0) 配合使用,用于 DMZ 接口。我如何配置第二个 (eth1) 以与 LAN 接口(192.168.1.8 作为静态 IP 地址)配合使用。以下是实际配置(/etc/newtork/interfaces)

auto lo eth0 eth1 br0

iface lo inet loopback

iface eth0 inet manual

iface br0 inet static
address 192.168.4.8
netmask 255.255.255.0
broadcast 192.168.4.255
network 192.168.4.0
gateway 192.168.4.1
bridge_ports eth0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off

感谢您的支持!!!

答案1

将以下行添加到 /etc/newtork/interfaces:

iface eth1 inet static
  address 192.168.1.8
  netmask 255.255.255.0

相关内容