diff options
author | fett0 <fernando.gmaidana@gmail.com> | 2022-03-17 17:35:02 +0000 |
---|---|---|
committer | fett0 <fernando.gmaidana@gmail.com> | 2022-03-17 17:35:02 +0000 |
commit | c29c6d3d654c7280fdd4ea9fa66b5e84ef267285 (patch) | |
tree | 1f1c4d1f8b1a60c75212373f7c751ae1719d5500 | |
parent | 71805191d1e663af47ac1c2c11f7861d84677525 (diff) | |
download | vyos-1x-c29c6d3d654c7280fdd4ea9fa66b5e84ef267285.tar.gz vyos-1x-c29c6d3d654c7280fdd4ea9fa66b5e84ef267285.zip |
OSPF : T4304: Set import/export filter inter-area prefix
-rw-r--r-- | data/templates/frr/ospfd.frr.tmpl | 6 | ||||
-rw-r--r-- | interface-definitions/include/ospf/protocol-common-config.xml.i | 30 |
2 files changed, 36 insertions, 0 deletions
diff --git a/data/templates/frr/ospfd.frr.tmpl b/data/templates/frr/ospfd.frr.tmpl index 12213f162..59d936b55 100644 --- a/data/templates/frr/ospfd.frr.tmpl +++ b/data/templates/frr/ospfd.frr.tmpl @@ -97,6 +97,12 @@ router ospf {{ 'vrf ' + vrf if vrf is defined and vrf is not none }} {% endif %} {% endfor %} {% endif %} +{% if area_config.export_list is defined and area_config.export_list is not none %} + area {{ area_id }} export-list {{ area_config.export_list }} +{% endif %} +{% if area_config.import_list is defined and area_config.import_list is not none %} + area {{ area_id }} import-list {{ area_config.import_list }} +{% endif %} {% if area_config.shortcut is defined and area_config.shortcut is not none %} area {{ area_id }} shortcut {{ area_config.shortcut }} {% endif %} diff --git a/interface-definitions/include/ospf/protocol-common-config.xml.i b/interface-definitions/include/ospf/protocol-common-config.xml.i index 088bee2de..3a3372e47 100644 --- a/interface-definitions/include/ospf/protocol-common-config.xml.i +++ b/interface-definitions/include/ospf/protocol-common-config.xml.i @@ -256,6 +256,36 @@ </constraint> </properties> </leafNode> + <leafNode name="export-list"> + <properties> + <help>Set the filter for networks announced to other areas</help> + <completionHelp> + <path>policy access-list</path> + </completionHelp> + <valueHelp> + <format>u32</format> + <description>Access-list number</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967295"/> + </constraint> + </properties> + </leafNode> + <leafNode name="import-list"> + <properties> + <help>Set the filter for networks from other areas announced</help> + <completionHelp> + <path>policy access-list</path> + </completionHelp> + <valueHelp> + <format>u32</format> + <description>Access-list number</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967295"/> + </constraint> + </properties> + </leafNode> <tagNode name="virtual-link"> <properties> <help>Virtual link</help> |