作者:juniu网络 来源:互联网 发布时间:2023-06-26
ubuntu是私有标准桌面化linux系统,是大家在租赁香港服务器时使用的实际操作系统之一.近日有网友咨询香港服务器ubuntu如何配置单个ip与整段ip,本文就为大家介绍下实际操作步骤,仅供大家参考.
一、多ip不同段配置方法:
许多不同ip段的 /etc/network/interfaces 配置文件的范例如下:
# the loopback network interface
auto lo
iface lo inet loopback
# the primary network interface
auto eth0
iface eth0 inet static
address 8.8.8.2
netmask 255.255.255.248
gateway 8.8.8.1 (如果是许多不同ip段,只要1个gateway配置就行,其它ip不需要配置gateway)
auto eth0:0
iface eth0:0 inet static
address 8.8.8.3
netmask 255.255.255.248
auto eth0:1
iface eth0:1 inet static
address 8.8.8.4
netmask 255.255.255.248
auto eth0:2
iface eth0:2 inet static
address 8.8.8.5
netmask 255.255.255.248
auto eth0:3
iface eth0:3 inet static
address 8.8.8.6
netmask 255.255.255.248
auto eth0:4
iface eth0:4 inet static
address 6.6.6.130(虽然这是不同的ip段,但不需要配置gateway,只需配置netmask就可以)
netmask 255.255.255.224
auto eth0:5
iface eth0:5 inet static
address 6.6.6.131
netmask 255.255.255.224
如果想添加更多独立ip的话,按照上述方法开展添加就行了.
配置文件完成后,用命令/etc/init.d/networking restart 重启网络,不需要reboot重启服器./etc/init.d/networking restart重启网络的时候,如果你的配置文件有错误,一般都有提示的.
2、整段ip添加方法
整段ip添加使用脚本添加,主要如下:
# !/bin/bash
for ((i=10;i<=255;i=i+1))
do
echo “auto eth0:$i”>>/etc/network/interfaces
echo “iface eth0:$i inet static”>>/etc/network/interfaces
# let j=$i
echo “address 193.10.10.$j”>>/etc/network/interfaces
echo “netmask 255.255.255.0”>>/etc/network/interfaces
echo “gateway 193.10.10.254″>>/etc/network/interfaces
echo ” “>>/etc/network/interfaces
done
# end
相关含义说明:
i代表的是子网延迟大号
j代表的是主要的ip
该脚本从是从10开始的
修改完系统中文件要给775的权限,注意网延迟大名称
以上就是这次香港服务器ubuntu配置单个ip与整段ip教程,实际操作起来还是比较简单的.
【文章转自国外服务器 http://www.558idc.com处的文章,转载请说明出处】