Não é possível acessar 192.168.1.1

0

Não consigo acessar o 192.168.1.1 no Ubuntu 14.04.Eu uso o roteador sem fio TP-LINK TD-W8901G.Ele trabalhou no Windows, mas não funciona no Ubuntu.Qualquer idéia do que devo fazer?

A saída do ifconfig é:

eth0      Link encap:Ethernet  HWaddr 60:a4:4c:4e:94:ab  
      inet6 addr: fe80::62a4:4cff:fe4e:94ab/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:47087 errors:0 dropped:0 overruns:0 frame:0
      TX packets:49475 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:35977992 (35.9 MB)  TX bytes:7791380 (7.7 MB)

lo        Link encap:Local Loopback  
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:65536  Metric:1
      RX packets:9663 errors:0 dropped:0 overruns:0 frame:0
      TX packets:9663 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0 
      RX bytes:1065746 (1.0 MB)  TX bytes:1065746 (1.0 MB)

ppp0      Link encap:Point-to-Point Protocol  
      inet addr:122.168.19.182  P-t-P:122.168.4.1  Mask:255.255.255.255
      UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1492  Metric:1
      RX packets:3493 errors:0 dropped:0 overruns:0 frame:0
      TX packets:4238 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:3 
      RX bytes:911258 (911.2 KB)  TX bytes:742138 (742.1 KB)

A saída do ping 192.168.1.1 é:

PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 125.21.0.109 icmp_seq=1 Destination Net Unreachable
From 125.21.0.109 icmp_seq=2 Destination Net Unreachable
From 125.21.0.109 icmp_seq=3 Destination Net Unreachable
From 125.21.0.109 icmp_seq=4 Destination Net Unreachable

Depois foi para loop infinito. Eu tive que interrompê-lo.

    
por akshay 17.05.2014 / 17:17

2 respostas

1

Sua saída ifconfig mostra que seu dispositivo eth0 não possui um endereço IP associado.

  • O seu computador diz que você está realmente conectado ao AP?

Você pode definir um endereço IP estático no intervalo 192.168.1.0/24 (isto é: 192.168.1.201) com um gateway 192.168.1.1 e tentar acessar seu roteador depois disso.

    
por earthmeLon 17.05.2014 / 18:46
1

Obrigado a todos, usei este comando:

sudo dhclient eth0

E agora eu tenho acesso.

    
por akshay 18.05.2014 / 04:38