College of Science: LAN Technologies Assignment - NIT2222

Verified

Added on  2022/07/28

|15
|764
|11
Homework Assignment
AI Summary
This document presents a comprehensive solution for a Local Area Network (LAN) Technologies assignment, likely for a course like NIT2222. The assignment involves designing and configuring a network for Victoria University Company using Cisco Packet Tracer, encompassing multiple buildings and departments (Sport, Health, Business, Engineering, and Human Resources). The solution includes detailed subnet planning with IP address allocation, default gateway assignment, and valid host address ranges for each department. Router configuration scripts are provided, detailing interface setup, VLAN encapsulation, and DHCP pool configuration. Switch configurations are also included, covering VTP domain setup, VLAN creation, and trunk port configuration. Furthermore, the solution addresses building-specific configurations for various switches, detailing VLAN assignments for access ports. Finally, the document references relevant academic literature to support the solution.
Document Page
Running head: LOCAL AREA NETWORK TECHNOLOGIES
Local Area Network Technologies
Name of the Student
Name of the University
Author’s Note
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
1
LOCAL AREA NETWORK TECHNOLOGIES
Network Topology Design
Subnet Plan
Sport
Allocated subnet/Mask /24
Network address 172.18.0.0
Default gateway address 172.18.0.1
Valid host address range 172.18.0.1 - 172.18.0.254
Broadcast address 172.18.0.255
Health
Document Page
2
LOCAL AREA NETWORK TECHNOLOGIES
Allocated subnet/Mask /25
Network address 172.18.1.128
Default gateway address 172.18.1.129
Valid host address range 172.18.1.129 - 172.18.1.254
Broadcast address 172.18.1.255
Business
Allocated subnet/Mask /25
Network address 172.18.1.0
Default gateway address 172.18.1.1
Valid host address range 172.18.1.1 - 172.18.1.126
Broadcast address 172.18.1.127
Engineering
Allocated subnet/Mask /26
Network address 172.18.2.0
Default gateway address 172.18.2.1
Valid host address range 172.18.2.1 - 172.18.2.62
Broadcast address 172.18.2.63
Human Resource
Allocated subnet/Mask /27
Document Page
3
LOCAL AREA NETWORK TECHNOLOGIES
Network address 172.18.2.64
Default gateway address 172.18.2.65
Valid host address range 172.18.2.65 - 172.18.2.94
Broadcast address 172.18.2.95
Labeling the network topology with subnet and IP address
Design of Configuration Script
Router Configuration
int S0/0/0
ip address 200.1.1.2 255.255.255.0
no shut
int f0/0.10
encapsulation dot1Q 10
ip add 172.18.0.1 255.255.255.0
exit
int f0/0.20
encapsulation dot1Q 20
ip add 172.18.1.129 255.255.255.128
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
4
LOCAL AREA NETWORK TECHNOLOGIES
int f0/0.30
encapsulation dot1Q 30
ip add 172.18.1.1 255.255.255.128
exit
int f0/0.40
encapsulation dot1Q 40
ip add 172.18.2.1 255.255.255.192
exit
int fa 0/0.50
encapsulation dot1Q 50
ip add 172.18.2.65 255.255.255.224
ip dhcp pool sports
network 172.18.0.0 255.255.255.0
default-router 172.18.0.1
ip dhcp pool health
network 172.18.1.128 255.255.255.128
default-router 172.18.1.129
exit
Document Page
5
LOCAL AREA NETWORK TECHNOLOGIES
ip dhcp pool business
network 172.18.1.0 255.255.255.128
default-router 172.18.1.1
exit
ip dhcp pool engineers
network 172.18.2.0 255.255.255.192
default-router 172.18.2.1
exit
ip dhcp pool hr
network 172.18.2.64 255.255.255.224
default-router 172.18.2.65
exit
int fa 0/0
no shut
Switch Configuration
Switch 3
VTP domain AAA
vtp mode server
Document Page
6
LOCAL AREA NETWORK TECHNOLOGIES
vtp version 2
VLAN 10
name sports
VLAN 20
name health
VLAN 30
name business
VLAN 40
name engineers
VLAN 50
name hr
int range fa 0/1-6
switchport trunk encapsulation dot1q
switchport mode trunk
Switch 1 and 2
VTP domain AAA
vtp mode client
vtp version 2
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
7
LOCAL AREA NETWORK TECHNOLOGIES
int range fa 0/1-6
switchport trunk encapsulation dot1q
switchport mode trunk
exit
Building Switches
Building L Switch
VTP domain AAA
vtp mode client
vtp version 2
Int fa 0/1
switchport trunk encapsulation dot1q
switchport mode trunk
int range f0/2-4
switchport mode access
switchport access vlan 10
switchport voice vlan 10
exit
int range f0/5-10
Document Page
8
LOCAL AREA NETWORK TECHNOLOGIES
switchport mode access
switchport access vlan 20
switchport voice vlan 20
exit
Building M Switch
VTP domain AAA
vtp mode client
vtp version 2
Int fa 0/1
switchport trunk encapsulation dot1q
switchport mode trunk
int range f0/2-4
switchport mode access
switchport access vlan 10
switchport voice vlan 10
exit
int range f0/5-10
switchport mode access
Document Page
9
LOCAL AREA NETWORK TECHNOLOGIES
switchport access vlan 20
switchport voice vlan 20
exit
Building G
VTP domain AAA
vtp mode client
vtp version 2
Int fa 0/1
switchport trunk encapsulation dot1q
switchport mode trunk
int range f0/2-4
switchport mode access
switchport access vlan 30
switchport voice vlan 30
exit
int range f0/5-10
switchport mode access
switchport access vlan 40
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
10
LOCAL AREA NETWORK TECHNOLOGIES
switchport voice vlan 40
exit
Building A
VTP domain AAA
vtp mode client
vtp version 2
Int fa 0/1
switchport trunk encapsulation dot1q
switchport mode trunk
int range f0/2-4
switchport mode access
switchport access vlan 50
switchport voice vlan 50
exit
int range f0/5-10
switchport mode access
switchport access vlan 30
switchport voice vlan 30
Document Page
11
LOCAL AREA NETWORK TECHNOLOGIES
exit
Building k
VTP domain AAA
vtp mode client
vtp version 2
Int range fa 0/1-2
switchport mode trunk
int f0/3
switchport mode access
switchport access vlan 10
ex
int f0/4
switchport mode access
switchport access vlan 20
ex
int f0/5
switchport mode access
switchport access vlan 30
chevron_up_icon
1 out of 15
circle_padding
hide_on_mobile
zoom_out_icon
[object Object]