pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/55446 (scapy function send() does not work)
The following reply was made to PR pkg/55446; it has been noted by GNATS.
From: "David H. Gutteridge" <david%gutteridge.ca@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: pkg/55446 (scapy function send() does not work)
Date: Fri, 03 Jul 2020 08:49:06 -0400
> >How-To-Repeat:
> # cat ./test.py
> #! /usr/pkg/bin/python3.7
>
> from scapy.all import *
>
> p=IP(dst="127.0.0.1")/ICMP()/"test"
> p.show2()
> send(p)
If you try this instead, what result do you get? (I don't have
a NetBSD 8.x machine in front of me right now.)
sendp(Ether()/IP(dst="127.0.0.1")/ICMP(), return_packets=True, realtime=True)
This is sort of a duplicate of PR pkg/54028, in that some of the
scapy functionality doesn't work as one would expect. This isn't
isolated to NetBSD, e.g., I can duplicate issues on DragonFly BSD.
Really this needs to be reported upstream to the scapy project.
Dave
Home |
Main Index |
Thread Index |
Old Index