diff options
| author | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-05 19:03:17 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-05 19:03:17 +0000 |
| commit | eb79296cc10f6168892278b4aa921566178b1f20 (patch) | |
| tree | d0c316a221006e53285d7abc638e848e263febbb /package/firewall/files/reflection.hotplug | |
| parent | 0c6653c6e2f5c122afee186d69cef106bae69d66 (diff) | |
| download | upstream-eb79296cc10f6168892278b4aa921566178b1f20.tar.gz upstream-eb79296cc10f6168892278b4aa921566178b1f20.tar.bz2 upstream-eb79296cc10f6168892278b4aa921566178b1f20.zip | |
firewall: introduce SNAT support for redirect sections
SVN-Revision: 22937
Diffstat (limited to 'package/firewall/files/reflection.hotplug')
| -rw-r--r-- | package/firewall/files/reflection.hotplug | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/firewall/files/reflection.hotplug b/package/firewall/files/reflection.hotplug index 6b1cd60f285..027d2ed8b1a 100644 --- a/package/firewall/files/reflection.hotplug +++ b/package/firewall/files/reflection.hotplug @@ -41,7 +41,10 @@ if [ "$ACTION" = "add" ] && [ "$INTERFACE" = "wan" ]; then local src config_get src "$cfg" src - [ "$src" = wan ] && { + local target + config_get target "$cfg" target DNAT + + [ "$src" = wan ] && [ "$target" = DNAT ] && { local dest config_get dest "$cfg" dest "lan" |
