linux server现在做为网站服务器是常见的方式,也是我们殷雯企业网站管理系统支持的服务器类型。有时我们一台服务器需要设置2个或者以上IP地址使用,以方便域名解析操作。今天殷雯网站建设工作室小编跟大家说说如何设置一网卡多Ip.
1、假设网卡的IP信息为:
address 192.168.200.187
netmask 255.255.255.0
gateway 192.168.200.1
2、假设需要增加的IP信息为:
address 192.168.200.188
netmask 255.255.255.0
gateway 192.168.200.1
3、假设系统中网卡为:eth0
4、那么,可以直接修改Ubuntu的IP配置文件:
#vim /etc/network/interfaces
然后参考下面的内容,相信懂Linux的童鞋都能看懂~
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.200.188
netmask 255.255.255.0
#gateway 192.168.200.1
# 下面是增加的IP的设置
auto eth0:1
iface eth0:1 inet static
address 192.168.200.188
netmask 255.255.255.0
gateway 192.168.200.1
修改好之后,wq!退出并保存,然后重启网卡:
#/etc/init.d/networking restart
OK,搞定。