0% found this document useful (0 votes)
103 views6 pages

Command of Cisco Network Admin L4

This three day Cisco networking course focuses on network configuration and troubleshooting. Topics include OSI models, IPv4 addressing, Cisco IOS commands, switch configuration, VLANs, trunking, routing, and access control lists. Hands on labs will have students implementing networks at an HQ, cloud, and branch site, configuring switches, routers, and multilayer devices. Initial configurations are shown for switches and routers at the HQ site involving hostname, interface, VLAN, trunk, and routing settings.

Uploaded by

Keem Lee
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
103 views6 pages

Command of Cisco Network Admin L4

This three day Cisco networking course focuses on network configuration and troubleshooting. Topics include OSI models, IPv4 addressing, Cisco IOS commands, switch configuration, VLANs, trunking, routing, and access control lists. Hands on labs will have students implementing networks at an HQ, cloud, and branch site, configuring switches, routers, and multilayer devices. Initial configurations are shown for switches and routers at the HQ site involving hostname, interface, VLAN, trunk, and routing settings.

Uploaded by

Keem Lee
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Cisco Network Admin Level4 (17,24,31 October 2021)

Course Outline: (Workshop) ทฤษฐี 30% ปฏิบ ัติ 70%

This course will happen verify and troubleshooting all time

- OSI 7 Layer Model and TCP/IP overview


- Basic Network Concept
- Understand and calculation IPv4 address/Subnet
- Packet Tracer overview
- Cisco IOS command concept

Implement network and configure at HQ site


- Performing switch startup and initial configuration
- Understand MAC address table
- Switch security
- Disable unused ports
- Port security by MAC filtering
- Disable unuse services
- Enable SSH instead Telnet
- Understanding and Configuring (VLANs)
- Configuring BPDU Guard
- Understanding and Configuring Trunk
- Native VLAN and secure Trunk links
- Install multilayer switch
- Configuration port aggregation
- Understanding and Configuring Inter-VLAN
- Configuring DHCP Server and Relay Agent
- DHCP Snooping
- Performing Initial Router Setup and Configuration
- Understanding ARP table
- Understanding Routing table
- Understanding and Configuring Static and Dynamic Routing
- Implementing Static and OSPF
- Configuring Access Control List (ACL)
Implement network and configure at Cloud site
- Install multilayer switch
- Configuration DNS and WEB
- Performing Initial Router Setup and Configuration
- Implementing OSPF and BGP
- Configuring Access Control List (ACL)
- Configure NTP Protocol

Implement network and configure at Branch site


- Performing switch startup and initial configuration
- Configuring (VLANs)
- Configuring BPDU Guard
- Configuring Trunk
- Install multilayer switch
- Configuring Inter-VLAN
- Configuring DHCP Server and Relay Agent
- DHCP Snooping
- Performing Initial Router Setup and Configuration
- Implementing Static and EIGRP
- Configuring Access Control List (ACL)
- Wireless Network, Wireless LAN Controller
- Backup Configuration Files
- Super Lab for summary knowledge before end class.

Command on 17 October 2021


At HQ-SW-F1 and HQ-SW-F2:
Switch>enable
Switch#configure terminal
Switch(config)#hostname HQ-SW-F1
HQ-SW-F1(config)#no ip domain-lookup
HQ-SW-F1(config)# enable secret ciscol4
HQ-SW-F1(config)#username mark secret ciscol4
HQ-SW-F1(config)#ip domain-name itikz.sharing
HQ-SW-F1(config)#crypto key generate rsa
HQ-SW-F1(config)#line vty 0 15
HQ-SW-F1(config-line)#transport input ssh
HQ-SW-F1(config-line)#login local
HQ-SW-F1(config-line)#exit
HQ-SW-F1(config)#line console 0
HQ-SW-F1(config-line)#login local
HQ-SW-F1(config-line)#end
HQ-SW-F1#show mac address-table
HQ-SW-F1#configure terminal
HQ-SW-F1(config)#interface fastEthernet 0/1
HQ-SW-F1(config-if)# switchport mode access
HQ-SW-F1(config-if)#switchport port-security
HQ-SW-F1(config-if)#switchport port-security mac-address 0009.7C6E.81B8
HQ-SW-F1(config-if)#end
HQ-SW-F1# show port-security interface fastEthernet 0/1
HQ-SW-F1#show mac address-table
HQ-SW-F1#configure terminal
HQ-SW-F1(config)# interface range fastEthernet 0/6-24
HQ-SW-F1(config-if-range)#shutdown
HQ-SW-F1(config-if-range)#exit
HQ-SW-F1(config)#no cdp run
HQ-SW-F1(config)#exit
HQ-SW-F1#wr
HQ-SW-F1#show vlan interface brief
HQ-SW-F1#configure terminal
HQ-SW-F1(config)#vlan 88
HQ-SW-F1(config-vlan)#name Native
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#intface vlan 88
HQ-SW-F1(config-if)#ip address 192.168.88.2 255.255.255.0
HQ-SW-F1(config-if)#exit
HQ-SW-F1(config)#
HQ-SW-F1(config)#vlan 90
HQ-SW-F1(config-vlan)#name Server
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#vlan 101
HQ-SW-F1(config-vlan)#name Sale
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#vlan 102
HQ-SW-F1(config-vlan)#name Marketing
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#vlan 103
HQ-SW-F1(config-vlan)#name IT
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#vlan 104
HQ-SW-F1(config-vlan)#name Logistic
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#vlan 105
HQ-SW-F1(config-vlan)#name Planning
HQ-SW-F1(config-vlan)#exit
HQ-SW-F1(config)#interface fastEthernet 0/1
HQ-SW-F1(config-if)#switchport access vlan 101
HQ-SW-F1(config-if)#exit
HQ-SW-F1(config)#interface fastEthernet 0/2
HQ-SW-F1(config-if)#switchport access vlan 102
HQ-SW-F1(config-if)#exit
HQ-SW-F1(config)#interface fastEthernet 0/3
HQ-SW-F1(config-if)#switchport access vlan 103
HQ-SW-F1(config-if)#exit
HQ-SW-F1(config)#interface fastEthernet 0/4
HQ-SW-F1(config-if)#switchport access vlan 104
HQ-SW-F1(config-if)#exit
HQ-SW-F1(config)#interface fastEthernet 0/5
HQ-SW-F1(config-if)#switchport access vlan 105
HQ-SW-F1(config-if)#exit
HQ-SW-F1(config)#interface range gigabitEthernet 0/1-2
HQ-SW-F1(config-if-range)#channel-group 1 mode active
HQ-SW-F1(config-if-range)#exit
HQ-SW-F1(config)#interface port-channel 1
HQ-SW-F1(config-if)#switchport mode trunk
HQ-SW-F1(config-if)#switchport trunk native vlan 88

