|
我的一块网卡想绑定两个IP地址。一个是192.168.0.1,另一个是192.168.1.1
请问如何弄。
配置文件如下,请问如何修改:
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255 |
|