Results 1 to 9 of 9

Thread: Ethernet port suddenly stops flowing packets

  1. #1
    Join Date
    Apr 2024
    Beans
    5

    Ethernet port suddenly stops flowing packets

    This is a two week old OrangePi 3B board.

    I was working away when all of a sudden, network connectivity ceases. I figured I'd done something wrong so looked at everything but it's all correct.
    The link/carrier is up, the IP is manually configured, route is correct but no network access.

    I of course changed cables, connected to different switches, still no network access outside of the board.
    I rebooted, even re-installed a couple of different OS versions and nothing.
    The frustrating thing is that I can see what appears to be Ethernet traffic, the LEDs are flashing as if traffic is flowing but nothing is.
    I've tried manually setting and DHCP by the way.

    It's connected to a good power source with 5amps so it can use what ever it needs.
    No errors in the logs, dmesg looks normal, what's going on?

    I've only had the board for two weeks and never seen anything like this where everything is correctly configured but simply no package flow.

    Anyone have any thoughts on this? Are these boards reliable or not?
    Last edited by normlewis; 1 Week Ago at 03:22 PM.

  2. #2
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: Ethernet port suddenly stops flowing packets

    The link/carrier is up, the IP is manually configured, route is correct but no network access.
    Since this is your first post here, rather than making claims, please "prove it" with posted configurations and current settings. Hard to prove you swapped cables and ports, but I'll beleive that. Network configuration issues, especially manual, for people not used to doing it are common.

    When posting, show the commands used AND the output unless it is more than 20-50 text lines.

    Whenever posting here, please, please, please, use forum 'code tags' and text, so we can see what you see on the terminal with the correct columns.

    The netplan.yaml file contents would show the configuration. The netplan generate and netplan apply commands + output would be helpful too.

    Code:
    $ ip r
    $ ip a
    will show the results for the NIC. That's an example of the 'code tags', BTW. Columns will be maintained as pasted (assuming you use select/paste) to put all the text into a forum edit entry box.

    OT:
    As with nearly all hardware, blanket statements about any specific brand or model show just 1 person's experience, not necessarily the experience of 1M+ people who didn't have the same issue. For example, I won't buy any more Seagate storage devices, because of my history with the company. Yet, they are still in business and appear to be doing fine without my 1 HDD/year purchase. Seems completely crazy to me, but I don't expect the people who haven't had the same experience to have the same feelings about their products.

  3. #3
    Join Date
    Apr 2024
    Beans
    5

    Re: Ethernet port suddenly stops flowing packets

    First post here, not new to working with computers. Been working on them since the 80's.
    Been using Pi and embedded hardware for well over ten years.
    Normally, I would share the commands and the outputs but in this case, hard to do since there's no network access and I would have to manually re-write everything on the screen that is shown.

    No blanket statements and I have not dissed the manufacturer, nor did I simply post without trying anything but the key take away should be, I've tried everything I can think of, does anyone have any other thoughts because I think the Ethernet has failed at this point. Odd that I can see link activity when there is no network access.

    PS: To be safe, I also used arp to set an IP from the LAN side to the MAC of the board to see if I could ping it but it cannot be reached.
    Last edited by normlewis; 1 Week Ago at 04:39 PM.

  4. #4
    Join Date
    Aug 2016
    Location
    Wandering
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: Ethernet port suddenly stops flowing packets

    Seems to be a common problem for that board, maybe have a peek here::https://old.reddit.com/r/OrangePI/co...t_doesnt_work/

    The post by yoniyang shows promise.

    Good Luck
    With realization of one's own potential and self-confidence in one's ability, one can build a better world.
    Dalai Lama>>
    Code Tags | System-info | Forum Guide lines | Arch Linux, Debian Unstable, FreeBSD

  5. #5
    Join Date
    Apr 2024
    Beans
    5

    Re: Ethernet port suddenly stops flowing packets

    Thanks 1fallen I had not found that.
    Makes me a bit nervous as I cannot afford failures once they leave the shop.

  6. #6
    Join Date
    Aug 2016
    Location
    Wandering
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: Ethernet port suddenly stops flowing packets

    Quote Originally Posted by normlewis View Post
    Thanks 1fallen I had not found that.
    Makes me a bit nervous as I cannot afford failures once they leave the shop.
    I understand that fully, I wish I had that board to experiment with, but sadly I don't.

    Please keep us updated with any success and or failures.

    edit: Also good documentation found here as well: http://www.orangepi.org/orangepiwiki...hp/Orange_Pi_3
    Last edited by 1fallen; 1 Week Ago at 06:23 PM. Reason: Add Info
    With realization of one's own potential and self-confidence in one's ability, one can build a better world.
    Dalai Lama>>
    Code Tags | System-info | Forum Guide lines | Arch Linux, Debian Unstable, FreeBSD

  7. #7
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,708

    Re: Ethernet port suddenly stops flowing packets

    I would be inclined to use tcpdump to see if the board can see any incoming packets, e.g.: sudo tcpdump -i eth0 -ln
    tcpdump should also show packets leaving using arping in a different terminal even if it's deaf, e.g.: sudo arping -I etho 99.99.99.99

  8. #8
    Join Date
    Aug 2016
    Location
    Wandering
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: Ethernet port suddenly stops flowing packets

    I would also try a USB Ethernet device, not the desired method but.....

    I've talked with some other testers and they claim that ether port only works on kernels 5.4, and they did not have any nice words for that board.
    With realization of one's own potential and self-confidence in one's ability, one can build a better world.
    Dalai Lama>>
    Code Tags | System-info | Forum Guide lines | Arch Linux, Debian Unstable, FreeBSD

  9. #9
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: Ethernet port suddenly stops flowing packets

    Quote Originally Posted by normlewis View Post
    Normally, I would share the commands and the outputs but in this case, hard to do since there's no network access and I would have to manually re-write everything on the screen that is shown.
    I'd use file redirection to place the the results into a file, then use a USB flash drive to copy off those files. https://linuxhandbook.com/redirection-linux/ I'm a huge fan of the 'tee' tool. But you can feel free to do things another way, if you like.

    Code:
    ip a | tee /tmp/log.ip-stuff
    ip r |  tee -a  /tmp/log.ip-stuff
    cp  /tmp/log.ip-stuff /mnt/usb-flashdrive-location/
    This simple things are often what we miss. It is the human thing to do.

    Good luck.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •