Fix port forwarding with FORWARD set to DROP by default
parent
f947397769
commit
fe07e06ad0
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue