0% found this document useful (0 votes)
18 views15 pages

Computer Network Final Lab FA23 BSE 086

Uploaded by

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

Computer Network Final Lab FA23 BSE 086

Uploaded by

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

Computer Network

Submitted By
Muhammad Usman
FA23-BSE-086

Submitted To
Shahid Khan
Final Lab

Q1. Configure the DHCP server on the two routers in a classless IP addressing scheme. In this
network:

1. Exclude the IP addresses assigned to R1 and R2.


2. Reserve 9 additional addresses in each subnet for static assignment (e.g., servers and
management interfaces).
3. Create two DHCP pools:
o POOL-A on Router R1
o POOL-B on Router R2
Each DHCP pool should include:

 The network address in CIDR notation.


 Default gateway address.
 DNS server IP address.

Ensure that the static IPs and the router IPs (R1 and R2) are excluded from the DHCP scope. Use
the classless addressing to assign IP ranges appropriately for each DHCP pool.
Topology

Configuration

Router0
Router(config)#interface Serial0/0/0

Router(config-if)#ip address 172.16.0.1 255.255.0.0

Router(config-if)#ip address 172.16.0.1 255.255.0.0

Router(config-if)#ip address 172.16.0.1 255.255.255.252

Router(config-if)#no shutdown

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#ip dhcp excluded-address 192.168.1.1 192.168.1.10

Router(config)#ip dhcp pool POOL-A

Router(dhcp-config)#network 192.168.1.0 255.255.255.224

Router(dhcp-config)#default-router 192.168.1.1

Router(dhcp-config)#dns-server 8.8.8.8

Router(dhcp-config)#exit
Router1
Router>enable

Router#

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#interface Serial0/0/0

Router(config-if)#ip address 172.16.0.2 255.255.0.0

Router(config-if)#ip address 172.16.0.2 255.255.0.0

Router(config-if)#no shutdown

Router#config t

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#ip dhcp excluded-address 192.168.2.1 192.168.2.10

Router(config)#ip dhcp pool POOL-B

Router(dhcp-config)#network 192.168.2.0 255.255.255.240

Router(dhcp-config)#default-router 192.168.2.1

Router(dhcp-config)#dns-server 8.8.8.8

Router(dhcp-config)#exit
Q2. PC1 (IP: 192.168.1.2/24) is connected to Router A via its FastEthernet0/0 interface (IP:
192.168.1.1/24). Router A connects to Router B through a serial link using the Se0/0/0 interface
with an IP address of 10.1.1.1/30. Router B connects to PC2 via its FastEthernet0/0 interface,
which has an IP address of 172.16.1.1/28. PC2 has the IP address 172.16.1.2/28.

Topology

Configuration

Router-A

Router>enable

Router#

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#interface FastEthernet0/0

Router(config-if)#ip address 192.168.1.1 255.255.255.0

Router(config-if)#ip address 192.168.1.1 255.255.255.0

Router(config-if)#no shutdown

Router(config)#interface Serial0/0/0
Router(config-if)#ip address 10.1.1.1 255.0.0.0

Router(config-if)#ip address 10.1.1.1 255.255.255.252

Router(config-if)#no shutdown

Router(config)#router rip

Router(config-router)#network 192.168.1.0

Router(config-router)#network 10.1.1.0

Router(config-router)#^Z

Router-B
Router>enable

Router#

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#interface Serial0/0/0

Router(config-if)#ip address 10.1.1.2 255.255.255.252

Router(config-if)#no shutdown

Router(config)#interface FastEthernet0/0

Router(config-if)#ip address 172.16.1.1 255.255.0.0

Router(config-if)#ip address 172.16.1.1 255.255.255.240

Router(config-if)#no shutdown

Router(config-if)#router rip

Router(config-router)#network 10.1.1.0

Router(config-router)#network 172.16.1.0

Router(config-router)#^Z
Q3. You are tasked with designing and configuring a network for a university campus. The
campus has three primary networks: Administration, Students, and Research. The details are as
follows:

Tasks:

1. Create Topology:
o Design the network in Packet Tracer using the provided details.
o Assign IP addresses to all interfaces based on the table.
2. Access Control Configuration:
o Standard ACL:
 Block the Students Network (172.16.10.0/23) from accessing the
Administration Network (192.168.50.0/25).
o Extended ACL:
 Allow the Students Network to access the Internet but deny it access to the
