系统默认带有一个127.0.0.1
的换回网络,想添加更多有如下两种方法。
1. 第一种直接通过ifconfig命令添加
添加以前先使用ifconfig -a
查看目前都有哪些网络,可以看到分别有eth0
,eth1
,lo
。
1 | eth0 Link encap:Ethernet HWaddr 08:00:27:ac:ea:bc |
然后执行如下命令添加lo:0
。1
ifconfig lo:0 192.168.10.1 netmask 255.255.255.255 up
再使用ifconfig -a
查看就回发现多了一个lo:0
了, 说明配置成功了。
1 | eth0 Link encap:Ethernet HWaddr 08:00:27:ac:ea:bc |
通过ifconfig
在系统重启之后会丢失,可以尝试第二种方式。
2. 编辑/etc/network/interfaces
配置文件
用vi打开该配置文件找到如下几行
1 | # The loopback network interface |
进行编辑后保存退出,然后重启service networking restart
服务,再用ifconfig -a
查看,将会看到和第一步配置以后一样的内容1
2
3
4
5
6auto lo lo:0
iface lo inet loopback
iface lo:0 inet static
address 192.168.10.11
netmask 255.255.255.255