Part 1 – How to list vSwitch “MAC Address table” on ESXi host?
Sometimes You need to list MAC addresses loged on host’s vSwitches to eliminate VM’s MAC address duplicates.
- Create a shell script:
- Copy and past the code listed below:
- Change the file’s permissions
- Run the script
vi mac_address_list.sh
#!/bin/sh
#vmrale
for VSWITCH in `vsish -e ls /net/portsets/ | cut -c 1-8`
do
echo $VSWITCH
for PORT in `vsish -e ls /net/portsets/$VSWITCH/ports | cut -c 1-8`
do
CLIENT_NAME=`vsish -e get /net/portsets/$VSWITCH/ports/$PORT/status | grep clientName | uniq`
ADDRESS=`vsish -e get /net/portsets/$VSWITCH/ports/$PORT/status | grep unicastAdd | uniq`
echo -e "\t$PORT\t$CLIENT_NAME\t$ADDRESS"
done
done
chmod 755 mac_address_list.sh
./mac_address_list.sh
Simple, but useful!
… but this is not the only one possible method
One thought on “Part 1 – How to list vSwitch “MAC Address table” on ESXi host?”
Great stuff. just a small fix to list all vswitches regardless of the length of their names.
#for VSWITCH in `vsish -e ls /net/portsets/ | cut -c 1-8`
for VSWITCH in `vsish -e ls /net/portsets/ | cut -d ‘/’ -f1`
Comments are closed.