diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-25 10:29:47 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-25 10:31:28 +0100 |
commit | 56d81f10457cb2fd1dca0bdf70e93e9198a75462 (patch) | |
tree | 17c3c90dd7896be84ea7f8d8afac8da7297164c6 /templates-cfg/nat | |
parent | f29ab174f02eea5dc467823ed2ae67641ab476a4 (diff) | |
download | vyatta-nat-current.tar.gz vyatta-nat-current.zip |
(cherry picked from commit 01b9a8598dabd391cc42da4c66d7a8067846b12b)
Diffstat (limited to 'templates-cfg/nat')
-rw-r--r-- | templates-cfg/nat/destination/rule/node.def | 6 | ||||
-rw-r--r-- | templates-cfg/nat/source/rule/node.def | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/templates-cfg/nat/destination/rule/node.def b/templates-cfg/nat/destination/rule/node.def index c666be9..106db86 100644 --- a/templates-cfg/nat/destination/rule/node.def +++ b/templates-cfg/nat/destination/rule/node.def @@ -4,8 +4,8 @@ type: u32 help: Rule number for NAT -syntax:expression: ($VAR(@) > 0 && $VAR(@) < 10000) ; \ - "Rule number must be between 1 and 9999." +syntax:expression: ($VAR(@) > 0 && $VAR(@) <= 999999) ; \ + "Rule number must be between 1 and 999999." -val_help: u32:1-9999 ; Number for this NAT rule +val_help: u32:1-999999 ; Number for this NAT rule diff --git a/templates-cfg/nat/source/rule/node.def b/templates-cfg/nat/source/rule/node.def index c666be9..106db86 100644 --- a/templates-cfg/nat/source/rule/node.def +++ b/templates-cfg/nat/source/rule/node.def @@ -4,8 +4,8 @@ type: u32 help: Rule number for NAT -syntax:expression: ($VAR(@) > 0 && $VAR(@) < 10000) ; \ - "Rule number must be between 1 and 9999." +syntax:expression: ($VAR(@) > 0 && $VAR(@) <= 999999) ; \ + "Rule number must be between 1 and 999999." -val_help: u32:1-9999 ; Number for this NAT rule +val_help: u32:1-999999 ; Number for this NAT rule |