NET‐330 Lab 5‐1 – Community Healthcare Network - Snowboundport37/champlain GitHub Wiki

NET-330 Lab 5-1 – Community Healthcare Network

This repository documents the full Packet Tracer build and configuration for the Community Healthcare small enterprise network.


📡 Topology

The network follows a Single Distribution Area design:

  • 3560-24PS Hospital Router – Border / Distribution (MLS with inter-VLAN routing)
  • North Core and South Core 2960s – Core switches
  • Data Center Core 2960 – connects DHCP and DNS servers
  • North Edge and South Edge 2960s – Edge access switches
  • Server-PT DHCP – DHCP services
  • Server-PT DNS – DNS services
  • Test PCs on Clinic VLAN for validation

Screenshot-1


🖧 IP Addressing Scheme

VLAN Network Mask Gateway DHCP Pool Range
VLAN 1 (Default) 10.10.0.0 255.255.255.0 10.10.0.1 Servers / Infra
Clinic 10.10.2.0 255.255.254.0 10.10.2.1 10.10.2.10 – 10.10.3.254
Visitor 10.10.4.0 255.255.254.0 10.10.4.1 10.10.4.10 – 10.10.5.254
Office 10.10.6.0 255.255.254.0 10.10.6.1 10.10.6.10 – 10.10.7.254
Counseling 10.10.8.0 255.255.255.0 10.10.8.1 10.10.8.10 – 10.10.8.200

⚙️ Key Device Configurations

All switches and the 3560 were configured via CLI with the following highlights:

  • Enabled ip routing on the 3560
  • Created VLANs 10,20,30,40 and assigned SVI IPs
  • Configured trunk links between the 3560 and core/edge switches
  • Configured access ports per VLAN on edge switches
  • Added ip helper-address on the 3560 SVIs to forward DHCP requests

Full configuration blocks are stored in configs/ (not shown here).


💻 Verification Screenshots

Client DHCP Lease

PC receives correct DHCP information from Clinic pool.

Screenshot-2

Inter-VLAN Connectivity

Successful pings to:

  • 10.10.0.10 (DHCP)
  • 10.10.0.11 (DNS)
  • 10.10.2.1 (Clinic Gateway)

Screenshot-3

DNS Resolution

Name resolution to DNS records:

  • ns.lab.com → 10.10.0.11
  • dhcp.lab.com → 10.10.0.10

Screenshot-4

3560 VLAN Interfaces

show ip interface brief output showing all VLAN interfaces up/up.

Screenshot-5

DHCP Server Pools

All four DHCP pools configured and active.

Screenshot-6

DNS Server Records

DNS A records created for lab testing.

Screenshot-7


✅ Lab Validation

  • Clients on each VLAN successfully received DHCP addresses.
  • Inter-VLAN routing functional.
  • DNS records resolved correctly from client PCs.

Notes & Troubleshooting

  • Ensured no shutdown on all SVI interfaces.
  • Used show interfaces trunk to confirm trunk VLANs.
  • Verified helper addresses for DHCP relay.

📷 How to Upload Screenshots

Place your captured PNG files in a folder named images inside the repo, and rename them to match the placeholders above (or update the markdown paths).

Example repo structure: /images/topology.png /images/client-dhcp-lease.png /images/client-pings.png /images/client-dns-resolution.png /images/3560-show-ip-int-brief.png /images/dhcp-pools.png /images/dns-records.png README.md

yaml Copy code

This completes the Packet Tracer lab build for NET-330 Lab 5-1. How to use Create a new GitHub repository.

Add a folder called images and upload each screenshot PNG into it.

Rename the files or update the markdown links to match your uploaded filenames.

Paste this README.md into the repo’s main branch.

This gives you a clean, professional GitHub documentation for your entire lab.

You said: no like give me the entire step by step I did in one big code block

ChatGPT said:

Thought for 34s markdown Copy code NET 330 Lab 5 1 Community Healthcare Network Complete step by step record of everything done with X set to 10

