LAB 03 - Configuring Inter VLAN Trunking
LAB 03 - Configuring Inter VLAN Trunking
Addressing Table
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Part 2: Create VLANs and Assign Switch Ports
Part 3: Maintain VLAN Port Assignments and the VLAN Database
Part 4: Configure an 802.1Q Trunk between the Switches
Part 5: Delete the VLAN Database
Background / Scenario
Modern switches use virtual local-area networks (VLANs) to improve network performance by separating
large Layer 2 broadcast domains into smaller ones. VLANs can also be used as a security measure by
controlling which hosts can communicate. In general, VLANs make it easier to design a network to support
the goals of an organization.
VLAN trunks are used to span VLANs across multiple devices. Trunks allow the traffic from multiple VLANS to
travel over a single link, while keeping the VLAN identification and segmentation intact.
In this lab, you will create VLANs on both switches in the topology, assign VLANs to switch access ports,
verify that VLANs are working as expected, and then create a VLAN trunk between the two switches to allow
hosts in the same VLAN to communicate through the trunk, regardless of which switch the host is actually
attached to.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 29
Note: The switches used are Cisco Catalyst 2960s with Cisco IOS Release 15.0(2) (lanbasek9 image). Other
switches and Cisco IOS versions can be used. Depending on the model and Cisco IOS version, the
commands available and output produced might vary from what is shown in the labs.
Note: Ensure that the switches have been erased and have no startup configurations. If you are unsure
contact your instructor.
Required Resources
2 Switches (Cisco 2960 with Cisco IOS Release 15.0(2) lanbasek9 image or comparable)
3 PCs (Windows 7, Vista, or XP with terminal emulation program, such as Tera Term)
Console cables to configure the Cisco IOS devices via the console ports
Ethernet cables as shown in the topology
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 29
Step 4: Configure PC hosts.
Refer to the Addressing Table for PC host address information.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 29
Gi0/1, Gi0/2
10 Student active
20 Faculty active
99 Management active
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
10 enet 100010 1500 - - - - - 0 0
20 enet 100020 1500 - - - - - 0 0
99 enet 100099 1500 - - - - - 0 0
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0
Assign VLANs to the correct switch interfaces What is the default VLAN? ___________
What ports are assigned to the default VLAN?
____________________________________________________________________________________
Step 2: .
a. Assign VLANs to the interfaces on S1.
1) Assign PC-A to the Student VLAN.
S1(config)# interface f0/6
S1(config-if)# switchport mode access
S1(config-if)# switchport access vlan 10
2) Move the switch IP address VLAN 99.
S1(config)# interface vlan 1
S1(config-if)# no ip address
S1(config-if)# interface vlan 99
S1(config-if)# ip address 192.168.1.11 255.255.255.0
S1(config-if)# end
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 29
b. Issue the show vlan brief command and verify that the VLANs are assigned to the correct interfaces.
S1# show vlan brief
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 29
Is S1 able to ping S2? Why?
____________________________________________________________________________________
Note: Current switch technology no longer requires that the vlan command be issued to add a VLAN to
the database. By assigning an unknown VLAN to a port, the VLAN adds to the VLAN database.
b. Verify that the new VLAN is displayed in the VLAN table.
S1# show vlan brief
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 29
20 Faculty active Fa0/11, Fa0/21
30 VLAN0030 active Fa0/24
99 Management active
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 29
Part 4: Configure an 802.1Q Trunk Between the Switches
In Part 4, you will configure interface F0/1 to use the Dynamic Trunking Protocol (DTP) to allow it to negotiate
the trunk mode. After this has been accomplished and verified, you will disable DTP on interface F0/1 and
manually configure it as a trunk.
b. Issue the show vlan brief command on S1 and S2. Interface F0/1 is no longer assigned to VLAN 1.
Trunked interfaces are not listed in the VLAN table.
S1# show vlan brief
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 29
99 Management active
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
c. Issue the show interfaces trunk command to view trunked interfaces. Notice that the mode on S1 is set
to desirable, and the mode on S2 is set to auto.
S1# show interfaces trunk
Note: By default, all VLANs are allowed on a trunk. The switchport trunk command allows you to control
what VLANs have access to the trunk. For this lab, keep the default settings which allows all VLANs to
traverse F0/1.
d. Verify that VLAN traffic is traveling over trunk interface F0/1.
Can S1 ping S2? ___________
Can PC-A ping PC-B? ___________
Can PC-A ping PC-C? ___________
Can PC-B ping PC-C? ___________
Can PC-A ping S1? ___________
Can PC-B ping S2? ___________
Can PC-C ping S2? ___________
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 9 of 29
If you answered no to any of the above questions, explain below.
____________________________________________________________________________________
____________________________________________________________________________________
Why might you want to manually configure an interface to trunk mode instead of using DTP?
____________________________________________________________________________________
____________________________________________________________________________________
Directory of flash:/
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 10 of 29
32514048 bytes total (20858880 bytes free)
Note: If there is a vlan.dat file located in flash, then the VLAN database does not contain its default
settings.
Directory of flash:/
To initialize a switch back to its default settings, what other commands are needed?
____________________________________________________________________________________
____________________________________________________________________________________
Reflection
1. What is needed to allow hosts on VLAN 10 to communicate to hosts on VLAN 20?
_______________________________________________________________________________________
_______________________________________________________________________________________
2. What are some primary benefits that an organization can receive through effective use of VLANs?
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 11 of 29
Lab - Troubleshooting VLAN Configurations
Topology
Addressing Table
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Part 2: Troubleshoot VLAN 10
Part 3: Troubleshoot VLAN 20
Background / Scenario
VLANs provide logical segmentation within an internetwork and improve network performance by separating
large broadcast domains into smaller ones. By separating hosts into different networks, VLANs can be used
to control which hosts can communicate. In this lab, a school has decided to implement VLANs in order to
separate traffic from different end users. The school is using 802.1Q trunking to facilitate VLAN
communication between switches.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 12 of 29
The S1 and S2 switches have been configured with VLAN and trunking information. Several errors in the
configuration have resulted in connectivity issues. You have been asked to troubleshoot and correct the
configuration errors and document your work.
Note: The switches used with this lab are Cisco Catalyst 2960s with Cisco IOS Release 15.0(2) (lanbasek9
image). Other switches and Cisco IOS versions can be used. Depending on the model and Cisco IOS
version, the commands available and output produced might vary from what is shown in the labs.
Note: Make sure that the switches have been erased and have no startup configurations. If you are unsure,
contact your instructor.
Required Resources
2 Switches (Cisco 2960 with Cisco IOS Release 15.0(2) lanbasek9 image or comparable)
3 PCs (Windows 7, Vista, or XP with terminal emulation program, such as Tera Term)
Console cables to configure the Cisco IOS devices via the console ports
Ethernet cables as shown in the topology
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 13 of 29
switchport mode access
shutdown
interface range f0/7-12
switchport access vlan 10
interface range f0/13-18
switchport access vlan 2
interface range f0/19-24
switchport access vlan 30
end
Switch S2 Configuration:
hostname S2
vlan 10
name Students
vlan 20
name Faculty
vlan 30
name Guest
interface f0/1
switchport mode trunk
switchport trunk allowed vlan 1,10,2,30
interface range f0/2-24
switchport mode access
shutdown
interface range f0/13-18
switchport access vlan 20
interface range f0/19-24
switchport access vlan 30
shutdown
end
Troubleshoot VLAN 10
In Part 2, you must examine VLAN 10 on S1 and S2 to determine if it is configured correctly. You will
troubleshoot the scenario until connectivity is established.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 14 of 29
Examine the running configuration of the switch to find possible configuration errors.
Are there any problems with the current configuration?
____________________________________________________________________________________
Correct the errors found regarding F0/1 and VLAN 10 on S1. Record the commands used in the space below.
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
Verify the commands had the desired effects by issuing the appropriate show commands.
Can PC-A ping PC-B? ______________
Troubleshoot VLAN 20
In Part 3, you must examine VLAN 20 on S1 and S2 to determine if it is configured correctly. To verify
functionality, you will reassign PC-A into VLAN 20, and then troubleshoot the scenario until connectivity is
established.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 15 of 29
Are there any problems with the current configuration?
____________________________________________________________________________________
____________________________________________________________________________________
Correct the errors found regarding VLAN 20.
Can PC-A ping PC-C? ______________
Reflection
Why is a correctly configured trunk port critical in a multi-VLAN environment?
_______________________________________________________________________________________
_______________________________________________________________________________________
Why would a network administrator limit traffic for specific VLANs on a trunk port?
_______________________________________________________________________________________
_______________________________________________________________________________________
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 16 of 29
Lab – Configuring Per-Interface Inter-VLAN Routing
Topology
Addressing Table
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Part 2: Configure Switches with VLANs and Trunking
Part 3: Verify Trunking, VLANs, Routing, and Connectivity
Background / Scenario
Legacy inter-VLAN routing is seldom used in today’s networks; however, it is helpful to configure and
understand this type of routing before moving on to router-on-a-stick (trunk-based) inter-VLAN routing or
configuring Layer-3 switching. Also, you may encounter per-interface inter-VLAN routing in organizations with
very small networks. One of the benefits of legacy inter-VLAN routing is ease of configuration.
In this lab, you will set up one router with two switches attached via the router Gigabit Ethernet interfaces.
Two separate VLANs will be configured on the switches, and you will set up routing between the VLANs.
Note: This lab provides minimal assistance with the actual commands necessary to configure the router and
switches. The required switch VLAN configuration commands are provided in Appendix A of this lab. Test
your knowledge by trying to configure the devices without referring to the appendix.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 17 of 29
Note: The routers used with CCNA hands-on labs are Cisco 1941 Integrated Services Routers (ISRs) with
Cisco IOS, Release 15.2(4)M3 (universalk9 image). The switches used are Cisco Catalyst 2960s with Cisco
IOS, Release 15.0(2) (lanbasek9 image). Other routers, switches and Cisco IOS versions can be used.
Depending on the model and Cisco IOS version, the commands available and output produced might vary
from what is shown in the labs. Refer to the Router Interface Summary Table at the end of this lab for the
correct interface identifiers.
Note: Make sure that the routers and switches have been erased and have no startup configurations. If you
are unsure, contact your instructor.
Required Resources
1 Router (Cisco 1941 with Cisco IOS Release 15.2(4)M3 universal image or comparable)
2 Switches (Cisco 2960 with Cisco IOS Release 15.0(2) lanbasek9 image or comparable)
2 PCs (Windows 7, Vista, or XP with terminal emulation program, such as Tera Term)
Console cables to configure the Cisco IOS devices via the console ports
Ethernet cables as shown in the topology
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 18 of 29
b. Copy the following basic configuration and paste it to running-configuration on the switch.
no ip domain-lookup
service password-encryption
enable secret class
banner motd #
Unauthorized access is strictly prohibited. #
Line con 0
password cisco
login
logging synchronous
line vty 0 15
password cisco
login
exit
c. Configure the host name as shown in the topology.
d. Copy the running configuration to the startup configuration.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 19 of 29
Part 8: Verify Trunking, VLANs, Routing, and Connectivity
Step 1: Verify the R1 routing table.
a. On R1, issue the show ip route command. What routes are listed on R1?
____________________________________________________________________________________
____________________________________________________________________________________
b. On both S1 and S2, issue the show interface trunk command. Is the F0/1 port on both switches set to
trunk? ______
c. Issue a show vlan brief command on both S1 and S2. Verify that VLANs 10 and 20 are active and that
the proper ports on the switches are in the correct VLANs. Why is F0/1 not listed in any of the active
VLANs?
____________________________________________________________________________________
d. Ping from PC-A in VLAN 10 to PC-B in VLAN 20. If Inter-VLAN routing is functioning correctly, the pings
between the 192.168.10.0 network and the 192.168.20.0 should be successful.
Note: It may be necessary to disable the PC firewall to ping between PCs.
e. Verify connectivity between devices. You should be able to ping between all devices. Troubleshoot if you
are not successful.
Reflection
What is an advantage of using legacy inter-VLAN routing?
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 20 of 29
Router Interface Summary Table
Router Model Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
1900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
2801 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
(F0/0) (F0/1)
2811 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
2900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.
Switch S1
S1(config)# vlan 10
S1(config-vlan)# name Student
S1(config-vlan)# exit
S1(config)# vlan 20
S1(config-vlan)# name Faculty-Admin
S1(config-vlan)# exit
S1(config)# interface f0/1
S1(config-if)# switchport mode trunk
S1(config-if)# interface range f0/5 – 6
S1(config-if-range)# switchport mode access
S1(config-if-range)# switchport access vlan 10
S1(config-if-range)# interface vlan 10
S1(config-if)# ip address 192.168.10.11 255.255.255.0
S1(config-if)# no shut
S1(config-if)# exit
S1(config)# ip default-gateway 192.168.10.1
Switch S2
S2(config)# vlan 10
S2(config-vlan)# name Student
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 21 of 29
S2(config-vlan)# exit
S2(config)# vlan 20
S2(config-vlan)# name Faculty-Admin
S2(config-vlan)# exit
S2(config)# interface f0/1
S2(config-if)# switchport mode trunk
S2(config-if)# interface f0/11
S2(config-if)# switchport mode access
S2(config-if)# switchport access vlan 20
S2(config-if)# interface f0/18
S2(config-if)# switchport mode access
S2(config-if)# switchport access vlan 20
S2(config-if-range)# interface vlan 10
S2(config-if)#ip address 192.168.10.12 255.255.255.0
S2(config-if)# no shut
S2(config-if)# exit
S2(config)# ip default-gateway 192.168.10.1
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 22 of 29
Lab – Configuring 802.1Q Trunk-Based Inter-VLAN Routing
Topology
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 23 of 29
Addressing Table
Objectives
Part 1: Build the Network and Configure Basic Device Settings
Part 2: Configure Switches with VLANs and Trunking
Part 3: Configure Trunk-Based Inter-VLAN Routing
Background / Scenario
A second method of providing routing and connectivity for multiple VLANs is through the use of an 802.1Q
trunk between one or more switches and a single router interface. This method is also known as router-on-a-
stick inter-VLAN routing. In this method, the physical router interface is divided into multiple subinterfaces that
provide logical pathways to all VLANs connected.
In this lab, you will configure trunk-based inter-VLAN routing and verify connectivity to hosts on different
VLANs as well as with a loopback on the router.
Note: This lab provides minimal assistance with the actual commands necessary to configure trunk-based
inter-VLAN routing. However, the required configuration commands are provided in Appendix A of this lab.
Test your knowledge by trying to configure the devices without referring to the appendix.
Note: The routers used with CCNA hands-on labs are Cisco 1941 Integrated Services Routers (ISRs) with
Cisco IOS, Release 15.2(4)M3 (universalk9 image). The switches used are Cisco Catalyst 2960s with Cisco
IOS, Release 15.0(2) (lanbasek9 image). Other routers, switches and Cisco IOS versions can be used.
Depending on the model and Cisco IOS version, the commands available and output produced might vary
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 24 of 29
from what is shown in the labs. Refer to the Router Interface Summary Table at the end of the lab for the
correct interface identifiers.
Note: Make sure that the routers and switches have been erased and have no startup configurations. If you
are unsure, contact your instructor.
Required Resources
1 Router (Cisco 1941 with Cisco IOS, release 15.2(4)M3 universal image or comparable)
2 Switches (Cisco 2960 with Cisco IOS, release 15.0(2) lanbasek9 image or comparable)
2 PCs (Windows 7, Vista, or XP with terminal emulation program, such as Tera Term)
Console cables to configure the Cisco IOS devices via the console ports
Ethernet cables as shown in the topology
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 25 of 29
Step 5: Configure basic settings for the router.
a. Console into the router and enter global configuration mode.
b. Copy the following basic configuration and paste it to the running-configuration on the router.
no ip domain-lookup
hostname R1
service password-encryption
enable secret class
banner motd #
Unauthorized access is strictly prohibited. #
Line con 0
password cisco
login
logging synchronous
line vty 0 4
password cisco
login
c. Configure the Lo0 IP address as shown in the Address Table. Do not configure sub-interfaces at this time.
They will be configured in Part 3.
d. Copy the running configuration to the startup configuration.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 26 of 29
Step 2: Configure VLANs on Switch 2.
a. On S2, configure the VLANs and names listed in the Switch Port Assignment Specifications table.
b. On S2, verify that the VLAN names and numbers match those on S1. Write the command you used in the
space provided.
____________________________________________________________________________________
c. On S2, assign the access port for PC-B to VLAN 20.
d. On S2, configure the interface connected to S1 as a trunk.
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 27 of 29
From PC-A, is it possible to ping the default gateway for VLAN 10? _____
From PC-A, is it possible to ping PC-B? _____
From PC-A, is it possible to ping Lo0? _____
From PC-A, is it possible to ping S2? _____
If the answer is no to any of these questions, troubleshoot the configurations and correct any errors.
Reflection
What are the advantages of trunk-based or router-on-a-stick inter-VLAN routing?
_______________________________________________________________________________________
_______________________________________________________________________________________
Router Model Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
1900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
2801 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
(F0/0) (F0/1)
2811 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
2900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.
Switch S1
S1(config)# vlan 10
S1(config-vlan)# name Students
S1(config-vlan)# vlan 20
S1(config-vlan)# name Faculty
S1(config-vlan)# exit
S1(config)# interface f0/1
S1(config-if)# switchport mode trunk
S1(config-if)# interface f0/5
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 28 of 29
S1(config-if)# switchport mode trunk
S1(config-if)# interface f0/6
S1(config-if)# switchport mode access
S1(config-if)# switchport access vlan 10
Switch S2
S2(config)# vlan 10
S2(config-vlan)# name Students
S2(config-vlan)# vlan 20
S2(config-vlan)# name Faculty
S2(config)# interface f0/1
S2(config-if)# switchport mode trunk
S2(config-if)# interface f0/18
S2(config-if)# switchport mode access
S2(config-if)# switchport access vlan 20
Router R1
R1(config)# interface g0/1.1
R1(config-subif)# encapsulation dot1Q 1
R1(config-subif)# ip address 192.168.1.1 255.255.255.0
R1(config-subif)# interface g0/1.10
R1(config-subif)# encapsulation dot1Q 10
R1(config-subif)# ip address 192.168.10.1 255.255.255.0
R1(config-subif)# interface g0/1.20
R1(config-subif)# encapsulation dot1Q 20
R1(config-subif)# ip address 192.168.20.1 255.255.255.0
R1(config-subif)# exit
R1(config)# interface g0/1
R1(config-if)# no shutdown
© 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 29 of 29