Linux

可以連接無線路由器但不能上網

  • February 11, 2013

我有一台執行 Fedora 17 的 Dell Studio 1450。我最近在辦公室安裝了一個新的無線路由器。除了我之外,每個人都可以通過它連接到網際網路。Google透露了http://forums.fedoraforum.org/showthread.php?t=276645這與我的問題非常相似。這是一些命令的輸出日誌,供您幫助我。

$ ifconfig wlan0
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
       inet 192.168.11.5  netmask 255.255.255.0  broadcast 192.168.11.255
       inet6 fe80::222:fbff:febd:a1d4  prefixlen 64  scopeid 0x20<link>
       ether 00:22:fb:bd:a1:d4  txqueuelen 1000  (Ethernet)
       RX packets 217025  bytes 207399872 (197.7 MiB)
       RX errors 0  dropped 0  overruns 0  frame 0
       TX packets 140947  bytes 22960122 (21.8 MiB)
       TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

$ ping -c 3 192.168.11.1
PING 192.168.11.1 (192.168.11.1) 56(84) bytes of data.
^C
--- 192.168.11.1 ping statistics ---
3 packets transmitted, 0 received, 100% packet loss, time 1999ms

$ route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.11.1    0.0.0.0         UG    0      0        0 wlan0
192.168.11.0    0.0.0.0         255.255.255.0   U     0      0        0 wlan0

$ cat /etc/resolv.conf 
# Generated by NetworkManager
nameserver 192.168.11.1
nameserver 192.168.1.1

問候

編輯 1:執行 Linux Mint 的其他機器的輸出,通常在網路上工作。

$ ifconfig wlan0
wlan0     Link encap:Ethernet  HWaddr e0:ca:94:8a:f4:08  
         inet addr:192.168.11.2  Bcast:192.168.11.255  Mask:255.255.255.0
         inet6 addr: fe80::e2ca:94ff:fe8a:f408/64 Scope:Link
         UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
         RX packets:795989 errors:0 dropped:0 overruns:0 frame:0
         TX packets:729687 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:1000 
         RX bytes:871899683 (871.8 MB)  TX bytes:83227427 (83.2 MB)


$ ping -c 3 192.168.11.1
PING 192.168.11.1 (192.168.11.1) 56(84) bytes of data.
64 bytes from 192.168.11.1: icmp_req=1 ttl=64 time=1.12 ms
64 bytes from 192.168.11.1: icmp_req=2 ttl=64 time=1.17 ms
64 bytes from 192.168.11.1: icmp_req=3 ttl=64 time=1.12 ms

--- 192.168.11.1 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 1.123/1.139/1.172/0.035 ms


$ route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.11.1    0.0.0.0         UG    0      0        0 wlan0
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 wlan0
192.168.11.0    0.0.0.0         255.255.255.0   U     2      0        0 wlan0


$ cat /etc/resolv.conf
cat: /etc/resolv.conf: No such file or directory

更新:這不是 Fedora 的問題,它是我的筆記型電腦。我嘗試使用其他發行版(Ubuntu 12.04 anh Bodhi Linux)並且存在同樣的問題。

這是我的硬體問題。新路由器執行的是 802.11n 網路,而我的 Dell Studio 1450 中的 Intel WiFi link 5100 卡不支持它。辦公室中其他相對較新的筆記型電腦執行良好。

解決方案:將路由器設置更改為在 b/g 模式下執行,現在一切恢復正常。

Anurat - 嘗試分配靜態 IP 地址,而不是將其從 DHCP 獲取到您的無線介面並 ping 網關。您的路由器可能會阻止來自某個 IP 範圍的流量。特別是,嘗試使用分配給網路中另一個可以訪問 Internet 的客戶端的 IP 地址。

引用自:https://unix.stackexchange.com/questions/63913