VLANs divide the network in to smaller broadcast domains but also prohibit communication between domains. To enable communication, we use InterVLAN Routing. In InterVLAN routing, use two or more VLAN connectivity. InterVLAN routing also called Router on Stick Method. Figure: InterVLAN Routing InterVLAN Routing Configuration Switch Configuration Step 1: Create two VLANs in switch and name it. 1st VLAN Switch#configure terminal Switch(config)#vlan 20 Switch(config-vlan)# name HR Switch(config-vlan)# exit 2nd VLAN Switch#configure terminal Switch(config)#vlan 30 Switch(config-vlan)#name Sales Switch(config-vlan)#exit Step 2: Assign Port with separate VLAN For VLAN 20 Switch(config)#interface e0/1 Switch(config-if)#switchport access vlan 20 Switch(config-if)#exit For VLAN 30 Switch(config)#interface e0/2 Switch(config-if)#switchport access vlan 30 Switch(config-if)#exit Step 3: Trunk the Port Switch(config)#interface e...