PRE LAB 1 Open Packet Tracer 2 Options then Preferences then Miscellaneous then set Auto File Backup Interval to 1 minute 3 Save the file as NET 330 Lab 5 1 and your name

TOPOLOGY PLACEMENT 1 Devices used 3560 24PS multilayer switch named HOSPITAL_ROUTER 2960 named North Core 2960 named South Core 2960 named DATA_CENTER_CORE 2960 named NORTH_EDGE 2960 named SOUTH_EDGE Server PT named DHCP Server PT named DNS One PC named Test Computer 2 Cabling copper straight through HOSPITAL_ROUTER gi0 slash 1 to North Core gi0 slash 1 trunk HOSPITAL_ROUTER gi0 slash 2 to South Core gi0 slash 1 trunk HOSPITAL_ROUTER fa0 slash 1 to DATA_CENTER_CORE gi0 slash 1 access vlan 1 North Core gi0 slash 2 to NORTH_EDGE gi0 slash 1 trunk South Core gi0 slash 2 to SOUTH_EDGE gi0 slash 1 trunk DATA_CENTER_CORE fa0 slash 1 to DHCP fa0 slash 0 DATA_CENTER_CORE fa0 slash 2 to DNS fa0 slash 0

IP PLAN VLAN 1 network 10.10.0.0 mask 255.255.255.0 gateway 10.10.0.1 VLAN 10 Clinic network 10.10.2.0 mask 255.255.254.0 gateway 10.10.2.1 pool 10.10.2.10 to 10.10.3.254 VLAN 20 Visitor network 10.10.4.0 mask 255.255.254.0 gateway 10.10.4.1 pool 10.10.4.10 to 10.10.5.254 VLAN 30 Office network 10.10.6.0 mask 255.255.254.0 gateway 10.10.6.1 pool 10.10.6.10 to 10.10.7.254 VLAN 40 Counseling network 10.10.8.0 mask 255.255.255.0 gateway 10.10.8.1 pool 10.10.8.10 to 10.10.8.200

CONFIGS ENTERED

A HOSPITAL_ROUTER 3560 CLI en conf t hostname HOSPITAL_ROUTER no ip domain lookup ip routing vlan 10 name CLINIC vlan 20 name VISITOR vlan 30 name OFFICE vlan 40 name COUNSELING exit interface vlan 1 ip address 10.10.0.1 255.255.255.0 no shutdown exit interface vlan 10 ip address 10.10.2.1 255.255.254.0 ip helper-address 10.10.0.10 no shutdown exit interface vlan 20 ip address 10.10.4.1 255.255.254.0 ip helper-address 10.10.0.10 no shutdown exit interface vlan 30 ip address 10.10.6.1 255.255.254.0 ip helper-address 10.10.0.10 no shutdown exit interface vlan 40 ip address 10.10.8.1 255.255.255.0 ip helper-address 10.10.0.10 no shutdown exit interface gi0/1 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit interface gi0/2 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit interface fa0/1 switchport mode access switchport access vlan 1 no shutdown exit wr

B NORTH_CORE CLI en conf t hostname NORTH_CORE vlan 10 name CLINIC vlan 20 name VISITOR vlan 30 name OFFICE vlan 40 name COUNSELING exit interface gi0/1 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit interface gi0/2 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit wr

C SOUTH_CORE CLI en conf t hostname SOUTH_CORE vlan 10 name CLINIC vlan 20 name VISITOR vlan 30 name OFFICE vlan 40 name COUNSELING exit interface gi0/1 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit interface gi0/2 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit wr

D NORTH_EDGE CLI en conf t hostname NORTH_EDGE vlan 10 name CLINIC vlan 20 name VISITOR vlan 30 name OFFICE vlan 40 name COUNSELING exit interface gi0/1 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit interface range fa0/1,fa0/2,fa0/3,fa0/4,fa0/5,fa0/6 switchport mode access switchport access vlan 10 exit interface range fa0/7,fa0/8,fa0/9,fa0/10 switchport mode access switchport access vlan 20 exit interface range fa0/11,fa0/12,fa0/13,fa0/14,fa0/15,fa0/16 switchport mode access switchport access vlan 30 exit wr

