2

Let's say a gateway has traffic between vlan 11 and 22:

Gateway 1 -- FastEthernet 0/1.1 -- vlan 11 -- 192.168.11.1
Gateway 1 -- FastEthernet 0/2.2 -- vlan 22 -- 192.168.22.1

Gateway 2 -- FastEthernet 0/1.1 -- vlan 11 -- 192.168.11.2
Gateway 2 -- FastEthernet 0/2.2 -- vlan 22 -- 192.168.22.2

Obviously, the main point here is both 0/1.1 and 0/2.2 should both switch in case of fail over, always together at the same time, so i think i should configure just ONE VRRP group like this:

FastEthernet 0/1.1 -- vrrp 1 ip 192.168.11.3
FastEthernet 0/2.2 -- vrrp 1 ip 192.168.22.3

So the following is confusing me:

Q1) If just port 0/1.1 fail (vlan 11), then both 11 and 22 will switchover to backup?
Q2) Could the same VRRP group handle more than one IP?
Q3) Will this work at all, or is there any other way?

JCM
  • 163

1 Answers1

0

Finally I have got the answer!

A2) It depends on the model firmware and vendor, but lately they do NOT allow to have more than one IP or IF in the same VRRP group and it will throw an error (Juniper, Cisco, etc).

A3) Even if you could, you shouldn't reuse the same VRRP group. Instead you should have many groups and play with their priorities. Yes, this can be large work to configure.

A1) You should track the interface 0/1.1 and decrement the priority of the other 0/2.2, and viceversa.

JCM
  • 163