Tartalomjegyzék

< Cisco

Redundáns átjárók

A routerek redundaciájáról

Két fizikai routert használunk, mellette pedig egy virtuális routert készítünk. A hálózati elemek a virtuális router használják átjárónak.

forwarding       virtuális            standby
router             router              router
192.168.10.1      192.168.10.5		192.168.10.2
<R1>-----------------<Rv>--------------<R3>
  |                                      |
  |                                      |
  |-----------------|   |----------------|
                    |   |
               PC1---===---PC3
                      |
                     PC2

FHRP

Az FHRP a First Hop Redundancy Protocol rövidítése, ami magyarul első ugrás rendundancia protokollnak fordítható.

HSRP

              PC0  .11
               |
               |      192.168.20.0/24
               |
             ====
     .1    /     \
  g0/1    /  .5   \   g0/1  .2
      <R1>         <R3>
  g0/0   \   .5    / g0/0
     .1   \       /    .2
           \     /
            ====
             |
             |     192.168.10.0/24
             |
            PC1  .11

A következőkben feltételezem, hogy az IP címek már be vannak állítva.

R1(config)# int g0/0
R1(config-if)# standby 1 ip 192.168.10.5
R1(config-if)# standby 1 priority 150
R1(config-if)# standby 1 preempt

Az interfész kiválasztása utána, az első sor standby 1 ip 192.168.10.5 állítja a virtuális átjárót állítja be. A második sor beállítja a R1 router prioritását. A „preempt” megmondja, hogy kerekedjen felül a többi aktív routeren.

R3(config)# int g0/0
R3(config-if)# standby 1 ip 192.168.10.5

Ugyanezeket a beállításokat végezzük el g0/1 interfészeken is:

R1(config)# int g0/1
R1(config-if)# standby 2 ip 192.168.20.5
R1(config-if)# standby 2 priority 150
R1(config-if)# standby 2 preempt
R3(config)# int g0/1
R3(config-if)# standby 2 ip 192.168.20.5

Ellenőrzés:

R1# show standby
R1# show standby brief
R3# show standby brief

Kikapcsolás

R1(config)# interface g0/1
R1(config-if)# no standby 1
R3(config)# interface g0/1
R3(config-if)# no standby 1

GLBP

A glbp parancsot a CPT nem támogatja.

R1(config)# interface g0/1
R1(config-if)# glbp 1 ip 192.168.1.254
R1(config-if)# glbp 1 preempt
R1(config-if)# glbp 1 priority 150
R1(config-if)# glbp 1 load-balancing round-robin
R3(config)# interface g0/1
R3(config-if)# glbp 1 ip 192.168.1.254
R3(config-if)# glbp 1 load-balancing round-robin

Ellenőrzés:

R1# show glbp
R1# show glbp brief
R3# show glbp brief
ping 209.165.200.225
apr -a