linux网卡多IP

设置临时IP:
ifconfig eth0:0 192.168.1.1 netmask 255.255.255.0 up
ifconfig eth0:1 192.168.1.2 netmask 255.255.255.0 up
 
设置永久生效:
cd /etc/sysconfig/network-scripts/
vi ifcfg-eth0:0
DEVICE=eth0:0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=10.0.0.1
NETMASK=255.0.0.0
GATEWAY=10.0.0.254
service network restart       #重启服务
 

你可能感兴趣的:(linux网卡多IP)