0% found this document useful (0 votes)
116 views5 pages

To The Full Extent of The Law C

Download as docx, pdf, or txt
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 5

CCNA 3: Skill-based Assessment

Task 1: Prepare the Network

Step 1: Cable a network that is similar to the one in the topology diagram.

Step 2: Clear any existing configurations on the devices.

Step 3: Disable all ports using the shutdown command.

S1(config)#interface range fa0/1-24


S1(config-if-range)#shutdown

S2(config)#interface range fa0/1-24


S2(config-if-range)#shutdown

S3(config)#interface range fa0/1-24


S3(config-if-range)#shutdown

Task 2: Perform Basic Device Configurations

Configure the S1, S2, and S3 switches according to the following guidelines:

Configure the hostname.


Disable DNS lookup.
Configure an EXEC mode password.
Configure a message-of-the-day banner.
Configure a password for console connections.
Configure synchronous logging.
Configure a password for vty connections.

Switch>enable
Switch#configure terminal

Switch(config)#no ip domain-lookup

Switch(config)#enable secret class

Switch(config)#banner motd ^CUnauthorized access strictly prohibited and prosecuted


to the full extent of the law^C

Switch(config)#line vty 0 4
Switch(config-line)#password cisco
Switch(config-line)#login
Switch(config-line)#exit

Switch(config)#line console 0
Switch(config-line)#password cisco
Switch(config-line)#exec-timeout 0 0
Switch(config-line)#logging sync
Switch(config-line)#exit

Task 3: Configure and Activate Network Addresses


Step 1: Configure the Management VLAN interface on S1, S2, and S3.

S1(config)#interface vlan 99
S1(config-if)#ip address 172.17.99.11 255.255.255.0
S1(config-if)#no shutdown

S2(config)#interface vlan 99
S2(config-if)#ip address 172.17.99.12 255.255.255.0
S2(config-if)#no shutdown

S3(config)#interface vlan 99
S3(config-if)#ip address 172.17.99.13 255.255.255.0
S3(config-if)#no shutdown

Step 2: Configure the PC1, PC2, and PC3 Ethernet interfaces.

PC1:
IP Address: 172.17.10.21
Subnet: 255.255.255.0
Gateway: 172.17.10.1

PC2:
IP Address: 172.17.20.22
Subnet: 255.255.255.0
Gateway: 172.17.20.1

PC3:
IP Address: 172.17.30.23
Subnet: 255.255.255.0
Gateway: 172.17.30.1

Task 4: Configure VTP

Step 1: Configure all trunks.

Switch 1:
S1(config)#interface range fa0/1-4
S1(config-if)#switchport mode trunk
S1(config-if)#switchport trunk native vlan 99
S1(config-if)#no shut

S1(config)#interface fa0/5
S1(config-if)#switchport mode trunk
S1(config-if)#no shut

Switch 2:
S2(config)#interface range fa0/1-4
S2(config-if)#switchport mode trunk
S2(config-if)#switchport trunk native vlan 99
S2(config-if)#no shut

Switch 3:
S3(config)#interface range fa0/1-4
S3(config-if)#switchport mode trunk
S3(config-if)#switchport trunk native vlan 99
S3(config-if)#no shut

Step 2: Configure S1 as the VTP server, with domain name cisco and password cisco.

Switch 1:
S1(config)#vtp domain cisco
S1(config)#vtp password cisco
S1(config)#vtp mode server

Switch 2:
S2(config)#vtp domain cisco
S2(config)#vtp password cisco
S2(config)#vtp mode client

Switch 3:
S3(config)#vtp domain cisco
S3(config)#vtp password cisco
S3(config)#vtp mode client

Task 5: Configure VLANs

Step 1: Configure the VLANs on the VTP server.

Configure the VLANs in the table below on the VTP server

Switch 1:
S1(config)#vlan 10
S1(config-vlan)#name faculty-staff
S1(config-vlan)#exit

S1(config)#vlan 20
S1(config-vlan)#name students
S1(config-vlan)#exit

S1(config)#vlan 30
S1(config-vlan)#name guest
S1(config-vlan)#exit

S1(config)#vlan 99
S1(config-vlan)#name management
S1(config-vlan)#exit

Step 2: Verify that the VTP clients are receiving VLAN configurations from the server.

S2 dan S3:

Switch#show vlan
-----------pastikan S2 & S3 list down semua vlan yg dimasukkan pada S1

Bila S2 mempunyai senarai vlan sama seperti S1,


run,

Switch 2:
S2(config)#interface range fa0/6-10
S2(config-if)#switchport mode access
S2(config-if)#switchport access vlan 30
S2(config-if)#exit

S2(config)#interface range fa0/11-17


S2(config-if)#switchport mode access
S2(config-if)#switchport access vlan 10
S2(config-if)#exit

S2(config)#interface range fa0/18-24


S2(config-if)#switchport mode access
S2(config-if)#switchport access vlan 20
S2(config-if)#exit

S2(config)#interface range fa0/6,fa0/11,fa0/18


S2(config-if)#no shutdown
S2(config-if)#exit

Task 6: Configure STP

Step 1: Configure S1 to always be root.

S1(config)#spanning-tree vlan 10,20,30,99 root primary

Step 2: Configure RSTP.

S1(config)#spanning-tree mode rapid-pvst

S2(config)#spanning-tree mode rapid-pvst

S3(config)#spanning-tree mode rapid-pvst

Task 7: Configure Inter-VLAN routing

Step 1: Create a basic configuration on the router.

Rauter(config)#hostname R1

R1(config)#no ip domain-lookup

R1(config)#enable secret class

R1(config)#banner motd ^C
Go AWAY !!! ^C

R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit

R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#exec-timeout 5 0
R1(config-line)#logging sync
R1(config-line)#exit
Step 2: Configure the trunking interface on R1.

R1(config)#interface FastEthernet0/1
R1(config-if)#no shutdown
R1(config-if)#exit

R1(config)#interface FastEthernet0/1.10
R1(config-subif)#encapsulation dot1Q 10
R1(config-subif)#ip address 172.17.10.1 255.255.255.0

R1(config-subif)#interface FastEthernet0/1.20
R1(config-subif)#encapsulation dot1Q 20
R1(config-subif)#ip address 172.17.20.1 255.255.255.0

R1(config-subif)#interface FastEthernet0/1.30
R1(config-subif)#encapsulation dot1Q 30
R1(config-subif)#ip address 172.17.30.1 255.255.255.0

R1(config-subif)#interface FastEthernet0/1.99
R1(config-subif)#encapsulation dot1Q 99
R1(config-subif)#ip address 172.17.99.1 255.255.255.0
R1(config-subif)#exit

You might also like