summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNicolás Fort <95703796+nicolas-fort@users.noreply.github.com>2024-01-04 12:49:39 -0300
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-01-04 17:46:12 +0000
commit76109e22d03a18286fc5d4b2b5ed879030f9222c (patch)
tree994eeb7b4d05c51abb0850475190fc6eb04e0670 /src
parent4f34e19e062e1609a48b62311c51cdf1b5acc084 (diff)
downloadvyos-1x-76109e22d03a18286fc5d4b2b5ed879030f9222c.tar.gz
vyos-1x-76109e22d03a18286fc5d4b2b5ed879030f9222c.zip
T5159: nat: add option to map network and ports. Feature used for large deployments in cgnat. (#2694)
(cherry picked from commit 3fc76505d0642c32a3eae9c0ce6ab3dd2ec32dbd)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/nat.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/conf_mode/nat.py b/src/conf_mode/nat.py
index 7ab4c8648..ffd4a33e7 100755
--- a/src/conf_mode/nat.py
+++ b/src/conf_mode/nat.py
@@ -78,11 +78,6 @@ def verify_rule(config, err_msg, groups_dict):
raise ConfigError(f'{err_msg} ports can only be specified when '\
'protocol is either tcp, udp or tcp_udp!')
- if is_ip_network(dict_search('translation.address', config)):
- raise ConfigError(f'{err_msg} cannot use ports with an IPv4 network as '\
- 'translation address as it statically maps a whole network '\
- 'of addresses onto another network of addresses!')
-
for side in ['destination', 'source']:
if side in config:
side_conf = config[side]