0% found this document useful (0 votes)
49 views

Lab 9

lab 9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views

Lab 9

lab 9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

Lab ID: 9.9K1116A092.SNI2.

Expanding Switched Networks


Objective
Configure a switch to participate in VLAN Trunking Protocol (VTP) domains, configure trunking, and use
virtual local area networks (VLANs) to create logical networks.

Lab Topology
The topology diagram below represents the portion of the network you will configure in this lab.

1 Boson NetSim Lab Manual


Command Summary
Command Description
configure terminal enters global configuration mode from privileged EXEC mode
enable enters privileged EXEC mode
encapsulation dot1q vlan-id sets the encapsulation method of the interface for 802.1Q
VLAN trunking; also specifies the VLAN ID for which the
frames should be tagged
end ends and exits configuration mode
exit exits one level in the menu structure
interface type number changes from global configuration mode to interface
configuration mode
ip address ip-address subnet-mask assigns an IP address and subnet mask to an interface
ipconfig /dg is used in NetSim to assign a default gateway to a
workstation interface
ipconfig /ip is used in NetSim to assign an IP address and subnet mask
to a workstation interface
name vlan-name names a VLAN
network network-address configures a list of networks for the specified routing protocol
on the specified network
no ip address ip-address subnet-mask removes an IP address from an interface
ping ip-address sends an Internet Control Message Protocol (ICMP) echo
request to the specified address
router eigrp autonomous-system- enters router configuration mode for Enhanced Interior
number Gateway Routing Protocol (EIGRP)
show cdp neighbors displays information about directly connected neighbors
show interfaces [type number] displays statistics for all interfaces configured on the switch
show interfaces [interface-id] shows the switchport configuration
switchport
show ip route displays the IP routing table
show running-config displays the active configuration file
show vlan displays VLAN information
show vtp status displays VTP configuration
shutdown; no shutdown disables an interface; enables an interface
switchport access vlan vlan-id assigns the default VLAN for a port
switchport mode {access | dynamic configures the VLAN membership mode of a port
{auto | desirable} | trunk}
vlan vlan-id creates a VLAN
vtp domain domain-name assigns the domain name for VTP
vtp mode [client | server | transparent] configures the VTP mode
vtp password password assigns the VTP password; switches must be configured with
the same VTP domain and VTP password in order for VTP to
propagate VLAN information between the switches

2 Boson NetSim Lab Manual


The IP addresses and subnet masks used in this lab are shown in the tables below:

IP Addresses
Device Interface IP Address Subnet Mask Default Gateway
Router1 Serial 0/0 175.10.1.1 255.255.255.0 -
FastEthernet 0/0 160.10.1.1 255.255.255.0 -
Router2 FastEthernet 0/1 160.10.1.2 255.255.255.0 -
Router3 Serial 0/0 175.10.1.2 255.255.255.0 -
FastEthernet 0/1 197.10.1.1 255.255.255.0 -
Switch3 VLAN 1 197.10.1.30 255.255.255.0 197.10.1.1
Switch4 VLAN 1 197.10.1.40 255.255.255.0 197.10.1.1

Device IP Address Subnet Mask Default Gateway


PC2 197.10.1.2 255.255.255.0 197.10.1.1
PC4 197.10.1.4 255.255.255.0 197.10.1.1

Lab Tasks
Task 1: Configure the VTP Mode and Domain
In this task, you will learn the steps necessary to configure a VTP mode, password, and domain on the
switches. Whenever a VLAN is added, modified, or deleted on a VTP-enabled switch in server mode, the
switch will send out VTP advertisements that contain the VLAN changes. A switch can belong to only one
VTP domain. A VTP domain contains all the switches that share a common VTP configuration. You can
increase VTP security by configuring an optional VTP password for the domain. However, all switches in
the VTP domain must be configured with the same password.
When prompted, you should use boson as a user name and cisco as a password.
1. On Switch3, which interfaces are used to connect to neighboring devices? ___________________

2. On Switch4, disable the interface connected to Switch3.

3. On Switch4, configure transparent as the VTP mode and configure boson as the VTP domain.

4. What effect does setting the VTP mode to transparent have on Switch4? ____________________

5. On Switch4, verify the VTP configuration.

6. On Switch3, configure boson as the VTP domain.

7. On Switch3, display VTP configuration information. What is the VTP mode on Switch3? _________

8. Configure cisco as the VTP password for Switch3 and Switch4.

