diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-15 22:54:58 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-02-16 08:32:52 +0100 |
commit | ece0e768f36e52f8964823d891264d7c187204ec (patch) | |
tree | cbd7c0a54e048aef17b27ba728b38e9352a0f8b1 /interface-definitions | |
parent | 56654191613113764415d7eddadcbd8c97e126de (diff) | |
download | vyos-1x-ece0e768f36e52f8964823d891264d7c187204ec.tar.gz vyos-1x-ece0e768f36e52f8964823d891264d7c187204ec.zip |
T6001: add option to disable next-hop-tracking resolve-via-default
* set system ip nht no-resolve-via-default
* set system ipv6 nht no-resolve-via-default
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/include/system-ip-nht.xml.i | 15 | ||||
-rw-r--r-- | interface-definitions/system_ip.xml.in | 1 | ||||
-rw-r--r-- | interface-definitions/system_ipv6.xml.in | 1 |
3 files changed, 17 insertions, 0 deletions
diff --git a/interface-definitions/include/system-ip-nht.xml.i b/interface-definitions/include/system-ip-nht.xml.i new file mode 100644 index 000000000..4074043cd --- /dev/null +++ b/interface-definitions/include/system-ip-nht.xml.i @@ -0,0 +1,15 @@ +<!-- include start from syslog-facility.xml.i --> +<node name="nht"> + <properties> + <help>Filter Next Hop tracking route resolution</help> + </properties> + <children> + <leafNode name="no-resolve-via-default"> + <properties> + <help>Do not resolve via default route</help> + <valueless/> + </properties> + </leafNode> + </children> +</node> +<!-- include end --> diff --git a/interface-definitions/system_ip.xml.in b/interface-definitions/system_ip.xml.in index 6e3b7d5d0..015eb270f 100644 --- a/interface-definitions/system_ip.xml.in +++ b/interface-definitions/system_ip.xml.in @@ -48,6 +48,7 @@ </leafNode> </children> </node> + #include <include/system-ip-nht.xml.i> <node name="tcp"> <properties> <help>IPv4 TCP parameters</help> diff --git a/interface-definitions/system_ipv6.xml.in b/interface-definitions/system_ipv6.xml.in index 8957cb6a7..dda00af38 100644 --- a/interface-definitions/system_ipv6.xml.in +++ b/interface-definitions/system_ipv6.xml.in @@ -36,6 +36,7 @@ #include <include/arp-ndp-table-size.xml.i> </children> </node> + #include <include/system-ip-nht.xml.i> #include <include/system-ipv6-protocol.xml.i> <leafNode name="strict-dad"> <properties> |