Why my Raspberry pi receive no packets using Ethernet?
Clash Royale CLAN TAG#URR8PPP
I use a Raspberry pi 3b. The OS is Raspbian jessie.
I don't understand why I can't connect with any RJ45 cable, and only wireless connection works. The cable rj45 is straight.
The step I did to resolve my problem :
- Remove wireless connection in case there is a conflict when
configuring the interfaces. Now there isn't anymore the wlan0
interface. - Disable firewall.
- Configure manually the eth0 interface in the etc/network/interfaces
to make the configuration automatically when booting the system. The
result of ifconfig is that I have a lot of packets Transmited by
eth0, but no packets received, but IP address is correct.
root@raspberrypi:/home/pi# ifconfig
:
eth0 Link encap:Ethernet HWaddr b8:27:eb:fa:42:e6
inet addr:(masked but correct IP) Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: (masked but correct) Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:4384 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:706089 (689.5 KiB)
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:4719 errors:0 dropped:0 overruns:0 frame:0
TX packets:4719 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:373537 (364.7 KiB) TX bytes:373537 (364.7 KiB)
I've tried using three different cables, but none worked.
EDIT: Informations about ethtool eth0
command
EDIT 2 : dmesg output
raspberry-pi raspbian ethernet interface packet
|
show 3 more comments
I use a Raspberry pi 3b. The OS is Raspbian jessie.
I don't understand why I can't connect with any RJ45 cable, and only wireless connection works. The cable rj45 is straight.
The step I did to resolve my problem :
- Remove wireless connection in case there is a conflict when
configuring the interfaces. Now there isn't anymore the wlan0
interface. - Disable firewall.
- Configure manually the eth0 interface in the etc/network/interfaces
to make the configuration automatically when booting the system. The
result of ifconfig is that I have a lot of packets Transmited by
eth0, but no packets received, but IP address is correct.
root@raspberrypi:/home/pi# ifconfig
:
eth0 Link encap:Ethernet HWaddr b8:27:eb:fa:42:e6
inet addr:(masked but correct IP) Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: (masked but correct) Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:4384 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:706089 (689.5 KiB)
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:4719 errors:0 dropped:0 overruns:0 frame:0
TX packets:4719 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:373537 (364.7 KiB) TX bytes:373537 (364.7 KiB)
I've tried using three different cables, but none worked.
EDIT: Informations about ethtool eth0
command
EDIT 2 : dmesg output
raspberry-pi raspbian ethernet interface packet
apt-get install ethtool
with the wireless interface, then edit the question, and add the output ofethtool eth0
please. Looking at thedmesg
output might help.
– Rui F Ribeiro
Jun 12 '17 at 10:19
Hello, I edited my message, but for the dmesg output is it correct that I have to execute : dmesg | ethtool eth0 ? I've never used it yet.
– Fernand Battisti
Jun 12 '17 at 10:43
1
Just rundmesg | less
– Rui F Ribeiro
Jun 12 '17 at 10:46
I would advise doing ssh to your raspberry and pasting the output of ethtool as text is it not complete. However from what is there it seems ok; where are you connecting it?
– Rui F Ribeiro
Jun 12 '17 at 10:48
1
What is the router brand and model?
– Rui F Ribeiro
Jun 12 '17 at 11:45
|
show 3 more comments
I use a Raspberry pi 3b. The OS is Raspbian jessie.
I don't understand why I can't connect with any RJ45 cable, and only wireless connection works. The cable rj45 is straight.
The step I did to resolve my problem :
- Remove wireless connection in case there is a conflict when
configuring the interfaces. Now there isn't anymore the wlan0
interface. - Disable firewall.
- Configure manually the eth0 interface in the etc/network/interfaces
to make the configuration automatically when booting the system. The
result of ifconfig is that I have a lot of packets Transmited by
eth0, but no packets received, but IP address is correct.
root@raspberrypi:/home/pi# ifconfig
:
eth0 Link encap:Ethernet HWaddr b8:27:eb:fa:42:e6
inet addr:(masked but correct IP) Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: (masked but correct) Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:4384 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:706089 (689.5 KiB)
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:4719 errors:0 dropped:0 overruns:0 frame:0
TX packets:4719 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:373537 (364.7 KiB) TX bytes:373537 (364.7 KiB)
I've tried using three different cables, but none worked.
EDIT: Informations about ethtool eth0
command
EDIT 2 : dmesg output
raspberry-pi raspbian ethernet interface packet
I use a Raspberry pi 3b. The OS is Raspbian jessie.
I don't understand why I can't connect with any RJ45 cable, and only wireless connection works. The cable rj45 is straight.
The step I did to resolve my problem :
- Remove wireless connection in case there is a conflict when
configuring the interfaces. Now there isn't anymore the wlan0
interface. - Disable firewall.
- Configure manually the eth0 interface in the etc/network/interfaces
to make the configuration automatically when booting the system. The
result of ifconfig is that I have a lot of packets Transmited by
eth0, but no packets received, but IP address is correct.
root@raspberrypi:/home/pi# ifconfig
:
eth0 Link encap:Ethernet HWaddr b8:27:eb:fa:42:e6
inet addr:(masked but correct IP) Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: (masked but correct) Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:4384 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:706089 (689.5 KiB)
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:4719 errors:0 dropped:0 overruns:0 frame:0
TX packets:4719 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
RX bytes:373537 (364.7 KiB) TX bytes:373537 (364.7 KiB)
I've tried using three different cables, but none worked.
EDIT: Informations about ethtool eth0
command
EDIT 2 : dmesg output
raspberry-pi raspbian ethernet interface packet
raspberry-pi raspbian ethernet interface packet
edited Dec 20 '18 at 7:10
Rui F Ribeiro
39k1479130
39k1479130
asked Jun 12 '17 at 10:11
Fernand Battisti
62
62
apt-get install ethtool
with the wireless interface, then edit the question, and add the output ofethtool eth0
please. Looking at thedmesg
output might help.
– Rui F Ribeiro
Jun 12 '17 at 10:19
Hello, I edited my message, but for the dmesg output is it correct that I have to execute : dmesg | ethtool eth0 ? I've never used it yet.
– Fernand Battisti
Jun 12 '17 at 10:43
1
Just rundmesg | less
– Rui F Ribeiro
Jun 12 '17 at 10:46
I would advise doing ssh to your raspberry and pasting the output of ethtool as text is it not complete. However from what is there it seems ok; where are you connecting it?
– Rui F Ribeiro
Jun 12 '17 at 10:48
1
What is the router brand and model?
– Rui F Ribeiro
Jun 12 '17 at 11:45
|
show 3 more comments
apt-get install ethtool
with the wireless interface, then edit the question, and add the output ofethtool eth0
please. Looking at thedmesg
output might help.
– Rui F Ribeiro
Jun 12 '17 at 10:19
Hello, I edited my message, but for the dmesg output is it correct that I have to execute : dmesg | ethtool eth0 ? I've never used it yet.
– Fernand Battisti
Jun 12 '17 at 10:43
1
Just rundmesg | less
– Rui F Ribeiro
Jun 12 '17 at 10:46
I would advise doing ssh to your raspberry and pasting the output of ethtool as text is it not complete. However from what is there it seems ok; where are you connecting it?
– Rui F Ribeiro
Jun 12 '17 at 10:48
1
What is the router brand and model?
– Rui F Ribeiro
Jun 12 '17 at 11:45
apt-get install ethtool
with the wireless interface, then edit the question, and add the output of ethtool eth0
please. Looking at the dmesg
output might help.– Rui F Ribeiro
Jun 12 '17 at 10:19
apt-get install ethtool
with the wireless interface, then edit the question, and add the output of ethtool eth0
please. Looking at the dmesg
output might help.– Rui F Ribeiro
Jun 12 '17 at 10:19
Hello, I edited my message, but for the dmesg output is it correct that I have to execute : dmesg | ethtool eth0 ? I've never used it yet.
– Fernand Battisti
Jun 12 '17 at 10:43
Hello, I edited my message, but for the dmesg output is it correct that I have to execute : dmesg | ethtool eth0 ? I've never used it yet.
– Fernand Battisti
Jun 12 '17 at 10:43
1
1
Just run
dmesg | less
– Rui F Ribeiro
Jun 12 '17 at 10:46
Just run
dmesg | less
– Rui F Ribeiro
Jun 12 '17 at 10:46
I would advise doing ssh to your raspberry and pasting the output of ethtool as text is it not complete. However from what is there it seems ok; where are you connecting it?
– Rui F Ribeiro
Jun 12 '17 at 10:48
I would advise doing ssh to your raspberry and pasting the output of ethtool as text is it not complete. However from what is there it seems ok; where are you connecting it?
– Rui F Ribeiro
Jun 12 '17 at 10:48
1
1
What is the router brand and model?
– Rui F Ribeiro
Jun 12 '17 at 11:45
What is the router brand and model?
– Rui F Ribeiro
Jun 12 '17 at 11:45
|
show 3 more comments
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f370630%2fwhy-my-raspberry-pi-receive-no-packets-using-ethernet%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f370630%2fwhy-my-raspberry-pi-receive-no-packets-using-ethernet%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
apt-get install ethtool
with the wireless interface, then edit the question, and add the output ofethtool eth0
please. Looking at thedmesg
output might help.– Rui F Ribeiro
Jun 12 '17 at 10:19
Hello, I edited my message, but for the dmesg output is it correct that I have to execute : dmesg | ethtool eth0 ? I've never used it yet.
– Fernand Battisti
Jun 12 '17 at 10:43
1
Just run
dmesg | less
– Rui F Ribeiro
Jun 12 '17 at 10:46
I would advise doing ssh to your raspberry and pasting the output of ethtool as text is it not complete. However from what is there it seems ok; where are you connecting it?
– Rui F Ribeiro
Jun 12 '17 at 10:48
1
What is the router brand and model?
– Rui F Ribeiro
Jun 12 '17 at 11:45