This is a static archive of the old Zorin Forum.

The information below may be outdated. Visit the new Zorin Forum here ›

If you have registered on the old forum, you will need to create an account on the new forum.

Zotac Geforce 9300-ITX no Ethernet

naquaada

Tue Jun 16, 2015 4:16:53 pm

Hello,

I have the board mentioned above, it has the nVidia ION (MCP79) chipset. I'm not able to get internet working, although it shows eth0 in the list. I'm using a static adress with two DNS servers. But I'm not able to ping the broadcast address (192.168.0.255), all packages are lost. If tried some commands mentioned in Ubuntu forums, but nothing worked. In the connection information there is no driver listed, and the speed is just 100 MB/s.

The curious thing is, I probably had Internet in Zorin on this machine. Or was it on one of my other systems? Well, even in OSx86 Leopard and Mavericks is working internet, the network at full 1000 Mbit speed.

I would be appreciated for some help, especcially because I have no experience with Linux.

Greets, naquaada.

Swarfendor437

Tue Jun 16, 2015 10:15:26 pm

Hi, please be patient - hopefully wolfman or madvinegar will be able to assist. :D

Wolfman

Wed Jun 17, 2015 2:10:02 pm

Hi,

is your network manager active? (Enabled), right click the toolbar network icon and check:

Menu_009.jpg
Menu_009.jpg (15.04 KiB)


Disable it and then wait a few seconds and enable it again, make sure you run a full system update once you have network access:

viewtopic.php?f=5&t=2247

Linx

Tue Jul 14, 2015 6:24:19 am

Run these command and they should help get us some data;
Code:
ip addr
ip route show
ethtool eth0
ping -c 10 -i 0.2 $( ip route | grep default | cur -d' ' -f 3) #This should ping your default gateway


Most network devices don't respond to a broadcast ping, nothing in my network does.
Code:
$ ping 192.168.110.255 -c 10 -b
WARNING: pinging broadcast address
PING 192.168.110.255 (192.168.110.255) 56(84) bytes of data.

--- 192.168.110.255 ping statistics ---
10 packets transmitted, 0 received, 100% packet loss, time 9072ms

##But I am online

$ ping google.com -c10 -i0.2 -n
PING google.com (216.58.216.206) 56(84) bytes of data.
64 bytes from 216.58.216.206: icmp_seq=1 ttl=55 time=43.6 ms
64 bytes from 216.58.216.206: icmp_seq=2 ttl=55 time=42.5 ms
64 bytes from 216.58.216.206: icmp_seq=3 ttl=55 time=42.0 ms
64 bytes from 216.58.216.206: icmp_seq=4 ttl=55 time=41.8 ms
64 bytes from 216.58.216.206: icmp_seq=5 ttl=55 time=40.7 ms
64 bytes from 216.58.216.206: icmp_seq=6 ttl=55 time=39.5 ms
64 bytes from 216.58.216.206: icmp_seq=7 ttl=55 time=38.8 ms
64 bytes from 216.58.216.206: icmp_seq=8 ttl=55 time=39.9 ms
64 bytes from 216.58.216.206: icmp_seq=9 ttl=55 time=38.6 ms
64 bytes from 216.58.216.206: icmp_seq=10 ttl=55 time=39.8 ms

--- google.com ping statistics ---
10 packets transmitted, 10 received, 0% packet loss, time 1808ms
rtt min/avg/max/mdev = 38.644/40.765/43.697/1.621 ms


After you get that data back to us it should give us alot of information and hopefully a direction on where to start looking.

Don't worry about the IP address showing it is a private IP address (Based on you stating you pinged the broadcast at 192.168.0.255), so the private address is not going to be reachable from the internet =]

Hope to hear from you soon.