E SOUTH_EDGE CLI en conf t hostname SOUTH_EDGE vlan 10 name CLINIC vlan 20 name VISITOR vlan 30 name OFFICE vlan 40 name COUNSELING exit interface gi0/1 switchport mode trunk switchport trunk native vlan 1 switchport trunk allowed vlan 1,10,20,30,40 no shutdown exit interface range fa0/1,fa0/2,fa0/3,fa0/4,fa0/5,fa0/6 switchport mode access switchport access vlan 10 exit interface range fa0/7,fa0/8,fa0/9,fa0/10 switchport mode access switchport access vlan 20 exit interface range fa0/11,fa0/12,fa0/13,fa0/14,fa0/15,fa0/16 switchport mode access switchport access vlan 30 exit wr

F DATA_CENTER_CORE CLI en conf t hostname DATA_CENTER_CORE interface gi0/1 switchport mode access switchport access vlan 1 no shutdown exit interface fa0/1 switchport mode access switchport access vlan 1 no shutdown exit interface fa0/2 switchport mode access switchport access vlan 1 no shutdown exit wr

SERVERS

A DHCP Server PT GUI Desktop tab then IP Configuration IP 10.10.0.10 Mask 255.255.255.0 Gateway 10.10.0.1 DNS 10.10.0.11 Services tab then DHCP then Service On then add pools Pool Clinic network 10.10.2.0 mask 255.255.254.0 default gateway 10.10.2.1 DNS 10.10.0.11 start 10.10.2.10 Pool Visitor network 10.10.4.0 mask 255.255.254.0 default gateway 10.10.4.1 DNS 10.10.0.11 start 10.10.4.10 Pool Office network 10.10.6.0 mask 255.255.254.0 default gateway 10.10.6.1 DNS 10.10.0.11 start 10.10.6.10 Pool Counseling network 10.10.8.0 mask 255.255.255.0 default gateway 10.10.8.1 DNS 10.10.0.11 start 10.10.8.10 Remove default serverPool if desired or leave it

B DNS Server PT GUI Desktop tab then IP Configuration IP 10.10.0.11 Mask 255.255.255.0 Gateway 10.10.0.1 DNS 127.0.0.1 Services tab then DNS then Service On then add A records ns.lab.com address 10.10.0.11 dhcp.lab.com address 10.10.0.10

CLIENT TEST

A Connect Test Computer to NORTH_EDGE on an access port in Clinic vlan for example fa0 slash 2 B Set the PC to DHCP then wait a few seconds then run in Command Prompt ipconfig ping 10.10.2.1 ping 10.10.0.10 ping 10.10.0.11 ping ns.lab.com ping dhcp.lab.com

VALIDATION ON HOSPITAL_ROUTER

show ip interface brief expect vlan 1 10.10.0.1 up up expect vlan 10 10.10.2.1 up up expect vlan 20 10.10.4.1 up up expect vlan 30 10.10.6.1 up up expect vlan 40 10.10.8.1 up up

show interfaces trunk expect gi0 slash 1 and gi0 slash 2 trunks with allowed vlans 1 10 20 30 40

WHERE TO PLACE SCREENSHOTS IN THE REPO

images/topology.png full workspace view images/client dhcp lease.png ipconfig showing 10.10.2.x mask and gateway and DNS images/client pings.png pings to 10.10.0.10 then 10.10.0.11 then 10.10.2.1 images/client dns resolution.png pings to ns.lab.com and dhcp.lab.com images/3560 show ip brief.png output from show ip interface brief images/dhcp pools.png DHCP server pools page images/dns records.png DNS server records page

NOTES Saved configs on every device with command wr Used ip helper address on each SVI so clients in all vlans receive DHCP from the server in vlan 1 Confirmed successful DHCP DNS and inter vlan routing

You said: make it better formated.

ChatGPT said: markdown Copy code

NET-330 Lab 5-1 – Community Healthcare Network