Research Network (10.10.10.0/28).
 Allow the Administration Network to access both the Research Network
and the Internet.
 Block the Research Network from accessing the Administration Network
entirely.
3. Verification and Testing:
o Verify that:
 The Students Network can access the Internet but not the Research or
Administration Networks.
 The Administration Network has full access to both the Internet and
Research Network.
 The Research Network cannot access the Administration Network but can
access the Internet.
o Use appropriate testing tools (e.g., ping, traceroute) to confirm the configuration
works as intended.

Topology

Configuration

Router-Administration-1

Router>enable

Router#

Router# configure terminal

Router(config)#interface Serial0/0/0

Router(config-if)#ip address 10.1.1.1 255.0.0.0

Router(config-if)#ip address 10.1.1.1 255.0.0.0


Router(config-if)#ip address 10.1.1.1 255.255.255.252

Router(config)#interface FastEthernet0/1

Router(config-if)#ip address 192.168.50.1 255.255.255.0

Router(config-if)#ip address 192.168.50.1 255.255.255.0

Router(config)#router rip

Router(config-router)#network 192.168.50.0

Router(config-router)#network 10.0.0.0

Router>enable

Router#

Router(config)#access-list 1 deny 192.168.200.3

Router(config)#access-list 1 permit any

Router(config)#interface fa0/0

Router(config-if)#interface fa0/1

Router(config-if)#ip access-group 1 in

Router(config-if)#exit

Router(config)#access-list 100 deny icmp 192.168.200.3 0.0.0.255


192.168.50.0 0.0.0.255 echo

Router(config)#access-list 100 permit ip 192.168.50.0 0.0.0.255 any

Router(config)#interface fa0/1

Router(config-if)#ip access-group 100 in

Router(config-if)#exit

Router(config)#no access-list 100

Router(config)#

Router(config)#exit
Router-Core-1
Router>enable

Router#

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#interface FastEthernet0/0

Router(config-if)#ip address 10.1.4.1 255.255.255.252

Router(config-if)#ip address 10.1.4.1 255.255.255.252

Router(config-if)#exit

Router(config)#interface FastEthernet0/1

Router(config-if)#ip address 192.168.100.1 255.255.255.0

Router(config-if)#

Router(config-if)#exit

Router(config)#interface Serial0/0/0

Router(config-if)#ip address 10.1.1.2 255.255.255.252

Router(config-if)#

Router(config-if)#exit

Router(config)#interface Serial0/0/1

Router(config-if)#ip address 10.1.40.10 255.255.255.252

Router(config-if)#

Router(config-if)#exit
Router-Research-1
Router>enable

Router#

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#interface Serial0/0/1

Router(config-if)#ip address 10.1.2.2 255.0.0.0

Router(config-if)#ip address 10.1.2.2 255.0.0.0

Router(config-if)#ip address 10.1.2.2 255.255.255.252

Router(config)#interface Serial0/0/0

Router(config-if)#ip address 10.1.3.1 255.255.255.252

Router(config-if)#ip address 10.1.3.1 255.255.255.252

Router(config-if)#exit

Router(config)#interface FastEthernet0/1

Router(config-if)#ip address 192.168.150.1 255.255.255.0

Router(config-if)#ip address 192.168.150.1 255.255.255.0

Router(config-if)#exit

Router(config)#router rip

Router(config-router)#network 10.0.0.0

Router(config-router)#network 192.168.150.0
Router-Student-1
Router>en

Router#config t

Router(config)#interface Serial0/0/1

Router(config-if)#ip address 10.1.3.2 255.0.0.0

Router(config-if)#ip address 10.1.3.2 255.0.0.0

Router(config-if)#ip address 10.1.3.2 255.255.255.252

Router(config-if)#exit

Router(config)#interface Serial0/0/1

Router(config-if)#ip address 10.1.3.2 255.0.0.0

Router(config-if)#ip address 10.1.3.2 255.0.0.0

Router(config-if)#ip address 10.1.3.2 255.255.255.252

Router(config-if)#exit

Router(config)#interface FastEthernet0/1

Router(config-if)#ip address 192.168.200.1 255.255.255.0

Router(config-if)#ip address 192.168.200.1 255.255.255.0

Router(config-if)#exit

Router(config)#router rip

Router(config-router)#network 10.0.0.0

Router(config-router)#network 192.168.200.0

Router(config-if)#exit

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy