Carlos Fernandez Lockward
Carlos Fernandez Lockward
I commented a suggestion on your fix! I don't really know the full architecture of pyroute2 so I could be wrong but by looking at your commit I could infer...
Seems like the problem is still not fixed on 0.6.6 Creating a GRE tunnel as before i get this tunnel. ``` { "flags": 144, "state": "down", "ifname": "TEST-GRE", "target": "localhost",...
Awesome thank you! I assume this is not going to make it to version 0.6.6 so I will download the source and try to test again tomorrow.
I tested from source (version '0.6.6.post8'). Editing GRE tunnel configurations seems to be working now! Thank you.
*If possible*, could do a 0.6.7 release including this fix? It will make my life so much easier.
@svinota I've been testing 0.6.7 more thoroughly now and if found an issue when updating gre keys specifically. ``` >>> test.ndb.interfaces["gre-WAN"].set(f"gre_ikey", 10).set(f"gre_okey", 10).commit() possibly incorrect GRE flags, see https://github.com/svinota/pyroute2/issues/531 possibly...
I'm running on arm64(aarch64). Its Little Endian.
I was able to narrow it down to "gre_iflags" and "gre_oflags". I originally tried to set the both to 32 and that caused the issue. If I delete and recreate...
Thanks for the clarification! When implementing the new friendlier alternative to this method. Consider having the event msg be on a friendlier format similar to whats provided by NDB *if...