diff options
author | Jon Andersson <Jon.Andersson@no.thalesgroup.com> | 2010-06-11 10:51:31 +0200 |
---|---|---|
committer | Stig Thormodsrud <stig@vyatta.com> | 2010-06-14 13:50:37 -0700 |
commit | ea31437f30a7f808cbb2bb055f1a6b826c994a4d (patch) | |
tree | c0f2e8dc19a589dd51a5baa47f07ed373d3542ed /templates/protocols/ospfv3/redistribute/kernel/node.def | |
parent | 33f2dc497c8edf3bb73c35fbd0296e22b86b3167 (diff) | |
download | vyatta-cfg-quagga-ea31437f30a7f808cbb2bb055f1a6b826c994a4d.tar.gz vyatta-cfg-quagga-ea31437f30a7f808cbb2bb055f1a6b826c994a4d.zip |
Added route-map support in ospfv3-redistribute
Diffstat (limited to 'templates/protocols/ospfv3/redistribute/kernel/node.def')
-rw-r--r-- | templates/protocols/ospfv3/redistribute/kernel/node.def | 13 |
1 files changed, 13 insertions, 0 deletions
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; |