Tsvetk
Results
1
issues of
Tsvetk
pyroute2 0.7.12 ``` from pyroute2 import NDB ndb = NDB(log='debug', auto_netns=True) ndb.sources.add(netns='testns') # connect to a namespace print(ndb.sources.summary()) with ( ndb.interfaces.create(ifname='veth0', kind='veth', peer={'ifname':'eth0', 'net_ns_fd':'testns', }, state='up',)) as veth0: veth0.set(state='up') veth0.add_ip(address='10.0.0.1',...