Comment 4 for bug 1995735

Revision history for this message
Frode Nordahl (fnordahl) wrote :

Adding this instrumentation prior to the `_run_iproute_addr` call:

    LOG.info(f'HELLO? op "delete" device={device}, namespace={namespace}, ip={ip}, prefixlen={prefixlen}, family={family}')

Reveals:
2022-11-17 07:23:15.619 916107 INFO neutron.privileged.agent.linux.ip_lib [-] HELLO? op "delete" device=tap8b48b83e-51, namespace=ovnmeta-8b48b83e-5925-4d24-9c61-a2633eb377f4, ip=fe80::a85c:30ff:fee3:53e4, prefixlen=64, family=10

Which is weird, because the following command succeeds:
sudo ip netns exec ovnmeta-8b48b83e-5925-4d24-9c61-a2633eb377f4 ip a del fe80::a85c:30ff:fee3:53e4/64 dev tap8b48b83e-51

Does pyroute2 need an update?