summaryrefslogtreecommitdiff
path: root/templates/protocols/ospf/redistribute/bgp
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@uffda.(none)>2007-10-18 18:49:14 -0700
committerStig Thormodsrud <stig@uffda.(none)>2007-10-18 18:49:14 -0700
commiteb27e2fffae49b0d8fa636bee611d9ad3c1e0999 (patch)
tree9c5ab6ea0511bc9ff98dc0480a583c530a639624 /templates/protocols/ospf/redistribute/bgp
parent70ad82f7cd762ddfd34534197ca1a4c1d7ee5b6c (diff)
downloadvyatta-cfg-quagga-eb27e2fffae49b0d8fa636bee611d9ad3c1e0999.tar.gz
vyatta-cfg-quagga-eb27e2fffae49b0d8fa636bee611d9ad3c1e0999.zip
Add minimal ospf config.
- still need to add validation and rest of functionality.
Diffstat (limited to 'templates/protocols/ospf/redistribute/bgp')
-rw-r--r--templates/protocols/ospf/redistribute/bgp/metric/node.def3
-rw-r--r--templates/protocols/ospf/redistribute/bgp/node.def16
-rw-r--r--templates/protocols/ospf/redistribute/bgp/route-map/node.def4
3 files changed, 23 insertions, 0 deletions
diff --git a/templates/protocols/ospf/redistribute/bgp/metric/node.def b/templates/protocols/ospf/redistribute/bgp/metric/node.def
new file mode 100644
index 00000000..270a810e
--- /dev/null
+++ b/templates/protocols/ospf/redistribute/bgp/metric/node.def
@@ -0,0 +1,3 @@
+type: u32
+help: "Metric for redistributed routes"
+syntax: $(@) >= 1 && $(@) <= 16; "metric must be between 1 and 16"
diff --git a/templates/protocols/ospf/redistribute/bgp/node.def b/templates/protocols/ospf/redistribute/bgp/node.def
new file mode 100644
index 00000000..a4856c55
--- /dev/null
+++ b/templates/protocols/ospf/redistribute/bgp/node.def
@@ -0,0 +1,16 @@
+help: "Redistribute BGP routes"
+delete: "touch /tmp/ospf-redist-bgp.\\$PPID"
+end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router ospf\" \
+ -c \"no redistribute bgp \"; \
+ if [ -f \"/tmp/ospf-redist-bgp.\\$PPID\" ]; then \
+ rm -rf /tmp/ospf-redist-bgp.\\$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 bgp \\$COND\"; \
+ fi; "
diff --git a/templates/protocols/ospf/redistribute/bgp/route-map/node.def b/templates/protocols/ospf/redistribute/bgp/route-map/node.def
new file mode 100644
index 00000000..f6e81288
--- /dev/null
+++ b/templates/protocols/ospf/redistribute/bgp/route-map/node.def
@@ -0,0 +1,4 @@
+type: txt
+help: "Route map reference"
+commit: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy route-map $(@)\" ";"route-map $(@) doesn't exist"
+