diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/policy/route-map/node.tag/rule/node.tag/set/table/node.def | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/policy/route-map/node.tag/rule/node.tag/set/table/node.def b/templates/policy/route-map/node.tag/rule/node.tag/set/table/node.def new file mode 100644 index 00000000..b9e47fed --- /dev/null +++ b/templates/policy/route-map/node.tag/rule/node.tag/set/table/node.def @@ -0,0 +1,14 @@ +type: u32 +help: Set prefixes to table +val_help: u32:1-200; Table value + +syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 200; "table must be between 1 and 200" +commit:expression: $VAR(../../action/) != ""; "you must specify an action" + +update: vtysh -c "configure terminal" \ + -c "route-map $VAR(../../../@) $VAR(../../action/@) $VAR(../../@)" \ + -c "set table $VAR(@)" + +delete: vtysh -c "configure terminal" \ + -c "route-map $VAR(../../../@) $VAR(../../action/@) $VAR(../../@)" \ + -c "no set table " |