Lab 4.1: Small Enterprise Class Lab - squatchulator/Tech-Journal GitHub Wiki
Lab 4.1 - Small Enterprise Class Lab
Reflection
Useful Commands:
show vlan
- This command will show you interfaces (both VLANs and physical ports). Use this to determine the naming schemes of physical ports on a per-switch basis, as it varies from switch to switch.
show run
- This outputs the entire configuration of your switch into a copy-able format.
To console into a switch:
- Open up Putty, and navigate to the 'Serial' option on the left column.
- Open up Device Manager, and open the drop-down for COM ports. Make note of the USB COM port number.
- In Putty, set the serial port settings to the following:
- BPS: 9600
- Data bits: 8
- Parity: none
- Stop bits: 1
- Flow control: none
- Navigate to the Session tab on the left column, select Serial, make sure the name matches the port, and open the connection.
Troubleshooting
During this lab, we ran into a lot of problems as working with the actual hardware is new territory. One of the first problems we ran into was disregarding Vlan 1. This Vlan needed to be assigned a default gateway address like the rest of the Vlans, and once we had this configured our switches were able to talk to eachother ok.
We also had some trouble getting the serial connections to work properly off the bat. We discovered that the Serial tab on the left column of Putty needs to be filled out before going to the Session tab and opening the connection from there.
West-MLS
----------------------------------------------------------
enable
configure terminal
hostname WEST-MLS
ip routing
vlan 100
name WestClinic
vlan 110
name WestAdmin
vlan 200
name CentralClinic
vlan 210
name CentralAdmin
vlan 300
name EastClinic
vlan 310
name EastAdmin
interface vlan1
ip address 192.168.1.1 255.255.255.0
interface vlan100
ip address 192.168.10.1 255.255.255.0
interface vlan110
ip address 192.168.11.1 255.255.255.0
interface vlan200
ip address 192.168.20.1 255.255.255.0
interface vlan210
ip address 192.168.21.1 255.255.255.0
interface vlan300
ip address 192.168.30.1 255.255.255.0
interface vlan310
ip address 192.168.31.1 255.255.255.0
interface GigabitEthernet1/0/1 (NOTE: these ports are probably different on each switch)
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1,100,110,200,210,300,310
switchport mode trunk
interface GigabitEthernet1/0/3 (NOTE: these ports are probably different on each switch)
switchport mode access
switchport access vlan 100
interface GigabitEthernet1/0/4 (NOTE: these ports are probably different on each switch)
switchport access vlan 110
Central-MLS
----------------------------------------------------------
enable
configure terminal
hostname Central-MLS
ip routing
vlan 100
name WestClinic
vlan 110
name WestAdmin
vlan 200
name CentralClinic
vlan 210
name CentralAdmin
vlan 300
name EastClinic
vlan 310
name EastAdmin
interface vlan1
ip address 192.168.1.1 255.255.255.0
interface vlan100
ip address 192.168.10.1 255.255.255.0
interface vlan110
ip address 192.168.11.1 255.255.255.0
interface vlan200
ip address 192.168.20.1 255.255.255.0
interface vlan210
ip address 192.168.21.1 255.255.255.0
interface vlan300
ip address 192.168.30.1 255.255.255.0
interface vlan310
ip address 192.168.31.1 255.255.255.0
interface GigabitEthernet1/0/1 (NOTE: these ports are probably different on each switch)
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1,100,110,200,210,300,310
switchport mode trunk
interface GigabitEthernet1/0/2 (NOTE: these ports are probably different on each switch)
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1,100,110,200,210,300,310
switchport mode trunk
interface GigabitEthernet1/0/3 (NOTE: these ports are probably different on each switch)
switchport mode access
switchport access vlan 200
interface GigabitEthernet1/0/4 (NOTE: these ports are probably different on each switch)
switchport access vlan 210
East-MLS
----------------------------------------------------------
enable
configure terminal
hostname East-MLS
ip routing
vlan 100
name WestClinic
vlan 110
name WestAdmin
vlan 200
name CentralClinic
vlan 210
name CentralAdmin
vlan 300
name EastClinic
vlan 310
name EastAdmin
interface vlan1
ip address 192.168.1.1 255.255.255.0
interface vlan100
ip address 192.168.10.1 255.255.255.0
interface vlan110
ip address 192.168.11.1 255.255.255.0
interface vlan200
ip address 192.168.20.1 255.255.255.0
interface vlan210
ip address 192.168.21.1 255.255.255.0
interface vlan300
ip address 192.168.30.1 255.255.255.0
interface vlan310
ip address 192.168.31.1 255.255.255.0
interface GigabitEthernet1/0/1 (NOTE: these ports are probably different on each switch)
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1,100,110,200,210,300,310
switchport mode trunk
interface GigabitEthernet1/0/3 (NOTE: these ports are probably different on each switch)
switchport mode access
switchport access vlan 300
interface GigabitEthernet1/0/4 (NOTE: these ports are probably different on each switch)
switchport access vlan 310