summaryrefslogtreecommitdiff
path: root/templates/interfaces/tunnel/node.def
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2009-05-30 12:54:32 -0700
committerStig Thormodsrud <stig@vyatta.com>2009-05-30 12:54:32 -0700
commitab857f46cb19f9acdc53afb496ce6a13f3636b2f (patch)
treecc9c877ce465eaefe77c10655c06b6046839cc42 /templates/interfaces/tunnel/node.def
parentced5afec8a50dc914af46d8032c3cc797764f7f1 (diff)
downloadvyatta-cfg-quagga-ab857f46cb19f9acdc53afb496ce6a13f3636b2f.tar.gz
vyatta-cfg-quagga-ab857f46cb19f9acdc53afb496ce6a13f3636b2f.zip
Change tunnel multicast from on/off to enable/disable.
Diffstat (limited to 'templates/interfaces/tunnel/node.def')
-rw-r--r--templates/interfaces/tunnel/node.def7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/interfaces/tunnel/node.def b/templates/interfaces/tunnel/node.def
index 68302461..77aaa5fa 100644
--- a/templates/interfaces/tunnel/node.def
+++ b/templates/interfaces/tunnel/node.def
@@ -16,11 +16,14 @@ create:expression: "\
if [ -n \"$VAR(./key/@)\" ]; then \
KEY=\"key $VAR(./key/@)\"; \
fi; \
- MC=\"multicast $VAR(./multicast/@) allmulticast $VAR(./multicast/@)\"; \
+ if [ x$VAR(./multicast/@) == xenable ]; then \
+ MC=\"multicast on allmulticast on\"; \
+ fi; \
sudo ip tunnel add $VAR(@) \
local $VAR(./local-ip/@) remote $VAR(./remote-ip/@) \
mode $VAR(./encapsulation/@) $KEY; \
- sudo ip link set $VAR(@) $MC up;" ; "Error creating $VAR(@)"
+ sudo ip link set $VAR(@) $MC up;" ; \
+ "Error creating $VAR(@)"
delete:expression: "sudo ip tunnel del $VAR(@)" ; "Error deleting $VAR(@)"