]> git.proxmox.com Git - mirror_ifupdown2.git/blobdiff - ifupdown2/ifupdown/netlink.py
ipv6-addrgen: add ifquery check/running/ifreload support using netlink cache
[mirror_ifupdown2.git] / ifupdown2 / ifupdown / netlink.py
index 65ce356039cc6057ddccf89d4b5ef1e00e514990..c7b0b76fcbc69ca01ef4107e5135ddfc39f1dd19 100644 (file)
@@ -335,6 +335,11 @@ class Netlink(utilsBase):
             'attr': Link.IFLA_OPERSTATE,
             'name': 'state',
             'func': lambda x: '0%x' % int(x) if x > len(Link.oper_to_string) else Link.oper_to_string[x][8:]
+        },
+        {
+            'attr': Link.IFLA_AF_SPEC,
+            'name': 'af_spec',
+            'func': dict
         }
     ]