我的环境是在学校钟海楼A04013局域网
在使用win7时,能够上网,通过 ipconfig -all获得DNS如下:
202.96.128.86
202.96.128.166
通过ipconfig获得信息如下:
ip:10.0.43.230
子网掩码:255.255.240.0
网关:10.0.32.1
然后切换到linux系统,
首先将静态ip等信息写入到/etc/network/interfaces中
命令:sudo vi /etc/network/interaces
编辑后文件内容如下(注释内容就不写出来了):
[quote]
#...
#...
#...
auto lo
iface lo inet loopback
#...
auto eth0
iface eth0 inet static
address 10.0.43.230
netmask 255.255.240.0
gateway 10.0.32.1
[/quote]
然后保存。
接着设置DNS
命令:sudo vi /etc/resolv.conf
编辑后文件内容如下:
[quote]
nameserver 202.96.128.86
nameserver 202.96.128.166
[/quote]
保存,然后输入以下命令
命令:sudo /etc/init.d/networking restart
搞定,ping lurencun.com
毫无压力。
特此笔记。
在使用win7时,能够上网,通过 ipconfig -all获得DNS如下:
202.96.128.86
202.96.128.166
通过ipconfig获得信息如下:
ip:10.0.43.230
子网掩码:255.255.240.0
网关:10.0.32.1
然后切换到linux系统,
首先将静态ip等信息写入到/etc/network/interfaces中
命令:sudo vi /etc/network/interaces
编辑后文件内容如下(注释内容就不写出来了):
[quote]
#...
#...
#...
auto lo
iface lo inet loopback
#...
auto eth0
iface eth0 inet static
address 10.0.43.230
netmask 255.255.240.0
gateway 10.0.32.1
[/quote]
然后保存。
接着设置DNS
命令:sudo vi /etc/resolv.conf
编辑后文件内容如下:
[quote]
nameserver 202.96.128.86
nameserver 202.96.128.166
[/quote]
保存,然后输入以下命令
命令:sudo /etc/init.d/networking restart
搞定,ping lurencun.com
毫无压力。
特此笔记。