I'm a newbie to the Raspberry world. Just bought a Raspberry 4 model B and having problems connecting it to the internet.
I am using an ethernet cable but the device will not connect to the internet. The network lights (next to the connector) light up but it won't access the internet. When I connect the same ethernet cable to my laptop, my laptop can connect to the internet fine.
Not sure how to proceed with the troubleshooting, will appreciate your advice.
Thanks, Avi
Hi, I realize my question is not clear, here is some additional information which might help. Thanks.
The Ethernet cable is connected to a Cisco SG110-16 switch, which is connected to an Apple AirPort Extreme router. I do not know if it has MAC filtering or how to check this. (I sent a question for the switch installer, waiting for his reply).
The lights next to the connector show a flashing green and a solid yellow.
I can use terminal with commands on the Raspberry, however have no way to copy and paste the results (many lines..) to the laptop from which I’m using to write this.
The GUI in the upper right corner shows the WiFi icon, it recognizes the network, asked for and received the correct password, but is not connecting either. The WiFi icon is not solid blue, but instead continuous “growing arches”, if it means anything.
ok, made some progress... I entered the IP, Router and DNS values (as shown in the router) into the Raspberry network preferences window. This brought up the blue arrows icon on the GUI, and when hovering the mouse over it the following shows: "eth0: Link is up, configuring"
Still, no internet connection.
ip a
? What colour sre the Ethernet LEDs? – Milliways Feb 29 '20 at 08:52ethtool eth0
will report Ethernet status and speed, although I don't know if this is installed by default. Many people who have trouble with Ethernet on Pi3B+ & Pi4 are not using proper 8 wire CAT5 cables, which are necessary for Gigabit Ethernet. You should be able to check on your router (from the Mac) if the Pi is connected. PS DO NOT post in Comments, edit your Question with detail. – Milliways Feb 29 '20 at 10:50ethtool
appears to be installed by default on Raspbian Buster. – Bob Brown Feb 29 '20 at 15:30sudo route -n
(note that it will work if you set theeth0
as DHCP Client mode and haven't configured a static IP address). If you find the gateway on the raspberry pi and can ping it but still no internet (8.8.8.8
can be pinged), it's a problem on your network instructor which can be MAC filtering, etc. – M. Rostami Feb 29 '20 at 18:27