diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-25 20:51:49 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-25 20:54:20 +0200 |
commit | bafc84f32635dd00850a334b7802e6afa28e2b0c (patch) | |
tree | 2b3bc767fa87e6ea527b8c6831ab91cbc32e3b1d | |
parent | 9b44fb16ee2af648fa60cab7dfbcc8986e8ad539 (diff) | |
download | vyos-1x-bafc84f32635dd00850a334b7802e6afa28e2b0c.tar.gz vyos-1x-bafc84f32635dd00850a334b7802e6afa28e2b0c.zip |
policy: T3490: lower priority to keep up with Policy-Based-Routing (PBR)
PBR is implemented in vyatta-cfg-firewall and the new policy framework uses one
script to rule them all that is triggered from the main policy level.
As the PBR configuration is a subnode with a lower priority we get an inversion,
thus all policy based configuration which applies to FRR only, is set to
priority 200.
Automated tests did not show any regression.
-rw-r--r-- | interface-definitions/policy.xml.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/interface-definitions/policy.xml.in b/interface-definitions/policy.xml.in index cd22052f0..08e2ce2c6 100644 --- a/interface-definitions/policy.xml.in +++ b/interface-definitions/policy.xml.in @@ -2,14 +2,13 @@ <interfaceDefinition> <node name="policy" owner="${vyos_conf_scripts_dir}/policy.py"> <properties> - <priority>470</priority> + <priority>200</priority> <help>Routing policy</help> </properties> <children> <tagNode name="access-list"> <properties> <help>IP access-list filter</help> - <valueHelp> <format>u32:1-99</format> <description>IP standard access list</description> @@ -238,7 +237,6 @@ <tagNode name="extcommunity-list"> <properties> <help>Border Gateway Protocol (BGP) extended community-list filter</help> - <priority>490</priority> <valueHelp> <format>txt</format> <description>Border Gateway Protocol (BGP) extended community-list filter</description> |