服务器多ip如何分配给虚拟机,为虚拟机一个网卡分配多个IP地址
在虚拟机上给一个网卡分配多个IP地址(临时)①先查看我的网卡信息[root@localhost ~]# ifconfigeth0Linkencap:EthernetHWaddr 00:0C:29:79:AB:A4inetaddr:192.168.1.106Bcast:255.255.255.255Mask:255.255.255.0inet6 addr:fe80::20c:29ff:fe79:ab
在虚拟机上给一个网卡分配多个IP地址(临时)
①先查看我的网卡信息
[root@localhost ~]# ifconfig
eth0Link
encap:EthernetHWaddr 00:0C:29:79:AB:A4
inet
addr:192.168.1.106Bcast:255.255.255.255Mask:255.255.255.0
inet6 addr:
fe80::20c:29ff:fe79:aba4/64 Scope:Link
UP BROADCAST
RUNNING MULTICASTMTU:1500Metric:1
RX packets:5132
errors:0 dropped:0 overruns:0 frame:0
TX packets:1887
errors:0 dropped:0 overruns:0 carrier:0
collisions:0
txqueuelen:1000
RX bytes:416347
(406.5 KiB)TX bytes:236454 (230.9 KiB)
Interrupt:67 Base
address:0x2000
loLink encap:Local
Loopback
inet
addr:127.0.0.1Mask:255.0.0.0
inet6 addr:
::1/128 Scope:Host
UP LOOPBACK
RUNNINGMTU:16436Metric:1
RX packets:0
errors:0 dropped:0 overruns:0 frame:0
TX packets:0
errors:0 dropped:0 overruns:0 carrier:0
collisions:0
txqueuelen:0
RX bytes:0 (0.0
b)TX bytes:0 (0.0 b)
其中lo是本地回环,eth0是物理网卡,而我只有一个
②分配IP地址
[root@localhost ~]# [root@localhost ~]# ifconfig eth0:0
192.168.1.107
或者
[root@localhost ~]# ifconfig eth0:0 192.168.1.107 netmask
255.255.255.0 up
在不指定netmask的情况下,如上面第一种,系统会默认;
对于A类私有IP地址,系统默认为255.0.0.0,
对于B类私有IP地址,系统默认为255.255.0.0,
对于C类私有IP地址,系统默认为255.255.255.0
对于这种设定IP地址的方法,当重启网络服务时,就会消失
③重启网络服务
[root@localhost ~]# service network restart
正在关闭接口eth0:[确定]
关闭环回接口:[确定]
弹出环回接口:[确定]
弹出界面eth0:
正在决定eth0的IP信息...完成。
[确定]
或者
[root@localhost ~]# /etc/init.d/network restart
正在关闭接口eth0:[确定]
关闭环回接口:[确定]
弹出环回接口:[确定]
弹出界面eth0:
正在决定eth0的IP信息...完成。
[确定]
注:系统服务的所有脚本都在/etc/init.d目录下
netsniper11yin 2010.08.7
更多推荐
所有评论(0)