हाँ, यह MariusMatutiae के उत्तर के अनुसार काम नहीं करता है ।
tcpdump ...{other options}... -w httpdebug.pcap -W 48 -G 1800 -C 100
$ ls -l
-rw-r--r--. 1 tcpdump tcpdump 100007441 Mar 17 17:57 httpdebug.pcap00
-rw-r--r--. 1 tcpdump tcpdump 46895104 Mar 17 18:02 httpdebug.pcap01
-rw-r--r--. 1 tcpdump tcpdump 93091143 Mar 17 17:47 httpdebug.pcap02
-rw-r--r--. 1 tcpdump tcpdump 5372072 Mar 17 16:17 httpdebug.pcap03
यह मुझे ऐसा लग रहा है कि यह -C 100
30 मिनट की अवधि में जितनी संभव हो उतनी एमबी फाइलें कैप्चर कर सकता है क्योंकि httpdebug.pcap03
इसमें शुरुआती टाइमस्टैम्प है और यह 100 एमबी से बहुत छोटा है, इसलिए ऐसा लगता है कि यह 30 मिनट के निशान पर कट गया था। एक बार जब यह 30 मिनट तक हिट हो जाता है, तो httpdebug.pcap00
यह 100 एमबी तक हिट करने के लिए वापस कूदता है और संख्या में वृद्धि करता है। इसका मतलब है कि यदि आपके पास 30 मिनट की अवधि में बहुत अधिक अनुरोध हैं, तो आपको बहुत अधिक httpdebug.pcapXX नंबर मिलते हैं। यदि आप कभी भी उस अवधि में कई अनुरोधों तक नहीं पहुंचते हैं, तो उन उच्च httpdebug.pcapXX नंबर को कभी भी अधिलेखित नहीं किया जाएगा।
तो मैं सोच रहा हूँ कि प्रति टाइम साइक्लिकल फाइल्स का मतलब है कि टाइमस्लाइज़ है -G 1800
और यह हर -G 1800
और हर चक्र में वृद्धि करेगा -C 100
।
मुझे यकीन नहीं है कि अगर -W 48
यह प्रभावित करता है, लेकिन शायद अगर तुम httpdebug.pcap47
(गिनती 0` पर शुरू होता है, यह पैकेट पर कब्जा करना बंद कर देंगे)।
कुछ समय पहले, एक गीथहब मुद्दा था जो भ्रामक शब्दांकन के बारे में खुला था । उन्होंने कार्यान्वयन को नहीं बदला, लेकिन उन्होंने प्रलेखन को थोड़ा स्पष्ट करने की कोशिश की।
प्रस्तावित परिवर्तनों पर में विलय कर दिया गया 28 जनवरी, 2019 ।
आज के रूप में, 17 मार्च, 2019, यहाँ वर्तमान दस्तावेज़ है:
-C
:
.BI \-C " file_size"
Before writing a raw packet to a savefile, check whether the file is
currently larger than \fIfile_size\fP and, if so, close the current
savefile and open a new one. Savefiles after the first savefile will
have the name specified with the
.B \-w
flag, with a number after it, starting at 1 and continuing upward.
The units of \fIfile_size\fP are millions of bytes (1,000,000 bytes,
not 1,048,576 bytes).
-G
:
.BI \-G " rotate_seconds"
If specified, rotates the dump file specified with the
.B \-w
option every \fIrotate_seconds\fP seconds.
Savefiles will have the name specified by
.B \-w
which should include a time format as defined by
.BR strftime (3).
If no time format is specified, each new file will overwrite the previous.
Whenever a generated filename is not unique, tcpdump will overwrite the
preexisting data; providing a time specification that is coarser than the
capture period is therefore not advised.
.IP
If used in conjunction with the
.B \-C
option, filenames will take the form of `\fIfile\fP<count>'.
-W
:
.B \-W
Used in conjunction with the
.B \-C
option, this will limit the number
of files created to the specified number, and begin overwriting files
from the beginning, thus creating a 'rotating' buffer.
In addition, it will name
the files with enough leading 0s to support the maximum number of
files, allowing them to sort correctly.
.IP
Used in conjunction with the
.B \-G
option, this will limit the number of rotated dump files that get
created, exiting with status 0 when reaching the limit.
.IP
If used in conjunction with both
.B \-C
and
.B \-G,
the
.B \-W
option will currently be ignored, and will only affect the file name.
मुझे अभी भी लगता है कि यह थोड़ा भ्रमित करने वाला है, लेकिन मुझे लगता है कि मेरे निष्कर्ष से भिन्नता है, यह है कि यह कहता है कि -W
जब उपयोग किया जाता -C -G
है तो इससे कुछ भी प्रभावित नहीं होता है लेकिन फ़ाइल नाम।
सामान्य तौर पर, -W
फ़ाइलों की संख्या को सीमित करने के लिए उपयोग किया जाता है। यदि आप अनिश्चित काल के लिए कब्जा करना चाहते हैं तो इसका उपयोग न करें।