在使用RAKsmart服务器的时候,如果安装的是Ubuntu操作系统的话,那么我们应该怎么添加单个、整段IP呢?
其实,在RAKsmart服务器Ubuntu系统中配置单个、整段IP方法是非常简单的,今天这里就简单的说说。如果大家需要添加独立IP的话,可以安装下面方法进行。
多IP不同段配置方法:
多个不同IP段的
/etc/network/interfaces
配置文件的范例如下:
# theloopbacknetworkinterfaceiface lo inet loopback# Theprimarynetworkinterfaceiface eth0 inet staticaddress 7.7.7.2netmask 255.255.255.248gateway 7.7.7.1# (如果是多个不同IP段,只要1个gateway配置就行,其它IP不需要配置gateway)auto eth0:0iface eth0:0 inet staticaddress 7.7.7.3netmask 255.255.255.248auto eth0:1iface eth0:1 inet staticaddress 7.7.7.4netmask 255.255.255.248auto eth0:2iface eth0:2 inet staticaddress 7.7.7.5netmask 255.255.255.248auto eth0:4iface eth0:4 inet staticaddress 4.4.4.130# (虽然这是不同的IP段,但不需要配置gateway,只需配置netmask即可)netmask 255.255.255.224auto eth0:5iface eth0:5 inet staticaddress 4.4.4.131netmask 255.255.255.224
如果想添加更多独立IP的话,按照上述方法进行添加就行了。配置文件完成后,用命令
/etc/init.d/networking reStart
重启网络,不需要
reBoot
重启服务器。重启网络的时候,如果你的配置文件有错误,一般都有提示。
整段IP添加方法
整段IP添加使用脚本添加,具体如下:
#!/bin/bashfor ((i=10;i<=255;i=i+1))doecho auto eth0:$i >> /etc/network/interfacesecho iface eth0:$i inet static >> /etc/network/interfacesecho address 193.10.10.$j >> /etc/network/interfacesecho netmask 255.255.255.0 >> /etc/network/interfacesecho gateway 193.10.10.254 >> /etc/network/interfacesecho >> /etc/network/interfacesdone
i
代表的是子网卡号,
j
代表的是具体的IP。该脚本从10开始的修改完系统中文件要给
775
的权限,注意网卡名称。
以上就是RAKsmart服务器Ubuntu配置单个、整段IP方法的方法,不会的朋友可以安装上述方法进行添加。
标签: 使用RAKsmart服务器配置Ubuntu来设置单独的IP地址的方法、本文地址: https://yihaiquanyi.com/article/d1fa5b7890e67df04835.html
上一篇:RAKsmart亚洲服务器E5RAKsmart域名配置...