Bug 27669
| Summary: | iptables-restore complains that --dport is a bad argument | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Derrick Hamner <derrickh> |
| Component: | iptables | Assignee: | Bernhard Rosenkraenzer <bero> |
| Status: | CLOSED DEFERRED | QA Contact: | David Lawrence <dkl> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 7.1 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2001-02-16 01:12:01 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: | |||
|
Description
Derrick Hamner
2001-02-14 22:01:30 UTC
We (Red Hat) should really try to resolve this before next release. iptables-save / iptables-restore development was discontinued a few month ago. The parameters --dport / --destination-port and probably some of the rarely used others are not supported by iptables-restore. I don't understand why you call "--dport" a "rarely used" option: half my
packet-filtering rules use it, and also some of my NAT rules! (sure, if you only
use the "state" module, you won't need --dport).
iptables-restore (from iptables-1.2.1a-1) also dumps core on some format errors
(e.g., when you forget the [0:0] counter on the :... chain policy line).
Will iptables-restore (and /etc/init.d/iptables) work correctly in Redhat 7.2?
If not, I wrote a very simple zsh script to replace iptables-restore, and I
suggest you do something similar (note that my simple script doesn't restore
counters and is not atomic). I can't believe I'm the only one who sets up a
firewall by putting commands in /etc/sysconfig/iptables....
#!/bin/zsh
# this is a simple replacement to iptables-restore, because that one is
# buggy (doesn't accept --dport, core dumps on errors, etc.)
set -e
while read a
do
table="filter" # iptables-restore starts with "", BTW
case $a in
\**) table=${a#\*};;
-*) iptables -t "$table" ${=a};;
:*) iptables -t "$table" -P ${${a#:}%% *} ${${a#* }%% *};;
COMMIT);; # what should we do with that?
esac
done </etc/sysconfig/iptables
# this is a simple replacement to iptables-restore, because that one is
# buggy (doesn't accept --dport, core dumps on errors, etc.)
set -e
|