3 Boson NetSim Lab Manual


Task 2: Configure Switchports to Perform Trunking
Trunk ports enable a switch port to carry traffic from multiple VLANs. When trunking is enabled, the port
carries traffic from all VLANs by default. In this task, you will enable trunking on ports connected to links
between Router3 and Switch3 and between Switch3 and Switch4 to enable interVLAN routing.
1. On Switch4, configure the FastEthernet 0/12 interface to perform trunking and enable the interface.

2. On Switch3, determine the operational mode of the FastEthernet 0/12 interface.

3. On Switch3, configure the FastEthernet 0/12 and FastEthernet 0/1 interfaces to perform trunking.

4. On Switch3 and Switch4, verify your trunking configuration.

5. From Switch4, ping Router3 (197.10.1.1). The ping should be successful.

Task 3: Create Separate VLANs to Expand the Switched Network


Networks can be segmented into logical groups by using VLANs. In this task, you will create two VLANs.
One will be for the Admin subnet, and the other will be for the Sales subnet. You will assign PC2 to the
Admin subnet and PC4 to the Sales subnet.
1. Change the VTP mode on Switch3 to client mode, and change the VTP mode on Switch4 to server
mode. Later in this task, you will observe the VLANs created on Switch4 propagating to Switch3.

2. On Switch4, display the ports assigned to each VLAN.

3. On Switch4, create VLAN 2 named Admin and VLAN 4 named Sales that will be used by the Admin
subnet and the Sales subnet:

4. On Switch3 and Switch4, display VLAN information. You should notice that VLAN 2 and VLAN 4
are displayed in the output for both switches and that no ports have been assigned to the two new
VLANs.

5. On Switch4, assign the port connected to PC2 to VLAN 2 (the Admin subnet) and the port connected
to PC4 to VLAN 4 (the Sales subnet).

6. On Switch4, verify that the ports are assigned to the correct VLANs on Switch4. VLAN 2 and VLAN
4 should not be listed in the output on Switch3.

7. Allow the network time to converge, and then ping from Switch4 to Router3 (197.10.1.1). The ping
should be successful.

4 Boson NetSim Lab Manual


Task 4: Enable InterVLAN Routing
1. On PC2, attempt to ping PC4 (197.10.1.4). Is the ping successful? _________________________

2. Change PC2’s IP address to 197.10.2.2/24 and its default gateway to 197.10.2.1.

3. Change PC4’s IP address to 197.10.4.4/24 and its default gateway to 197.10.4.1.

4. Switch3 and Switch4 are Layer 2 switches; this means that they are not able to route packets.
Enable Router3 to route packets to the management VLAN and between the Admin and Sales
subnets. Use the appropriate VLAN number when creating subinterfaces.

5. On PC2, ping PC4 (197.10.4.4). The ping should be successful.

Task 5: Troubleshoot Network Connectivity


1. From PC2 and PC4, attempt to ping Router2 (160.10.1.2). The pings should not be successful.

2. From Router3, attempt to ping Router2 (160.10.1.2). The ping should be successful.

3. PC2 is in the Admin subnet, and PC4 is in the Sales subnet. On Router2, display the routing
table. Does the output include a route to the Admin subnet (197.10.2.0/24), or the Sales subnet
(197.10.4.0/24)? _________________________________________________________________

4. On the appropriate device, enable Router2 to dynamically learn a route to the subnets configured on
VLANs 1, 2, and 4. Use the EIGRP protocol with an autonomous system (AS) number of 100; do not
specify a wildcard mask when advertising the subnets.

5. On Router2, display the IP routing table. Routes to the Admin and Sales subnets should now be
displayed.

6. From PC2 and PC4, attempt to ping Router2 (160.10.1.2). The pings should be successful.

Once you have completed this lab, be sure to check your work by using the grading function.
You can do so by clicking the Grade Lab icon ( ) in the toolbar or by pressing Ctrl+G.

5 Boson NetSim Lab Manual


Lab Solutions
When prompted, you should use boson as a user name and cisco as a password.

Task 1: Configure the VTP Mode and Domain


1. On Switch3, issue the following command to determine which interfaces are used to connect to
neighboring devices. Sample output is shown below:

Switch3#show cdp neighbors


Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S -Switch, H - Host, i - IGMP, r – Repeater
Device ID Local Intrfce Holdtme Capability Platform Port ID
Router3 Fas0/1 163 R 2811 Fas 0/1
Switch4 Fas0/12 163 T S 2950 Fas 0/12

