Lab Simulation 4
Guidelines
This is a lab item in which tasks will be performed on virtual devices.
- Refer to the Tasks tab to view the tasks for this lab item.
- Refer to the Topology tab to access the device console(s) and perform the tasks.
- Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window.
- All necessary preconfigurations have been applied.
- Do not change the enable password or hostname for any device.
- Save your configurations to NVRAM before moving to the next item.
- Click Next at the bottom of the screen to submit this lab and move to the next question.
- When Next is clicked, the lab closes and cannot be reopened.
Topology

Tasks
Implement VRRP between DISTRO-SW1 and DISTRO-SW2 on VLAN100 for hosts connected to ACCESS-SW1 to achieve these goals:
1. Configure group number 200 using the virtual IP address of 192.168.1.200/24.
2. Configure DISTRO-SW1 as the active router using a priority value of 200 and DISTRO-SW2 as the standby router.
3. DISTRO-SW1 and DISTRO-SW2 should exchange VRRP hello packets every 20 seconds.
Correct Answer:
Notice that the VRRP configuration in this sim is configured under interface VLAN, not physical interfaces.
On DSW1:
DSW1(config)#interface vlan 100 //The VLAN number may be different in the exam DSW1(config-if)#vrrp 200 ip 192.168.1.200 //virtual VRRP IP address, same on both switches, the IP address may be different in the exam DSW1(config-if)#vrrp 200 priority 200 //priority value may be different DSW1(config-if)#vrrp 200 timers advertise 20 //Specifying interval to 20 seconds On DSW2:
DSW2(config)#interface vlan 100
DSW2(config-if)#vrrp 200 ip 192.168.1.200
DSW2(config-if)#vrrp 200 timers advertise 20 //Specifying interval to 20 seconds Verification DSW1,DSW2#show vrrp Save the configuration DSW1,DSW2#copy running-config startup-config