Ubuntu 12.04 LTS 64 bits Sem conexão à Internet

0

Hoje eu decidi experimentar o Ubuntu 12.04 LTS via USB na minha máquina atual com Windows 7. Eu corro Ubuntu de USB e selecione julgamento. Não consigo me conectar à Internet e estou conectado usando minha porta Ethernet. Como sou novo no Linux, não tenho certeza de como ou quais informações eu preciso fornecer para obter assistência. Peço desculpas antecipadamente se esta pergunta já foi respondida, mas não consegui encontrar a resposta para a minha pergunta.

Agradecemos antecipadamente -

Os dados são úteis? Eu mudei o ip ...

$ sudo lshw -C nekwork

 description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:08:00.0
       logical name: eth0
       version: 03
       serial: 00:24:1d:11:1e:e1
       size: 100Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernetphysical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8168d-1.fw ip=172.xx.xx.xxx latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
       resources: irq:43 ioport:ae00(size=256) memory:fd2ff000-fd2fffff memory:fd2f8000-fd2fbfff memory:fd200000-fd21ffff


ubuntu@ubuntu:~$ ifconfig -a

 Link encap:Ethernet  HWaddr 00:24:1d:11:1e:e1  
          inet addr:172.16.12.150  Bcast:172.16.12.255  Mask:255.255.255.0
          inet6 addr: fe80::224:1dff:fe11:1ee1/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:73 errors:0 dropped:0 overruns:0 frame:0
          TX packets:120 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:6918 (6.9 KB)  TX bytes:14667 (14.6 KB)

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:68 errors:0 dropped:0 overruns:0 frame:0
          TX packets:68 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:4240 (4.2 KB)  TX bytes:4240 (4.2 KB)

ubuntu@ubuntu:~$ netstat -rn

Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
0.0.0.0         172.16.12.1     0.0.0.0         UG        0 0          0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 eth0
172.16.12.0     0.0.0.0         255.255.255.0   U         0 0          0 eth0

buntu@ubuntu:~$ ping -c 3 172.16.12.1
PING 172.16.12.1 (172.16.12.1) 56(84) bytes of data.
64 bytes from 172.16.12.1: icmp_req=1 ttl=64 time=0.355 ms
64 bytes from 172.16.12.1: icmp_req=2 ttl=64 time=0.345 ms
64 bytes from 172.16.12.1: icmp_req=3 ttl=64 time=0.346 ms

--- 172.16.12.1 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 1998ms
rtt min/avg/max/mdev = 0.345/0.348/0.355/0.022 ms
ubuntu@ubuntu:~$ 

ubuntu@ubuntu:~$ ping -c 3 www.google.com
ping: unknown host www.google.com
ubuntu@ubuntu:~$ 

sudo route del -net 169.254.0.0 netmask 255.255.0.0 eth0 , em seguida, veja novamente com ping -c 3 www.google.com e teste a internet

ubuntu@ubuntu:~$ sudo route del -net 169.254.0.0 netmask 255.255.0.0 eth0
SIOCDELRT: No such process
ubuntu@ubuntu:~$ sudo route del -net 169.254.0.0 netmask 255.255.0.0 eth0
SIOCDELRT: No such process
ubuntu@ubuntu:~$ ping -c 3 www.google.com
ping: unknown host www.google.com
    
por C300 09.02.2014 / 19:24

1 resposta

0

Supondo que seu roteador seja 172.16.12.1, seu problema é que sua máquina não sabe enviar pacotes com destino à Internet.

route add default gw 172.16.12.1

Isso fará com que ele envie tudo que não estiver em sua LAN através desse endereço.

Se esse não é o seu roteador, descubra qual é o endereço do seu roteador e substitua-o.

    
por Perkins 31.07.2014 / 23:52