2. On Switch4, issue the following commands to disable the interface connected to Switch3:

Switch4(config)#interface fastethernet 0/12


Switch4(config-if)#shutdown

3. On Switch4, issue the following commands to configure the VTP mode and domain:

Switch4(config)#vtp mode transparent


Switch4(config)#vtp domain boson
Changing VTP domain from NULL to boson

4. Setting the VTP mode to transparent on Switch4 will prevent the switch from propagating any VLAN
changes you make on Switch4 to any other switches in the same VTP domain. Switches in VTP
transparent mode can forward VTP advertisements to other switches in the same VTP domain from
other switches, and you can create, modify, or delete VLANs on the switch. However, any changes
you make will not be propagated to other switches in the same VTP domain. Switches configured as
VTP transparent can store VLAN information in non-volatile random access memory (NVRAM) so
that if the switch is powered off, the VLAN configuration will be retained.

5. On Switch4, issue the following command to verify the VTP configuration. Sample output is shown
below:

Switch4#show vtp status


VTP Version : 2
Configuration Revision : 0
Maximum VLANs supported locally : 64
Number of existing VLANs : 5

VTP Operating Mode : Transparent


VTP Domain Name : boson
VTP Pruning Mode : Disabled
VTP V2 Mode : Disabled
VTP Traps Generation : Disabled
MD5 digest : 0xEE 0xB3 0xDC 0x9F 0xE2 0xE0 0x25 0xDF
Configuration last modified by 0.0.0.0 at 3-1-93 04:55:57
Local updater ID is 0.0.0.0 (no valid interface found)

6 Boson NetSim Lab Manual


6 On Switch3, issue the following command to configure the VTP domain:

Switch3(config)#vtp domain boson


Changing VTP domain from NULL to boson

7. On Switch3, issue the following command to display VTP configuration; sample output is shown
below:

Switch3#show vtp status


VTP Version : 2
Configuration Revision : 0
Maximum VLANs supported locally : 64
Number of existing VLANs : 5

VTP Operating Mode : Server


VTP Domain Name : boson
VTP Pruning Mode : Disabled
VTP V2 Mode : Disabled
VTP Traps Generation : Disabled
MD5 digest : 0xEE 0xB3 0xDC 0x9F 0xE2 0xE0 0x25 0xDF
Configuration last modified by 0.0.0.0 at 3-1-93 04:55:57
Local updater ID is 0.0.0.0 (no valid interface found)

The VTP mode on Switch3 is Server. By default, Cisco switches are configured for VTP server
mode. VTP server mode allows you to create, modify, and delete VLANs in the VTP domain. These
changes are then advertised to other switches participating in the same VTP domain. However, a
switch in VTP server mode will not originate VTP advertisements until a VTP domain name is set.
Switches configured as a VTP server store VLAN information in NVRAM, so that if the switch is
powered off, the VLAN configuration will be retained.

Note: A switch that is configured with a VTP mode of client does not store VLAN database
information in NVRAM when it is powered off. It must receive a VLAN advertisement from another
switch in its VTP domain to repopulate its VLAN database. Additionally, VLANs cannot be manually
created, modified, or deleted on a switch in VTP client mode.

8. On Switch3 and Switch4, issue the following commands to configure the VTP password:

Switch3(config)#vtp password cisco

Switch4(config)#vtp password cisco

Task 2: Configure Switchports to Perform Trunking


1. On Switch4, issue the following commands to configure the FastEthernet 0/12 interface to perform
trunking and to enable the interface:

Switch4(config)#interface fastethernet 0/12


Switch4(config-if)#switchport mode trunk
Switch4(config-if)#no shutdown

7 Boson NetSim Lab Manual


2. On Switch3, issue the following command to determine its operational mode (access). Sample
output is shown below:

Switch3#show interfaces fastethernet 0/12 switchport


Name: Fa0/12
Switchport: Enabled
Administrative mode: static access
Operational mode: static access
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: dot1q
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)
Voice VLAN: none
Trunking VLANs Enabled: ALL
Pruning VLANs Enabled: 2-1001

Protected: false

Appliance trust: none

3. On Switch3, issue the following commands to configure the FastEthernet 0/12 and FastEthernet 0/1
interfaces to perform trunking:

