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