diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2023-02-20 22:51:07 +0000 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2023-02-20 22:51:07 +0000 |
commit | ae2d03c5033a8a0a0dbf68c44c622bd4eb3dd24c (patch) | |
tree | 2fc0e72d625d3d9f38e776c0eb8eede95c1d2c4f /pcap-filter.manmisc.in | |
parent | bd2ed3589865329f503c93c9484f9e7dca34cd6b (diff) |
pcap-filter(7): "src foo" means IPv6 too [skip ci]
Make the example consistent with the subsequent definition of the "host"
primitive and with the actual bytecode.
Diffstat (limited to 'pcap-filter.manmisc.in')
-rw-r--r-- | pcap-filter.manmisc.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pcap-filter.manmisc.in b/pcap-filter.manmisc.in index 2a4d3be9..10aeb42d 100644 --- a/pcap-filter.manmisc.in +++ b/pcap-filter.manmisc.in @@ -18,7 +18,7 @@ .\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. .\" -.TH PCAP-FILTER @MAN_MISC_INFO@ "19 November 2022" +.TH PCAP-FILTER @MAN_MISC_INFO@ "20 February 2023" .SH NAME pcap-filter \- packet filter syntax .br @@ -107,7 +107,7 @@ E.g., `\fBether src\fP foo', `\fBarp net\fP 128.3', `\fBtcp port\fP 21', If there is no .I proto qualifier, all protocols consistent with the type are assumed. -E.g., `\fBsrc\fP foo' means `\fB(ip or arp or rarp) src\fP foo', +E.g., `\fBsrc\fP foo' means `\fB(ip6 or ip or arp or rarp) src\fP foo', `\fBnet\fP bar' means `\fB(ip or arp or rarp) net\fP bar' and `\fBport\fP 53' means `\fB(tcp or udp or sctp) port\fP 53' (note that these examples use invalid syntax to illustrate the principle). |