Pode se conectar ao roteador sem fio, mas não pode navegar na Internet

1

Eu tenho um Dell Studio 1450 executando o Fedora 17. Recentemente, instalei um novo roteador sem fio no escritório. E todo mundo além de mim é capaz de se conectar à internet através dele. O Google revelou o link que é muito parecido com o meu problema. Aqui estão os registros de saída de alguns comandos para você me ajudar.

$ 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

Atenciosamente

EDIT 1: saídas de outra máquina rodando o Linux Mint, normalmente trabalhando na rede.

$ 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

ATUALIZAÇÃO: Não é um problema com o fedora, é o meu laptop. Eu tentei com outras distros (Ubuntu 12.04 anh Bodhi Linux) e o mesmo problema existe.

    
por Anuvrat Parashar 06.02.2013 / 10:34

2 respostas

0

Foi um problema com o meu hardware. O novo roteador estava executando uma rede 802.11n, enquanto a placa Intel WiFi link 5100 no meu Dell Studio 1450 não suporta isso. Outros laptops no escritório sendo comparativamente mais novos estavam funcionando perfeitamente.

Solução: configurações do roteador alteradas para execução no modo b / g e tudo está em ordem novamente agora.

    
por 11.02.2013 / 09:55
1

Anurat - Tente atribuir um endereço IP estático em vez de obtê-lo do DHCP para sua interface sem fio e executar ping no gateway. Seu roteador pode estar bloqueando o tráfego de um determinado intervalo de IP. Em particular, tente usar um endereço IP atribuído a outro cliente em sua rede que tenha acesso à Internet.

    
por 06.02.2013 / 19:50