#No Network Activity Lights on Pi 5 with HAos

1 messages · Page 1 of 1 (latest)

stiff root
#

This is my 1st Home Assistant build, and I am learning a lot. However, I cannot figure out why the activity lights at the ethernet port stay illuminated and do not blink with activity. It's really bugging me.

  • Raspberry Pi 5 /8GB
  • running off M.2 SSD
  • Latest HAos

Does this have something to do with the firmware changes at installation? I cannot find anyone having issues similar to mine.


violet sand
#

What does ha network info say?

stiff root
#
/dev ha network info
docker:
  address: 172.30.32.0/23
  dns: 172.30.32.3
  gateway: 172.30.32.1
  interface: hassio
host_internet: true
interfaces:
- connected: false
  enabled: false
  interface: wlan0
  ipv4:
    address: []
    gateway: null
    method: disabled
    nameservers: []
    ready: false
  ipv6:
    address: []
    gateway: null
    method: disabled
    nameservers: []
    ready: false
  mac: 2C:CF:67:7D:E8:E9
  primary: false
  type: wireless
  vlan: null
  wifi: null
- connected: true
  enabled: true
  interface: end0
  ipv4:
    address:
    - 192.168.200.52/24
    gateway: 192.168.200.1
    method: auto
    nameservers:
    - 192.168.200.1
    - 1.1.1.1
    ready: true
  ipv6:
    address:
    - fe80::5938:e41c:60a6:a13f/64
    gateway: null
    method: auto
    nameservers: []
    ready: false
  mac: 2C:CF:67:7D:E8:E8
  primary: true
  type: ethernet
  vlan: null
  wifi: null
supervisor_internet: true
exotic valveBOT
#

To format your text as code, enter three backticks on the first line, press Enter for a new line, paste your code, press Enter again for another new line, and lastly three more backticks.
```yaml
example: here
```
Don't forget you can edit your post rather than repeatedly posting the same thing.

stiff root
#

I want to check the config.txt to see if eth_led0 or eth_led1 is set .

However, since I am running HAos off a M.2 SSD on a Pimroni controller board. I don't know where this file would be since there is no /boot mount.

violet sand
#

There is but it's not accessible from inside an addon. You need proper SSH access or use a keyboard and monitor.

#
# findmnt -T /mnt/boot/
TARGET    SOURCE    FSTYPE OPTIONS
/mnt/boot /dev/sda1 vfat   rw,relatime,sync,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
stiff root
#

Did you install findmnt via apk? I do not see it in bin.

violet sand
#

No. It's part of the OS and the addon also has it.

# command -v findmnt
/bin/findmnt

But like I said, you cannot run this directly in an addon. Please read the last two messages above again.

stiff root
#

Got it thx..
/mnt/boot # ls -l total 10 -rwxr-xr-x 1 root root 211 Mar 17 21:07 cmdline.txt -rwxr-xr-x 1 root root 1331 Mar 17 21:07 config.txt -rwxr-xr-x 1 root root 1384 Mar 17 21:24 rauc.db drwxr-xr-x 3 root root 2048 Feb 25 18:25 slot-A drwxr-xr-x 3 root root 2048 Mar 17 21:07 slot-B

stiff root
#

For some reason, the parameters for Eth LED control in config.txt are not being recognized during the boot.
eth_led0 --- Is the left Green LED
eth_led1 --- Is the right Amber LED

``
dtparam=eth_led0=9
dtparam=eth_led1=1

``
Pi4/5

                            0=Speed/Activity         1=Speed
                            2=Flash activity         3=FDX
                            4=Off                    5=On
                            6=Alt                    7=Speed/Flash
                            8=Link                   9=Activity
                            
                            0 = Speed/Activity: Indicates both the connection speed and activity on the Ethernet port.
                            1 = Speed: Displays the connection speed only.
                            2 = Flash Activity: Blinks the LED to indicate network activity.
                            3 = FDX: Shows whether the connection is in full-duplex mode.
                            4 = Off: Turns the LED off.
                            5 = On: Keeps the LED continuously on.
                            6 = Alt: Alternates between two states, possibly for diagnostic purposes.
                            7 = Speed/Flash: Combines the speed indication with activity flashing.
                            8 = Link: Indicates whether there is an active network link.
                            9 = Activity: Indicates network activity only (flashes during data transmission or reception).

Other configuration options are working after boot.

violet sand