Florent Fourcot
Florent Fourcot
@svinota thanks! I will try asap
Hello, There is a merge request here for this feature : https://github.com/svinota/pyroute2/pull/656 But never finalized. One reason is the lack of feedback on this feature, since nobody replied to this...
I think that we don't have any manager yet (that could be few lines of contextmanager with existing code). But you could have a look here : https://github.com/svinota/pyroute2/blob/master/pyroute2/netns/__init__.py#L282 pushns() popns()...
Hello, I will probably not code anything for next two weeks. I'm personally more interested on updating conntrack entries (like connmark attribute), but I didn't understand yet how NFCT_Q_UPDATE constant...
@crosser, we (actually @inemajo) are currently working on it. We will soon propose a patch for entries dump (with filtering), and add() as well (we need it at least for...
Ok great, I keep this issue opened since we probably lack some documentation.
Hello, We have to improve documentation on this part. Currently, only tuple is allowed in skbprio. You can see an exemple in test file: https://github.com/svinota/pyroute2/blob/master/tests/general/test_ipset.py#L215 It could be a great...
@svinota good catch, thanks! So relevant part is now in file ```pyroute2.core/pr2modules/iproute/req.py```: ```python class IPNeighRequest(IPRequest): def fix_request(self): if 'nud' in self: self['state'] = self.pop('nud') log.warning('use `state` instead of `nud`') if...
@svinota we should perhaps silent a little bit this logger for ethtool ? Since we have a fallback mode, that is not really an error
Hello, ```get_addr``` will run a python filtering on all configured addresses, so it can be slow. Especially if you have a lot of addresses on the system. If you want...