tcprewrite.1 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. .TH TCPREWRITE 1 2009-02-17 "(tcprewrite )" "Programmer's Manual"
  2. .\" DO NOT EDIT THIS FILE (tcprewrite.1)
  3. .\"
  4. .\" It has been AutoGen-ed Tuesday February 17, 2009 at 06:27:05 PM PST
  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 briefly documents 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. (--fixlen=pad) or when truncating (--mtu-trunc).
  144. .TP
  145. .BR \--mtu-trunc
  146. Truncate packets larger then specified MTU.
  147. This option may appear up to 1 times.
  148. .sp
  149. Similar to \--fixlen, this option will truncate data in packets from Layer 3 and above to be
  150. no larger then the MTU.
  151. .TP
  152. .BR \-E ", " \--efcs
  153. Remove Ethernet checksums (FCS) from end of frames.
  154. .sp
  155. Note, this option is pretty dangerous! We don't actually check to see if a FCS
  156. actually exists in the frame, we just blindly delete the last two bytes. Hence,
  157. you should only use this if you know know that your OS provides the FCS when
  158. reading raw packets.
  159. .TP
  160. .BR \--ttl "=\fIstring\fP"
  161. Modify the IPv4 TTL.
  162. .sp
  163. Allows you to modify the TTL of all the IPv4 packets. Specify a number to hard-code
  164. the value or +/-value to increase or decrease by the value provided (limited to 1-255).
  165. Examples:
  166. .nf
  167. \--ttl=10
  168. \--ttl=+7
  169. \--ttl=-64
  170. .fi
  171. .TP
  172. .BR \--tos "=\fInumber\fP"
  173. Set the IPv4 TOS/DiffServ/ECN byte.
  174. This option may appear up to 1 times.
  175. This option takes an integer number as its argument.
  176. The value of \fInumber\fP is constrained to being:
  177. .in +4
  178. .nf
  179. .na
  180. in the range 0 through 255
  181. .fi
  182. .in -4
  183. .sp
  184. Allows you to override the TOS (also known as DiffServ/ECN) value in IPv4 packets.
  185. .TP
  186. .BR \-F " \fIstring\fP, " \--fixlen "=" \fIstring\fP
  187. Pad or truncate packet data to match header length.
  188. This option may appear up to 1 times.
  189. .sp
  190. Packets may be truncated during capture if the snaplen is smaller then the
  191. packet. This option allows you to modify the packet to pad the packet back
  192. out to the size stored in the IPv4 header or rewrite the IP header total length
  193. to reflect the stored packet length.
  194. .sp 1
  195. \fBpad\fP
  196. Truncated packets will be padded out so that the packet length matches the
  197. IPv4 total length
  198. .sp 1
  199. \fBtrunc\fP
  200. Truncated packets will have their IPv4 total length field rewritten to match
  201. the actual packet length
  202. .sp 1
  203. \fBdel\fP
  204. Delete the packet
  205. .TP
  206. .BR \--skipl2broadcast
  207. Skip rewriting broadcast/multicast Layer 2 addresses.
  208. .sp
  209. By default, editing Layer 2 addresses will rewrite
  210. broadcast and multicast MAC addresses. Setting this flag
  211. will keep broadcast/multicast MAC addresses from being rewritten.
  212. .TP
  213. .BR \--dlt "=\fIstring\fP"
  214. Override output DLT encapsulation.
  215. This option may appear up to 1 times.
  216. .sp
  217. By default, no DLT (data link type) conversion will be made.
  218. To change the DLT type of the output pcap, select one of the following values:
  219. .sp 1
  220. \fBenet\fP
  221. Ethernet aka DLT_EN10MB
  222. .sp 1
  223. \fBhdlc\fP
  224. Cisco HDLC aka DLT_C_HDLC
  225. .sp 1
  226. \fBuser\fP
  227. User specified Layer 2 header and DLT type
  228. .br
  229. .TP
  230. .BR \--enet-dmac "=\fIstring\fP"
  231. Override destination ethernet MAC addresses.
  232. This option may appear up to 1 times.
  233. .sp
  234. Takes a pair of comma deliminated ethernet MAC addresses which
  235. will replace the destination MAC address of outbound packets.
  236. The first MAC address will be used for the server to client traffic
  237. and the optional second MAC address will be used for the client
  238. to server traffic.
  239. Example:
  240. .nf
  241. \--enet-dmac=00:12:13:14:15:16,00:22:33:44:55:66
  242. .fi
  243. .TP
  244. .BR \--enet-smac "=\fIstring\fP"
  245. Override source ethernet MAC addresses.
  246. This option may appear up to 1 times.
  247. .sp
  248. Takes a pair of comma deliminated ethernet MAC addresses which
  249. will replace the source MAC address of outbound packets.
  250. The first MAC address will be used for the server to client traffic
  251. and the optional second MAC address will be used for the client
  252. to server traffic.
  253. Example:
  254. .nf
  255. \--enet-smac=00:12:13:14:15:16,00:22:33:44:55:66
  256. .fi
  257. .TP
  258. .BR \--enet-vlan "=\fIstring\fP"
  259. Specify ethernet 802.1q VLAN tag mode.
  260. This option may appear up to 1 times.
  261. .sp
  262. Allows you to rewrite ethernet frames to add a 802.1q header to standard 802.3
  263. ethernet headers or remove the 802.1q VLAN tag information.
  264. .sp 1
  265. \fBadd\fP
  266. Rewrites the existing 802.3 ethernet header as an 802.1q VLAN header
  267. .sp 1
  268. \fBdel\fP
  269. Rewrites the existing 802.1q VLAN header as an 802.3 ethernet header
  270. .TP
  271. .BR \--enet-vlan-tag "=\fInumber\fP"
  272. Specify the new ethernet 802.1q VLAN tag value.
  273. This option may appear up to 1 times.
  274. This option must appear in combination with the following options:
  275. enet-vlan.
  276. This option takes an integer number as its argument.
  277. The value of \fInumber\fP is constrained to being:
  278. .in +4
  279. .nf
  280. .na
  281. in the range 0 through 4095
  282. .fi
  283. .in -4
  284. .sp
  285. .TP
  286. .BR \--enet-vlan-cfi "=\fInumber\fP"
  287. Specify the ethernet 802.1q VLAN CFI value.
  288. This option may appear up to 1 times.
  289. This option must appear in combination with the following options:
  290. enet-vlan.
  291. This option takes an integer number as its argument.
  292. The value of \fInumber\fP is constrained to being:
  293. .in +4
  294. .nf
  295. .na
  296. in the range 0 through 1
  297. .fi
  298. .in -4
  299. .sp
  300. .TP
  301. .BR \--enet-vlan-pri "=\fInumber\fP"
  302. Specify the ethernet 802.1q VLAN priority.
  303. This option may appear up to 1 times.
  304. This option must appear in combination with the following options:
  305. enet-vlan.
  306. This option takes an integer number as its argument.
  307. The value of \fInumber\fP is constrained to being:
  308. .in +4
  309. .nf
  310. .na
  311. in the range 0 through 7
  312. .fi
  313. .in -4
  314. .sp
  315. .TP
  316. .BR \--hdlc-control "=\fInumber\fP"
  317. Specify HDLC control value.
  318. This option may appear up to 1 times.
  319. This option takes an integer number as its argument.
  320. .sp
  321. The Cisco HDLC header has a 1 byte "control" field. Apparently this should
  322. always be 0, but if you can use any 1 byte value.
  323. .TP
  324. .BR \--hdlc-address "=\fInumber\fP"
  325. Specify HDLC address.
  326. This option may appear up to 1 times.
  327. This option takes an integer number as its argument.
  328. .sp
  329. The Cisco HDLC header has a 1 byte "address" field which has two valid
  330. values:
  331. .sp 1
  332. \fB0x0F\fP
  333. Unicast
  334. .sp 1
  335. \fB0xBF\fP
  336. Broadcast
  337. .br
  338. You can however specify any single byte value.
  339. .TP
  340. .BR \--user-dlt "=\fInumber\fP"
  341. Set output file DLT type.
  342. This option may appear up to 1 times.
  343. This option takes an integer number as its argument.
  344. .sp
  345. Set the DLT value of the output pcap file.
  346. .TP
  347. .BR \--user-dlink "=\fIstring\fP"
  348. Rewrite Data-Link layer with user specified data.
  349. This option may appear up to 2 times.
  350. .sp
  351. Provide a series of comma deliminated hex values which will be
  352. used to rewrite or create the Layer 2 header of the packets.
  353. The first instance of this argument will rewrite both server
  354. and client traffic, but if this argument is specified a second
  355. time, it will be used for the client traffic.
  356. Example:
  357. .nf
  358. \--user-dlink=01,02,03,04,05,06,00,1A,2B,3C,4D,5E,6F,08,00
  359. .fi
  360. .TP
  361. .BR \-d " \fInumber\fP, " \--dbug "=" \fInumber\fP
  362. Enable debugging output.
  363. This option may appear up to 1 times.
  364. This option takes an integer number as its argument.
  365. The value of \fInumber\fP is constrained to being:
  366. .in +4
  367. .nf
  368. .na
  369. in the range 0 through 5
  370. .fi
  371. .in -4
  372. The default \fInumber\fP for this option is:
  373. .ti +4
  374. 0
  375. .sp
  376. If configured with \--enable-debug, then you can specify a verbosity
  377. level for debugging output. Higher numbers increase verbosity.
  378. .TP
  379. .BR \-i " \fIstring\fP, " \--infile "=" \fIstring\fP
  380. Input pcap file to be processed.
  381. This option may appear up to 1 times.
  382. .sp
  383. .TP
  384. .BR \-o " \fIstring\fP, " \--outfile "=" \fIstring\fP
  385. Output pcap file.
  386. This option may appear up to 1 times.
  387. .sp
  388. .TP
  389. .BR \-c " \fIstring\fP, " \--cachefile "=" \fIstring\fP
  390. Split traffic via tcpprep cache file.
  391. This option may appear up to 1 times.
  392. .sp
  393. Use tcpprep cache file to split traffic based upon client/server relationships.
  394. .TP
  395. .BR \-v ", " \--verbose
  396. Print decoded packets via tcpdump to STDOUT.
  397. This option may appear up to 1 times.
  398. .sp
  399. .TP
  400. .BR \-A " \fIstring\fP, " \--decode "=" \fIstring\fP
  401. Arguments passed to tcpdump decoder.
  402. This option may appear up to 1 times.
  403. This option must appear in combination with the following options:
  404. verbose.
  405. .sp
  406. When enabling verbose mode (\fB-v\fP) you may also specify one or
  407. more additional arguments to pass to \fBtcpdump\fP to modify
  408. the way packets are decoded. By default, \-n and \-l are used.
  409. Be sure to quote the arguments so that they are not interpreted
  410. by tcprewrite. Please see the tcpdump(1) man page for a complete list of
  411. options.
  412. .TP
  413. .BR \--fragroute "=\fIstring\fP"
  414. Parse fragroute configuration file.
  415. This option may appear up to 1 times.
  416. .sp
  417. Enable advanced evasion techniques using the built-in fragroute(8)
  418. engine. See the fragroute(8) man page for more details. Important:
  419. tcprewrite does not support the delay, echo or print commands.
  420. .TP
  421. .BR \--fragdir "=\fIstring\fP"
  422. Which flows to apply fragroute to: c2s, s2c, both.
  423. This option may appear up to 1 times.
  424. .sp
  425. Apply the fragroute engine to packets going c2s, s2c or both when using a cache file.
  426. .TP
  427. .BR \--skip-soft-errors
  428. Skip writing packets with soft errors.
  429. This option may appear up to 1 times.
  430. .sp
  431. In some cases, packets can't be decoded or the requested editing
  432. is not possible. Normally these packets are written to the output
  433. file unedited so that tcpprep cache files can still be used, but if
  434. you wish, these packets can be suppressed.
  435. One example of this is 802.11 management frames which contain no data.
  436. .TP
  437. .BR \-V ", " \--version
  438. Print version information.
  439. .sp
  440. .TP
  441. .BR \-h ", " \--less-help
  442. Display less usage information and exit.
  443. .sp
  444. .TP
  445. .BR \-H , " \--help"
  446. Display usage information and exit.
  447. .TP
  448. .BR \-! , " \--more-help"
  449. Extended usage information passed thru pager.
  450. .TP
  451. .BR \- " [\fIrcfile\fP]," " \--save-opts" "[=\fIrcfile\fP]"
  452. Save the option state to \fIrcfile\fP. The default is the \fIlast\fP
  453. configuration file listed in the \fBOPTION PRESETS\fP section, below.
  454. .TP
  455. .BR \- " \fIrcfile\fP," " \--load-opts" "=\fIrcfile\fP," " \--no-load-opts"
  456. Load options from \fIrcfile\fP.
  457. The \fIno-load-opts\fP form will disable the loading
  458. of earlier RC/INI files. \fI--no-load-opts\fP is handled early,
  459. out of order.
  460. .SH OPTION PRESETS
  461. Any option that is not marked as \fInot presettable\fP may be preset
  462. by loading values from configuration ("RC" or ".INI") file(s).
  463. The \fIhomerc\fP file is "\fI$$/\fP", unless that is a directory.
  464. In that case, the file "\fI.tcprewriterc\fP"
  465. is searched for within that directory.
  466. .SH "SEE ALSO"
  467. tcpdump(1), tcpprep(1), tcpreplay(1)
  468. .SH AUTHOR
  469. Copyright 2004-2008 Aaron Turner
  470. For support please use the tcpreplay-users@lists.sourceforge.net mailing list.
  471. The latest version of this software is always available from:
  472. http://tcpreplay.synfin.net/
  473. .PP
  474. Released under the Free BSD License.
  475. .PP
  476. This manual page was \fIAutoGen\fP-erated from the \fBtcprewrite\fP
  477. option definitions.