mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
2012-01-18 Junichi Satoh <junichi@rworks.jp>
* include/help/ja/help_pcap_filter.php: Added a new help file. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5385 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9fc7ff50a5
commit
f4d2c55dec
@ -1,3 +1,7 @@
|
|||||||
|
2012-01-18 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* include/help/ja/help_pcap_filter.php: Added a new help file.
|
||||||
|
|
||||||
2012-01-17 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2012-01-17 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* include/functions_network_components.php
|
* include/functions_network_components.php
|
||||||
|
40
pandora_console/include/help/ja/help_pcap_filter.php
Normal file
40
pandora_console/include/help/ja/help_pcap_filter.php
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @package Include/help/ja
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
<h1>Nfdump フィルターの書式</h1>
|
||||||
|
|
||||||
|
フィルターの書式は、tcpdump ととても似ています。例えば次の通りです。
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>192.168.0.1 発または宛の通信をキャプチャする場合:</li>
|
||||||
|
<pre>
|
||||||
|
host 192.168.0.1
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>192.168.0.1 宛の通信をキャプチャする場合:</li>
|
||||||
|
<pre>
|
||||||
|
dst host 192.168.0.1
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<li>192.168.0.0/24 発の通信をキャプチャする場合:</li>
|
||||||
|
<pre>
|
||||||
|
src net 192.168.0.0/24
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<li>HTTP および HTTPS の通信をキャプチャする場合:</li>
|
||||||
|
<pre>
|
||||||
|
(port 80) or (port 443)
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<li>DNS 以外の全通信をキャプチャする場合:</li>
|
||||||
|
<pre>
|
||||||
|
port not 53
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<li>192.168.0.1 宛の SSH 通信をキャプチャする場合:</li>
|
||||||
|
<pre>
|
||||||
|
(port 22) and (dst host 192.168.0.1)
|
||||||
|
</pre>
|
Loading…
x
Reference in New Issue
Block a user