Complete Step-by-Step Build Log (Workstation Number X = 10)


1️⃣ Pre-Lab Setup

  1. Open Cisco Packet Tracer.
  2. Go to Options → Preferences → Miscellaneous and set Auto File Backup Interval to 1 minute.
  3. Save the file as NET-330-Lab-5-1-YourName.pkt before starting.

2️⃣ Topology Build

Devices Placed

  • 3560-24PS – named HOSPITAL_ROUTER (acts as Border & Distribution).
  • 2960-24TTNorth Core.
  • 2960-24TTSouth Core.
  • 2960-24TTDATA_CENTER_CORE.
  • 2960-24TTNORTH_EDGE.
  • 2960-24TTSOUTH_EDGE.
  • Server-PTDHCP.
  • Server-PTDNS.
  • PC-PTTest Computer.

Cabling

  • HOSPITAL_ROUTER Gi0/1 → North Core Gi0/1 (trunk).
  • HOSPITAL_ROUTER Gi0/2 → South Core Gi0/1 (trunk).
  • HOSPITAL_ROUTER Fa0/1 → DATA_CENTER_CORE Gi0/1 (access VLAN 1).
  • North Core Gi0/2 → NORTH_EDGE Gi0/1 (trunk).
  • South Core Gi0/2 → SOUTH_EDGE Gi0/1 (trunk).
  • DATA_CENTER_CORE Fa0/1 → DHCP Fa0/0.
  • DATA_CENTER_CORE Fa0/2 → DNS Fa0/0.

3️⃣ IP Addressing Scheme

VLAN Network Mask Gateway DHCP Range
VLAN 1 Default 10.10.0.0 255.255.255.0 10.10.0.1 Servers/Infrastructure only
VLAN 10 Clinic 10.10.2.0 255.255.254.0 10.10.2.1 10.10.2.10 – 10.10.3.254
VLAN 20 Visitor 10.10.4.0 255.255.254.0 10.10.4.1 10.10.4.10 – 10.10.5.254
VLAN 30 Office 10.10.6.0 255.255.254.0 10.10.6.1 10.10.6.10 – 10.10.7.254
VLAN 40 Counseling 10.10.8.0 255.255.255.0 10.10.8.1 10.10.8.10 – 10.10.8.200

4️⃣ CLI Configurations

A. 3560 HOSPITAL_ROUTER

en
conf t
hostname HOSPITAL_ROUTER
no ip domain lookup
ip routing
vlan 10
 name CLINIC
vlan 20
 name VISITOR
vlan 30
 name OFFICE
vlan 40
 name COUNSELING
exit
interface vlan 1
 ip address 10.10.0.1 255.255.255.0
 no shutdown
exit
interface vlan 10
 ip address 10.10.2.1 255.255.254.0
 ip helper-address 10.10.0.10
 no shutdown
exit
interface vlan 20
 ip address 10.10.4.1 255.255.254.0
 ip helper-address 10.10.0.10
 no shutdown
exit
interface vlan 30
 ip address 10.10.6.1 255.255.254.0
 ip helper-address 10.10.0.10
 no shutdown
exit
interface vlan 40
 ip address 10.10.8.1 255.255.255.0
 ip helper-address 10.10.0.10
 no shutdown
exit
interface gi0/1
 switchport mode trunk
 switchport trunk native vlan 1
 switchport trunk allowed vlan 1,10,20,30,40
 no shutdown
exit
interface gi0/2
 switchport mode trunk
 switchport trunk native vlan 1
 switchport trunk allowed vlan 1,10,20,30,40
 no shutdown
exit
interface fa0/1
 switchport mode access
 switchport access vlan 1
 no shutdown
exit
wr
B. North Core
bash
Copy code
en
conf t
hostname NORTH_CORE
vlan 10
 name CLINIC
vlan 20
 name VISITOR
vlan 30
 name OFFICE
vlan 40
 name COUNSELING
exit
interface gi0/1
 switchport mode trunk
 switchport trunk native vlan 1
 switchport trunk allowed vlan 1,10,20,30,40
 no shutdown
