summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorerkin <e.altunbas@vyos.io>2021-02-02 14:49:24 +0300
committerChristian Poessinger <christian@poessinger.com>2021-02-02 20:42:15 +0100
commit6b383435150077519f27304eb24d47a16fa747ec (patch)
tree9b5d868aeea211630408acfe3cc8c93cbd00d1ba /src/op_mode
parentbe05dcafbbe2bf9e76d681566b0b068cb5d2f953 (diff)
downloadvyos-1x-6b383435150077519f27304eb24d47a16fa747ec.tar.gz
vyos-1x-6b383435150077519f27304eb24d47a16fa747ec.zip
nat: T2873: Add address filtering for DNAT translations
(cherry picked from commit 06024ee642f9b0bd5658a91009ca9739dba52b6d)
Diffstat (limited to 'src/op_mode')
-rwxr-xr-xsrc/op_mode/show_nat_translations.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/op_mode/show_nat_translations.py b/src/op_mode/show_nat_translations.py
index 04c20e584..25091e9fc 100755
--- a/src/op_mode/show_nat_translations.py
+++ b/src/op_mode/show_nat_translations.py
@@ -51,6 +51,8 @@ def command(srcdest, proto, ipaddr):
command += f' --orig-src {ipaddr}'
if srcdest == 'destination':
command += ' -g'
+ if ipaddr:
+ command += f' --orig-dst {ipaddr}'
return command