scapy-vxlan
scapy-vxlan copied to clipboard
A scapy clone, with support for additional packet headers
Upstream Scapy appears to have VXLAN support now: https://github.com/secdev/scapy/blob/master/scapy/layers/vxlan.py Upstream Scapy also supports Python 3 (#11), which now that [Python 2 is EOL](https://pythonclock.org/) is very important. Should the README be...
In [setup.py line 35](https://github.com/p4lang/scapy-vxlan/blob/master/setup.py#L35) `os.chmod(fname,0755)` does not work with Python3, because leading zeros are not allowed on numbers. The original scapy repo changed it to: `os.chmod(fname,0o755)`
According to the latest INT spec.
I am trying to use scapy to parse geneve packet from my pcap file but I am getting it as Raw only. I git cloned scapy with geneve from here:...
Removes INT_PLT and INT_L45 header definitions. These are not part of the INT spec and are moved to another repository.