Comprehensive Campus Network Addressing and Router Configuration

Verified

Added on  2023/06/10

|14
|1001
|394
Practical Assignment
AI Summary
This document presents a comprehensive solution to a networking assignment focusing on the design and configuration of a campus network. The solution begins with the creation of an addressing scheme using the provided IP address ranges, detailing the assignment of IP addresses, subnet masks, and broadcast addresses to various devices and interfaces. It then proceeds to the basic configuration of routers, including hostname setup, enabling secret and password configurations, and banner messages. The core of the solution involves configuring the RIP routing protocol, including version settings, network declarations, and passive interfaces. Static routes are also configured and redistributed within RIP. Furthermore, the solution implements Access Control Lists (ACLs) to control network traffic, with specific rules defined for permitting and denying traffic based on IP addresses and subnets. Finally, the document includes verification steps, such as ping tests, to confirm network connectivity and provides documentation including the running configurations of the devices.
Document Page
Addressing Scheme
Table 1
Given Network Address: 172.16.0.0/16
Device Interface Number
of Hosts
Network Address Subnet Mask Broadcast Address
Campus1 S0/0/0 2 172.16.4.64 255.255.255.252 172.16.4.67
S0/0/1 2 172.16.4.68 255.255.255.252 172.16.4.71
Fa0/0 2 209.165.180.0 255.255.255.252 209.165.180.3
Student S0/0/0 2 172.16.4.64 255.255.255.252 172.16.4.67
Fa0/0 31 172.16.4.0 255.255.255.192 172.16.4.63
Fa0/1 500 172.16.0.0 255.255.254.0 172.16.1.255
Staff S0/0/1 2 172.16.4.68 255.255.255.252 172.16.4.71
Fa0/0 260 172.16.2.0 255.255.254.0 172.16.3.255
tabler-icon-diamond-filled.svg

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
Table 2
Device Interface IP Address Subnet Mask Default Gateway
Campus1 S0/0/0 172.16.4.65 255.255.255.252 -
S0/0/1 172.16.4.69 255.255.255.252 -
Fa0/0 209.165.180.1 255.255.255.252 -
Student S0/0/0 172.16.4.66 255.255.255.252 -
Fa0/0 172.16.4.1 255.255.255.192 -
Fa0/1 172.16.0.1 255.255.254.0 -
Staff S0/0/1 172.16.4.70 255.255.255.252 -
Fa0/0 172.16.2.1 255.255.254.0 -
PC0 FastEthernet 172.16.4.2 255.255.255.192 172.16.4.1
PC1 FastEthernet 172.16.0.2 255.255.254.0 172.16.0.1
PC3 FastEthernet 172.16.2.2 255.255.254.0 172.16.2.1
Document Page
Step 2:
Given Network Address: 192.132.14.0 /24
Table 3
Device Interface Number
of Hosts
Network Address Subnet Mask Broadcast Address
Campus2 S0/0/0 2 192.132.14.80 255.255.255.252 192.132.14.83
S0/0/1 2 192.132.14.84 255.255.255.252 192.132.14.87
Fa0/0 2 209.165.180.0 255.255.255.252 209.165.180.3
Admin S0/0/0 2 192.132.14.80 255.255.255.252 192.132.14.83
Fa0/0 12 192.132.14.64 255.255.255.240 192.132.14.79
Fa0/1 16 192.132.14.32 255.255.255.224 192.132.14.63
Resources S0/0/1 2 192.132.14.84 255.255.255.252 192.132.14.87
Fa0/1 24 192.132.14.0 255.255.255.224 192.132.14.31
Document Page
Table 4
Device Interface IP Address subnet Mask Default Gateway
Campus2 S0/0/0 192.132.14.81 255.255.255.252 -
S0/0/1 192.132.14.85 255.255.255.252 -
Fa0/0 209.165.180.2 255.255.255.252 -
Lo0 209.165.200.161 255.255.255.224 -
Admin S0/0/0 192.132.14.82 255.255.255.252 -
Fa0/0 192.132.14.65 255.255.255.240 -
Fa0/1 192.132.14.33 255.255.255.224 -
Resources S0/0/1 192.132.14.86 255.255.255.252 -
Fa0/1 192.132.14.1 255.255.255.224 -
Resources
Server
FastEthernet 192.132.14.2 255.255.255.224 192.132.14.1
PC5 FastEthernet 192.132.14.34 255.255.255.224 192.132.14.33
PC6 FastEthernet 192.132.14.66 255.255.255.240 192.132.14.65
tabler-icon-diamond-filled.svg

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
Task 2: Basic Configuration
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname Campus1
Campus1(config)#enable secret cisco
Campus1(config)#line console 0
Campus1(config-line)#password class
Campus1(config-line)#login
Campus1(config-line)#exit
Campus1(config)#line vty 0 4
Campus1(config-line)#password cisco
Campus1(config-line)#login
Campus1(config-line)#exit
Campus1(config)#banner motd #Unauthorized users will be prosecuted#
Campus1(config)#
Document Page
Campus1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Campus1(config)#interface s0/0/0
Campus1(config-if)#ip address 172.16.4.65 255.255.255.252
Campus1(config-if)#clock rate 64000
Campus1(config-if)#no shut
Campus1(config-if)#exit
Campus1(config)#interface s0/0/1
Campus1(config-if)#ip address 172.16.4.69 255.255.255.252
Campus1(config-if)#clock rate 64000
Campus1(config-if)#no shut
Campus1(config-if)#exit
Campus1(config)#interface fa0/0
Campus1(config-if)#ip address 209.165.180.1 255.255.255.252
Campus1(config-if)#no shut
Campus1(config-if)#exit
Campus1(config)#
Similarly, I have configured all the routers and PC as per the table 2 and 4
Document Page
Task 3: Configure RIP
Student(config)#router rip
Student(config-router)#version 2
Student(config-router)#network 172.16.0.0
Student(config-router)#network 172.16.4.0
Student(config-router)#network 172.16.4.64
Student(config-router)#no auto-summary
Student(config-router)#passive-interface fastEthernet 0/0
Student(config-router)#passive-interface fastEthernet 0/1
Student(config-router)#exit
Staff(config)#router rip
Staff(config-router)#version 2
Staff(config-router)#network 172.16.2.0
Staff(config-router)#network 172.16.4.68
Staff(config-router)#no auto-summary
Staff(config-router)#passive-interface fastEthernet 0/0
Staff(config-router)#exit
tabler-icon-diamond-filled.svg

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
Campus1(config)#router rip
Campus1(config-router)#version 2
Campus1(config-router)#network 172.16.4.64
Campus1(config-router)#network 172.16.4.68
Campus1(config-router)#no aut
Campus1(config-router)#no auto-summary
Campus1(config-router)#pas
Campus1(config-router)#passive-interface fa
Campus1(config-router)#passive-interface fastEthernet 0/0
Campus1(config-router)#exit
Task 4: Configure Static Routes
Campus1(config)#ip route 192.132.14.64 255.255.255.240 fa0/0
Campus1(config)#ip route 192.132.14.32 255.255.255.224 fa0/0
Campus1(config)#ip route 192.132.14.0 255.255.255.224 fa0/0
Campus1(config)#ip route 209.165.200.160 255.255.255.224 fa0/0
Campus2(config)#ip route 172.16.4.0 255.255.255.192 fa0/0
Campus2(config)#ip route 172.16.0.0 255.255.254.0 fa0/0
Campus2(config)#ip route 172.16.2.0 255.255.254.0 fa0/0
Document Page
Campus1(config)#router rip
Campus1(config-router)#redistribute static
Campus1(config-router)#exit
Campus2(config)#router rip
Campus2(config-router)#redistribute static
Campus2(config-router)#exit
Document Page
Task 5: Configure ACL
Resources(config)#ip access-list extended 100
Resources(config-ext-nacl)#permit ip 172.16.4.0 255.255.255.192 any
Resources(config-ext-nacl)#permit ip 172.16.0.0 255.255.254.0 any
Resources(config-ext-nacl)#permit ip 172.16.2.0 255.255.254.0 any
Resources(config-ext-nacl)#deny ip any any
Resources(config-ext-nacl)#exit
Resources(config)#interface serial 0/0/1
Resources(config-if)#ip access-group 100 in
Resources(config-if)#exit
Campus2(config)#ip access-list extended 101
Campus2(config-ext-nacl)#deny ip 172.16.0.0 255.255.254.0 any
Campus2(config-ext-nacl)#deny ip 172.16.4.0 255.255.255.192 any
Campus2(config-ext-nacl)#deny ip 172.16.2.0 255.255.254.0 any
Campus2(config-ext-nacl)#exit
Campus2(config)#interface fa0/0
Campus2(config-if)#ip access-group 101 in
Campus2(config-if)#exit
tabler-icon-diamond-filled.svg

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
Document Page
Task 6: Verify Connectivity
Ping from PC0 to Resources Server
Ping from PC3 to PC6
Ping from PC 2 to ISP Server
chevron_up_icon
1 out of 14
circle_padding
hide_on_mobile
zoom_out_icon
[object Object]