Lab Simulation 2
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
Configure HSRP between DISTRO-SW1 and DISTRO-SW2 on VLAN 100 for hosts connected to ACCESS-SW1 to achieve these goals:
1. Configure group number 1 using the virtual IP address of 192.168.1.1/24.
2. Configure DlSTRO-SW1 as the active router using a priority value of 110 and DISTRO-SW2 as the standby router.
3. Ensure that DISTRO-SW2 will take over the active role when DISTRO-SW1 goes down, and when DISTRO-SW1 recovers, it automatically resumes the active role.
Initial Configurations

Correct Answer:
Note: The HSRP group number, priority value... may be different in the exam so be careful!
DISTRO-SW1:
DISTRO-SW1(config)#interface Vlan 100
DISTRO-SW1(config-if)# standby 1 ip 192.168.1.1
DISTRO-SW1(config-if)# standby 1 priority 110
DISTRO-SW1(config-if)# standby 1 preempt
DISTRO-SW2:
DISTRO-SW2(config)#interface Vlan 100
DISTRO-SW2(config-if)# standby 1 ip 192.168.1.1
DISTRO-SW2(config-if)# standby 1 preempt
Don't forget to save the configs
DISTRO-SW1#, DISTRO-SW2#copy running-config startup-config
Note:
+ The default HSRP priority is 100 so we don't need to configure it on DISTRO-SW2