5.1.2 Lab - Implement VTP - ILM
5.1.2 Lab - Implement VTP - ILM
Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only.
Topology
Objectives
Part 1: Build the Network, Configure Basic Device Settings and Interface Addressing
Part 2: Implement and Observe a VTPv2 Domain
Part 3: Implement and Observe a VTPv3 Domain
Background / Scenario
VLAN Trunking Protocol (VTP) is a technology that manages the addition, deletion, and renaming of VLANs
on the entire network from a single switch. Although not commonly used in modern networks that support
programmability, VTP can be a useful tool as long as it is carefully managed.
A VTP domain, also called a VLAN management domain, consists of trunked switches that are under the
same administrative control sharing the same VTP domain name. A switch can be in only one VTP domain,
and VLAN database contents in the domain are globally synchronized. VLAN information is not propagated
until a domain name is specified and trunks are set up between the devices.
There are three versions of VTP available; version 1 is the default. By default, versions 1 and 2 can support
only normal-range VLANs. Version 3 can support normal and extended-range VLANs, as well as the
synchronization of other databases, like MST. Support for VTP Version 3 on the Catalyst platform was added
in IOS version 12.2(52)SE. Older IOS versions do not generally support VTP Version 3.
Switches operate in one of four VTP modes. The default VTP mode is server mode.
VTP Server You can create, modify, and delete VLANs, as well as specify other configuration
parameters, such as VTP version and VTP pruning, for the entire VTP domain. VTP
servers advertise their VLAN configuration to other switches in the same VTP domain and
synchronize their VLAN configuration with other switches based on advertisements
received over trunk links. VTP server is the default mode.
In VTP Server mode, VLAN configurations are only stored in the flash:vlan.dat file. While
VLANs are manipulated in the configuration mode, the configuration commands do not
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 1 of 26 www.netacad.com
Lab - Implement VTP
VTP Transparent VTP transparent switches do not participate in VTP. A VTP transparent switch does not
advertise, nor synchronize, its VLAN database based on received advertisements.
However, transparent switches will forward received VTP messages under two
circumstances; either the VTP domain name of the transparent switch is empty (not yet
configured), or it matches the domain name in the received VTP messages.
In VTP Transparent mode, normal range VLAN configurations are stored both in
flash:vlan.dat file and they are also present in the running-config. If extended range VLANs
are used, they are stored in the flash:vlan.dat only if the switch is running VTP version 3. In
Version 1 or 2, extended VLANs are stored in the running-config.
VTP Off A switch in VTP Off mode functions in the same manner as a VTP transparent switch,
except that it does not forward VTP advertisements on trunks. VTP off is only available on
switches that support VTP version 3, although it is not necessary to run VTP version 3 on
the switch to be able to put it into VTP Off mode.
In VTP Off mode, normal range VLAN configurations are stored both in flash:vlan.dat file
and are also present in the running-config. Similar to Transparent mode, when using VTP
version 3 both normal and extended range VLANs are stored in the flash:vlan.dat file.
In this lab you will set up and observe the operation of VTP version 2 and VTP version 3.
Note: This lab is an exercise in deploying and verifying VTP and does not reflect networking best practices.
Note: The switches used with CCNP hands-on labs are Cisco 3650 with Cisco IOS XE release 16.9.4
(universalk9 image) and Cisco 2960+ with IOS release 15.2 (lanbase image). Other routers and Cisco IOS
versions can be used. Depending on the model and Cisco IOS version, the commands available and the
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.
Instructor Note: Refer to the Instructor Lab Manual for the procedures to initialize and reload devices.
Required Resources
2 Switches (Cisco 3650 with Cisco IOS XE release 16.9.4 universal image or comparable)
1 Switch (Cisco 2960+ with Cisco IOS release 15.2 lanbase image or comparable)
1 PC (Windows with a 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
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 2 of 26 www.netacad.com
Lab - Implement VTP
Instructions
Part 1: Build the Network, Configure Basic Device Settings and Interface
Addressing
In Part 1, you will set up the network topology and configure basic settings and interface addressing on
routers.
Switch D1
hostname D1
banner motd # D1, Implement VTP #
spanning-tree mode rapid-pvst
line con 0
exec-timeout 0 0
logging synchronous
exit
interface range g1/0/1-24, g1/1/1-4, g0/0
shutdown
exit
interface range g1/0/1, g1/0/5-6
switchport mode trunk
no shutdown
exit
Switch D2
hostname D2
banner motd # D2, Implement VTP #
spanning-tree mode rapid-pvst
line con 0
exec-timeout 0 0
logging synchronous
exit
interface range g1/0/1-24, g1/1/1-4, g0/0
shutdown
exit
interface range g1/0/1, g1/0/5-6
switchport mode trunk
no shutdown
exit
Switch A1
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 3 of 26 www.netacad.com
Lab - Implement VTP
hostname A1
banner motd # A1, Implement VTP #
spanning-tree mode rapid-pvst
line con 0
exec-timeout 0 0
logging synchronous
exit
interface range f0/1-24, g0/1-2
shutdown
exit
interface range f0/1-4
switchport mode trunk
no shutdown
exit
b. Set the clock on each switch to UTC time.
c. Save the running configuration to startup-config.
Close configuration window
Feature VLAN:
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 5
Configuration Revision : 0
MD5 digest : 0x57 0xCD 0x40 0x65 0x63 0x59 0x47 0xBD
0x56 0x9D 0x4A 0x3E 0xA5 0x69 0x35 0xBC
Because no VLAN configurations were made, all settings are the defaults. This switch is capable of running
versions 1, 2, or 3 of VTP, and runs version 1 by default. All switches in the VTP domain must run the same
VTP version. The number of existing VLANs is the five built-in VLANs. Different switches in the Catalyst
family support different numbers of local VLANs. Lastly, note that the configuration revision is 0.
Multiple switches in the VTP domain can be in VTP Server mode. In VTPv1 and VTPv2, any of these server
switches can be used to centrally manage VLANs for all other switches in the VTP domain.
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 4 of 26 www.netacad.com
Lab - Implement VTP
The configuration revision number is compared amongst VTPv1 or VTPv2 switches. The VLAN database
from the switch with the highest revision number is adopted by all the other switches in the VLAN
management domain. Every time VLAN information is modified and saved in the VLAN database (vlan.dat),
the revision number is increased by one when the user exits from VLAN Configuration mode.
VTP messages only pass over trunks between switches. They are not sent out of access ports.
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 5 of 26 www.netacad.com
Lab - Implement VTP
Feature VLAN:
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 6
Configuration Revision : 2
MD5 digest : 0x36 0x8B 0x44 0xC9 0x2A 0x7E 0x1E 0x36
0x88 0x18 0x43 0xB2 0xF5 0xEC 0x2F 0x12 #
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 6 of 26 www.netacad.com
Lab - Implement VTP
g. To demonstrate the main drawback to VTP, go to A1 and remove VLAN 2 with the no vlan 2 command.
The command should complete successfully.
A1# config t
Enter configuration commands, one per line. End with CNTL/Z.
A1(config)# no vlan 2
A1(config)# end
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 7 of 26 www.netacad.com
Lab - Implement VTP
Feature VLAN:
--------------
VTP Operating Mode : Server
Maximum VLANs supported locally : 1005
Number of existing VLANs : 5
Configuration Revision : 3
MD5 digest : 0xBE 0xF6 0xBD 0x14 0xED 0xA1 0x19 0x6A
0x3D 0x1C 0x22 0xB5 0x5E 0xC5 0x2C 0xE3
i. On D1, recreate VLAN 2 with the name SecondVLAN2. Verify that the VTP configuration revision number
increases, the VLAN appears in the database, and that g1/0/23 is listed in the show vlan brief output
once again.
D1# config t
Enter configuration commands, one per line. End with CNTL/Z.
D1(config)# vlan 2
D1(config-vlan)# name SecondVLAN2
D1(config-vlan)# end
j. On A1, change the VTP mode to client, and then attempt to create VLAN 3. It will not be allowed. VTP
Client mode prevents new VLANs from being created, modified, or deleted. But a VTP Client with a higher
revision number will still overwrite a VTP Server switch database. The typical scenario is a switch using
the same VTP information (domain, password) in a test network has a higher revision number and is
placed on the production network without being cleared.
A1# config t
Enter configuration commands, one per line. End with CNTL/Z.
A1(config)# vtp mode client
Setting device to VTP Client mode for VLANS.
A1(config)# vlan 3
VTP VLAN configuration not allowed when device is in CLIENT mode.
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 8 of 26 www.netacad.com
Lab - Implement VTP
k. On D2, change the VTP mode to transparent, then attempt to create VLAN 3 with the name ThirdVLAN.
You will succeed. Verify that it is in the output of show vlan brief. Note the VTP configuration revision
number.
D2# config t
Enter configuration commands, one per line. End with CNTL/Z.
D2(config)# vtp mode transparent
Setting device to VTP Transparent mode for VLANS.
D2(config)# vlan 3
D2(config-vlan)# name ThirdVLAN
D2(config-vlan)# end
l. On D2, create VLAN 1111 with the name QuadOne. You will succeed. Verify that it is in the output of
show vlan brief. Check to see what the VTP configuration revision number is.
D2# config t
Enter configuration commands, one per line. End with CNTL/Z.
D2(config)# vlan 1111
D2(config-vlan)# name QuadOne
D2(config-vlan)# end
m. Check D1 to see if VLAN 3 or VLAN 1111 has been learned. They will not have been. VTP Transparent
switches keep to themselves in the VTP domain, and do not learn or propagate VLAN information from
other switches.
n. On D1, shutdown interfaces g1/0/5 and g1/0/6, then create VLAN 4 with the name FourthVLAN. Verify
that it is in the database, and that the VTP configuration revision number has incremented.
D1# show vtp status | i Revision
Configuration Revision : 4
D1# config t
Enter configuration commands, one per line. End with CNTL/Z.
D1(config)# interface range g1/0/5-6
D1(config-if-range)# shutdown
D1(config-if-range)# exit
D1(config)#
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 9 of 26 www.netacad.com
Lab - Implement VTP
D1(config)# vlan 4
D1(config-vlan)# name FourthVLAN
D1(config-vlan)# end
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 10 of 26 www.netacad.com
Lab - Implement VTP
VTP version 3 can propagate information about extended range VLANs; These are VLANs numbered
between 1006 and 4094. To support these VLANs with VTP version 1 or 2, all switches have to be in
Transparent or Off mode and the VLANs must be configured manually on a switch-by-switch basis.
VTP version 3 only supports pruning for normal-range VLANs.
VTP version 3 supports propagating Private VLAN information. As with extended-range VLANs, the lack
of PVLAN support in VTP version 2 required that all switches be in Transparent mode and manually
configured at each switch.
VTP version 3 added support for opaque databases. In other words, VTP version 3 can transport more
than just the VLAN database between switches. The only option at this time is to share the Multiple
Spanning Tree (MSTP) database, but room was left for expansion.
Regardless of the VTP operating mode, a VTP domain must first be set before configuring VTP version 3.
VTP version 3 is backwards compatible with VTP version 2 for normal range VLANs only; at the boundary of
the two protocols, a VTP version 3 switch will send out both version 3 and version 2-compatible messages.
Version 2 messages received by a version 3 switch are discarded.
D1# config t
Enter configuration commands, one per line. End with CNTL/Z.
D1(config)# vtp version 3
D1(config)#
Jan 6 22:03:24.620: %SW_VLAN-6-OLD_CONFIG_FILE_READ: Old version 2 VLAN configuration
file detected and read OK. Version 3
files will be written in the future.
D1(config)# end
D1# show vtp status
VTP Version capable : 1 to 3
VTP version running : 3
VTP Domain Name : CCNPv8
VTP Pruning Mode : Disabled
VTP Traps Generation : Disabled
Device ID : d8b1.9028.af80
Feature VLAN:
--------------
VTP Operating Mode : Server
Number of existing VLANs : 7
Number of existing extended VLANs : 1
Maximum VLANs supported locally : 4096
Configuration Revision : 0
Primary ID : 0000.0000.0000
Primary Description :
MD5 digest :
Feature MST:
--------------
VTP Operating Mode : Transparent
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 11 of 26 www.netacad.com
Lab - Implement VTP
b. On D1, try to create VLAN 6. You will not be allowed to do so. If you examine the output of show vtp
status, you will see that the identification of the primary server is blank (all zeroes).
D1# show vtp status | i Primary
Primary ID : 0000.0000.0000
Primary Description :
c. On D1, issue the privileged EXEC command vtp primary vlan. This makes D1 the primary for the VLAN
database only. There is also a primary for MST, but that is not the focus of this lab (if you issue the vtp
primary command with no additional parameters, VLAN is assumed.) Verify that the base mac-address
for D1 is listed as the primary server id.
D1# vtp primary vlan
This system is becoming primary server for feature vlan
No conflicting VTP3 devices found.
Do you want to continue? [confirm]
D1#
Jan 6 22:06:46.299: %SW_VLAN-4-VTP_PRIMARY_SERVER_CHG: d8b1.9028.af80 has become the
primary server for the VLAN VTP feature
Now we see that VTPv3 is working in that it allows for extended range VLANs while in Server mode, it is
sending VTPv2-compatible messages at the domain boundary, and that D2 is still passing those
messages along.
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 12 of 26 www.netacad.com
Lab - Implement VTP
d. If you did not notice in the earlier output, verify the Configuration Revision number on D1, and then the
number on A1. In this case, to cause a change at A1, D1 will have to have five revisions made to
increment the revision number past what A1 currently has.
D1(config)# do show vtp status | i Revision
Configuration Revision : 1
Note: If the revision number does not increase past the number required, rename a VLAN and exit out of
VLAN Configuration mode to increment the revision number by one. Repeat this step as needed.
g. Check A1 to see if it learned the new VLANs and verify that its configuration revision number matches
that of D1. We will not check D2 because it is in Transparent mode.
A1# show vtp status | i Revision
Configuration Revision : 7
h. On D1, create VLAN 2600 with the name HackerPub. Verify that it exists in the VLAN database and verify
the configuration revision number.
D1# config t
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 13 of 26 www.netacad.com
Lab - Implement VTP
i. See if A1 learned VLAN 2600. You will see that it did not, because VTP version 2 does not support
extended range VLANs.
A1# show vtp status | i Revision
Configuration Revision : 8
A1# config t
Enter configuration commands, one per line. End with CNTL/Z.
A1(config)# vtp version 3
A1(config)# end
Jan 6 22:12:50.784: %SW_VLAN-6-OLD_CONFIG_FILE_READ: Old version 2 VLAN
configuration file detected and read OK. Version 3
files will be written in the future.
b. Check the version and revision number on A1 and see that they have been updated to match D1. Verify
that VLAN 2600 now exists in the VLAN database on A1.
A1# show vtp status | i version|Domain|Revision|Primary|Mode|Feature
VTP version running : 3
VTP Domain Name : CCNPv8
VTP Pruning Mode : Disabled
Feature VLAN:
VTP Operating Mode : Client
Configuration Revision : 8
Primary ID : d8b1.9028.af80
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 14 of 26 www.netacad.com
Lab - Implement VTP
Primary Description : D1
Feature MST:
VTP Operating Mode : Transparent
Feature UNKNOWN:
VTP Operating Mode : Transparent
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 15 of 26 www.netacad.com
Lab - Implement VTP
Switch D1
D1# show run
Building configuration...
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 16 of 26 www.netacad.com
Lab - Implement VTP
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 17 of 26 www.netacad.com
Lab - Implement VTP
shutdown
!
interface GigabitEthernet1/0/3
switchport mode trunk
shutdown
!
interface GigabitEthernet1/0/4
switchport mode trunk
shutdown
!
interface GigabitEthernet1/0/5
switchport mode trunk
shutdown
!
interface GigabitEthernet1/0/6
switchport mode trunk
shutdown
!
interface GigabitEthernet1/0/7
shutdown
!
interface GigabitEthernet1/0/8
shutdown
!
interface GigabitEthernet1/0/9
shutdown
!
interface GigabitEthernet1/0/10
shutdown
!
interface GigabitEthernet1/0/11
shutdown
!
interface GigabitEthernet1/0/12
shutdown
!
interface GigabitEthernet1/0/13
shutdown
!
interface GigabitEthernet1/0/14
shutdown
!
interface GigabitEthernet1/0/15
shutdown
!
interface GigabitEthernet1/0/16
shutdown
!
interface GigabitEthernet1/0/17
shutdown
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 18 of 26 www.netacad.com
Lab - Implement VTP
!
interface GigabitEthernet1/0/18
shutdown
!
interface GigabitEthernet1/0/19
shutdown
!
interface GigabitEthernet1/0/20
shutdown
!
interface GigabitEthernet1/0/21
shutdown
!
interface GigabitEthernet1/0/22
shutdown
!
interface GigabitEthernet1/0/23
switchport access vlan 2
switchport mode access
!
interface GigabitEthernet1/0/24
shutdown
!
interface GigabitEthernet1/1/1
shutdown
!
interface GigabitEthernet1/1/2
shutdown
!
interface GigabitEthernet1/1/3
shutdown
!
interface GigabitEthernet1/1/4
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip forward-protocol nd
ip http server
ip http authentication local
ip http secure-server
!
control-plane
service-policy input system-cpp-policy
!
banner motd ^C D1, Implement VTP ^C
!
line con 0
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 19 of 26 www.netacad.com
Lab - Implement VTP
exec-timeout 0 0
logging synchronous
stopbits 1
line aux 0
stopbits 1
line vty 0 4
exec-timeout 0 0
privilege level 15
password cisco123
logging synchronous
login
line vty 5 15
login
!
end
Switch D2
D2# show run
Building configuration...
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 20 of 26 www.netacad.com
Lab - Implement VTP
!
diagnostic bootup level minimal
!
spanning-tree mode rapid-pvst
spanning-tree extend system-id
!
redundancy
mode sso
!
transceiver type all
monitoring
!
vlan 2
name SecondVLAN2
!
vlan 3
name ThirdVLAN
!
vlan 1111
name QuadOne
!
class-map match-any system-cpp-police-topology-control
description Topology control
class-map match-any system-cpp-police-sw-forward
description Sw forwarding, L2 LVX data, LOGGING
class-map match-any system-cpp-default
description Inter FED, EWLC control, EWLC data
class-map match-any system-cpp-police-sys-data
description Learning cache ovfl, High Rate App, Exception, EGR Exception, NFL
SAMPLED DATA, RPF Failed
class-map match-any system-cpp-police-punt-webauth
description Punt Webauth
class-map match-any system-cpp-police-l2lvx-control
description L2 LVX control packets
class-map match-any system-cpp-police-forus
description Forus Address resolution and Forus traffic
class-map match-any system-cpp-police-multicast-end-station
description MCAST END STATION
class-map match-any system-cpp-police-multicast
description Transit Traffic and MCAST Data
class-map match-any system-cpp-police-l2-control
description L2 control
class-map match-any system-cpp-police-dot1x-auth
description DOT1X Auth
class-map match-any system-cpp-police-data
description ICMP redirect, ICMP_GEN and BROADCAST
class-map match-any system-cpp-police-stackwise-virt-control
description Stackwise Virtual
class-map match-any non-client-nrt-class
class-map match-any system-cpp-police-routing-control
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 21 of 26 www.netacad.com
Lab - Implement VTP
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 22 of 26 www.netacad.com
Lab - Implement VTP
shutdown
!
interface GigabitEthernet1/0/12
shutdown
!
interface GigabitEthernet1/0/13
shutdown
!
interface GigabitEthernet1/0/14
shutdown
!
interface GigabitEthernet1/0/15
shutdown
!
interface GigabitEthernet1/0/16
shutdown
!
interface GigabitEthernet1/0/17
shutdown
!
interface GigabitEthernet1/0/18
shutdown
!
interface GigabitEthernet1/0/19
shutdown
!
interface GigabitEthernet1/0/20
shutdown
!
interface GigabitEthernet1/0/21
shutdown
!
interface GigabitEthernet1/0/22
shutdown
!
interface GigabitEthernet1/0/23
shutdown
!
interface GigabitEthernet1/0/24
shutdown
!
interface GigabitEthernet1/1/1
shutdown
!
interface GigabitEthernet1/1/2
shutdown
!
interface GigabitEthernet1/1/3
shutdown
!
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 23 of 26 www.netacad.com
Lab - Implement VTP
interface GigabitEthernet1/1/4
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip forward-protocol nd
ip http server
ip http authentication local
ip http secure-server
!
control-plane
service-policy input system-cpp-policy
!
banner motd ^C D2, Implement VTP ^C
!
line con 0
exec-timeout 0 0
logging synchronous
stopbits 1
line aux 0
stopbits 1
line vty 0 4
login
line vty 5 15
login
!
end
Switch A1
A1# show run
Building configuration...
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 24 of 26 www.netacad.com
Lab - Implement VTP
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
interface FastEthernet0/1
switchport mode trunk
!
interface FastEthernet0/2
switchport mode trunk
!
interface FastEthernet0/3
switchport mode trunk
!
interface FastEthernet0/4
switchport mode trunk
!
interface FastEthernet0/5
shutdown
!
interface FastEthernet0/6
shutdown
!
interface FastEthernet0/7
shutdown
!
interface FastEthernet0/8
shutdown
!
interface FastEthernet0/9
shutdown
!
interface FastEthernet0/10
shutdown
!
interface FastEthernet0/11
shutdown
!
interface FastEthernet0/12
shutdown
!
interface FastEthernet0/13
shutdown
!
interface FastEthernet0/14
shutdown
!
interface FastEthernet0/15
shutdown
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 25 of 26 www.netacad.com
Lab - Implement VTP
!
interface FastEthernet0/16
shutdown
!
interface FastEthernet0/17
shutdown
!
interface FastEthernet0/18
shutdown
!
interface FastEthernet0/19
shutdown
!
interface FastEthernet0/20
shutdown
!
interface FastEthernet0/21
shutdown
!
interface FastEthernet0/22
shutdown
!
interface FastEthernet0/23
shutdown
!
interface FastEthernet0/24
shutdown
!
interface GigabitEthernet0/1
shutdown
!
interface GigabitEthernet0/2
shutdown
!
interface Vlan1
!
ip http server
ip http secure-server
!
banner motd ^C A1, Implement VTP ^C
!
line con 0
exec-timeout 0 0
logging synchronous
line vty 0 4
login
line vty 5 15
login
!
end
2020 - 2020 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 26 of 26 www.netacad.com