From 29916bd39344088c84221a4ec2da387b28029097 Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Mon, 22 Sep 2008 14:07:09 -0700 Subject: Allow any number of tunnel devices The CLI should not be enforcing arbitrary restrictions on the number of devices. The limit should be based on the resources of the system and only the kernel would know that. So let the user try and make 10000 tunnel devices, maybe its on a 2000 core machine with 64G of memory. Any failure will show up when the attempt is made to create the tunnel device. --- templates/interfaces/tunnel/node.def | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'templates/interfaces') diff --git a/templates/interfaces/tunnel/node.def b/templates/interfaces/tunnel/node.def index d152dbe5..89ee200c 100644 --- a/templates/interfaces/tunnel/node.def +++ b/templates/interfaces/tunnel/node.def @@ -2,7 +2,8 @@ tag: type: txt help: Set tunnel interface -syntax:expression: exec "echo $VAR(@) | grep \"tun[0-9][0-9]\\{0,2\\}\$\" > /dev/null "; "tunnel must be (tun0-tun999)" +syntax:expression: pattern $VAR(@) "^tun[0-9]+$" \ + ; "tunnel must be (tun0-tun999)" commit:expression: $VAR(./local-ip/) != "" ; \ "Must configure the tunnel local-ip for $VAR(@)" -- cgit v1.2.3