Errror log vrrp master agent

hi , i found these message in the logfiles.

any idea what happend?

i have two vyos as ha with vrrp see config snippet

 Keepalived_vrrp[2249]: Warning: Failed to connect to the agentx master agent ([NIL]):

config snippet



high-availability {
    vrrp {
        group Private {
            address             192.168.95.1/24 { }
            description "Gateway sync"
            interface "eth1"
            vrid "10"
        }
        group Public {
            address             10.0.0.3/23 { }
            interface "eth0"
            vrid "20"
        }
        sync-group sync {
            member "Private"
            member "Public"
        }
    }
}





service {
    conntrack-sync {
        accept-protocol "tcp"
        accept-protocol "udp"
        accept-protocol "icmp"
        event-listen-queue-size "8"
        failover-mechanism {
            vrrp {
                sync-group "sync"
            }
        }
        interface         eth1 { }
        mcast-group "224.0.0.60"
        sync-queue-size "8"
    }
    dhcp-server {
        failover {
            name "internal-network"
            remote "192.168.95.3"
            source-address "192.168.95.2"
            status "primary"
        }
        shared-network-name LAN {
            authoritative { }
            subnet 192.168.95.0/24 {
                default-router "192.168.95.1"
                domain-name "internal-network"
                enable-failover { }
                lease "900"
                name-server "192.168.95.1"
                range 0 {
                    start "192.168.95.20"
                    stop "192.168.95.254"
                }
            }
        }
    }

Hello @tomcat667,

You need to configure the snmp agent on both routers.
For example:
set service snmp community test authorization 'ro'

1 Like

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