summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@io.vyatta.com>2009-03-03 17:06:53 -0800
committerStig Thormodsrud <stig@io.vyatta.com>2009-03-03 17:06:53 -0800
commit8c7a42c7776df784cb3adff150dee08e473f3265 (patch)
tree38e02d973b086038bfb149d247bca7c2e639a51e
parente60c5259d3eec2e0c394534b06aea76e61fbb3e3 (diff)
downloadvyatta-cfg-quagga-8c7a42c7776df784cb3adff150dee08e473f3265.tar.gz
vyatta-cfg-quagga-8c7a42c7776df784cb3adff150dee08e473f3265.zip
Add initial "interface <> ipv6 ripng" nodes.
More work to be done to support this on adsl and serial.
-rw-r--r--templates/interfaces/bonding/node.tag/ipv6/node.def1
-rw-r--r--templates/interfaces/bonding/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
-rw-r--r--templates/interfaces/bridge/node.tag/ipv6/node.def1
-rw-r--r--templates/interfaces/bridge/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
-rw-r--r--templates/interfaces/ethernet/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
-rw-r--r--templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
-rw-r--r--templates/interfaces/loopback/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
-rw-r--r--templates/interfaces/multilink/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
-rw-r--r--templates/interfaces/tunnel/node.tag/ipv6/ripng/node.def1
-rw-r--r--templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/disable/node.def12
-rw-r--r--templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/node.def1
-rw-r--r--templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def13
30 files changed, 191 insertions, 0 deletions
diff --git a/templates/interfaces/bonding/node.tag/ipv6/node.def b/templates/interfaces/bonding/node.tag/ipv6/node.def
new file mode 100644
index 00000000..6ad8bff4
--- /dev/null
+++ b/templates/interfaces/bonding/node.tag/ipv6/node.def
@@ -0,0 +1 @@
+help: Set IPv6 parameters for specified interface
diff --git a/templates/interfaces/bonding/node.tag/ipv6/ripng/node.def b/templates/interfaces/bonding/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/bonding/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..825f24ab
--- /dev/null
+++ b/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..e3b1663b
--- /dev/null
+++ b/templates/interfaces/bonding/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/bridge/node.tag/ipv6/node.def b/templates/interfaces/bridge/node.tag/ipv6/node.def
new file mode 100644
index 00000000..6ad8bff4
--- /dev/null
+++ b/templates/interfaces/bridge/node.tag/ipv6/node.def
@@ -0,0 +1 @@
+help: Set IPv6 parameters for specified interface
diff --git a/templates/interfaces/bridge/node.tag/ipv6/ripng/node.def b/templates/interfaces/bridge/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/bridge/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..825f24ab
--- /dev/null
+++ b/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..e3b1663b
--- /dev/null
+++ b/templates/interfaces/bridge/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/ethernet/node.tag/ipv6/ripng/node.def b/templates/interfaces/ethernet/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..825f24ab
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..e3b1663b
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/node.def b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..c2dbb4f3
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../../@).$VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../../@).$VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..dc6fc0e6
--- /dev/null
+++ b/templates/interfaces/ethernet/node.tag/vif/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../../@).$VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../../@).$VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/loopback/node.tag/ipv6/ripng/node.def b/templates/interfaces/loopback/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/loopback/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..825f24ab
--- /dev/null
+++ b/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..e3b1663b
--- /dev/null
+++ b/templates/interfaces/loopback/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/multilink/node.tag/ipv6/ripng/node.def b/templates/interfaces/multilink/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/multilink/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..825f24ab
--- /dev/null
+++ b/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..e3b1663b
--- /dev/null
+++ b/templates/interfaces/multilink/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/tunnel/node.tag/ipv6/ripng/node.def b/templates/interfaces/tunnel/node.tag/ipv6/ripng/node.def
new file mode 100644
index 00000000..cb2d89aa
--- /dev/null
+++ b/templates/interfaces/tunnel/node.tag/ipv6/ripng/node.def
@@ -0,0 +1 @@
+help: Set Routing Information Protocol (RIPng) for specified interface
diff --git a/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/disable/node.def b/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/disable/node.def
new file mode 100644
index 00000000..825f24ab
--- /dev/null
+++ b/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/disable/node.def
@@ -0,0 +1,12 @@
+help: Disable split horizon on specified interface
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../poison-reverse/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"
diff --git a/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/node.def b/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/node.def
new file mode 100644
index 00000000..ba39b616
--- /dev/null
+++ b/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/node.def
@@ -0,0 +1 @@
+help: Set to control split horizon parameters on this interface
diff --git a/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def b/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
new file mode 100644
index 00000000..e3b1663b
--- /dev/null
+++ b/templates/interfaces/tunnel/node.tag/ipv6/ripng/split-horizon/poison-reverse/node.def
@@ -0,0 +1,13 @@
+help: Enable poison reverse for split-horizon
+create: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "ipv6 ripng split-horizon poisoned-reverse"
+
+delete: vyatta-vtysh \
+ -c "configure terminal" \
+ -c "interface $VAR(../../../../@)" \
+ -c "no ipv6 ripng split-horizon" \
+ -c "ipv6 ripng split-horizon"
+
+commit:expression: ($VAR(../disable/) == ""); "You cannot have 'split-horizon poison-reverse' enabled with 'split-horizon' disabled for ethernet interface $VAR(../../../../@)"