Switch3(config)#interface fastethernet 0/1


Switch3(config-if)#switchport mode trunk
Switch3(config-if)#interface fastethernet 0/12
Switch3(config-if)#switchport mode trunk

4. On Switch3 and Switch4, issue the following command to verify your trunking configuration. Sample
output from Switch3 is shown below:

Switch3#show interfaces fastethernet 0/12 switchport


Name: Fa0/12
Switchport: Enabled
Administrative mode: trunk
Operational mode: trunk
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: dot1q
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)
Voice VLAN: none
Trunking VLANs Enabled: ALL
Pruning VLANs Enabled: 2-1001

Protected: false

Appliance trust: none

5. A ping from Switch4 to Router3 (197.10.1.1) should be successful.

Switch4#ping 197.10.1.1
8 Boson NetSim Lab Manual
Task 3: Create Separate VLANs to Expand the Switched Network
1. On Switch3 and Switch4, issue the following commands to change the VTP mode:

Switch3(config)#vtp mode client

Switch4(config)#vtp mode server

2. Issue the following command on Switch4 to display the ports assigned to each VLAN. Your output
should be similar to the following:

Switch4#show vlan

VLAN Name Status Ports


---- -------------------------------- --------- -------------------------------
1 default active Fa0/1, Fa0/2, Fa0/3, Fa0/4
Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11

1002 fddi-default active


1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
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

3. On Switch4, issue the following commands to create two new VLANs that will be used by the Admin
subnet and the Sales subnet:

Switch4(config)#vlan 2
VLAN 2 added:
Name:VLAN0002
Switch4(config-vlan)#name Admin

Switch4(config-vlan)#vlan 4
VLAN 4 added:
Name:VLAN0004
Switch4(config-vlan)#name Sales

9 Boson NetSim Lab Manual


4. On Switch3 and Switch4, issue the following command to display VLAN information. You should
notice that VLAN 2 and VLAN 4 are displayed in the output for both switches and that no ports have
been assigned to the two new VLANs. The following is sample output from both switches:

Switch3#show vlan

VLAN Name Status Ports


---- -------------------------------- --------- -------------------------------
1 default active Fa0/2, Fa0/3, Fa0/4, Fa0/5
Fa0/6, Fa0/7, Fa0/8, Fa0/9
Fa0/10, Fa0/11
2 Admin active
4 Sales active
1002 fddi-default active
1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
2 enet 100002 1500 - - - - - 0 0
4 enet 100004 1500 - - - - - 0 0
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

Switch4#show vlan

VLAN Name Status Ports


---- -------------------------------- --------- -------------------------------
1 default active Fa0/1, Fa0/2, Fa0/3, Fa0/4
Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11
2 Admin active
4 Sales active

1002 fddi-default active


1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
2 enet 100002 1500 - - - - - 0 0
4 enet 100004 1500 - - - - - 0 0
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

10 Boson NetSim Lab Manual


5. On Switch4, issue the following commands to assign the port connected to PC2 to VLAN 2 (the
Admin subnet) and the port connected to PC4 to VLAN 4 (the Sales subnet):

Switch4(config)#interface fastethernet 0/1


Switch4(config-if)#switchport access vlan 2
Switch4(config-if)#interface fastethernet 0/2
Switch4(config-if)#switchport access vlan 4

6. On Switch4, issue the following show vlan command to verify that the ports are assigned to the
correct VLANs on Switch4. VLAN 2 and VLAN 4 should be listed in the output on Switch3. Sample
output from Switch4 is below:

Switch4#show vlan

VLAN Name Status Ports


---- -------------------------------- --------- -------------------------------
1 default active Fa0/3, Fa0/4, Fa0/5, Fa0/6
Fa0/7, Fa0/8, Fa0/9, Fa0/10
Fa0/11
2 Admin active Fa0/1
4 Sales active Fa0/2
1002 fddi-default active
1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
2 enet 100002 1500 - - - - - 0 0
4 enet 100004 1500 - - - - - 0 0
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

7. After the network converges, a ping from Switch4 to Router3 (197.10.1.1) should be successful.

Task 4: Enable InterVLAN Routing


1. A ping from PC2 to PC4 (197.10.1.4) should not succeed.

C:>ping 197.10.1.4

2. On PC2, issue the following commands to change the IP address and default gateway:

C:>ipconfig /ip 197.10.2.2 255.255.255.0


