summaryrefslogtreecommitdiff
path: root/templates/policy/extcommunity-list/standard
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2016-10-22 04:11:38 +0700
committerGitHub <noreply@github.com>2016-10-22 04:11:38 +0700
commit7ba64adcf4579f97cfa0269e05047f8749f74856 (patch)
treea58cef10a9de29ae7088668a5feffdac5fae186b /templates/policy/extcommunity-list/standard
parentcd9df0dcfe3df46e128472c3e3a0a1a1fbd9e00b (diff)
parentd6bdc5ba12e6005793aba4010236b9585d0cfe89 (diff)
downloadvyatta-cfg-quagga-7ba64adcf4579f97cfa0269e05047f8749f74856.tar.gz
vyatta-cfg-quagga-7ba64adcf4579f97cfa0269e05047f8749f74856.zip
Merge pull request #9 from mickvav/current
Initial commit on T64. (Bgp extcommunity list)
Diffstat (limited to 'templates/policy/extcommunity-list/standard')
-rw-r--r--templates/policy/extcommunity-list/standard/description/node.def2
-rw-r--r--templates/policy/extcommunity-list/standard/node.def8
-rw-r--r--templates/policy/extcommunity-list/standard/rule/node.def6
-rw-r--r--templates/policy/extcommunity-list/standard/rule/node.tag/action/node.def6
-rw-r--r--templates/policy/extcommunity-list/standard/rule/node.tag/description/node.def2
-rw-r--r--templates/policy/extcommunity-list/standard/rule/node.tag/regex/node.def7
6 files changed, 31 insertions, 0 deletions
diff --git a/templates/policy/extcommunity-list/standard/description/node.def b/templates/policy/extcommunity-list/standard/description/node.def
new file mode 100644
index 00000000..7a660be4
--- /dev/null
+++ b/templates/policy/extcommunity-list/standard/description/node.def
@@ -0,0 +1,2 @@
+type: txt
+help: Description for this community list
diff --git a/templates/policy/extcommunity-list/standard/node.def b/templates/policy/extcommunity-list/standard/node.def
new file mode 100644
index 00000000..aec1edcd
--- /dev/null
+++ b/templates/policy/extcommunity-list/standard/node.def
@@ -0,0 +1,8 @@
+tag:
+priority: 485
+type: txt
+help: Border Gateway Protocol (BGP) extended community-list filter
+
+syntax:expression: pattern $VAR(@) "^[a-zA-Z0-9]+$" ; "Should be alphanumeric name"
+
+end: /opt/vyatta/sbin/vyatta-policy.pl --update-community-list standard $VAR(@)
diff --git a/templates/policy/extcommunity-list/standard/rule/node.def b/templates/policy/extcommunity-list/standard/rule/node.def
new file mode 100644
index 00000000..7826f33d
--- /dev/null
+++ b/templates/policy/extcommunity-list/standard/rule/node.def
@@ -0,0 +1,6 @@
+tag:
+type: u32
+help: create a rule for this BGP extended community list
+val_help: u32:1-65535; Extended community-list rule number
+
+syntax:expression: $VAR(@) >= 1 && $VAR(@) <= 65535; "rule number must be between 1 and 65535"
diff --git a/templates/policy/extcommunity-list/standard/rule/node.tag/action/node.def b/templates/policy/extcommunity-list/standard/rule/node.tag/action/node.def
new file mode 100644
index 00000000..db4bdbc6
--- /dev/null
+++ b/templates/policy/extcommunity-list/standard/rule/node.tag/action/node.def
@@ -0,0 +1,6 @@
+type: txt
+help: Action to take on routes matching this rule [REQUIRED]
+val_help: permit; Permit matching routes
+val_help: deny; Deny matching routes
+
+syntax:expression: $VAR(@) in "permit", "deny"; "action must be permit or deny"
diff --git a/templates/policy/extcommunity-list/standard/rule/node.tag/description/node.def b/templates/policy/extcommunity-list/standard/rule/node.tag/description/node.def
new file mode 100644
index 00000000..b8e3095b
--- /dev/null
+++ b/templates/policy/extcommunity-list/standard/rule/node.tag/description/node.def
@@ -0,0 +1,2 @@
+type: txt
+help: Description for this rule
diff --git a/templates/policy/extcommunity-list/standard/rule/node.tag/regex/node.def b/templates/policy/extcommunity-list/standard/rule/node.tag/regex/node.def
new file mode 100644
index 00000000..36dd9954
--- /dev/null
+++ b/templates/policy/extcommunity-list/standard/rule/node.tag/regex/node.def
@@ -0,0 +1,7 @@
+type: txt
+help: Extended community value. Should be either AS:VAL or IP-Address:VAL
+val_help: Community list regular expression
+
+syntax:expression: pattern $VAR(@) "^([0-9]*)|([0-9]{1-3}\.[0-9]{1-3}\.[0-9]{1-3}\.[0-9]{1-3}):[0-9]*$"
+
+commit:expression: $VAR(../action/@) != ""; "You must specify an action"