diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-02-25 08:39:55 +0000 |
|---|---|---|
| committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-02-25 08:39:55 +0000 |
| commit | 05998fd004f9883e7dbc32005baab1784e3ca53a (patch) | |
| tree | ca031446fcb88f9dfb33da9a49e2c72aa151d57c | |
| parent | ecb36ae2d4254acf6c5f7d396895b1bb912cf23a (diff) | |
| download | vyos-1x-05998fd004f9883e7dbc32005baab1784e3ca53a.tar.gz vyos-1x-05998fd004f9883e7dbc32005baab1784e3ca53a.zip | |
VD-279: Use common IPv6 naming for CLI
Rename node `ip6` to common `ipv6` for vpp settings
| -rw-r--r-- | data/templates/vpp/startup.conf.j2 | 10 | ||||
| -rw-r--r-- | interface-definitions/vpp.xml.in | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/data/templates/vpp/startup.conf.j2 b/data/templates/vpp/startup.conf.j2 index cf10b6ce5..57a03386a 100644 --- a/data/templates/vpp/startup.conf.j2 +++ b/data/templates/vpp/startup.conf.j2 @@ -45,13 +45,13 @@ buffers { } {% endif %} -{% if ip6 is vyos_defined %} +{% if ipv6 is vyos_defined %} ip6 { -{% if ip6.hash_buckets is vyos_defined %} - hash-buckets {{ ip6.hash_buckets }} +{% if ipv6.hash_buckets is vyos_defined %} + hash-buckets {{ ipv6.hash_buckets }} {% endif %} -{% if ip6.heap_size is vyos_defined %} - heap-size {{ ip6.heap_size }} +{% if ipv6.heap_size is vyos_defined %} + heap-size {{ ipv6.heap_size }} {% endif %} } {% endif %} diff --git a/interface-definitions/vpp.xml.in b/interface-definitions/vpp.xml.in index e0784fc43..76968fcec 100644 --- a/interface-definitions/vpp.xml.in +++ b/interface-definitions/vpp.xml.in @@ -611,7 +611,7 @@ </node> </children> </tagNode> - <node name="ip6"> + <node name="ipv6"> <properties> <help>IPv6 settings</help> </properties> |
