1. 程式人生 > >Linux 第二張網絡卡

Linux 第二張網絡卡

linux新增第二個ip

ifconfig

用法:

ifconfig [nic]:0 [IP-Address] netmask [mask] up

例子:

ifconfig eth0:0 192.168.1.2 netmask 255.255.255.0 up

ip

用法:

ip address add [ip]/[mask-digits] dev [nic]

eg:

ip address add 192.168.99.37/24 dev eth0

永久生效的方法

# vim /etc/network/interfaces

auto eth0:1
iface eth0:1 inet static
address 192.168.0.1
gateway 192.168.0.254
netmask 255.255.255.0