What are some of the different reasons to use VLANs?

What will be an ideal response?


ANSWER: Reasons for using VLANs include:
* You wish to isolate connections with heavy or unpredictable traffic patterns, such as when separating heavy VoIP traffic from other network activities.
* You want to identify groups of devices whose data should be given priority handling, such as executive client devices or an ICS (industrial control system) that manages a refrigeration system or a gas pipeline.
* You want to contain groups of devices that rely on legacy protocols incompatible with the majority of the network's traffic, such as a legacy SCADA (supervisory control and data acquisition) system monitoring an oil refinery.
* You wish to separate groups of users who need special or limited security or network functions, such as when setting up a guest network.
* You are configuring temporary networks, such as when making specific network resources available to a short-term project team.
* You intend to reduce the cost of networking equipment, such as when upgrading a network design to include additional departments or new types of network traffic.

Computer Science & Information Technology

You might also like to view...

Which method reverses the element's direction on the path when it reaches the end?

a) Play b) Repeat c) Bounce d) Shape

Computer Science & Information Technology

The first argument passed to the MessageBox.Show method is .

a) the text displayed in the dialog’s title bar b) a constant representing the Buttons displayed in the dialog c) the text displayed inside the dialog d) a constant representing the icon that appears in the dialog

Computer Science & Information Technology

A hypervisor, also referred to as a virtual machine manager, is the entity responsible for managingvirtual machines (VMs)

Indicate whether the statement is true or false

Computer Science & Information Technology

Given the following program:

public class Test { public static void main(String[] args) { for (int i = 0; i < args.length; i++) { System.out.print(args[i] + " "); } } } What is the output, if you run the program using java Test 1 2 3 a. 3 b. 1 c. 1 2 3 d. 1 2

Computer Science & Information Technology