April 20, 201610 yr Partition: tmsh -c "cd /;list sys folder" SNAT Pool: tmsh show /ltm snatpool VLAN: tmsh show net arp Show VLAN ARP Traffic: tcpdump -nni VLAN235 -v "arp"
August 11, 20178 yr Author My goal was to collect all the Virtual Servers for our F5 so here are the commands I ran First get a list of all partitions on the box tmsh -c "cd /;list sys folder" | grep folder sys folder / { sys folder Citrix { sys folder Common { sys folder DNS { sys folder Development { sys folder Disaster.Recovery { sys folder Integration { sys folder Messaging { Now I need to grab the VIPs for each Partition so I run the following command for each partition tmsh list ltm virtual /Common/* | egrep '^ltm|destination' > /var/tmp/vips-Common-20170811.txt If you look inside the file you have the Virtual Server name and the IP Address assigned so it would like something like the following ltm virtual /Integration/vip.se.api-mod.thezah.com.http { destination /Integration/192.168.89.212:80 ltm virtual /Integration/vip.se.api-mod.uwcomaha.com.https { destination /Integration/192.168.89.212:443 Hope this helps
Create an account or sign in to comment