1
0
Derivar 0

Fix port forwarding with FORWARD set to DROP by default

master
bbruns 2014-04-13 17:40:12 +00:00
ascendente f947397769
cometimento fe07e06ad0
1 ficheiros modificados com 2 adições e 1 eliminações

Ver ficheiro

@ -593,6 +593,7 @@ function enable_portfw {
[[ ${protocol} != "-" ]] && protocol="-p ${protocol}"
[[ ${intip} != "-" ]] && intdest="--to-destination ${intip}:${intport}"
[[ ${interface} != "-" ]] && interface="-i ${interface}"
[[ ${intip} != "-" ]] && intip="-d ${intip}"
[[ ${address} != "-" ]] && address="-d ${address}"
[[ ${srcaddress} != "-" ]] && srcaddress="-s ${srcaddress}"
@ -604,7 +605,7 @@ function enable_portfw {
[[ ${srcaddress} == "-" ]] && srcaddress=""
${VER_IPTABLES} -A ${PortForward} -t nat ${protocol} ${service} ${interface} ${address} ${srcaddress} -j DNAT ${intdest}
${VER_IPTABLES} -A ${InFilter} ${protocol} ${service} ${interface} ${address} ${srcaddress} ${conntrack_state} -j ACCEPT
${VER_IPTABLES} -A ${FwdFilter} ${protocol} ${service} ${interface} ${intip} ${srcaddress} ${conntrack_state} -j ACCEPT
done < "${FWCONFIGDIR}/ipv${IPVER}/portfw.conf"
${debug} ${DebugColor} "${FUNCNAME}:${DEFAULT_COLOR} done"