删除用户默认配置文件
由于在默认清空下,配置文件是系统自动生成的用户设备配置文件保存在/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:0
iface eth0:0 inet static
address 192.168.76.193
netmask 255.255.255.0
gateway 192.168.76.254
auto eth0:1
iface eth0:1 inet static
address 192.168.76.194
netmask 255.255.255.0
gateway 192.168.76.254实验环境,我添加了三个IP地址
Ubuntu系统下配置网卡多IP教程

本文详细介绍了如何在Ubuntu系统中为单个网卡配置多个IP地址,包括删除用户默认配置文件、修改网卡配置文件添加多IP设置、使配置生效的步骤,并提供了检查配置是否成功的方法。
最低0.47元/天 解锁文章
6282

被折叠的 条评论
为什么被折叠?



