Peter Saveliev

Results 285 comments of Peter Saveliev

Downloading Fedora 25 to get the kernel 4.8

Meanwhile 4.9: ``` $ cat e0.py from pyroute2 import IPRoute with IPRoute() as ipr: for r in ipr.fdb('dump'): print(r.get_attr('NDA_LLADDR')) $ python e0.py 01:00:5e:00:00:01 01:80:c2:00:00:21 33:33:00:00:00:01 33:33:ff:82:db:5f 02:d4:07:82:db:5f 33:33:00:00:00:01 33:33:00:00:00:01 $...

The master head: ``` $ git describe 0.5.9-43-g2039c0c5 ``` But the `IPRoute.fdb()` code is quite old. What about your version?

``` [root@localhost pyroute2]# cat e0.py from pyroute2 import IPRoute with IPRoute() as ipr: for r in ipr.fdb('dump'): print(r.get_attr('NDA_LLADDR')) [root@localhost pyroute2]# python e0.py 01:00:5e:00:00:01 33:33:00:00:00:01 33:33:ff:8f:d5:1b [root@localhost pyroute2]# uname -a Linux...

Is there any chance to get a VM with your kernel to run the test?

@ralonsoh having a minute pls review this change, could it be enough to close the issue: https://github.com/svinota/pyroute2/pull/969/files

Reasonable. Ok, thanks, working on the improvement.