C:>ipconfig /dg 197.10.2.1

11 Boson NetSim Lab Manual


3. On PC4, issue the following commands to change the IP address and default gateway:

C:>ipconfig /ip 197.10.4.4 255.255.255.0


C:>ipconfig /dg 197.10.4.1

4. Switch3 and Switch4 are Layer 2 switches; this means that they are not able to route packets. Issue
the following commands to enable Router3 to route packets to the management VLAN and between
the Admin and Sales subnets:

Router3(config)#interface fastethernet 0/1


Router3(config-if)#no ip address
Router3(config-if)#interface fastethernet 0/1.1
Router3(config-subif)#ip address 197.10.1.1 255.255.255.0
Router3(config-subif)#encapsulation dot1q 1
Router3(config-subif)#interface fastethernet 0/1.2
Router3(config-subif)#ip address 197.10.2.1 255.255.255.0
Router3(config-subif)#encapsulation dot1q 2
Router3(config-subif)#interface fastethernet 0/1.4
Router3(config-subif)#ip address 197.10.4.1 255.255.255.0
Router3(config-subif)#encapsulation dot1q 4

5. After the network has converged, a ping from PC2 to PC4 (197.10.4.4) should be successful.

C:>ping 197.10.4.4

Task 5: Troubleshoot Network Connectivity


1. Pings from PC2 and PC4 to Router2 (160.10.1.2) should fail.

C:>ping 160.10.1.2

2. A ping from Router3 to Router2 (160.10.1.2) should be successful.

Router3#ping 160.10.1.2

12 Boson NetSim Lab Manual


3. PC2 is in the Admin subnet, and PC4 is in the Sales subnet. On Router2, routes to the Admin subnet
(197.10.2.0/24) and the Sales subnet (197.10.4.0/24) are not listed in the output of the following
command because they are not being advertised by Router3. Sample output is below:

Router2#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B – BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E – EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set

160.10.0.0/24 is subnetted, 2 subnets


C 160.10.1.0 is directly connected, FastEthernet0/0
D 160.10.2.0 [90/156160] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 192.168.1.0 [90/41029120] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 180.10.0.0 [90/41026560] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 175.10.0.0 [90/40514560] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 197.10.1.0 [90/40517120] via 160.10.1.1, 00:01:33, FastEthernet0/0

4. On Router3, issue the following commands to enable Router2 to dynamically learn a route to the
Admin subnet (197.10.2.0/24) and the Sales subnet (197.10.4.0/24):

Router3(config)#router eigrp 100


Router3(config-router)#network 197.10.2.0
Router3(config-router)#network 197.10.4.0

5. On Router2, issue the following command after the network has converged. Routes to the Admin
and Sales subnets are displayed. Sample output is below:

Router2#show ip route
<output omitted>

Gateway of last resort is not set

160.10.0.0/24 is subnetted, 2 subnets


C 160.10.1.0 is directly connected, FastEthernet0/0
D 160.10.2.0 [90/156160] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 192.168.1.0 [90/41029120] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 180.10.0.0 [90/41026560] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 175.10.0.0 [90/40514560] via 160.10.1.1, 00:01:43, FastEthernet0/0
D 197.10.1.0 [90/40517120] via 160.10.1.1, 00:01:33, FastEthernet0/0
D 197.10.2.0 [90/40517120] via 160.10.1.1, 00:01:23, FastEthernet0/0
D 197.10.4.0 [90/40517120] via 160.10.1.1, 00:00:33, FastEthernet0/0

6. Pings from PC2 and PC4 to Router2 (160.10.1.2) should be successful.

C:>ping 160.10.1.2

13 Boson NetSim Lab Manual


