Bug 61044
Summary: | multiport documentation bug | ||||||
---|---|---|---|---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | Nigel Metheringham <nigel.metheringham> | ||||
Component: | iptables | Assignee: | Harald Hoyer <harald> | ||||
Status: | CLOSED RAWHIDE | QA Contact: | Ben Levenson <benl> | ||||
Severity: | low | Docs Contact: | |||||
Priority: | low | ||||||
Version: | 7.2 | ||||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2002-08-12 14:29:56 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
Nigel Metheringham
2002-03-12 16:51:02 UTC
Created attachment 48286 [details]
iptables man page patch for multiport extension
huh??? # iptables -m tcp --help iptables v1.2.6a .... --source-port [!] port[:port] --sport ... match source port(s) --destination-port [!] port[:port] --dport ... match destination port(s) since when is that???? Its for *multiport* as the original bug said. /sbin/iptables --proto tcp --match multiport --help [...] multiport v1.2.5 options: --source-ports port[,port,port...] --sports ... match source port(s) --destination-ports port[,port,port...] --dports ... match destination port(s) --ports port[,port,port] match both source and destination port(s) seems to be already fixed in $ rpm -q iptables iptables-1.2.6a-1 $ man iptables ... multiport This module matches a set of source or destination ports. Up to 15 ports can be specified. It can only be used in conjunction with -p tcp or -p udp. --source-ports port[,port[,port...]] Match if the source port is one of the given ports. The flag --sports is a convenient alias for this option. --destination-ports port[,port[,port...]] Match if the destination port is one of the given ports. The flag --dports is a convenient alias for this option. --ports port[,port[,port...]] Match if the both the source and destination ports are equal to each other and to one of the given ports. ... |