Skip to content

Instantly share code, notes, and snippets.

@AnthonyWC
Created March 3, 2016 19:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save AnthonyWC/267f9b2e4edc1903baee to your computer and use it in GitHub Desktop.
Save AnthonyWC/267f9b2e4edc1903baee to your computer and use it in GitHub Desktop.
Enable vSwitch LLDP for all VMNIC interfaces
VSISH_VSWITCH_PATH=/net/portsets
for vSwitch in $(vsish -e ls ${VSISH_VSWITCH_PATH});
do
VSWITCH=$(echo ${vSwitch} | sed 's/\///g')
for port in $(vsish -e ls ${VSISH_VSWITCH_PATH}/${vSwitch}ports);
do
PORT=$(echo ${port} | sed 's/\///g')
PORTINFO=$(vsish -e get ${VSISH_VSWITCH_PATH}/${vSwitch}ports/${port}status | sed 's/^[ \t]*//;s/[ \t]*$//');
CLIENT=$(echo ${PORTINFO} | sed 's/ /\n/g' | grep "clientName:" | awk -F ":" '{print $2}')
MACADDRESS=$(echo ${PORTINFO} | sed 's/ /\n/g' | grep "unicastAddr:" | uniq | sed 's/unicastAddr://;s/\(.*\)./\1/')
vmnics=$(echo -e "${PORT}\t${CLIENT}" | grep vmnic | awk '{ print $1 }')
for i in $vmnics;
do
vsish -e typels /net/portsets/vSwitch0/ports/$i/lldp/enable
vsish -e set /net/portsets/vSwitch0/ports/$i/lldp/enable 1
done
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment