Is high-availability vrrp in 1.2.5 or just 1.3+?

I am using the “set high-availability vrrp” functions on 1.3-rolling. Love it.

I’m having a problem with 1.3-rolling dropping crazy amounts of packets under Xen Hypervisor just doing basic routing/ip forwarding, so I’m wondering, if I go thru the effort of building a build environment go make vyos-1.2.5-amd64.iso am I going to lose the high-availability vrrp functions?

If so, is it still true on 1.2.5 that you can only have 1 cluster group with 2 members only?

I built a debian 10 vm router and 0% packetloss, getting wirespeed, so is it possible some way to “install” vyos on a clean debian VM?

Sure I am using it on 1.1.8 with 3 groups.

interfaces {
    bonding bond0 {
        address 204.89.189.2/24
        description "Public Internet"
        hash-policy layer2
        mode 802.3ad
        vif 2 {
            address 10.0.0.2/23
            description "Vocinity Private"
            vrrp {
                vrrp-group 2 {
                    advertise-interval 1
                    preempt true
                    priority 200
                    sync-group lacp
                    virtual-address 10.0.0.1/23
                }
            }
        }
        vif 3 {
            address 10.0.2.2/24
            description "Vocinity Management"
            vrrp {
                vrrp-group 3 {
                    advertise-interval 1
                    preempt true
                    priority 200
                    sync-group lacp
                    virtual-address 10.0.2.1/24
                }
            }
        }
        vrrp {
            vrrp-group 1 {
                advertise-interval 1
                preempt true
                priority 200
                sync-group lacp
                virtual-address 204.89.189.1/24
            }
        }
    }

Just got 1.2.5 and I can now answer my own question . Yes it is.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.