1 | initial version |
What is the maximum filter length
There's no fixed maximum length; however:
can this be done through a file based method
tcpdump supports the -F
command-line option, causing it to read the filter expression from a file.
TShark doesn't support that, although you could do
tshark -f `cat filter-file`
to insert the filter into a command-line from a file.
For Wireshark, you'd have to copy from the file and past into Wireshark.
2 | No.2 Revision |
What is the maximum filter length
There's no fixed maximum length; however:
can this be done through a file based method
tcpdump supports the -F
command-line option, causing it to read the filter expression from a file.
TShark doesn't support that, although although, with a UN*X-style shell, you could do
tshark -f `cat filter-file`
to insert the filter into a command-line from a file.
For Wireshark, you'd have to copy from the file and past into Wireshark.