Home > Articles > Cisco > CCNA Routing and Switching

VLAN Configuration Fundamentals and Commands

After becoming familiar with basic VLAN concepts, you need to learn how to configure your organization's networks and devices. Sean Wilkins, co-author of CCNA Routing and Switching 200-120 Network Simulator, discusses important concepts and commands you will use in setting up networks and getting devices to talk to each other.
Like this article? We recommend

I hope you have read my previous article on virtual LAN (VLAN) concepts, "Virtual vs. Physical LANs: Device Functionalities," and clearly understand what VLANs do and why they are used. This article picks up at that point, discussing the methods of configuring VLANs on Cisco (IOS) switches.

The first section of this article focuses on the commands used to configure VLANs and their associated parameters. The second section discusses a scenario in which VLANs are used, detailing the configuration commands used to meet the scenario requirements.

A Brief History Lesson: VTP's Effects on VLAN Configuration

Before we get into the commands themselves, let's examine how VLANs have been implemented on Cisco switches historically. Since the lat 1990s, Cisco switches have supported a proprietary protocol that is intended to help engineers configure the same VLANs across multiple switches: the Virtual Trunking Protocol (VTP). For this article, you will not need to know the details of how VTP works, but we will look at how VTP affects how VLANs can be configured.

Cisco's original Catalyst switches supported a single trunking protocol: the Cisco Inter-Switch Link (ISL). Because ISL supported only VLANs from 1–1005, early versions of VTP also supported only those VLANs. This means that when using VTP version 1 or 2 (the default), the only supported VLANs would be from this standard range. This range was further limited by the fact that VLANs 1002–1005 were reserved, leaving only VLANs 1–1001 for user allocations.

The IEEE 802.1Q standard caused a lot of changes. One change related to this conversation is that the standard provided a trunking mechanism that supported up to 4,094 VLANs (minus the reserved ones). This welcome improvement provided additional flexibility to network engineers. However, VTP still didn't support the VLANs from this extended range until version 3, which wasn't released until 2009. This delay gave engineers a considerable amount of time to find—and learn to prefer—VLAN assignment (using the extended range) without using VTP.

How does this history affect how you configure VLANs? While all current Cisco switches support IEEE 802.1Q (some only support IEEE 802.1Q), they still ship with VTP server mode enabled, which means that they will support only the initial standard range of VLANs out of the box. To gain access to the extended range of VLANs, you must first configure VTP version 3, place the switch into VTP transparent mode, or disable VTP completely.

VLAN Configuration Commands

Table 1 lists the base commands used to create a VLAN on a switch.

Table 1

Adding a VLAN Directly and Entering into VLAN Configuration Mode

Step

Actions

Commands

1

Enter global configuration mode.

switch#configure terminal

2

Enter VLAN configuration mode and/or create a VLAN.

switch(config)#vlan vlan-id

3

Configure a name for the VLAN.

switch(config-vlan)#name name

Table 2 shows another method of creating a VLAN: assigning an interface into a VLAN.

Table 2

Assigning the VLAN to a Switchport (and Possibly Creating a New VLAN)

Step

Actions

Commands

1

Enter global configuration mode.

switch#configure terminal

2

Enter interface configuration mode.

switch(config)#interface interface

3

Configure the interface into a specific VLAN. (If the VLAN doesn't exist, it will be created.)

switch(config-if)#switchport access vlan vlan-id

On the flipside, use the commands shown in Table 3 to delete a VLAN.

Table 3

Deleting a VLAN

Step

Actions

Commands

1

Enter global configuration mode.

switch#configure terminal

2

Delete a configured VLAN.

If an interface is configured into the VLAN being deleted, it will become inactive and will not be displayed in the output of the show vlan command.

switch(config)#no vlan vlan-id

To verify VLAN assignment, use the command shown in Table 4.

Table 4

Verifying Existing VLANs

Step

Action

Command

1

Display the current VLANs and their assignments.

switch#show vlan [brief]

Because VTP is configured into server mode by default on most switches (as of this writing), the creation of extended VLANs will fail using either of the methods shown in Tables 1 and 2. Keep in mind that this failure will not occur until you leave VLAN configuration mode, so the command itself will be accepted.

To fix this problem, either the VTP version must be changed to 3, or the VTP mode must be changed to transparent or off. VTP version differences are a bit outside the scope of this article. Table 5 shows only the command to alter the VTP mode.

Table 5

Altering VTP Mode

Step

Actions

Commands

1

Enter global configuration mode.

switch#configure terminal

2

Configure the VTP mode.

switch(config)#vtp mode {server | client | transparent | off}

Scenario: The University School

Suppose you work for a school at a university, and the school is in the process of moving to a different building. In the new building, administrative operations and academic labs will be located on the same floor. In the interest of saving money and time, it has been decided that all of the school's devices will be connected via a single network switch. Since security of the administrative devices is important, the administrative network must be physically or virtually separated from the academic network.

The administrative network devices will be assigned into VLAN 100, and all academic network devices will be assigned into VLAN 200. On the switch, all administrative devices will be connected to switchports Fast Ethernet 0/1–0/12, and all academic devices will be connected to switchports Fast Ethernet 0/13–0/24.

To set up this design, each interface must be configured into its respective VLAN. For purposes of this scenario, we will use the interface range command to assign switchports, as shown in Table 6.

Table 6

VLAN Configuration

Step

Actions

Commands

1

Enter global configuration mode.

switch#configure terminal

2

Create VLAN 100.

switch(config)#vlan 100

3

Create VLAN 200.

Notice that the configuration mode changed to VLAN configuration mode (config-vlan), but this command is still configured as if the user is in global configuration mode.

switch(config-vlan)#vlan 200

4

Move into interface configuration mode for switchports Fast Ethernet 0/1–0/12.

switch(config-vlan)#interface range fastethernet0/1-12

5

Configure the switchports into VLAN 100.

switch(config-if)#switchport access vlan 100

6

Move into interface configuration mode for the switchports Fast Ethernet 0/13–0/24.

switch(config-if)#interface range fastethernet0/13-24

7

Configure the switchports into VLAN 200.

switch(config-if)#switchport access vlan 200

Summary

Once you understand the essentials, configuring VLANs is not all that complex. Where you can be blindsided is with the caveats of a specific switch mode. Make sure to do your homework on the switch mode before attempting configuration. It is best to know early what you have to configure, instead of finding out when the configuration is actually happening and scheduled to function.

This article covers VLAN configuration basics, but we have addressed only one small piece of a typical VLAN configuration. Different sections of a department typically want to communicate outside their own little part of the world. For that capability, you will need to know about the configuration of a router on a stick (ROAS), multilayer switching, and trunking (IEEE 802.1Q). We will cover those details in later articles.

vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |