summaryrefslogtreecommitdiff
path: root/docbook
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-03-01 21:08:01 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-03-01 21:08:01 +0000
commitd3b6887d80c0b79ad9c1a248942d05359619cbbb (patch)
tree56d76a09f8b99a50a43a126d626d0aa2ea215b6c /docbook
parentae89a24c37b37a1ac32ec071413268baeae06893 (diff)
downloadwireshark-d3b6887d80c0b79ad9c1a248942d05359619cbbb.tar.gz
Fix bug #1409:
There is an error in the page: http://wireshark.org/docs/wsug_html_chunked/ChCapCaptureFilterSection.html According to Example 4.2, the filter 'tcp port 23 and not host 10.0.0.5' captures all telnet traffic not from 10.0.0.5. But this filter also discards traffic to 10.0.0.5. Either you use this filter to capture all telnet traffic not to and not from 10.0.0.5 or you use filter 'tcp port 23 and not src host 10.0.0.5'. svn path=/trunk/; revision=20955
Diffstat (limited to 'docbook')
-rw-r--r--docbook/wsug_src/WSUG_chapter_capture.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docbook/wsug_src/WSUG_chapter_capture.xml b/docbook/wsug_src/WSUG_chapter_capture.xml
index 9bb3b06ff1..a52c54e892 100644
--- a/docbook/wsug_src/WSUG_chapter_capture.xml
+++ b/docbook/wsug_src/WSUG_chapter_capture.xml
@@ -806,7 +806,7 @@ tcp port 23 and host 10.0.0.5
<title>
Capturing all telnet traffic not from 10.0.0.5</title>
<programlisting>
-tcp port 23 and not host 10.0.0.5
+tcp port 23 and not src host 10.0.0.5
</programlisting>
</example>
</para>