diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-09-01 22:53:40 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-09-01 22:53:40 +0200 |
commit | 5f5e8973dd6e76d8446a5eed7206ffb8c5dc6dbb (patch) | |
tree | d0a4dc68ef67c1eea1bb1c7402a0a9fdf6df48d2 /templates | |
parent | 464561c570804a5fe56ea8b9aae73b26bf1cc77f (diff) | |
download | vyatta-cfg-quagga-5f5e8973dd6e76d8446a5eed7206ffb8c5dc6dbb.tar.gz vyatta-cfg-quagga-5f5e8973dd6e76d8446a5eed7206ffb8c5dc6dbb.zip |
T1209: cap OSPF max-metric at 100 to match the FRR validation rules.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/protocols/ospf/max-metric/router-lsa/on-shutdown/node.def | 12 | ||||
-rw-r--r-- | templates/protocols/ospf/max-metric/router-lsa/on-startup/node.def | 13 |
2 files changed, 19 insertions, 6 deletions
diff --git a/templates/protocols/ospf/max-metric/router-lsa/on-shutdown/node.def b/templates/protocols/ospf/max-metric/router-lsa/on-shutdown/node.def index b0f807de..9911dd16 100644 --- a/templates/protocols/ospf/max-metric/router-lsa/on-shutdown/node.def +++ b/templates/protocols/ospf/max-metric/router-lsa/on-shutdown/node.def @@ -3,9 +3,15 @@ help: Advertise stub-router prior to full shutdown of OSPF syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 86400; "must be between 5-86400 seconds" val_help: u32:5-86400; Time (seconds) to advertise self as stub-router -update:expression: "vtysh -c \"configure terminal\" \ - -c \"router ospf\" \ - -c \"max-metric router-lsa on-shutdown $VAR(@)\"; " +update: + METRIC=$VAR(@) + if [ $METRIC -gt 100 ]; then + echo "Warning: $METRIC is not a supported value for OSPF max-metric, reducing to 100"; + METRIC=100; + fi + vtysh -c "configure terminal" \ + -c "router ospf" \ + -c "max-metric router-lsa on-shutdown $METRIC" delete:expression: "vtysh -c \"configure terminal\" \ -c \"router ospf\" \ diff --git a/templates/protocols/ospf/max-metric/router-lsa/on-startup/node.def b/templates/protocols/ospf/max-metric/router-lsa/on-startup/node.def index d54d3012..2992ed48 100644 --- a/templates/protocols/ospf/max-metric/router-lsa/on-startup/node.def +++ b/templates/protocols/ospf/max-metric/router-lsa/on-startup/node.def @@ -3,10 +3,17 @@ help: Automatically advertise stub Router-LSA on startup of OSPF syntax:expression: $VAR(@) >= 5 && $VAR(@) <= 86400; "must be between 5-86400 seconds" val_help: u32:5-86400; Time (seconds) to advertise self as stub-router -update:expression: "vtysh -c \"configure terminal\" \ - -c \"router ospf\" \ - -c \"max-metric router-lsa on-startup $VAR(@)\"; " +update: + METRIC=$VAR(@) + if [ $METRIC -gt 100 ]; then + echo "Warning: $METRIC is not a supported value for OSPF max-metric, reducing to 100"; + METRIC=100; + fi + vtysh -c "configure terminal" \ + -c "router ospf" \ + -c "max-metric router-lsa on-startup $METRIC" delete:expression: "vtysh -c \"configure terminal\" \ -c \"router ospf\" \ -c \"no max-metric router-lsa on-startup \"; " + |