blob: 464bd1c8ed4ab94f1617b68e90032256fbcf55ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
help: "Redistribute connected routes"
delete: "touch /tmp/ospf-redist-connected.\\$PPID"
end: "/usr/bin/vtysh -c \"configure terminal\" -c \"router ospf\" \
-c \"no redistribute connected \"; \
if [ -f \"/tmp/ospf-redist-connected.\\$PPID\" ]; then \
rm -rf /tmp/ospf-redist-connected.\\$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 connected \\$COND\"; \
fi; "
|