Linux - Interface Link Status (up / down) aller Interfaces ermitteln
Hallo
es ist öfters nützlich gerade wenn man viele Interfaces hat, den Linkstatus der einzelnen Interfaces zu ermitteln.
# ifconfig -a | sed -n '/^[^ ]/p' | awk '{print "echo -n " $1 " ; ethtool " $1 " | grep detected;"}' | bash
Als Ausgabe solltet Ihr dann folgendes sehen:
eth1 Link detected: yes
eth2 Link detected: yes
eth3 Link detected: yes
eth4 Link detected: yes
eth5 Link detected: no
eth6 Link detected: yes
eth7 Link detected: yes
eth8 Link detected: yes
eth9 Link detected: no