summaryrefslogtreecommitdiff
path: root/templates/protocols/ripng/timers/node.def
blob: 5802c52070a3efec02e805f83269588d48a4dfb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
help: RIPng timer values

delete: touch /tmp/ripng-timers.$PPID

end: vtysh -c "configure terminal" \
       -c "router ripng"                                       \
       -c "no timers basic";                                   \
     if [ -f "/tmp/ripng-timers.$PPID" ]; then
        rm -rf /tmp/ripng-timers.$PPID;
     else
        vtysh -c "configure terminal" \
          -c "router ripng"                                       \
          -c "timers basic $VAR(./update/@)                       \
                           $VAR(./timeout/@)                      \
                           $VAR(./garbage-collection/@)"
     fi;