Set up First-Hop redundancy protocol
This commit is contained in:
parent
38f32833c0
commit
3d119480e5
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -4,7 +4,7 @@
|
||||||
> - Add the routers `R1` and `R2`
|
> - Add the routers `R1` and `R2`
|
||||||
> - Create a subinterface FE0/0.10 for VLAN10
|
> - 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:
|
For each router, configure this replacing `{x}` with the router number:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
@ -30,3 +30,22 @@ exit
|
||||||
disable
|
disable
|
||||||
exit
|
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
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue