[netsniff-ng] Mausezahn - virtual nic "unknown physical layer type"

2017-01-31 Thread Jojonix1-Web
Hello dear netsniff team My name is Jonathan, I am an IT specialist from Germany and I have some difficulties with Mausezahn. I am running a virtual server with Ubuntu 14.04 LTS. I wanted to test my DDoS protection, but Mausezahn is unable to send those frames through the virtual NIC.

Re: [netsniff-ng] Mausezahn - virtual nic "unknown physical layer type"

2017-01-31 Thread Vadim Kochan
BTW I did grep over the kernel and looks like it might the 'tun' device. On Tue, Jan 31, 2017 at 12:38 PM, Vadim Kochan wrote: > On Tue, Jan 31, 2017 at 12:36 PM, Vadim Kochan wrote: >> On Tue, Jan 31, 2017 at 12:47 AM, Jojonix1-Web wrote:

Re: [netsniff-ng] Mausezahn - virtual nic "unknown physical layer type"

2017-01-31 Thread Vadim Kochan
On Tue, Jan 31, 2017 at 12:47 AM, Jojonix1-Web wrote: > Hello dear netsniff team > > > > My name is Jonathan, I am an IT specialist from Germany and I have some > difficulties with Mausezahn. > > > > I am running a virtual server with Ubuntu 14.04 LTS. I wanted to test my > DDoS

[netsniff-ng] [PATCH 3/3] trafgen: man: Add description with pcap file for -i, --in option

2017-01-31 Thread Vadim Kochan
Update -i, --in option with pcap file as input parameter. Signed-off-by: Vadim Kochan --- trafgen.8 | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/trafgen.8 b/trafgen.8 index e09b7a0..fd9788a 100644 --- a/trafgen.8 +++ b/trafgen.8 @@ -66,10 +66,13 @@

[netsniff-ng] [PATCH 1/3] pcap_io: Add function to get packet timestamp

2017-01-31 Thread Vadim Kochan
Add pcap_get_tstamp(...) function to get packet's timestamp considering different packet types & bytes order. Signed-off-by: Vadim Kochan --- pcap_io.h | 53 + 1 file changed, 53 insertions(+) diff --git a/pcap_io.h

[netsniff-ng] [PATCH 2/3] trafgen: Allow send packets from pcap file

2017-01-31 Thread Vadim Kochan
Add ability to send packets from pcap file if it has ".pcap" extension via "-i,--in" option. By default packet sending is delayed considering original packets timestamps if no rate or delay is specified via -b/-t options. Signed-off-by: Vadim Kochan --- trafgen.c|