tcprewrite.1 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. .TH TCPREWRITE 1 2008-05-15 "(tcprewrite )" "Programmer's Manual"
  2. .\" DO NOT EDIT THIS FILE (tcprewrite.1)
  3. .\"
  4. .\" It has been AutoGen-ed Thursday May 15, 2008 at 08:51:21 AM PDT
  5. .\" From the definitions tcprewrite_opts.def
  6. .\" and the template file agman1.tpl
  7. .\"
  8. .SH NAME
  9. tcprewrite \- Rewrite the packets in a pcap file.
  10. .SH SYNOPSIS
  11. .B tcprewrite
  12. .\" Mixture of short (flag) options and long options
  13. .RB [ \-\fIflag\fP " [\fIvalue\fP]]... [" \--\fIopt-name\fP " [[=| ]\fIvalue\fP]]..."
  14. .PP
  15. All arguments must be options.
  16. .SH "DESCRIPTION"
  17. This manual page documents, briefly, the \fBtcprewrite\fP command.
  18. Tcprewrite is a tool to rewrite packets stored in \fIpcap(3)\fP file format,
  19. such as crated by tools such as \fItcpdump(1)\fP and \fIethereal(1)\fP.
  20. Once a pcap file has had it's packets rewritten, they can be replayed back
  21. out on the network using \fItcpreplay(1)\fP.
  22. tcprewrite currently supports reading the following DLT types:
  23. .sp 1
  24. \fBDLT_C_HDLC\fP aka Cisco HDLC
  25. .sp 1
  26. \fBDLT_EN10MB\fP aka Ethernet
  27. .sp 1
  28. \fBDLT_LINUX_SLL\fP aka Linux Cooked Socket
  29. .sp 1
  30. \fBDLT_RAW\fP aka RAW IP
  31. .sp 1
  32. \fBDLT_NULL\fP aka BSD Loopback
  33. .sp 1
  34. \fBDLT_LOOP\fP aka OpenBSD Loopback
  35. .sp 1
  36. \fBDLT_IEEE802_11\fP aka 802.11a/b/g
  37. .sp 1
  38. \fBDLT_IEEE802_11_RADIO\fP aka 802.11a/b/g with Radiotap headers
  39. Please see the \--dlt option for supported DLT types for writing.
  40. The packet editing features of tcprewrite which distinguish between "client"
  41. and "server" traffic requires a tcpprep(1) cache file.
  42. For more details, please see the Tcpreplay Manual at:
  43. http://tcpreplay.synfin.net/trac/wiki/manual
  44. .SH OPTIONS
  45. .SS ""
  46. .TP
  47. .BR \-r " \fIstring\fP, " \--portmap "=" \fIstring\fP
  48. Rewrite TCP/UDP ports.
  49. This option may appear up to 1 times.
  50. .sp
  51. Specify a list of comma delimited port mappingings consisting of
  52. colon delimited port number pairs. Each colon delimited port pair
  53. consists of the port to match followed by the port number to rewrite.
  54. Example:
  55. .nf
  56. \--portmap=80:8000,8080:80
  57. .fi
  58. .TP
  59. .BR \-s " \fInumber\fP, " \--seed "=" \fInumber\fP
  60. Randomize src/dst IP addresses w/ given seed.
  61. This option may appear up to 1 times.
  62. This option takes an integer number as its argument.
  63. .sp
  64. Causes the source and destination IP addresses to be pseudo
  65. randomized but still maintain client/server relationships.
  66. Since the randomization is deterministic based on the seed,
  67. you can reuse the same seed value to recreate the traffic.
  68. .TP
  69. .BR \-N " \fIstring\fP, " \--pnat "=" \fIstring\fP
  70. Rewrite IP addresses using pseudo-NAT.
  71. This option may appear up to 2 times.
  72. This option must not appear in combination with any of the following options:
  73. srcipmap.
  74. .sp
  75. Takes a comma delimited series of colon delimited CIDR
  76. netblock pairs. Each netblock pair is evaluated in order against
  77. the IP addresses. If the IP address in the packet matches the
  78. first netblock, it is rewriten using the second netblock as a
  79. mask against the high order bits.
  80. Example:
  81. .nf
  82. \--pnat=192.168.0.0/16:10.77.0.0/16,172.16.0.0/12:10.1.0.0/24
  83. .fi
  84. .TP
  85. .BR \-S " \fIstring\fP, " \--srcipmap "=" \fIstring\fP
  86. Rewrite source IP addresses using pseudo-NAT.
  87. This option may appear up to 1 times.
  88. This option must not appear in combination with any of the following options:
  89. pnat.
  90. .sp
  91. Works just like the \--pnat option, but only affects the source IP
  92. addresses in the IPv4 header.
  93. .TP
  94. .BR \-D " \fIstring\fP, " \--dstipmap "=" \fIstring\fP
  95. Rewrite destination IP addresses using pseudo-NAT.
  96. This option may appear up to 1 times.
  97. This option must not appear in combination with any of the following options:
  98. pnat.
  99. .sp
  100. Works just like the \--pnat option, but only affects the destination IP
  101. addresses in the IPv4 header.
  102. .TP
  103. .BR \-e " \fIstring\fP, " \--endpoints "=" \fIstring\fP
  104. Rewrite IP addresses to be between two endpoints.
  105. This option may appear up to 1 times.
  106. This option must appear in combination with the following options:
  107. cachefile.
  108. .sp
  109. Takes a pair of colon delimited IP addresses which will be used to rewrite
  110. all traffic to appear to be between the two IP's.
  111. Example:
  112. .nf
  113. \--endpoints=172.16.0.1:172.16.0.2
  114. .fi
  115. .TP
  116. .BR \-b ", " \--skipbroadcast
  117. Skip rewriting broadcast/multicast IP's.
  118. .sp
  119. By default \--seed, \--pnat and \--endpoints will rewrite
  120. broadcast and multicast IP and MAC addresses. Setting this flag
  121. will keep broadcast/multicast IP and MAC addresses from being rewritten.
  122. .TP
  123. .BR \-C ", " \--fixcsum
  124. Force recalculation of IP/TCP/UDP checksums.
  125. .sp
  126. Causes each IP packet to have it's checksums recalcualted and
  127. fixed. Automatically enabled for packets modified with \fB--seed\fP,
  128. \fB--pnat\fP, \fB--endpoints\fP or \fB--fixlen\fP.
  129. .TP
  130. .BR \-m " \fInumber\fP, " \--mtu "=" \fInumber\fP
  131. Override default MTU length (1500 bytes).
  132. This option may appear up to 1 times.
  133. This option takes an integer number as its argument.
  134. The value of \fInumber\fP is constrained to being:
  135. .in +4
  136. .nf
  137. .na
  138. in the range 1 through MAXPACKET
  139. .fi
  140. .in -4
  141. .sp
  142. Override the default 1500 byte MTU size for determining the maximum padding length.
  143. .TP
  144. .BR \-E ", " \--efcs
  145. Remove Ethernet checksums (FCS) from end of frames.
  146. .sp
  147. Note, this option is pretty dangerous! We don't actually check to see if a FCS
  148. actually exists in the frame, we just blindly delete the last two bytes. Hence,
  149. you should only use this if you know know that your OS provides the FCS when
  150. reading raw packets.
  151. .TP
  152. .BR \--ttl "=\fIstring\fP"
  153. Modify the IPv4 TTL.
  154. .sp
  155. Allows you to modify the TTL of all the IPv4 packets. Specify a number to hard-code
  156. the value or +/-value to increase or decrease by the value provided (limited to 1-255).
  157. Examples:
  158. .nf
  159. \--ttl=10
  160. \--ttl=+7
  161. \--ttl=-64
  162. .fi
  163. .TP
  164. .BR \-F " \fIstring\fP, " \--fixlen "=" \fIstring\fP
  165. Pad or truncate packet data to match header length.
  166. This option may appear up to 1 times.
  167. .sp
  168. Packets may be truncated during capture if the snaplen is smaller then the
  169. packet. This option allows you to modify the packet to pad the packet back
  170. out to the size stored in the IPv4 header or rewrite the IP header total length
  171. to reflect the stored packet length.
  172. .sp 1
  173. \fBpad\fP
  174. Truncated packets will be padded out so that the packet length matches the
  175. IPv4 total length
  176. .sp 1
  177. \fBtrunc\fP
  178. Truncated packets will have their IPv4 total length field rewritten to match
  179. the actual packet length
  180. .sp 1
  181. \fBdel\fP
  182. Delete the packet
  183. .TP
  184. .BR \--skipl2broadcast
  185. Skip rewriting broadcast/multicast Layer 2 addresses.
  186. .sp
  187. By default, editing Layer 2 addresses will rewrite
  188. broadcast and multicast MAC addresses. Setting this flag
  189. will keep broadcast/multicast MAC addresses from being rewritten.
  190. .TP
  191. .BR \--dlt "=\fIstring\fP"
  192. Override output DLT encapsulation.
  193. This option may appear up to 1 times.
  194. .sp
  195. By default, no DLT (data link type) conversion will be made.
  196. To change the DLT type of the output pcap, select one of the following values:
  197. .sp 1
  198. \fBenet\fP
  199. Ethernet aka DLT_EN10MB
  200. .sp 1
  201. \fBhdlc\fP
  202. Cisco HDLC aka DLT_C_HDLC
  203. .sp 1
  204. \fBuser\fP
  205. User specified Layer 2 header and DLT type
  206. .br
  207. .TP
  208. .BR \--enet-dmac "=\fIstring\fP"
  209. Override destination ethernet MAC addresses.
  210. This option may appear up to 1 times.
  211. .sp
  212. Takes a pair of comma deliminated ethernet MAC addresses which
  213. will replace the destination MAC address of outbound packets.
  214. The first MAC address will be used for the server to client traffic
  215. and the optional second MAC address will be used for the client
  216. to server traffic.
  217. Example:
  218. .nf
  219. \--enet-dmac=00:12:13:14:15:16,00:22:33:44:55:66
  220. .fi
  221. .TP
  222. .BR \--enet-smac "=\fIstring\fP"
  223. Override source ethernet MAC addresses.
  224. This option may appear up to 1 times.
  225. .sp
  226. Takes a pair of comma deliminated ethernet MAC addresses which
  227. will replace the source MAC address of outbound packets.
  228. The first MAC address will be used for the server to client traffic
  229. and the optional second MAC address will be used for the client
  230. to server traffic.
  231. Example:
  232. .nf
  233. \--enet-smac=00:12:13:14:15:16,00:22:33:44:55:66
  234. .fi
  235. .TP
  236. .BR \--enet-vlan "=\fIstring\fP"
  237. Specify ethernet 802.1q VLAN tag mode.
  238. This option may appear up to 1 times.
  239. .sp
  240. Allows you to rewrite ethernet frames to add a 802.1q header to standard 802.3
  241. ethernet headers or remove the 802.1q VLAN tag information.
  242. .sp 1
  243. \fBadd\fP
  244. Rewrites the existing 802.3 ethernet header as an 802.1q VLAN header
  245. .sp 1
  246. \fBdel\fP
  247. Rewrites the existing 802.1q VLAN header as an 802.3 ethernet header
  248. .TP
  249. .BR \--enet-vlan-tag "=\fInumber\fP"
  250. Specify the new ethernet 802.1q VLAN tag value.
  251. This option may appear up to 1 times.
  252. This option must appear in combination with the following options:
  253. enet-vlan.
  254. This option takes an integer number as its argument.
  255. The value of \fInumber\fP is constrained to being:
  256. .in +4
  257. .nf
  258. .na
  259. in the range 0 through 4095
  260. .fi
  261. .in -4
  262. .sp
  263. .TP
  264. .BR \--enet-vlan-cfi "=\fInumber\fP"
  265. Specify the ethernet 802.1q VLAN CFI value.
  266. This option may appear up to 1 times.
  267. This option must appear in combination with the following options:
  268. enet-vlan.
  269. This option takes an integer number as its argument.
  270. The value of \fInumber\fP is constrained to being:
  271. .in +4
  272. .nf
  273. .na
  274. in the range 0 through 1
  275. .fi
  276. .in -4
  277. .sp
  278. .TP
  279. .BR \--enet-vlan-pri "=\fInumber\fP"
  280. Specify the ethernet 802.1q VLAN priority.
  281. This option may appear up to 1 times.
  282. This option must appear in combination with the following options:
  283. enet-vlan.
  284. This option takes an integer number as its argument.
  285. The value of \fInumber\fP is constrained to being:
  286. .in +4
  287. .nf
  288. .na
  289. in the range 0 through 7
  290. .fi
  291. .in -4
  292. .sp
  293. .TP
  294. .BR \--hdlc-control "=\fInumber\fP"
  295. Specify HDLC control value.
  296. This option may appear up to 1 times.
  297. This option takes an integer number as its argument.
  298. .sp
  299. The Cisco HDLC header has a 1 byte "control" field. Apparently this should
  300. always be 0, but if you can use any 1 byte value.
  301. .TP
  302. .BR \--hdlc-address "=\fInumber\fP"
  303. Specify HDLC address.
  304. This option may appear up to 1 times.
  305. This option takes an integer number as its argument.
  306. .sp
  307. The Cisco HDLC header has a 1 byte "address" field which has two valid
  308. values:
  309. .sp 1
  310. \fB0x0F\fP
  311. Unicast
  312. .sp 1
  313. \fB0xBF\fP
  314. Broadcast
  315. .br
  316. You can however specify any single byte value.
  317. .TP
  318. .BR \--user-dlt "=\fInumber\fP"
  319. Set output file DLT type.
  320. This option may appear up to 1 times.
  321. This option takes an integer number as its argument.
  322. .sp
  323. Set the DLT value of the output pcap file.
  324. .TP
  325. .BR \--user-dlink "=\fIstring\fP"
  326. Rewrite Data-Link layer with user specified data.
  327. This option may appear up to 2 times.
  328. .sp
  329. Provide a series of comma deliminated hex values which will be
  330. used to rewrite or create the Layer 2 header of the packets.
  331. The first instance of this argument will rewrite both server
  332. and client traffic, but if this argument is specified a second
  333. time, it will be used for the client traffic.
  334. Example:
  335. .nf
  336. \--user-dlink=01,02,03,04,05,06,00,1A,2B,3C,4D,5E,6F,08,00
  337. .fi
  338. .TP
  339. .BR \-d " \fInumber\fP, " \--dbug "=" \fInumber\fP
  340. Enable debugging output.
  341. This option may appear up to 1 times.
  342. This option takes an integer number as its argument.
  343. The value of \fInumber\fP is constrained to being:
  344. .in +4
  345. .nf
  346. .na
  347. in the range 0 through 5
  348. .fi
  349. .in -4
  350. The default \fInumber\fP for this option is:
  351. .ti +4
  352. 0
  353. .sp
  354. If configured with \--enable-debug, then you can specify a verbosity
  355. level for debugging output. Higher numbers increase verbosity.
  356. .TP
  357. .BR \-i " \fIstring\fP, " \--infile "=" \fIstring\fP
  358. Input pcap file to be processed.
  359. This option may appear up to 1 times.
  360. .sp
  361. .TP
  362. .BR \-o " \fIstring\fP, " \--outfile "=" \fIstring\fP
  363. Output pcap file.
  364. This option may appear up to 1 times.
  365. .sp
  366. .TP
  367. .BR \-c " \fIstring\fP, " \--cachefile "=" \fIstring\fP
  368. Split traffic via tcpprep cache file.
  369. This option may appear up to 1 times.
  370. .sp
  371. Use tcpprep cache file to split traffic based upon client/server relationships.
  372. .TP
  373. .BR \-v ", " \--verbose
  374. Print decoded packets via tcpdump to STDOUT.
  375. This option may appear up to 1 times.
  376. .sp
  377. .TP
  378. .BR \-A " \fIstring\fP, " \--decode "=" \fIstring\fP
  379. Arguments passed to tcpdump decoder.
  380. This option may appear up to 1 times.
  381. This option must appear in combination with the following options:
  382. verbose.
  383. .sp
  384. When enabling verbose mode (\fB-v\fP) you may also specify one or
  385. more additional arguments to pass to \fBtcpdump\fP to modify
  386. the way packets are decoded. By default, \-n and \-l are used.
  387. Be sure to quote the arguments so that they are not interpreted
  388. by tcprewrite. Please see the tcpdump(1) man page for a complete list of
  389. options.
  390. .TP
  391. .BR \--fragroute "=\fIstring\fP"
  392. Parse fragroute configuration file.
  393. This option may appear up to 1 times.
  394. .sp
  395. Enable advanced evasion techniques using the built-in fragroute(8)
  396. engine. See the fragroute(8) man page for more details. Important:
  397. tcprewrite does not support the delay, echo or print commands.
  398. .TP
  399. .BR \--fragdir "=\fIstring\fP"
  400. Which flows to apply fragroute to: c2s, s2c, both.
  401. This option may appear up to 1 times.
  402. .sp
  403. Apply the fragroute engine to packets going c2s, s2c or both when using a cache file.
  404. .TP
  405. .BR \--skip-soft-errors
  406. Skip writing packets with soft errors.
  407. This option may appear up to 1 times.
  408. .sp
  409. In some cases, packets can't be decoded or the requested editing
  410. is not possible. Normally these packets are written to the output
  411. file unedited so that tcpprep cache files can still be used, but if
  412. you wish, these packets can be suppressed.
  413. One example of this is 802.11 management frames which contain no data.
  414. .TP
  415. .BR \-V ", " \--version
  416. Print version information.
  417. .sp
  418. .TP
  419. .BR \-h ", " \--less-help
  420. Display less usage information and exit.
  421. .sp
  422. .TP
  423. .BR \-H , " \--help"
  424. Display usage information and exit.
  425. .TP
  426. .BR \-! , " \--more-help"
  427. Extended usage information passed thru pager.
  428. .TP
  429. .BR \- " [\fIrcfile\fP]," " \--save-opts" "[=\fIrcfile\fP]"
  430. Save the option state to \fIrcfile\fP. The default is the \fIlast\fP
  431. configuration file listed in the \fBOPTION PRESETS\fP section, below.
  432. .TP
  433. .BR \- " \fIrcfile\fP," " \--load-opts" "=\fIrcfile\fP," " \--no-load-opts"
  434. Load options from \fIrcfile\fP.
  435. The \fIno-load-opts\fP form will disable the loading
  436. of earlier RC/INI files. \fI--no-load-opts\fP is handled early,
  437. out of order.
  438. .SH OPTION PRESETS
  439. Any option that is not marked as \fInot presettable\fP may be preset
  440. by loading values from configuration ("RC" or ".INI") file(s).
  441. The \fIhomerc\fP file is "\fI$$/\fP", unless that is a directory.
  442. In that case, the file "\fI.tcprewriterc\fP"
  443. is searched for within that directory.
  444. .SH "SEE ALSO"
  445. tcpdump(1), tcpprep(1), tcpreplay(1)
  446. .SH AUTHOR
  447. Copyright 2004-2008 Aaron Turner
  448. For support please use the tcpreplay-users@lists.sourceforge.net mailing list.
  449. The latest version of this software is always available from:
  450. http://tcpreplay.synfin.net/
  451. .PP
  452. Released under the Free BSD License.
  453. .PP
  454. This manual page was \fIAutoGen\fP-erated from the \fBtcprewrite\fP
  455. option definitions.