What is the name of the Cisco proprietary tool used to advertise VLANs between switches so that all switches are automatically configured with the same VLAN numbers?

A) STP
B) ISL
C) CDP
D) VTP


D
Explanation: D) The VLAN Trunking Protocol (VTP) is used to advertise and configure VLANs between Cisco switches; however, this functionality is not often used in large production networks in favor of better alternatives (for example, Layer 3 functionality between switches).

Computer Science & Information Technology

You might also like to view...

What is the value of ans, x, and y after the following statements are executed?

``` int ans = 0, x = 15, y = 25; if ( x >= y) { ans = x + 10; x -=y; } else { ans = y + 10; y += x; } ``` a. ans = 0, x = 15, y = 25 b. ans = 25, x = -10, y = 25 c. ans = 35, x = 15, y = 40 d. ans = 25, x = 15, y = 40

Computer Science & Information Technology

char[][] table = new char[10][5];How many rows are in the array seen in the accompanying figure?

A. 0 B. 5 C. 10 D. 15

Computer Science & Information Technology

What kind of TCP/IP network is appropriate for NetBIOS, and what you would need to include in this network?

What will be an ideal response?

Computer Science & Information Technology

The social web relies on _______, obtaining the collective opinion of a crowd of people rather than the individual opinion of an expert

a. chat b. crowdsourcing c. forums d. RSS

Computer Science & Information Technology