Uploaded image for project: 'OpenShift Bugs'
  1. OpenShift Bugs
  2. OCPBUGS-48318

Nopreempt option doesn't work properly with Vsphere cluster

XMLWordPrintable

    • Quality / Stability / Reliability
    • False
    • Hide

      None

      Show
      None
    • 3
    • Moderate
    • None
    • None
    • Rejected
    • NI&D Sprint 268, NI&D Sprint 269, NI&D Sprint 270, NI&D Sprint 271
    • 4
    • Proposed
    • Bug Fix
    • Hide
      * Before this update, when externakl hosts and {product-title} use the same Virtual Router Identifier (VRID) for different Virtual Router Redundancy Protocols (VRRPs), a potential collision occurs. As a result, the VRRP election process impacts the `nopreempt` strategy. With this release, the default VRID offset is set to `10` so that {product-title} uses a VRID that does nto conflict with VRRP services that are used by external hosts. The VRRP election process and the `nopreempt` option work as expected. (link:https://issues.redhat.com/browse/OCPBUGS-48318[OCPBUGS-48318])
      Show
      * Before this update, when externakl hosts and {product-title} use the same Virtual Router Identifier (VRID) for different Virtual Router Redundancy Protocols (VRRPs), a potential collision occurs. As a result, the VRRP election process impacts the `nopreempt` strategy. With this release, the default VRID offset is set to `10` so that {product-title} uses a VRID that does nto conflict with VRRP services that are used by external hosts. The VRRP election process and the `nopreempt` option work as expected. (link: https://issues.redhat.com/browse/OCPBUGS-48318 [ OCPBUGS-48318 ])
    • None
    • None
    • None
    • None

      Description of problem:

          when the master ipfailover pod is deleted or rebooted, the backup pod should become the master and stay as master even the other pod boots up, if preemption is disabled. But here in the vsphere cluster most time the no-preemption option is not working as expected 

      Version-Release number of selected component (if applicable):

          

      How reproducible:

          

      Steps to Reproduce:

       mjoseph@mjoseph-mac Downloads %  oc create sa ipfailover
      serviceaccount/ipfailover created
      mjoseph@mjoseph-mac Downloads % oc adm policy add-scc-to-user privileged -z ipfailover
      clusterrole.rbac.authorization.k8s.io/system:openshift:scc:privileged added: "ipfailover"
      mjoseph@mjoseph-mac Downloads % oc adm policy add-scc-to-user hostnetwork -z ipfailover
      clusterrole.rbac.authorization.k8s.io/system:openshift:scc:hostnetwork added: "ipfailover"
      mjoseph@mjoseph-mac Downloads % oc create configmap keepalived-checkscript --from-file= mycheckscript.sh 
      error: exactly one NAME is required, got 2
      See 'oc create configmap -h' for help and examples
      mjoseph@mjoseph-mac Downloads % oc create configmap keepalived-checkscript --from-file=mycheckscript.sh
      configmap/keepalived-checkscript created
      mjoseph@mjoseph-mac Downloads % oc create -fipfailover.yaml 
      deployment.apps/ipfailover-keepalived created
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % oc get po
      NAME                                     READY   STATUS    RESTARTS   AGE
      ipfailover-keepalived-6df9d544b4-6c9jv   1/1     Running   0          18s
      ipfailover-keepalived-6df9d544b4-8w95w   1/1     Running   0          18s     
      
      
      mjoseph@mjoseph-mac Downloads % cat ipfailover.yaml 
      apiVersion: apps/v1
      kind: Deployment
      metadata:
        name: ipfailover-keepalived 
        labels:
          ipfailover: hello-openshift
      spec:
        strategy:
          type: Recreate
        replicas: 2
        selector:
          matchLabels:
            ipfailover: hello-openshift
        template:
          metadata:
            labels:
              ipfailover: hello-openshift
          spec:
            serviceAccountName: ipfailover
            privileged: true
            hostNetwork: true
            nodeSelector:
              node-role.kubernetes.io/worker: ""
            containers:
            - name: openshift-ipfailover
              image:  quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:bb13ae745780d38beb4e472a5c3681783a2555f9f0ccf1b22b6d4facb32a08e2        ports:
              - containerPort: 63000
                hostPort: 63000
              imagePullPolicy: IfNotPresent
              securityContext:
                privileged: true
              volumeMounts:
              - name: lib-modules
                mountPath: /lib/modules
                readOnly: true
              - name: host-slash
                mountPath: /host
                readOnly: true
                mountPropagation: HostToContainer
              - name: etc-sysconfig
                mountPath: /etc/sysconfig
                readOnly: true
              - name: config-volume
                mountPath: /etc/keepalive
              env:
              - name: OPENSHIFT_HA_CONFIG_NAME
                value: "ipfailover"
              - name: OPENSHIFT_HA_VIRTUAL_IPS 
                # value: "1.1.1.1"
                value: 192.168.221.100-101
              - name: OPENSHIFT_HA_VIP_GROUPS 
                value: "10"
              - name: OPENSHIFT_HA_NETWORK_INTERFACE 
                value: "br-ex" #The host interface to assign the VIPs
              - name: OPENSHIFT_HA_MONITOR_PORT 
                value: "30060"
              - name: OPENSHIFT_HA_VRRP_ID_OFFSET 
                value: "0"
              - name: OPENSHIFT_HA_REPLICA_COUNT 
                value: "2" #Must match the number of replicas in the deployment
              - name: OPENSHIFT_HA_USE_UNICAST
                value: "false"
              #- name: OPENSHIFT_HA_UNICAST_PEERS
                #value: "10.0.148.40,10.0.160.234,10.0.199.110"
              - name: OPENSHIFT_HA_IPTABLES_CHAIN 
                value: "INPUT"
              # - name: OPENSHIFT_HA_NOTIFY_SCRIPT 
              #  value: /etc/keepalive/mynotifyscript.sh
              - name: OPENSHIFT_HA_CHECK_SCRIPT 
                value: "/etc/keepalive/mycheckscript.sh"
              - name: OPENSHIFT_HA_PREEMPTION 
                value: "nopreempt"
                # value: "preempt_delay 120"
              - name: OPENSHIFT_HA_CHECK_INTERVAL 
                value: "2"
              livenessProbe:
                initialDelaySeconds: 10
                exec:
                  command:
                  - pgrep
                  - keepalived
            volumes:
            - name: lib-modules
              hostPath:
                path: /lib/modules
            - name: host-slash
              hostPath:
                path: /
            - name: etc-sysconfig
              hostPath:
                path: /etc/sysconfig
            # config-volume contains the check script
            # created with `oc create configmap keepalived-checkscript --from-file=mycheckscript.sh`
            - configMap:
                defaultMode: 0755
                name: keepalived-checkscript
              name: config-volume
            imagePullSecrets:
              - name: openshift-pull-secret 
      mjoseph@mjoseph-mac Downloads % 
      
      mjoseph@mjoseph-mac Downloads % oc logs ipfailover-keepalived-6df9d544b4-6c9jv
        - Loading ip_vs module ...
        - Checking if ip_vs module is available ...
      ip_vs                 237568  0
        - Module ip_vs is loaded.
        - check for iptables rule for keepalived multicast (224.0.0.18) ...
        - Generating and writing config to /etc/keepalived/keepalived.conf
        - Starting failover services ...
      Mon Jan 13 08:46:10 2025: Starting Keepalived v2.2.8 (04/04,2023), git commit v2.2.7-154-g292b299e+
      Mon Jan 13 08:46:10 2025: Running on Linux 5.14.0-427.50.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 18 13:06:23 EST 2024 (built for Linux 5.14.0)
      Mon Jan 13 08:46:10 2025: Command line: '/usr/sbin/keepalived' '-n' '--log-console'
      Mon Jan 13 08:46:10 2025: Configuration file /etc/keepalived/keepalived.conf
      Mon Jan 13 08:46:10 2025: Starting VRRP child process, pid=84
      Mon Jan 13 08:46:10 2025: Script user 'keepalived_script' does not exist
      Mon Jan 13 08:46:10 2025: (/etc/keepalived/keepalived.conf: Line 30) Truncating auth_pass to 8 characters
      Mon Jan 13 08:46:10 2025: (/etc/keepalived/keepalived.conf: Line 54) Truncating auth_pass to 8 characters
      Mon Jan 13 08:46:10 2025: Unsafe permissions found for script '/etc/keepalive/..2025_01_13_08_46_09.931056531/mycheckscript.sh'.
      Mon Jan 13 08:46:10 2025: SECURITY VIOLATION - scripts are being executed but script_security not enabled. There are insecure scripts.
      Mon Jan 13 08:46:10 2025: Startup complete
      Mon Jan 13 08:46:10 2025: VRRP_Script(chk_ipfailover) succeeded
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_2) Entering BACKUP STATE
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:11 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:12 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:13 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:13 2025: (ipfailover_VIP_2) Entering MASTER STATE
      Mon Jan 13 08:46:14 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:15 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:16 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:17 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:18 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:19 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:20 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) Received advert from 192.168.221.150 with lower priority 233, ours 253, forcing new election
      Mon Jan 13 08:46:22 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:23 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:24 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:25 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:26 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) Received advert from 192.168.221.150 with lower priority 233, ours 253, forcing new election
      Mon Jan 13 08:46:28 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:29 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:30 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) Received advert from 192.168.221.150 with lower priority 233, ours 253, forcing new election
      Mon Jan 13 08:46:32 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:33 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:34 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) Received advert from 192.168.221.150 with lower priority 233, ours 253, forcing new election
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % oc logs ipfailover-keepalived-6df9d544b4-6c9jv | grep Entering
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_2) Entering BACKUP STATE
      Mon Jan 13 08:46:13 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:13 2025: (ipfailover_VIP_2) Entering MASTER STATE
      
      
      mjoseph@mjoseph-mac Downloads % oc logs ipfailover-keepalived-6df9d544b4-8w95w | grep Entering
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_2) Entering BACKUP STATE
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:39 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:39 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:45 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:45 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:52 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:52 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:56 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:56 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      
      
      Deleting the master po
      mjoseph@mjoseph-mac Downloads % oc delete po ipfailover-keepalived-6df9d544b4-6c9jv
      pod "ipfailover-keepalived-6df9d544b4-6c9jv" deleted
      
      mjoseph@mjoseph-mac Downloads % oc get po                                          
      oc logsNAME                                     READY   STATUS    RESTARTS   AGE
      ipfailover-keepalived-6df9d544b4-6nf2q   1/1     Running   0          5s
      ipfailover-keepalived-6df9d544b4-8w95w   1/1     Running   0          108s
      
      mjoseph@mjoseph-mac Downloads % oc logs ipfailover-keepalived-6df9d544b4-6nf2q | grep Entering
      Mon Jan 13 08:47:54 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:54 2025: (ipfailover_VIP_2) Entering BACKUP STATE
      Mon Jan 13 08:47:57 2025: (ipfailover_VIP_1) Entering MASTER STATE
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % 
      mjoseph@mjoseph-mac Downloads % oc logs ipfailover-keepalived-6df9d544b4-6nf2q | grep Entering
      Mon Jan 13 08:47:54 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:54 2025: (ipfailover_VIP_2) Entering BACKUP STATE
      Mon Jan 13 08:47:57 2025: (ipfailover_VIP_1) Entering MASTER STATE
      
      We can see the 'ipfailover_VIP_2' in ipfailover-keepalived-6df9d544b4-6nf2q  and it is still in backup state and 'ipfailover_VIP_1' is fluctuating between master and backup state
      
      
      mjoseph@mjoseph-mac Downloads % oc logs ipfailover-keepalived-6df9d544b4-8w95w                
        - Loading ip_vs module ...
        - Checking if ip_vs module is available ...
      ip_vs                 237568  0
        - Module ip_vs is loaded.
        - check for iptables rule for keepalived multicast (224.0.0.18) ...
        - Generating and writing config to /etc/keepalived/keepalived.conf
        - Starting failover services ...
      Mon Jan 13 08:46:10 2025: Starting Keepalived v2.2.8 (04/04,2023), git commit v2.2.7-154-g292b299e+
      Mon Jan 13 08:46:10 2025: Running on Linux 5.14.0-427.50.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 18 13:06:23 EST 2024 (built for Linux 5.14.0)
      Mon Jan 13 08:46:10 2025: Command line: '/usr/sbin/keepalived' '-n' '--log-console'
      Mon Jan 13 08:46:10 2025: Configuration file /etc/keepalived/keepalived.conf
      Mon Jan 13 08:46:10 2025: Starting VRRP child process, pid=84
      Mon Jan 13 08:46:10 2025: Script user 'keepalived_script' does not exist
      Mon Jan 13 08:46:10 2025: (/etc/keepalived/keepalived.conf: Line 30) Truncating auth_pass to 8 characters
      Mon Jan 13 08:46:10 2025: (/etc/keepalived/keepalived.conf: Line 54) Truncating auth_pass to 8 characters
      Mon Jan 13 08:46:10 2025: Unsafe permissions found for script '/etc/keepalive/..2025_01_13_08_46_09.224370222/mycheckscript.sh'.
      Mon Jan 13 08:46:10 2025: SECURITY VIOLATION - scripts are being executed but script_security not enabled. There are insecure scripts.
      Mon Jan 13 08:46:10 2025: Startup complete
      Mon Jan 13 08:46:10 2025: VRRP_Script(chk_ipfailover) succeeded
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_2) Entering BACKUP STATE
      Mon Jan 13 08:46:10 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:11 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:12 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:14 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:15 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:16 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:17 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:18 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:19 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:20 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:21 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:22 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:23 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:24 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:25 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:26 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:27 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:28 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:29 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:30 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:31 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:32 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:33 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:34 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:35 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:36 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:37 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:38 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:39 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:39 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:39 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:39 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:40 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:41 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:42 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:43 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:44 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:45 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:45 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:45 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:45 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:46 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:47 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:48 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:49 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:50 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:51 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:52 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:52 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:52 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:53 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:54 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:55 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:56 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:56 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:46:56 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:46:56 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:46:57 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:58 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:46:59 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:00 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:01 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:02 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:03 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:04 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:05 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:06 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:07 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:08 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:09 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:10 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:11 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:12 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:13 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:14 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:15 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:16 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:17 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:18 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:19 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:20 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:20 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:20 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:20 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:21 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:22 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:23 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:24 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:24 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:24 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:24 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:25 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:26 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:27 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:28 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:28 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:28 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:28 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:29 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:30 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:31 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:32 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:33 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:34 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:34 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:34 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:34 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:36 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:37 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:38 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:39 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:39 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:39 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:39 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:41 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:42 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:43 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:44 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:45 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:46 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:46 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:46 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:46 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:47 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:48 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:49 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:50 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:51 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:52 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:47:52 2025: (ipfailover_VIP_2) Entering MASTER STATE
      Mon Jan 13 08:47:53 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:54 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:55 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:56 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:57 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:57 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:47:57 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:47:58 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:47:59 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:00 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:00 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:00 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:00 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:01 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:02 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:03 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:04 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:05 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:06 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:06 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:06 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:07 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:08 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:09 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:10 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:11 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:12 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:12 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:12 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:12 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:13 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:14 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:15 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:16 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:16 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:16 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:16 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:17 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:18 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:19 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:19 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:19 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:19 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:20 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:21 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:22 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:23 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:24 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:25 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:26 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:27 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:27 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:27 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:27 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:28 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:29 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:30 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:31 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:31 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:31 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:31 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:32 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:33 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:34 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:35 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:35 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:35 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:35 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:36 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:37 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:38 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:39 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:40 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:41 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:42 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:43 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:43 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:48:43 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:48:43 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:48:44 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:45 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:46 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:47 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:48 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:49 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:50 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:51 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:52 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:53 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:54 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:55 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:56 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:57 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:58 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:48:59 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:00 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:01 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:02 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:02 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:49:02 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:49:02 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:49:03 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:04 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:05 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:06 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:07 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:08 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:09 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:10 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:10 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:49:10 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:49:10 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:49:11 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:12 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:13 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:14 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:49:14 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:49:14 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:49:15 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:16 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:17 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:18 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:19 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:20 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:21 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:22 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:23 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:24 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:25 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:26 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:26 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:49:26 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:49:26 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:49:27 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:28 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:29 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:30 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:31 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:32 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:33 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:34 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:35 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:35 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:49:35 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:49:35 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:49:37 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:38 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:39 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:40 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:40 2025: (ipfailover_VIP_1) Entering MASTER STATE
      Mon Jan 13 08:49:40 2025: (ipfailover_VIP_1) Master received advert from 192.168.221.130 with higher priority 253, ours 233
      Mon Jan 13 08:49:40 2025: (ipfailover_VIP_1) Entering BACKUP STATE
      Mon Jan 13 08:49:41 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:42 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!
      Mon Jan 13 08:49:43 2025: (ipfailover_VIP_1) received a 0 auth, expecting 1!

       

      Actual results:

       

      Expected results:

      both vip group should be master in 'ipfailover-keepalived-6df9d544b4-8w95w' pod 

      Additional info:

          

              rhn-engineering-rohara Ryan O'Hara
              rhn-support-mjoseph Melvin Joseph
              None
              None
              Melvin Joseph Melvin Joseph
              Darragh Fitzmaurice Darragh Fitzmaurice
              Votes:
              0 Vote for this issue
              Watchers:
              7 Start watching this issue

                Created:
                Updated: