Net 330Lab 7 - ConnorEast/Tech-Journal GitHub Wiki
Configure VLAN capabilities on the distribution switch so that the booted kali Linux devices, in different IP spaces, can ping one another. Then connect it to an external Ethernet port to gain access to an external IP's web page. |
1. Multi-Layer Switch; 1.Switch; 5 Ethernet Cables; 2 Kali Linux devices; Web Server |
Router Section: | Command: |
---|---|
(config)# | int vlan 1 |
(config-if)# | no shut |
(config-if)# | exit |
(config-if)# | exit |
(config)# | int vlan 100 |
(config-if)# | ip address 172.16.10.1 255.255.255.0 |
(config-if)# | no shut |
(config-if)# | exit |
(config)# | int vlan 110 |
(config-if)# | ip address 172.16.11.0 255.255.255.0 |
(config-if)# | no shut |
(config-if)# | exit |
(config)# | interface gigabitethernet 2/0/1 |
(config-if)# | switchport mode trunk |
(config-if)# | switchport mode encapsulation dot1q |
(config-if)# | no shut |
(config-if)# | exit |
(config)# | ip route 0.0.0.0 0.0.0.0 153.104.1.1 |
Router Section: | Command: |
---|---|
(config)# | int vlan 100 |
(config)# | int vlan 110 |
(config)# | interface gigabitethernet 4/0/1 |
(config-if)# | switchport mode trunk |
(config-if)# | switchport mode encapsulation dot1q |
(config-if)# | no shut |