Thank you! Noticed I am running below libnl versions on all my hosts

yum list installed | grep libnl
libnl3.x86_64                                           3.9.0-1.el9             
         @anaconda
libnl3-cli.x86_64                                       3.9.0-1.el9             
         @anaconda


I modified the file directly 
(./usr/lib/python3.9/site-packages/vdsm/network/netinfo/routes.py) based on 
github links
   -         and route['destination'] == 'none'
   +        and route['destination'] in ('none', '0.0.0.0/0', '::/0')
                        
   -    if r['destination'] == 'none'
   +    if r['destination'] in ('none', '0.0.0.0/0', '::/0')

After changing this, out-of-sync errors disappeared 
_______________________________________________
Users mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/[email protected]/message/QJLC6AENSNVQNV3Y3NMVOV7TLNW6XM4R/

Reply via email to