diff options
-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 |