Ubuntu Server 10.10版服务器电信、联通双线接入加上

服务器环境如下:

IBM服务器,共有4个网卡;

操作系统:Ubuntu-10.10-server

接入内网、电信和联通的IP,信息如下

内网:168.168.168.96

电信(TEL)IP:  125.91.219.252;  子网掩码: 255.255.255.248; 网关:125.91.219.249

联通(CNC)IP:  120.81.225.31;  子网掩码: 255.255.255.0; 网关:120.81.225.1

操作步骤如下

1、  配置网卡信息

运行命令sudo vim /etc/network/interfaces把里面的配置修改为如下

auto lo

iface loinet loopback

auto eth0

ifaceeth0 inet static

address 168.168.168.96

netmask 255.255.255.0

ifaceeth1 inet static

address 120.81.225.31

netmask 255.255.255.0

auto eth1

ifaceeth2 inet static

address 125.91.219.252

netmask 255.255.255.248

gateway 125.91.219.249

auto eth2

保存配置信息并且得启网卡

sudo /etc/init.d/networking restart

2、  增加电信tel和联通cnc的路由表

先查看一下路由表的信息

cat /etc/iproute2/rt_tables

里面已经显示了部分路由信息,在他的后面加上下面2句,保存退出

252 tel

251 cnc

3、  增加路由规则,运行下面6个命令,前3个是设置电信网关,让电信的数据从eth2网卡走,后3个是设置联通网关,让数据从eth1走

sudo ip route flush table tel

sudo ip route add default via 125.91.219.249 dev eth2 src125.91.219.252 table tel

sudo ip rule add from 125.91.219.252 table tel

sudo ip route flush table cnc

sudo ip route add default via 120.81.225.1 dev eth1 src120.81.225.31 table cnc

sudo ip rule add from 120.81.225.31 table cnc

4、  运行命令sudo vim/etc/init.d/networking配置脚本文件在exit 0前加入如下内容,其实就是刚才增加的路由规则。

ip route flush table tel

ip route add default via 125.91.219.249 dev eth2 src125.91.219.252 table tel

ip rule add from 125.91.219.252 table tel

ip route flush table cnc

ip route add default via 120.81.225.1 dev eth1 src120.81.225.31 table cnc

ip rule add from 120.81.225.31 table cnc

5、  重启网络运行sudo /etc/init.d/networkingrestart

到此配置结束,叫外面分别通过电信和联通的朋友PING一下网络,看能不能正常。还有一点,本来双线接入就是做WEB服务的,但是电信禁了80端口,要打电话到电信去申请开通80端口才行。

6、  写入系统启动脚本运行命令sudovim /etc/rc.local,把步骤4的路由规则信息写入到启动脚本中

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/ppzzg.html