summaryrefslogtreecommitdiff
path: root/templates/protocols/ospfv3/redistribute/ripng/node.def
blob: a5d5f551c64fd47c152a1ccaebcdd0755961e44a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;