删除用户默认配置文件

由于在默认清空下,配置文件是系统自动生成的用户设备配置文件保存在/etc/udev/rule.d/下面:
# cp /etc/udev/rule.d /etc/udev/rule.d.bak.0 -R
# rm /etc/udev/rule.d/*

修改网卡配置文件,添加多IP配置

#vim /etc/network/interfaces
修改或添加如下内容:

auto lo
iface lo inet loopback  

auto eth0
iface eth0 inet static
address 192.168.76.192
netmask 255.255.255.0
gateway 192.168.76.254  

auto eth0:
iface eth0: inet static
address 192.168.76.193
netmask 255.255.255.0
gateway 192.168.76.254  

auto eth0:
iface eth0: inet static
address 192.168.76.194
netmask 255.255.255.0
gateway 192.168.76.254  

实验环境,我添加了三个IP地址

让配置生效

#/etc/init.d/networking restart

检查效果

#ifconfig
eth0 Link encap:Ethernet HWaddr -------------------------------
inet addr:192.168.76.192 Bcast:192.168.76.255 Mask:255.255.255.0
inet6 addr: fe80::92e6:baff:fea0:b517/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:17278 errors:0 dropped:0 overruns:0 frame:0
TX packets:7044 errors:0 dropped:0 overruns:0 carrier:1
collisions:0 txqueuelen:1000
RX bytes:8162087 (8.1 MB) TX bytes:1085377 (1.0 MB)
Interrupt:30

eth0:0 Link encap:Ethernet HWaddr -------------------------------
inet addr:192.168.76.193 Bcast:192.168.76.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:30

eth0:1 Link encap:Ethernet HWaddr -------------------------------
inet addr:192.168.76.194 Bcast:192.168.76.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:30

可以看到三个IP地址,就说明配置成功了。

最新文章

  1. Android 5.X新特性之为RecyclerView添加HeaderView和FooterView
  2. 方法过滤器,分布式缓存 Memcached实现Session解决方案
  3. .NET 4.0中的泛型的协变和逆变
  4. BZOJ3925: [Zjoi2015]地震后的幻想乡
  5. 想要完全导入swc中的所有类
  6. theano中的concolutional_mlp.py学习
  7. xyiyy开始写博客了
  8. windows7 iis安装与配置
  9. 使用Jetty搭建Java Websocket Server,实现图像传输
  10. .htaccess 使用大全
  11. Myeclipse中隐藏jar包
  12. Hi3531添加16GByte(128Gbit) NAND Flash支持
  13. CentOS7查看systemctl 控制的服务的相关配置
  14. [C#.net]将null值插入SQL Server的Datetime
  15. Socket通信的Demo
  16. Java 实现 HDFS 文件基本操作
  17. jupyter notebook connecting to kernel problem
  18. 全面理解Java内存模型(JMM)
  19. mail 发送email
  20. django会话session

热门文章

  1. jquery easyui里datagrid用法记录
  2. Git使用帮助
  3. Discuz常见小问题-如何设置163邮箱注册验证
  4. Iocomp控件教程之Pie Chart——饼状图控件
  5. onvif杂项
  6. mvn 编译错误java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter. <init>(Z)V
  7. PHP XML Parser函数
  8. Android内存泄漏分析实战
  9. 用记事本编写一个Servlet项目
  10. 用python实现的的手写数字识别器