diff options
author | Justin Fletcher <jfletcher@phuket.vyatta.com> | 2007-11-05 14:47:02 -0800 |
---|---|---|
committer | Justin Fletcher <jfletcher@phuket.vyatta.com> | 2007-11-05 14:47:02 -0800 |
commit | f6d78b37ef2c22f273484ccf68aa50e00facf4bf (patch) | |
tree | 95fe13634a9fab3f5ead9b708798cae4c747a9d4 /templates/policy | |
parent | 99378be23aeb463c5c405c279bd474ab54c0669e (diff) | |
download | vyatta-cfg-quagga-f6d78b37ef2c22f273484ccf68aa50e00facf4bf.tar.gz vyatta-cfg-quagga-f6d78b37ef2c22f273484ccf68aa50e00facf4bf.zip |
Help text modifications
Diffstat (limited to 'templates/policy')
33 files changed, 34 insertions, 34 deletions
diff --git a/templates/policy/access-list/node.def b/templates/policy/access-list/node.def index c1026172..41327e16 100644 --- a/templates/policy/access-list/node.def +++ b/templates/policy/access-list/node.def @@ -1,12 +1,12 @@ tag: type: u32 -help: "access-list number must be \n \ +help: "Access list number must be \n \ <1-99> IP standard access list \n \ <100-199> IP extended access list \n \ <1300-1999> IP standard access list (expanded range) \n \ <2000-2699> IP extended access list (expanded range) \n " syntax: ($(@) >= 1 && $(@) <= 199) || ($(@) >= 1300 && $(@) <= 2699); \ -"access-list number must be \n \ +"Access list number must be \n \ <1-99> IP standard access list \n \ <100-199> IP extended access list \n \ <1300-1999> IP standard access list (expanded range) \n \ diff --git a/templates/policy/access-list/node.tag/description/node.def b/templates/policy/access-list/node.tag/description/node.def index c5b70286..7b754982 100644 --- a/templates/policy/access-list/node.tag/description/node.def +++ b/templates/policy/access-list/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "access-list description" +help: "Access list description" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/action/node.def b/templates/policy/access-list/node.tag/rule/node.tag/action/node.def index bca61186..418a9fa7 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/action/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/action/node.def @@ -1,3 +1,3 @@ type: txt -help: "action to take on packets matching this rule" +help: "Action to take on packets matching this rule" syntax: $(@) in "permit", "deny"; "must be permit or deny" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/description/node.def b/templates/policy/access-list/node.tag/rule/node.tag/description/node.def index 3d61ac85..00fed102 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/description/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "description for this rule" +help: "Description for this rule" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/destination/any/node.def b/templates/policy/access-list/node.tag/rule/node.tag/destination/any/node.def index 6dbee23b..a3327bbf 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/destination/any/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/destination/any/node.def @@ -1,4 +1,4 @@ -help: "filter any IP address" +help: "Filter any IP address" # TODO: won't work until 2220 is fixed syntax: $(../host/@) == "" && $(../network/@) == ""; "You may only define one filter type. (host|network|any)" # TODO: pending 2284 diff --git a/templates/policy/access-list/node.tag/rule/node.tag/destination/host/node.def b/templates/policy/access-list/node.tag/rule/node.tag/destination/host/node.def index 993c64ea..aa6b5303 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/destination/host/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/destination/host/node.def @@ -1,5 +1,5 @@ type: ipv4 -help: "filter a host IP address" +help: "Filter a host IP address" syntax: $(../any/@) == "" && $(../network/@) == ""; "You may only define one filter type. (host|network|any)" # TODO: pending 2284 syntax: ($(../../@) >= 100 && $(../../@) <= 199) || ($(../../@) >= 2000) && $(../../@) <= 2699); " \ diff --git a/templates/policy/access-list/node.tag/rule/node.tag/destination/inverse-mask/node.def b/templates/policy/access-list/node.tag/rule/node.tag/destination/inverse-mask/node.def index 37bbc95a..36ad0253 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/destination/inverse-mask/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/destination/inverse-mask/node.def @@ -1,5 +1,5 @@ type: ipv4 -help: "filter a network IP netmask" +help: "Filter a network IP netmask" syntax: $(../any/@) == "" && $(../host/@) == ""; "You may only define one filter type. (host|network|any)" # TODO: pending 2284 syntax: ($(../../@) >= 100 && $(../../@) <= 199) || ($(../../@) >= 2000) && $(../../@) <= 2699); " \ diff --git a/templates/policy/access-list/node.tag/rule/node.tag/destination/network/node.def b/templates/policy/access-list/node.tag/rule/node.tag/destination/network/node.def index c016170f..c881ace2 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/destination/network/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/destination/network/node.def @@ -1,5 +1,5 @@ type: ipv4 -help: "filter a network IP address" +help: "Filter a network IP address" syntax: $(../host/@) != "" || $(../any/@) != ""; "You may only define one filter type. (host|network|any)" # TODO: pending 2284 syntax: ($(../../@) >= 100 && $(../../@) <= 199) || ($(../../@) >= 2000) && $(../../@) <= 2699); " \ diff --git a/templates/policy/access-list/node.tag/rule/node.tag/destination/node.def b/templates/policy/access-list/node.tag/rule/node.tag/destination/node.def index 21f3005a..ef0ce540 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/destination/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/destination/node.def @@ -1 +1 @@ -help: "define a destination address or network filter" +help: "Define a destination address or network filter" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/source/any/node.def b/templates/policy/access-list/node.tag/rule/node.tag/source/any/node.def index 34c30831..8d8af90f 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/source/any/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/source/any/node.def @@ -1,4 +1,4 @@ -help: "filter any IP address" +help: "Filter any IP address" # TODO: won't work until 2220 is fixed syntax: $(../host/@) == "" && $(../network/@) == ""; "You may only define one filter type. (host|network|any)" commit: $(../../action/@) != ""; "You must specify an action before committing" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/source/host/node.def b/templates/policy/access-list/node.tag/rule/node.tag/source/host/node.def index 5b1b6257..92530127 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/source/host/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/source/host/node.def @@ -1,4 +1,4 @@ type: ipv4 -help: "filter a host IP address" +help: "Filter a host IP address" syntax: $(../any/@) == "" && $(../network/@) == ""; "You may only define one filter type. (host|network|any)" commit: $(../../action/@) != ""; "You must specify an action before committing" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/source/inverse-mask/node.def b/templates/policy/access-list/node.tag/rule/node.tag/source/inverse-mask/node.def index 8b77960d..9340bd24 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/source/inverse-mask/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/source/inverse-mask/node.def @@ -1,5 +1,5 @@ type: ipv4 -help: "filter a network IP netmask" +help: "Filter a network IP netmask" syntax: $(../any/@) == "" || $(../host/@) == ""; "You may only define one filter type. (host|network|any)" commit: $(../network/@) != ""; "You must specify a network before committing" commit: $(../../action/@) != ""; "You must specify an action before committing" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/source/network/node.def b/templates/policy/access-list/node.tag/rule/node.tag/source/network/node.def index f95182ac..910e5500 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/source/network/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/source/network/node.def @@ -1,5 +1,5 @@ type: ipv4 -help: "filter a network IP address" +help: "Filter a network IP address" syntax: $(../host/@) == "" && $(../any/@) == ""; "You may only define one filter type. (host|network|any)" commit: $(../inverse-mask/@) != ""; "You must specify an inverse-mask before comitting" commit: $(../../action/@) != ""; "You must specify an action before committing" diff --git a/templates/policy/access-list/node.tag/rule/node.tag/source/node.def b/templates/policy/access-list/node.tag/rule/node.tag/source/node.def index 69a6c7b4..aba17030 100644 --- a/templates/policy/access-list/node.tag/rule/node.tag/source/node.def +++ b/templates/policy/access-list/node.tag/rule/node.tag/source/node.def @@ -1 +1 @@ -help: "define a source address or network filter" +help: "Define a source address or network filter" diff --git a/templates/policy/as-path-list/node.tag/description/node.def b/templates/policy/as-path-list/node.tag/description/node.def index 1d708acb..c35d93ac 100644 --- a/templates/policy/as-path-list/node.tag/description/node.def +++ b/templates/policy/as-path-list/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "as-path-list description" +help: "AS path list description" diff --git a/templates/policy/as-path-list/node.tag/rule/node.tag/action/node.def b/templates/policy/as-path-list/node.tag/rule/node.tag/action/node.def index 26f6c631..e6b2964b 100644 --- a/templates/policy/as-path-list/node.tag/rule/node.tag/action/node.def +++ b/templates/policy/as-path-list/node.tag/rule/node.tag/action/node.def @@ -1,3 +1,3 @@ type: txt -help: "action to take on AS paths matching this rule" +help: "Action to take on AS paths matching this rule" syntax: $(@) in "permit", "deny"; "action must be permit or deny" diff --git a/templates/policy/as-path-list/node.tag/rule/node.tag/description/node.def b/templates/policy/as-path-list/node.tag/rule/node.tag/description/node.def index 3d61ac85..00fed102 100644 --- a/templates/policy/as-path-list/node.tag/rule/node.tag/description/node.def +++ b/templates/policy/as-path-list/node.tag/rule/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "description for this rule" +help: "Description for this rule" diff --git a/templates/policy/community-list/node.tag/description/node.def b/templates/policy/community-list/node.tag/description/node.def index c6f76be3..ed3f5586 100644 --- a/templates/policy/community-list/node.tag/description/node.def +++ b/templates/policy/community-list/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "community-list description" +help: "Community list description" diff --git a/templates/policy/community-list/node.tag/rule/node.tag/action/node.def b/templates/policy/community-list/node.tag/rule/node.tag/action/node.def index 92e66ad2..bef39bca 100644 --- a/templates/policy/community-list/node.tag/rule/node.tag/action/node.def +++ b/templates/policy/community-list/node.tag/rule/node.tag/action/node.def @@ -1,3 +1,3 @@ type: txt -help: "action to take on communities matching this rule" +help: "Action to take on communities matching this rule" syntax: $(@) in "permit", "deny"; "action must be permit or deny" diff --git a/templates/policy/community-list/node.tag/rule/node.tag/description/node.def b/templates/policy/community-list/node.tag/rule/node.tag/description/node.def index 3d61ac85..00fed102 100644 --- a/templates/policy/community-list/node.tag/rule/node.tag/description/node.def +++ b/templates/policy/community-list/node.tag/rule/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "description for this rule" +help: "Description for this rule" diff --git a/templates/policy/community-list/node.tag/rule/node.tag/regex/node.def b/templates/policy/community-list/node.tag/rule/node.tag/regex/node.def index 6b116123..2ae87cf6 100644 --- a/templates/policy/community-list/node.tag/rule/node.tag/regex/node.def +++ b/templates/policy/community-list/node.tag/rule/node.tag/regex/node.def @@ -1,5 +1,5 @@ type: txt -help: "community list regular expression" +help: "Community list regular expression" # pending bug 2285 syntax: exec " \ if [ $(../../@) -ge 1 ] && [ $(../../@) -le 99 ]; then \ diff --git a/templates/policy/node.def b/templates/policy/node.def index 56991078..86446450 100644 --- a/templates/policy/node.def +++ b/templates/policy/node.def @@ -1 +1 @@ -help: "configure routing policy" +help: "Configure routing policy" diff --git a/templates/policy/prefix-list/node.tag/description/node.def b/templates/policy/prefix-list/node.tag/description/node.def index effa9577..1803aa14 100644 --- a/templates/policy/prefix-list/node.tag/description/node.def +++ b/templates/policy/prefix-list/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "prefix-list description" +help: "Prefix list description" diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def index 4eada21b..eeb8f9e5 100644 --- a/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def +++ b/templates/policy/prefix-list/node.tag/rule/node.tag/action/node.def @@ -1,3 +1,3 @@ type: txt -help: "action to take on prefixes matching this rule" +help: "Action to take on prefixes matching this rule" syntax: $(@) in "permit", "deny"; "action must be permit or deny" diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def index 3d61ac85..00fed102 100644 --- a/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def +++ b/templates/policy/prefix-list/node.tag/rule/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "description for this rule" +help: "Description for this rule" diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def index 638c2b61..12470415 100644 --- a/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def +++ b/templates/policy/prefix-list/node.tag/rule/node.tag/ge/node.def @@ -1,3 +1,3 @@ type: u32 -help: "prefix greater than or equal to" +help: "Prefix greater than or equal to" syntax: $(@) >= 0 && $(@) <= 32; "ge must be between 0 and 32" diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def index e83ae034..5b017010 100644 --- a/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def +++ b/templates/policy/prefix-list/node.tag/rule/node.tag/le/node.def @@ -1,3 +1,3 @@ type: u32 -help: "prefix less than or equal to" +help: "Prefix less than or equal to" syntax: $(@) >= 0 && $(@) <= 32; "le must be between 0 and 32" diff --git a/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def b/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def index ed167d00..089e6dd6 100644 --- a/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def +++ b/templates/policy/prefix-list/node.tag/rule/node.tag/prefix/node.def @@ -1,2 +1,2 @@ type: ipv4net; "prefix-list $(../../@) rule $(../@) prefix: must be an IPv4 prefix" -help: "prefix to match against this rule" +help: "Prefix to match against this rule" diff --git a/templates/policy/route-map/node.tag/description/node.def b/templates/policy/route-map/node.tag/description/node.def index b43c9b77..f9b9b4a9 100644 --- a/templates/policy/route-map/node.tag/description/node.def +++ b/templates/policy/route-map/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "route-map description" +help: "Route map description" diff --git a/templates/policy/route-map/node.tag/rule/node.tag/action/node.def b/templates/policy/route-map/node.tag/rule/node.tag/action/node.def index 7908bd5b..21804042 100644 --- a/templates/policy/route-map/node.tag/rule/node.tag/action/node.def +++ b/templates/policy/route-map/node.tag/rule/node.tag/action/node.def @@ -1,5 +1,5 @@ type: txt -help: "action to take on prefixes matching this rule" +help: "Action to take on prefixes matching this rule" syntax: $(@) in "permit", "deny"; "route-map $(../../@) $(@) $(../@) action: must be permit or deny" create: "/usr/bin/vtysh -c \"configure terminal\" -c \"route-map $(../../@) $(@) $(../@)\" " update: "/usr/bin/vtysh -c \"configure terminal\" -c \"route-map $(../../@) $(@) $(../@)\" " diff --git a/templates/policy/route-map/node.tag/rule/node.tag/description/node.def b/templates/policy/route-map/node.tag/rule/node.tag/description/node.def index 146d4535..a32c76af 100644 --- a/templates/policy/route-map/node.tag/rule/node.tag/description/node.def +++ b/templates/policy/route-map/node.tag/rule/node.tag/description/node.def @@ -1,2 +1,2 @@ type: txt -help: "route-map rule description" +help: "Route map rule description" diff --git a/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/comm-list/node.def b/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/comm-list/node.def index a8e1029e..9f61e27d 100644 --- a/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/comm-list/node.def +++ b/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/comm-list/node.def @@ -1,3 +1,3 @@ type: txt -help: "set BGP community list" +help: "Set BGP community list" commit: exec "/opt/vyatta/sbin/vyatta_quagga_utils.pl --exists \"policy community-list $(@)\"; "community list $(@) does not exist" diff --git a/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/node.def b/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/node.def index 78491435..a12707d8 100644 --- a/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/node.def +++ b/templates/policy/route-map/node.tag/rule/node.tag/set/comm-list/node.def @@ -1,4 +1,4 @@ -help: "set BGP community list" +help: "Set BGP community list" delete: "touch /tmp/policy-route-map-$(../../../@)-$(../../action/@)-$(../../@)-set-comm-list.\\$PPID" end: "if [ -z \"$(./comm-list/)\" ]; then \ echo You must configure a comm-list ; \ |