[CCNAv6 S2] 8.3.1.2 Packet Tracer - Skills Integration Challenge



Packet Tracer – Skills Integration Challenge
Addressing Table


VLAN Port Assignments and DHCP Information


Scenario

In this culminating activity, you will configure VLANs, trunks, DHCP Server, DHCP relay agents, and configure a router as a DHCP client.

Requirements

Using the information in the tables above, implement the following requirements:

·         Create VLANs on S2 and assign VLANs to appropriate ports. Names are case-sensitive
·         Configure S2 ports for trunking.
·         Configure all non-trunk ports on S2 as access ports.
·         Configure R1 to route between VLANs. Subinterface names should match the VLAN number.
·         Configure R1 to act as a DHCP server for the VLANs attached to S2.
-       Create a DHCP pool for each VLAN. Names are case-sensitive.
-       Assign the appropriate addresses to each pool.
-       Configure DHCP to provide the default gateway address
-       Configure the DNS server 209.165.201.14 for each pool.
-       Prevent the first 10 addresses from each pool from being distributed to end devices.
·         Verify that each PC has an address assigned from the correct DHCP pool.
Note: DHCP address assignments may take some time. Click Fast Forward Time to speed up the process.
·         Configure R1 as a DHCP client so that it receives an IP address from the ISP network.
·         Verify all devices can now ping each other and www.cisco.pka.


Configuration S2: 

enable
configure terminal
vlan 10
 name Sales
vlan 20
 name Production
vlan 30
 name Marketing
vlan 40
 name HR
 exit
interface range f0/1-4
 switchport mode trunk
interface range f0/5-9
 switchport mode access
 switchport access vlan 10
interface range f0/10-14
 switchport mode access
 switchport access vlan 20
interface range f0/15-19
 switchport mode access
 switchport access vlan 30
interface range f0/20-24
 switchport mode access
 switchport access vlan 40
 end
write memory
!

Configuration R1: 

enable
configure terminal
interface g0/0
 no shutdown
interface g0/0.10
 encapsulation dot1q 10
 ip address 172.31.10.1 255.255.255.224
interface g0/0.20
 encapsulation dot1q 20
 ip address 172.31.20.1 255.255.255.240
interface g0/0.30
 encapsulation dot1q 30
 ip address 172.31.30.1 255.255.255.128
interface g0/0.40
 encapsulation dot1q 40
 ip address 172.31.40.1 255.255.255.192
interface g0/1
 ip address dhcp
 no shutdown
 exit
ip dhcp excluded-address 172.31.10.1 172.31.10.10
ip dhcp excluded-address 172.31.20.1 172.31.20.10
ip dhcp excluded-address 172.31.30.1 172.31.30.10
ip dhcp excluded-address 172.31.40.1 172.31.40.10
!
ip dhcp pool VLAN_10
 network 172.31.10.0 255.255.255.224
 default-router 172.31.10.1
 dns-server 209.165.201.14
ip dhcp pool VLAN_20
 network 172.31.20.0 255.255.255.240
 default-router 172.31.20.1
 dns-server 209.165.201.14
ip dhcp pool VLAN_30
 network 172.31.30.0 255.255.255.128
 default-router 172.31.30.1
 dns-server 209.165.201.14
ip dhcp pool VLAN_40
 network 172.31.40.0 255.255.255.192
 default-router 172.31.40.1
 dns-server 209.165.201.14
 end
write memory
!

Configuration PC1:



Configuration PC2:



Configuration PC3:



Configuration PC4:




Nhận xét

Bài đăng phổ biến từ blog này

[CCNAv6 S2] 2.2.2.4 Packet Tracer - Configuring IPv4 Static and Default Routes

[CCNAv6 S3] 7.2.3.5 Packet Tracer - Troubleshooting EIGRP for IPv4