-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.txt
23 lines (22 loc) · 1.03 KB
/
sample.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- tab-width: 8 -*-
#
# Example of text file for use with txt2pcap.pl
# Time, protocol, srcip, srcport, dstip, dstport, network length, flags, first part of payload (content is padded, whitespace allowed)
# Fields is separated by whitespace (spaces and tabs)
#
# Network length is application layer, i.e. excluding headers.
#
# Flags is a comma-separated list of TCP flags or DATA for no flags.
# E.g. "ACK,SYN".
# It also supports adding TCP NOP option by using OPT_NOP(n) where n is the
# number of NOPs (1 octet each).
#
# timestamp proto src ip srcport dst ip dstport len flags payload
0.000000 6 10.0.0.1 12345 10.0.1.1 80 20000 DATA 'line1 with space'
0.001000 6 10.0.0.1 12345 10.0.1.1 80 20000 DATA 'line2'
0.200000 17 10.0.0.1 12345 10.0.1.1 80 200 DATA 'line3'
0.300000 17 10.0.0.1 12345 10.0.1.1 80 400 DATA 'line4'
0.400000 6 10.0.0.1 12345 10.0.1.1 80 200 DATA 'line5'
0.510000 6 10.0.0.1 12345 10.0.1.1 80 200 DATA 'line6'
0.520000 17 10.0.0.1 12345 10.0.1.1 80 200 DATA 'line7'
1.000000 17 10.0.0.1 12345 10.0.1.1 80 1400 DATA 'line8'