Hello Saravananpn,
Besides the network map article, you can grep for both the virtual server name and the "offline" state on the TMSH.
here is the command, after entering the TMSH mode:
#show ltm virtual | grep "Virtual Server" "offline"
The output looks like the below:
Ltm::Virtual Server: test
Availability : offline
Ltm::Virtual Server: test2
Availability : offline
Ltm::Virtual Server: test3
Availability : offline
You can also add to the output any entry you would like, for example if you need to know the reason, you can run the below command and the out will be as follows:
#show ltm virtual | grep "Virtual Server" "offline" "Reason"
Output:
Ltm::Virtual Server: test
Availability : offline
Reason : The children pool member(s) are down
Ltm::Virtual Server: test2
Availability : offline
Reason : The children pool member(s) are down
Ltm::Virtual Server: test3
Availability : offline
Reason : The children pool member(s) are down
I hope this is what you are looking for.
Thanks,
Mohamed Salah