scapy-vxlan icon indicating copy to clipboard operation
scapy-vxlan copied to clipboard

Does not compile with Python3

Open AmedeoSapio opened this issue 8 years ago • 1 comments

In setup.py line 35 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)

AmedeoSapio avatar Jun 22 '17 08:06 AmedeoSapio

Upstream scapy supports Python 3 now. It also appears to support VXLAN: https://github.com/secdev/scapy/blob/master/scapy/layers/vxlan.py

johnthagen avatar Mar 17 '20 16:03 johnthagen