core-agent-linux/network/iptables-yum-proxy
Marek Marczykowski-Górecki f2ff044539 yum-proxy: fix iptables rules order
Add the rules at the beginning of chain, so before final REJECT rule.
2014-03-26 00:02:10 +01:00

21 lines
384 B
Bash
Executable File

#!/bin/sh
RULE_FILTER="INPUT -i vif+ -p tcp --dport 8082 -j ACCEPT"
RULE_NAT="PR-QBS-SERVICES -i vif+ -d 10.137.255.254 -p tcp --dport 8082 -j REDIRECT"
if [ "$1" == "start" ]; then
cat <<__EOF__ | iptables-restore -n
*filter
-I $RULE_FILTER
COMMIT
*nat
-I $RULE_NAT
COMMIT
__EOF__
else
# Remove rules
iptables -D $RULE_FILTER
iptables -t nat -D $RULE_NAT
exit 0
fi