MLS and EIGRP Sim 1
Configure the Multilayer Switch so that PCs from VLAN 2 and VLAN 3 can communicate with the Server.
Answer:
Explanation:
enable
conf t
int g0/1
no switchport
ip address 10.10.10.2 255.255.255.0
no shutdown
exit
int vlan 2
ip address 190.200.250.33 255.255.255.224
no shutdown
exit
int vlan 3
ip address 190.200.250.65 255.255.255.224
no shutdown
exit
int gi0/10
switchport mode access
switchport access vlan 2
no shutdown
exit
int gi0/11
switchport mode access
switchport access vlan 3
no shutdown
exit
ip routing
router eigrp 650
network 10.10.10.0 0.0.0.255
network 190.200.250.32 0.0.0.31
network 190.200.250.64 0.0.0.31
no auto-summary
end
copy running-config startup-config