What command initiated from a CVM, is used to view the pNICs on all AHV nodes?
What command initiated from a CVM, is used to view the pNICs on all AHV nodes?
The correct command to view the pNICs on all AHV nodes from a CVM includes using 'allssh' to run the command on all hosts in the cluster, combined with 'ovs-appctl bond/show' to display the bond details of the physical NICs. Hence, the right option is 'allssh ovs-appctl bond/show'.
Should be B: - run on all hosts in cluster: #allssh - show bond details: #ovs-appctl bond/show
D is correct. I logged into a CVM and confirmed: allssh runs commands against all CVMs, hostssh runs commands against hosts.
D is right. You can view pNiC only from hosts, not CVMs, so need to use hostssh instead allssh.
D is correct. I ran the command in a CVM and it executed successfully. With "allssh" it didn't work. D is correct.
Should be B