08-Jul-2020 12:12
Hi Team ,
Can you please help me with the clis command which can provide the details of total number of VIP's , POOL's , Nodes configured on the LTM ..(Which should give similar details as Network Map in GUI gives (Local traffic summary))
Regards ,
CK
08-Jul-2020 18:32
Use Unix command to count vip, pool, rows.
Example: Go to bash mode
Virtual server count:
# tmsh list ltm virtual one-line | wc -l
Pool count
#tmsh list ltm pool one-line | wc -l
Nodes count
# tmsh list ltm node one-line | wc -l
Hope it will help you
09-Jul-2020
10:49
- last edited on
24-Mar-2022
01:11
by
li-migration
Hi
These commands are not working in bash .
In bash :
bash: tmsh list: command not found
In tmsh :
0 Syntax Error: "wc", grep is currently the only filter that is supported
09-Jul-2020 20:24
This error only return if you run Unix command in tmsh prompt.
In tmsh run this command to go in bash #
run util bash
Then execute wc command.