Sample Configuration Scripts
Switch3 Switch3 (continued)
Switch3#show running-config interface FastEthernet0/8
Building configuration... switchport mode access
Current configuration : 1605 bytes shutdown
! !
Version 15.b interface FastEthernet0/9
service timestamps debug uptime switchport mode access
service timestamps log uptime shutdown
service password-encryption !
! interface FastEthernet0/10
hostname Switch3 switchport mode access
enable secret 5 $1$lYSY$Ai2eZ8KpUCL9ptJCN1c41w shutdown
enable password SE#C#cd$@VDS#$ !
! interface FastEthernet0/11
username boson password 6843698657529 switchport mode access
! shutdown
ip subnet-zero !
! interface FastEthernet0/12
ip cef switchport mode trunk
no ip domain-lookup !
spanning-tree mode pvst interface Vlan 1
spanning-tree extend system-id ip address 197.10.1.30 255.255.255.0
! no ip route-cache
interface FastEthernet0/1 !
switchport mode trunk vlan 2 name Admin
! vlan 4 name Sales
interface FastEthernet0/2 !
switchport mode access ip default-gateway 197.10.1.1
shutdown !
! ip classless
interface FastEthernet0/3 no ip http server
switchport mode access !
shutdown banner login ^C
! Access to this device is restricted to
interface FastEthernet0/4 authorized users^C
switchport mode access line con 0
shutdown login local
! password 6843698657529
interface FastEthernet0/5 line aux 0
switchport mode access line vty 0 15
shutdown login
! password 68753368657529
interface FastEthernet0/6 !
switchport mode access no scheduler allocate
shutdown end
!
interface FastEthernet0/7
switchport mode access
shutdown
!

14 Boson NetSim Lab Manual


Switch4 Switch4 (continued)
Switch4#show running-config interface FastEthernet0/7
Building configuration... switchport mode access
Current configuration : 1767 bytes shutdown
! !
Version 12.3 interface FastEthernet0/8
service timestamps debug uptime switchport mode access
service timestamps log uptime shutdown
service password-encryption !
! interface FastEthernet0/9
hostname Switch4 switchport mode access
enable secret 5 $1$lYSY$Ai2eZ8KpUCL9ptJCN1c41w shutdown
enable password SE#C#cd$@VDS#$ !
! interface FastEthernet0/10
username boson password 6843698657529 switchport mode access
! shutdown
ip subnet-zero !
! interface FastEthernet0/11
ip cef switchport mode access
no ip domain-lookup shutdown
spanning-tree mode pvst !
spanning-tree extend system-id interface FastEthernet0/12
! switchport mode trunk
interface FastEthernet0/1 !
switchport mode access interface Vlan 1
switchport access vlan 2 ip address 197.10.1.40 255.255.255.0
switchport port-security maximum 2 no ip route-cache
switchport port-security !
switchport port-security mac-address vlan 2 name Admin
000c.2892.9972 vlan 4 name Sales
! !
interface FastEthernet0/2 ip default-gateway 197.10.1.1
switchport mode access !
switchport access vlan 4 ip classless
! no ip http server
interface FastEthernet0/3 !
switchport mode access banner login ^C
shutdown Access to this device is restricted to
! authorized users^C
interface FastEthernet0/4 line con 0
switchport mode access login local
shutdown password 6843698657529
! line aux 0
interface FastEthernet0/5 line vty 0 15
switchport mode access login
shutdown password 68753368657529
! !
interface FastEthernet0/6 no scheduler allocate
switchport mode access end
shutdown
!

15 Boson NetSim Lab Manual


Router3 Router3 (continued)
Router3#show running-config interface FastEthernet0/1.1
Building configuration... encapsulation dot1q 1
Current configuration : 1212 bytes ip address 197.10.1.1 255.255.255.0
! !
Version 15.b interface FastEthernet0/1.2
service timestamps debug uptime encapsulation dot1q 2
service timestamps log uptime ip address 197.10.2.1 255.255.255.0
no service password-encryption !
! interface FastEthernet0/1.4
hostname Router3 encapsulation dot1q 4
enable secret 5 $1$lYSY$Ai2eZ8KpUCL9ptJCN1c41w ip address 197.10.4.1 255.255.255.0
! !
ip subnet-zero router eigrp 100
! network 175.10.0.0
ip cef network 180.10.0.0
no ip domain-lookup network 197.10.1.0
! network 197.10.2.0
interface Serial0/0 network 197.10.4.0
ip address 175.10.1.2 255.255.255.0 auto-summary
no ip directed-broadcast !
! ip classless
interface Serial0/1 no ip http server
ip address 180.10.1.1 255.255.255.0 !
no ip directed-broadcast line con 0
clock rate 64000 line aux 0
! line vty 0 4
interface FastEthernet0/0 login
no ip address password cisco
no ip directed-broadcast !
shutdown no scheduler allocate
! end
interface FastEthernet0/1
no ip address
no ip directed-broadcast
!

Copyright © 1996–2017 Boson Software, LLC. All rights reserved. NetSim software and documentation are protected by copyright law.

16 Boson NetSim Lab Manual

You might also like