Set up First-Hop redundancy protocol

This commit is contained in:
Manuel Thalmann 2023-12-04 19:20:56 +01:00
parent 38f32833c0
commit 3d119480e5
2 changed files with 22 additions and 3 deletions

BIN
Networks/Main.pkt (Stored with Git LFS)

Binary file not shown.

View file

@ -4,7 +4,7 @@
> - Add the routers `R1` and `R2`
> - Create a subinterface FE0/0.10 for VLAN10
## Router Configuration
## Inter-VLAN Routing Configuration
For each router, configure this replacing `{x}` with the router number:
```sh
@ -30,3 +30,22 @@ exit
disable
exit
```
## First-Hop Redundancy Protocol Setup
On each router:
```sh
enable
configure terminal
interface fastEthernet 0/0.10
standby 1 ip 10.10.0.111
interface fastEthernet 0/0.20
standby 2 ip 10.20.0.222
exit
exit
disable
exit
```