By tort ( June 13, 2018 at pm 5:57) · Filed under Linux Share
#写入以下内容
DEVICE=eth0 //绑定IP段的网卡名称
ONBOOT=yes //开机启用此网卡
BOOTPROTO=static //协议为静态
IPADDR_START=192.168.0.101 //网段的起始IP
IPADDR_END=192.168.0.120 //网段的截止IP
NETMASK=255.255.255.255 //子网掩码
CLONENUM_START=0 //这个数字是网卡别名的开始位置,For example, here eth0 refers 3:0,And IP192.168.0.101 will IPADDR_START set bound to eth0:0on,以此类推
NO_ALIASROUTING=yes //这个参数的作用是数据包始终通过eth0进出,Do not take the card aliases (such as eth0:0),Setting this parameter can speed up the response of the route,It is strongly recommended that you configure。
Permalink