parse show lldp remote-device all
[dell-switch] / find-port-for-mac
1 #!/bin/sh -e
2
3 # update with: ./sw-port-status.sh
4
5 test -z "$1" && echo "Usage: $0 d4:ca:6d:01:4c:f2" && exit 1
6
7 mac=$1
8
9 . ./shm-trunk.regex
10
11 grep -r -i $mac /dev/shm/snmp-mac-port/ | tee /dev/shm/mac.$mac | grep --file /dev/shm/trunk.regex -v | cut -d: -f2- | while read name vlan mac port ; do
12         # sw-rack2 - 2c:ea:7f:6f:0c:ec 27
13         echo -n "$name $vlan $mac $port "
14         grep " $port " /dev/shm/port-status/$name | cut -d' ' -f3- # add port status and description
15 done
16 echo "# mac $mac on "`cat /dev/shm/mac.$mac | cut -d: -f2- | cut -d' ' -f1 | sort -u | wc -l`" switches"