Which command line interface command will check if the BIG-IP platform contains a packet velocity ASIC (PVA)?
Which command line interface command will check if the BIG-IP platform contains a packet velocity ASIC (PVA)?
To check if the BIG-IP platform contains a packet velocity ASIC (PVA), you need to view the hardware details and search for the PVA specifically. The tmsh command is used to manage and review system hardware, and 'grep -i pva' filters the output to specifically look for the PVA information, making 'tmsh show /sys hardware | grep -i pva' the most accurate command to perform this check.
C - Correct To determine whether your platform contains a PVA chip, use the tmsh show /sys hardware |grep -i pva command for BIG-IP 11.0.0 and later, or the bigpipe platform |grep -i pva command for versions of BIG-IP that start with 9 and 10. https://my.f5.com/manage/s/article/K6546
Answer is C - tried it out and it returned the PVA version number. All the others returned an error.
Grep l i not a valid command in F5 , so I believe Option B
if answer beginning from tmsh - it means that this is bash mode - and in bash you have grep - C is correct