NET-330: Network Design
HomeTech JournalsPersonal ProjectsSysadmin Wiki
  • NET-330: Network Design
  • Breakdown
    • Course Overview
    • Week Breakdown
  • Labs
    • Lab 1.2: Packet Tracer Review-Class Lab
    • Lab 2.1: Subnet Design
    • Lab 3.2: Lab Prep
    • Lab 3.3: DHCP Server in Packet Tracer
    • Lab 4.1: Console Access Mini-Lab
    • Lab 4.2: Small Enterprise-Class Lab
    • Lab 6-1: NAT Configuration - Static NAT
    • Lab 6-2: NAT Configuration - PAT
    • Lab 6-3: NAT LAB 3 - Champlain Example Lab
    • Lab 8-1B: OSPF PT Activity
    • Lab 8-1B: Add OSPF Authenication
    • Lab 9-1: Build a Network Challenge - 1
    • Lab 9-2: Build a Network Challenge 2 - BGP
    • Lab 10-1: IPSEC Packet Tracer 1
    • Lab 11-1: Access-Lists
    • Lab 13-1: IPv6
  • Notes
    • Resources
    • Week 1: Subnet Refresher
    • Week 2: Subnetting, VLANS, & Cisco Commands
    • Week 3: DHCP
    • Week 4 & 5: Campus and Enterprise Network Design Layers
    • Week 6: NAT
    • Week 9: OSPF and Interior Routing
    • Week 10: BGP
    • Week 11: IPSEC
    • Week 12: Zoning and ACL
Powered by GitBook
On this page
  • Summary
  • Commands to navigate different modes on a Cisco Switch/Router (enable, config t...) and how you know what mode you are in
  • Commands to create VLANS on switch
  • Setting access and trunk ports on switch
  • IP Routing
  • Side Notes
  1. Labs

Lab 2.1: Subnet Design

PreviousLab 1.2: Packet Tracer Review-Class LabNextLab 3.2: Lab Prep

Last updated 2 years ago

Summary

In this lab we setup a Packet Tracer file with the network shown below in the . During this lab we learned how to setup access and trunk ports from the CLI as well how to configure multiple ports at once. this lab also gave insight into how intervlan communication works at a Multilayer Switch.

Subnet Table

VLAN
VLAN_NAME
Hosts Needed
Network
Netmask
Router Address

200

StuWireless

900

10.8.0.0

/22

10.8.0.1

210

FSWireless

650

10.8.4.0

/22

10.8.4.1

110

Student

450

10.8.8.0

/23

10.8.8.1

1

Management

250

10.8.10.0

/24

10.8.10.1

100

FacStaff

200

10.8.11.0

/24

10.8.11.1

130

StuLab1

35

10.8.12.0

/26

10.8.12.1

140

StuLab2

35

10.8.12.64

/26

10.8.12.65

Commands to navigate different modes on a Cisco Switch/Router (enable, config t...) and how you know what mode you are in

  • If terminal reads Router> type enable to enter Router#

    • Under Router> you're allowed to do ping, show, enable, etc...

  • If terminal reads Router# type config to enter Router(config)#

    • Under Router# you're allowed to do all User EXEC Commands, debug commands, reload, configure(config), etc...

  • If terminal reads Router(config)# view the Official Guide because config branches into 3 different sections.

    • Under Router(config)# you're allowed to do hostname, enable secret, ip route, interface (ethernet, serial, bri, etc...), router (rip, ospf, igrp, etc...), line (vty, console, etc...)

  • (Below is image and table included on the website)

EXEC Mode
Description

Router>

- User EXEC mode

Router#

- Privileged EXEC mode

Router(config)#

- Configuration mode (notice the # sign indicates this is accessible only at privileged EXEC mode)

Router(config-if)#

- Interface level within configuration mode

Router(config-router)#

- Routing engine level within configuration mode

Router(config-line)#

- Line level (vty, tty, async) within configuration mode

Commands to create VLANS on switch

  • Switch(config)# vlan 100 
    Switch(config-vlan)# name student

Setting access and trunk ports on switch

  • For this to work you must select an interface using Switch(config)# interface range FastEthernet 0/{port}

  • For an individual port type Switch(config-if)# switchport 'access or trunk' vlan {port}

  • Configure interfaces in "ranges"

    • in 'Config' mode type Switch(config)# interface range FastEthernet 0/{start port}-{stop port}

IP Routing

  • To turn on routing on multilayer switch type Router(config)ip routing

  • To enter vlan mode Router(config) interface vlan 100

  • To set the ip address and subnet for vlan 100 Router(config-if) ip address {ip} {subnet}

Side Notes

  • side note you can cut down writing if it's within the ball park. The two below do the same thing.

    • Switch(config)# interface range FastEthernet 0/{start port}-{stop port}

    • Switch(config)# inter rang FastEthernet 0/{start port}-{stop port}

Image from Cisco Website
Official Cisco Guide
Subnet Table