将笔记本电脑的网卡设置成使用DHCP自动分配IP。在图形界面下,将IP等有设成指定的IP,网关也设成指定的网关,可是就是上不了网,为此郁闷了两天。后天咨询我的一位老大哥,才将其在字符界面下设好。原因很简单,在红旗linux6.0在图形界面下设好网关后,不知道什么原因,总是不能正常启用。下面是我的排查步骤。
首先我以为是ip地址没有启作用,但是我用ifconfig查看,ip地址已设好。
再想看看是不是DNS没有启作用,于是键入
# cat /etc/reslov.conf
结果显示
nameserver 202.106.0.20
说明DNS也配置好了
再用nslookup解析一下
# nslookup www.baidu.com
结果显示
;; connection timed out; no servers could be reached
说明解析失败。
再想到看一下网关
# route
结果显示
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.2.0 * 255.255.255.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0
发现怎么网关老是没有呢?于是在字符界面下再加入一遍网关
# route add default gw 192.168.2.254
然后再# route
结果显示
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.2.0 * 255.255.255.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0
default 192.168.2.254 0.0.0.0 UG 0 0 0 eth0
这次网关成功添加
再用nslookup解析。