Fosdccf.blog.chinaunix.net
sdccf
全部博文(19283)
Linux酷软(214)
tmp(0)
PostgreSQL(93)
Solaris(383)
AIX(173)
SCOUNIX(575)
DB2(1005)
Shell(386)
C/C++(1187)
MySQL(1750)
Sybase(465)
Oracle(3695)
Informix(548)
HP-UX(0)
IBM AIX(2)
Sun Solaris(0)
BSD(1)
Linux(8597)
SCO UNIX(23)
2011年(1)
2009年(125)
2008年(19094)
2007年(63)
clifford
linky521
曾德标
fengzhan
leon_yu
mcuflowe
yt200902
guanyuji
GY123456
snow888
carlos94
丸喵喵
sean229
cxunix
可怜的猪
cqxc413
xzzgege
wb123456
分类: LINUX
2008-05-03 20:35:00
昨天搞了一晚,把Ubuntu升级到8.04,今天研究了一下双网卡配置,记录如下:
1、内网IP10.10.10.100,网关10.10.10.1,用的是一款USB网卡,设备名为:usb0;外网IP为动态地址,网关是192.168.1.1,设备名为eth0。
2、修改/etc/network/interfaces文件,加入一下内容:auto usb0iface usb0 inet staticaddress 10.10.10.100netmask 255.255.255.0network 10.10.10.0broadcast 10.10.10.255gateway 10.10.10.1
因为外网是动态地址,所以不用配置,如果是静态地址的话,复制以上内容,并修改相关字段即可。
3、重启网卡:/etc/init.d/networking start //启动网卡/etc/init.d/networking stop //停止网卡/etc/init.d/networking restart //重启网卡(用这个就行了)
4、修改路由:删除默认路由,如果网卡配置正确会出现2个默认路由,删除之:sudo route delete default(执行2次)加入新路由: sudo route add -net 10.0.0.0 netmask 255.0.0.0 dev usb0 (内网路由)sudo route add default gw 192.168.1.1 dev eth0(外网路由)
5、网络测试成功。
上一篇:Ubuntu 8.04下fcitx输入法的安装及使用
下一篇:Ubuntu8.04没有声音解决一例
登录 注册