exit
interface gi0/2
 switchport mode trunk
 switchport trunk native vlan 1
 switchport trunk allowed vlan 1,10,20,30,40
 no shutdown
exit
wr
C. South Core
(Same as North Core with hostname SOUTH_CORE)

D. North Edge
bash
Copy code
en
conf t
hostname NORTH_EDGE
vlan 10
 name CLINIC
vlan 20
 name VISITOR
vlan 30
 name OFFICE
vlan 40
 name COUNSELING
exit
interface gi0/1
 switchport mode trunk
 switchport trunk native vlan 1
 switchport trunk allowed vlan 1,10,20,30,40
 no shutdown
exit
interface range fa0/1 - 6
 switchport mode access
 switchport access vlan 10
exit
interface range fa0/7 - 10
 switchport mode access
 switchport access vlan 20
exit
interface range fa0/11 - 16
 switchport mode access
 switchport access vlan 30
exit
wr
E. South Edge
(Same as North Edge with hostname SOUTH_EDGE)

F. Data Center Core
bash
Copy code
en
conf t
hostname DATA_CENTER_CORE
interface gi0/1
 switchport mode access
 switchport access vlan 1
 no shutdown
exit
interface fa0/1
 switchport mode access
 switchport access vlan 1
 no shutdown
exit
interface fa0/2
 switchport mode access
 switchport access vlan 1
 no shutdown
exit
wr
5️⃣ Server Configurations
DHCP Server
Desktop → IP Configuration

IP: 10.10.0.10

Mask: 255.255.255.0

Gateway: 10.10.0.1

DNS: 10.10.0.11

Services → DHCP → Service ON

Add Pools:

Clinic – Net 10.10.2.0/23 Gateway 10.10.2.1 DNS 10.10.0.11 Start 10.10.2.10

Visitor – Net 10.10.4.0/23 Gateway 10.10.4.1 DNS 10.10.0.11 Start 10.10.4.10

Office – Net 10.10.6.0/23 Gateway 10.10.6.1 DNS 10.10.0.11 Start 10.10.6.10

Counseling – Net 10.10.8.0/24 Gateway 10.10.8.1 DNS 10.10.0.11 Start 10.10.8.10

DNS Server
Desktop → IP Configuration

IP: 10.10.0.11

Mask: 255.255.255.0

Gateway: 10.10.0.1

DNS: 127.0.0.1

Services → DNS → Service ON

Add A Records:

ns.lab.com → 10.10.0.11

dhcp.lab.com → 10.10.0.10

6️⃣ Client Configuration & Testing
Connect the Test Computer to NORTH_EDGE on an access port in VLAN 10.

Desktop → IP Configuration → DHCP to obtain an address.

In Command Prompt verify:

bash
Copy code
ipconfig
ping 10.10.2.1     # Clinic Gateway
ping 10.10.0.10    # DHCP Server
ping 10.10.0.11    # DNS Server
ping ns.lab.com    # DNS name resolution
ping dhcp.lab.com  # DNS name resolution
All pings should succeed.

7️⃣ Validation Commands on 3560
bash
Copy code
show ip interface brief      # All VLAN interfaces up/up with correct IPs
show interfaces trunk        # Verify allowed VLANs 1,10,20,30,40
8️⃣ Screenshots to Include in GitHub Repo
Upload each PNG to an images/ folder and reference them in your README:

topology.png – Full workspace view.

client-dhcp-lease.png – PC ipconfig showing DHCP details.

client-pings.png – PC pings to gateways and servers.

client-dns-resolution.png – PC pings to ns.lab.com and dhcp.lab.com.

3560-show-ip-int-brief.png – Output of show ip interface brief.

dhcp-pools.png – DHCP server pools page.

dns-records.png – DNS server records page.

✅ Result
Clients receive DHCP leases for the correct VLANs.

Inter-VLAN routing works across all subnets.

DNS name resolution verified.

All deliverables captured for the lab submission.

Copy code