You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firstly, we've just begun using OFTest as part of this project. I must compliment ye on a job well done - it's definitely a quite nifty tool.
Now onto business. The one major difficulty we've had with OFTeste has been getting pypcap setup. We use a number of non-Debian distros so the package isn't available in the repos, and installation from source is a nightmare. There's load of issues, ranging from it not finding libpcap when it is installed to some weird build routines and myriad other documented issues). This is a pypcap issue moreso than a OFTest one but seeing as pypcap appears to be a dead project it seems like something ye can't rely on.
As a feature request, could I ask that ye carry out one of the following?
Fork pypcap, update if necessary and provide instructions on how to run it
Move pypcap into the OFTest mainline (reducing requirements)
Provide instructions on setting it up from source (these instructions do not appear to exist elsewhere)
I don't like filing issues without providing at least some code but I'm not sure which of the following is an option yet (and we've still to get pypcap running so I can't contribute here yet).
The text was updated successfully, but these errors were encountered:
Is there another python pcap library that's better maintained? We could detect it at runtime. The main requirement is that it has to support sending packets, not just receiving them.
Another option is to use AF_PACKET sockets, which is what OFTest did originally. That code should still be there as a fallback if pypcap isn't found. The problem with AF_PACKET sockets is that recent Linux kernels offload the VLAN tag into a control message (see HAVE_PACKET_AUXDATA in libpcap). libpcap deals with this. Python 3.3 appears to have support for these control messages but Python 2.7 does not. Maybe a minimal C extension would be sufficient.
Firstly, we've just begun using OFTest as part of this project. I must compliment ye on a job well done - it's definitely a quite nifty tool.
Now onto business. The one major difficulty we've had with OFTeste has been getting
pypcap
setup. We use a number of non-Debian distros so the package isn't available in the repos, and installation from source is a nightmare. There's load of issues, ranging from it not finding libpcap when it is installed to some weird build routines and myriad other documented issues). This is a pypcap issue moreso than a OFTest one but seeing as pypcap appears to be a dead project it seems like something ye can't rely on.As a feature request, could I ask that ye carry out one of the following?
I don't like filing issues without providing at least some code but I'm not sure which of the following is an option yet (and we've still to get pypcap running so I can't contribute here yet).
The text was updated successfully, but these errors were encountered: