Ubuntu 12.04 LTS 64 Bit, keine Internetverbindung

Ubuntu 12.04 LTS 64 Bit, keine Internetverbindung

Heute habe ich beschlossen, Ubuntu 12.04 LTS über USB auf meinem aktuellen Windows 7-Rechner auszuprobieren. Ich führe Ubuntu über USB aus und wähle die Testversion aus. Ich kann keine Verbindung zum Internet herstellen und bin über meinen Ethernet-Port angeschlossen. Da ich neu bei Linux bin, bin ich mir nicht sicher, wie oder welche Informationen ich angeben muss, um Hilfe zu erhalten. Ich entschuldige mich im Voraus, wenn diese Frage bereits beantwortet wurde, aber ich konnte die Antwort auf meine Frage nicht finden.

Dank im Voraus-

Sind diese Daten hilfreich? Ich habe die IP geändert...

$ 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 eth0dann nochmal nachsehen ping -c 3 www.google.comund Internet testen

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

Antwort1

Angenommen, Ihr Router ist 172.16.12.1, dann besteht Ihr Problem darin, dass Ihr Computer nicht weiß, ob er internetgebundene Pakete dorthin senden soll.

Route hinzufügen Standard gw 172.16.12.1

Dadurch wird alles, was sich nicht in Ihrem LAN befindet, über diese Adresse gesendet.

Wenn dies nicht Ihr Router ist, ermitteln Sie die Adresse Ihres Routers und ersetzen Sie diese.

verwandte Informationen