From ea31437f30a7f808cbb2bb055f1a6b826c994a4d Mon Sep 17 00:00:00 2001 From: Jon Andersson Date: Fri, 11 Jun 2010 10:51:31 +0200 Subject: Added route-map support in ospfv3-redistribute --- templates/protocols/ospfv3/redistribute/bgp/node.def | 13 +++++++++++++ .../protocols/ospfv3/redistribute/bgp/route-map/node.def | 4 ++++ templates/protocols/ospfv3/redistribute/connected/node.def | 13 +++++++++++++ .../ospfv3/redistribute/connected/route-map/node.def | 3 +++ templates/protocols/ospfv3/redistribute/kernel/node.def | 13 +++++++++++++ .../protocols/ospfv3/redistribute/kernel/route-map/node.def | 3 +++ templates/protocols/ospfv3/redistribute/node.def | 11 +---------- templates/protocols/ospfv3/redistribute/ripng/node.def | 13 +++++++++++++ .../protocols/ospfv3/redistribute/ripng/route-map/node.def | 3 +++ templates/protocols/ospfv3/redistribute/static/node.def | 13 +++++++++++++ .../protocols/ospfv3/redistribute/static/route-map/node.def | 3 +++ 11 files changed, 82 insertions(+), 10 deletions(-) create mode 100644 templates/protocols/ospfv3/redistribute/bgp/node.def create mode 100644 templates/protocols/ospfv3/redistribute/bgp/route-map/node.def create mode 100644 templates/protocols/ospfv3/redistribute/connected/node.def create mode 100644 templates/protocols/ospfv3/redistribute/connected/route-map/node.def create mode 100644 templates/protocols/ospfv3/redistribute/kernel/node.def create mode 100644 templates/protocols/ospfv3/redistribute/kernel/route-map/node.def create mode 100644 templates/protocols/ospfv3/redistribute/ripng/node.def create mode 100644 templates/protocols/ospfv3/redistribute/ripng/route-map/node.def create mode 100644 templates/protocols/ospfv3/redistribute/static/node.def create mode 100644 templates/protocols/ospfv3/redistribute/static/route-map/node.def (limited to 'templates') diff --git a/templates/protocols/ospfv3/redistribute/bgp/node.def b/templates/protocols/ospfv3/redistribute/bgp/node.def new file mode 100644 index 00000000..a9f5e180 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/bgp/node.def @@ -0,0 +1,13 @@ +help: Set to redistribute bgp routes + +end: vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "no redistribute bgp"; + if [ "$COMMIT_ACTION" = "SET" -o "$COMMIT_ACTION" = "ACTIVE" ]; then + if [ -n "$VAR(./route-map/@)" ]; then + COND="route-map $VAR(./route-map/@)"; + fi; + vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "redistribute bgp $COND"; + fi; diff --git a/templates/protocols/ospfv3/redistribute/bgp/route-map/node.def b/templates/protocols/ospfv3/redistribute/bgp/route-map/node.def new file mode 100644 index 00000000..cf70580f --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/bgp/route-map/node.def @@ -0,0 +1,4 @@ +type: txt +help: Set route map reference +commit:expression: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $VAR(@)\" ";"route-map $VAR(@) doesn't exist" + diff --git a/templates/protocols/ospfv3/redistribute/connected/node.def b/templates/protocols/ospfv3/redistribute/connected/node.def new file mode 100644 index 00000000..31ec403e --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/connected/node.def @@ -0,0 +1,13 @@ +help: Set to redistribute connected routes + +end: vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "no redistribute connected"; + if [ "$COMMIT_ACTION" = "SET" -o "$COMMIT_ACTION" = "ACTIVE" ]; then + if [ -n "$VAR(./route-map/@)" ]; then + COND="route-map $VAR(./route-map/@)"; + fi; + vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "redistribute connected $COND"; + fi; diff --git a/templates/protocols/ospfv3/redistribute/connected/route-map/node.def b/templates/protocols/ospfv3/redistribute/connected/route-map/node.def new file mode 100644 index 00000000..3f570311 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/connected/route-map/node.def @@ -0,0 +1,3 @@ +type: txt +help: Set route map reference +commit:expression: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $VAR(@)\" ";"route-map $VAR(@) doesn't exist" diff --git a/templates/protocols/ospfv3/redistribute/kernel/node.def b/templates/protocols/ospfv3/redistribute/kernel/node.def new file mode 100644 index 00000000..3181d277 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/kernel/node.def @@ -0,0 +1,13 @@ +help: Set to redistribute kernel routes + +end: vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "no redistribute kernel"; + if [ "$COMMIT_ACTION" = "SET" -o "$COMMIT_ACTION" = "ACTIVE" ]; then + if [ -n "$VAR(./route-map/@)" ]; then + COND="route-map $VAR(./route-map/@)"; + fi; + vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "redistribute kernel $COND"; + fi; diff --git a/templates/protocols/ospfv3/redistribute/kernel/route-map/node.def b/templates/protocols/ospfv3/redistribute/kernel/route-map/node.def new file mode 100644 index 00000000..3f570311 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/kernel/route-map/node.def @@ -0,0 +1,3 @@ +type: txt +help: Set route map reference +commit:expression: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $VAR(@)\" ";"route-map $VAR(@) doesn't exist" diff --git a/templates/protocols/ospfv3/redistribute/node.def b/templates/protocols/ospfv3/redistribute/node.def index c33bd557..0f60ac58 100644 --- a/templates/protocols/ospfv3/redistribute/node.def +++ b/templates/protocols/ospfv3/redistribute/node.def @@ -1,10 +1 @@ -multi: -type: txt -help: Set route type to redistribute -allowed: echo "static kernel connected ripng bgp" -create:expression: "vtysh -c \"configure terminal\" \ - -c \"router ospf6 \" \ - -c \"redistribute $VAR(@) \"; " -delete:expression: "vtysh -c \"configure terminal\" \ - -c \"router ospf6 \" \ - -c \"no redistribute $VAR(@) \"; " +help: Set to redistribute information from another routing protocol diff --git a/templates/protocols/ospfv3/redistribute/ripng/node.def b/templates/protocols/ospfv3/redistribute/ripng/node.def new file mode 100644 index 00000000..a5d5f551 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/ripng/node.def @@ -0,0 +1,13 @@ +help: Set to redistribute RIPNG routes + +end: vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "no redistribute ripng"; + if [ "$COMMIT_ACTION" = "SET" -o "$COMMIT_ACTION" = "ACTIVE" ]; then + if [ -n "$VAR(./route-map/@)" ]; then + COND="route-map $VAR(./route-map/@)"; + fi; + vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "redistribute ripng $COND"; + fi; diff --git a/templates/protocols/ospfv3/redistribute/ripng/route-map/node.def b/templates/protocols/ospfv3/redistribute/ripng/route-map/node.def new file mode 100644 index 00000000..3f570311 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/ripng/route-map/node.def @@ -0,0 +1,3 @@ +type: txt +help: Set route map reference +commit:expression: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $VAR(@)\" ";"route-map $VAR(@) doesn't exist" diff --git a/templates/protocols/ospfv3/redistribute/static/node.def b/templates/protocols/ospfv3/redistribute/static/node.def new file mode 100644 index 00000000..6d862bc0 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/static/node.def @@ -0,0 +1,13 @@ +help: Set to redistribute static routes + +end: vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "no redistribute static"; + if [ "$COMMIT_ACTION" = "SET" -o "$COMMIT_ACTION" = "ACTIVE" ]; then + if [ -n "$VAR(./route-map/@)" ]; then + COND="route-map $VAR(./route-map/@)"; + fi; + vyatta-vtysh -c "configure terminal" \ + -c "router ospf6" \ + -c "redistribute static $COND"; + fi; diff --git a/templates/protocols/ospfv3/redistribute/static/route-map/node.def b/templates/protocols/ospfv3/redistribute/static/route-map/node.def new file mode 100644 index 00000000..3f570311 --- /dev/null +++ b/templates/protocols/ospfv3/redistribute/static/route-map/node.def @@ -0,0 +1,3 @@ +type: txt +help: Set route map reference +commit:expression: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $VAR(@)\" ";"route-map $VAR(@) doesn't exist" -- cgit v1.2.3