At HQ-SW-L3:
Switch>enable
Switch#configure terminal
Switch(config)#hostname HQ-SW-L3
HQ-SW-L3(config)#vlan 88
HQ-SW-L3(config-vlan)#name Native
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 88
HQ-SW-L3(config-if)#ip address 192.168.88.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#vlan 90
HQ-SW-L3(config-vlan)#name Server
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 90
HQ-SW-L3(config-if)#ip address 192.168.90.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#vlan 101
HQ-SW-L3(config-vlan)#name Sale
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 101
HQ-SW-L3(config-if)#ip address 192.168.101.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#vlan 102
HQ-SW-L3(config-vlan)#name Marketing
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 102
HQ-SW-L3(config-if)#ip address 192.168.102.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#vlan 103
HQ-SW-L3(config-vlan)#name IT
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 103
HQ-SW-L3(config-if)#ip address 192.168.103.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#vlan 104
HQ-SW-L3(config-vlan)#name Logistic
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 104
HQ-SW-L3(config-if)#ip address 192.168.104.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#vlan 105
HQ-SW-L3(config-vlan)#name Planning
HQ-SW-L3(config-vlan)#exit
HQ-SW-L3(config)#interface vlan 105
HQ-SW-L3(config-if)#ip address 192.168.105.1 255.255.255.0
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#interface range gigabitEthnet 1/0/1-2
HQ-SW-L3(config-if-range)#channel-group 1 mode active
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#interface port-channel 1
HQ-SW-L3(config-if)#swichport trunk encapsulation dot1q
HQ-SW-L3(config-if)#swichport mode trunk
HQ-SW-L3(config-if)#switchport trunk native vlan 88
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#
HQ-SW-L3(config)#interface range gigabitEthnet 1/0/3-4
HQ-SW-L3(config-if-range)#channel-group 2 mode active
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#interface port-channel 2
HQ-SW-L3(config-if)#swichport trunk encapsulation dot1q
HQ-SW-L3(config-if)#swichport mode trunk
HQ-SW-L3(config-if)#switchport trunk native vlan 88
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#ip routing
HQ-SW-L3(config)#ip dhcp snooping
HQ-SW-L3(config)#ip chcp snooping vlan 90
HQ-SW-L3(config)#interface gigabitEthernet 1/0/5
HQ-SW-L3(config-if)#switchport access vlan 90
HQ-SW-L3(config-if)#ip dhcp snooping trust
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#interface gigabitEthernet 1/0/6
HQ-SW-L3(config-if)#no switchport
HQ-SW-L3(config-if)#ip address 10.1.2.1 255.255.255.252
HQ-SW-L3(config-if)#no shutdown
HQ-SW-L3(config-if)#exit
HQ-SW-L3(config)#
HQ-SW-L3(config)#interface gigabitEthernet 1/0/7
HQ-SW-L3(config-if)#no switchport
HQ-SW-L3(config-if)#ip address 10.1.2.5 255.255.255.252
HQ-SW-L3(config-if)#no shutdown

At Router HQ-R1:
Router>enable
Router#configure terminal
Router(config)#hostname HQ-R1
HQ-R1(config)#interface gigabitEthernet 0/0/0
HQ-R1(config-if)#ip address 10.1.2.2 255.255.255.252
HQ-R1(config-if)#no shutdown
HQ-R1(config-if)#exit
HQ-R1(config)#interface gigabitEthernet 0/0/1
HQ-R1(config-if)#ip address 10.1.1.1 255.255.255.252
HQ-R1(config-if)#no shutdown
HQ-R1(config-if)#exit

At Router HQ-R2:
Router>enable
Router#configure terminal
Router(config)#hostname HQ-R2
HQ-R2(config)#interface gigabitEthernet 0/0/0
HQ-R2(config-if)#ip address 10.1.2.5 255.255.255.252
HQ-R2(config-if)#no shutdown
HQ-R2(config-if)#exit
HQ-R2(config)#interface gigabitEthernet 0/0/1
HQ-R2(config-if)#ip address 10.1.1.9 255.255.255.252
HQ-R2(config-if)#no shutdown
HQ-R2(config-if)#exit

You might also like