Solved

Refer to the Exhibit

Question 183

Multiple Choice

  Refer to the exhibit. Which command is run from the Guest Shell to set the description on the first five interfaces of the Cisco Nexus switch? A)  [guestshell@guestshell ~]$ for x in {1..5}; dohost  conf t ; interface eth1/$x ; description Server$x ; B)  [guestshell@guestshell ~]$ for x in {1..5}; do dohost  conf t ; interface eth1/$x ; description Server$x ; done C)  [guestshell@guestshell ~]$ for x in (1..5) ; do dohost  conf t ;  interface eth1/$x  ;  description Server$x ; done D)  [guestshell@guestshell ~]$ for x in (1..5) ; dohost  conf t ; interface eth1/$x ; description Server$x ; Refer to the exhibit. Which command is run from the Guest Shell to set the description on the first five interfaces of the Cisco Nexus switch?


A) [guestshell@guestshell ~]$ for x in {1..5}; dohost "conf t ; interface eth1/$x ; description Server$x";
B) [guestshell@guestshell ~]$ for x in {1..5}; do dohost "conf t ; interface eth1/$x ; description Server$x"; done
C) [guestshell@guestshell ~]$ for x in (1..5) ; do dohost "conf t"; "interface eth1/$x" ; "description Server$x"; done
D) [guestshell@guestshell ~]$ for x in (1..5) ; dohost "conf t ; interface eth1/$x ; description Server$x";

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions