From eb27e2fffae49b0d8fa636bee611d9ad3c1e0999 Mon Sep 17 00:00:00 2001 From: Stig Thormodsrud Date: Thu, 18 Oct 2007 18:49:14 -0700 Subject: Add minimal ospf config. - still need to add validation and rest of functionality. --- .../ospf/redistribute/connected/metric/node.def | 6 ++++++ templates/protocols/ospf/redistribute/connected/node.def | 16 ++++++++++++++++ .../ospf/redistribute/connected/route-map/node.def | 3 +++ 3 files changed, 25 insertions(+) create mode 100644 templates/protocols/ospf/redistribute/connected/metric/node.def create mode 100644 templates/protocols/ospf/redistribute/connected/node.def create mode 100644 templates/protocols/ospf/redistribute/connected/route-map/node.def (limited to 'templates/protocols/ospf/redistribute/connected') diff --git a/templates/protocols/ospf/redistribute/connected/metric/node.def b/templates/protocols/ospf/redistribute/connected/metric/node.def new file mode 100644 index 00000000..d7ca3c34 --- /dev/null +++ b/templates/protocols/ospf/redistribute/connected/metric/node.def @@ -0,0 +1,6 @@ +type: u32 +help: "Metric for redistributed routes" +syntax: $(@) >= 1 && $(@) <= 16; "metric must be between 1 and 16" + + + diff --git a/templates/protocols/ospf/redistribute/connected/node.def b/templates/protocols/ospf/redistribute/connected/node.def new file mode 100644 index 00000000..464bd1c8 --- /dev/null +++ b/templates/protocols/ospf/redistribute/connected/node.def @@ -0,0 +1,16 @@ +help: "Redistribute connected routes" +delete: "touch /tmp/ospf-redist-connected.\\$PPID" +end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router ospf\" \ + -c \"no redistribute connected \"; \ + if [ -f \"/tmp/ospf-redist-connected.\\$PPID\" ]; then \ + rm -rf /tmp/ospf-redist-connected.\\$PPID; \ + else \ + if [ -n \"$(./metric/@)\" ]; then \ + COND=\"metric $(./metric/@)\"; + fi; \ + if [ -n \"$(./route-map/@)\" ]; then \ + COND=\"\\$COND route-map $(./route-map/@)\"; \ + fi; \ + /usr/bin/vtysh -c \"configure terminal\" -c \"router ospf\" \ + -c \"redistribute connected \\$COND\"; \ + fi; " diff --git a/templates/protocols/ospf/redistribute/connected/route-map/node.def b/templates/protocols/ospf/redistribute/connected/route-map/node.def new file mode 100644 index 00000000..5ce5f0ab --- /dev/null +++ b/templates/protocols/ospf/redistribute/connected/route-map/node.def @@ -0,0 +1,3 @@ +type: txt +help: "Route map reference" +commit: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $(@)\" ";"route-map $(@) doesn't exist" -- cgit v1.2.3