Which VTP mode does not allow the CLI configuration of VLANs?
A) Client
B) Off
C) Server
D) Transparent
A
Explanation: A) The four different VTP modes are Off, Transparent, Server, and Client. When a switch is in the VTP client mode, it is not possible to configure VLANs at the CLI. This configuration is allowed only on the server (for switches using VTP). Switches configured in the transparent or off modes are able to configure VLANs at the CLI, but the VLANs are only configured locally.
You might also like to view...
The program within Windows 10 that displays the contents of locations, folders, and files on your computer, and which also enables you to perform tasks related to your files and folders such as copying, moving, and renaming is:
a. Snipping Tool b. File Explorer c. Internet Explorer
What is the value of sum after the following code executes?
int sum = 0; int count = 0; while (count < 4) { sum += count / 2; count += 1; }