<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-1x.git/src/conf_mode/service_router-advert.py, branch feature/T9082-codeql-cpp</title>
<subtitle>VyOS command definitions, scripts, and utilities (mirror of https://github.com/vyos/vyos-1x.git)
</subtitle>
<id>https://git.amelek.net/vyos/vyos-1x.git/atom?h=feature%2FT9082-codeql-cpp</id>
<link rel='self' href='https://git.amelek.net/vyos/vyos-1x.git/atom?h=feature%2FT9082-codeql-cpp'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/'/>
<updated>2026-02-24T08:43:34+00:00</updated>
<entry>
<title>T8302: This PR adds Router Advertisement (RA) base-interface support for IPv6 wildcard prefix derivation and includes validation and smoketests.</title>
<updated>2026-02-24T08:43:34+00:00</updated>
<author>
<name>Miaosen Wang</name>
<email>secretandanon@gmail.com</email>
</author>
<published>2026-02-24T07:31:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=7f6545b188b7ad00a2ba4bf2dc7281bca93f05bf'/>
<id>urn:sha1:7f6545b188b7ad00a2ba4bf2dc7281bca93f05bf</id>
<content type='text'>
Included changes:
- Add `base-interface` under:
  - `service router-advert interface &lt;lan-if&gt; prefix ::/64 base-interface &lt;wan-if&gt;`
- Render `Base6Interface &lt;wan-if&gt;;` in `radvd.conf` when configured.
- Add validation guard:
  - `base-interface` is only allowed with wildcard prefix `::/64`.
- Extend smoketests:
  - Positive case: `::/64` + `base-interface` commits and renders correctly.
  - Negative case: non-`::/64` prefix with `base-interface` fails commit.
</content>
</entry>
<entry>
<title>T7591: remove copyright years from source files</title>
<updated>2025-06-28T21:16:52+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2025-06-28T18:51:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=1478516ae437f19ebeb7d6ff9b83dd74f8e76758'/>
<id>urn:sha1:1478516ae437f19ebeb7d6ff9b83dd74f8e76758</id>
<content type='text'>
The legal team says years are not necessary so we can go ahead with it, since
it will simplify backporting.

Automatically removed using: git ls-files | grep -v libvyosconfig | xargs sed -i -E \
's/^# Copyright (19|20)[0-9]{2}(-[0-9]{4})? VyOS maintainers.*/# Copyright VyOS maintainers and contributors &lt;maintainers@vyos.io&gt;/g'

In addition we will error-out during "make" if someone re-adds a legacy
copyright notice
</content>
</entry>
<entry>
<title>radvd: T6118: add nat64prefix support RFC8781</title>
<updated>2024-03-12T17:34:54+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-03-12T15:58:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=f1ead5c6a16aba00699b8a5b9c18ef6cffe8cc4d'/>
<id>urn:sha1:f1ead5c6a16aba00699b8a5b9c18ef6cffe8cc4d</id>
<content type='text'>
Add support for pref64 option, as defined in RFC8781. The prefix valid lifetime
must not be smaller than the "interface interval max" definition which defaults
to 600.

  set service router-advert interface eth1 nat64prefix 64:ff9b::/96
</content>
</entry>
<entry>
<title>T5319: remove workarounds for defaults in service_router-advert.py</title>
<updated>2023-08-07T19:46:42+00:00</updated>
<author>
<name>John Estabrook</name>
<email>jestabro@vyos.io</email>
</author>
<published>2023-08-06T23:49:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=a65d034064b952e3bda5b7e865189da442e8ba8b'/>
<id>urn:sha1:a65d034064b952e3bda5b7e865189da442e8ba8b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>T5195: vyos.util -&gt; vyos.utils package refactoring (#2093)</title>
<updated>2023-07-14T20:18:36+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2023-07-14T20:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=d1ca536da448749dff557f13ecae97b124026e96'/>
<id>urn:sha1:d1ca536da448749dff557f13ecae97b124026e96</id>
<content type='text'>
* T5195: move run, cmd, call, rc_cmd helper to vyos.utils.process

* T5195: use read_file and write_file implementation from vyos.utils.file

Changed code automatically using:

find . -type f -not -path '*/\.*' -exec sed -i 's/^from vyos.util import read_file$/from vyos.utils.file import read_file/g' {} +
find . -type f -not -path '*/\.*' -exec sed -i 's/^from vyos.util import write_file$/from vyos.utils.file import write_file/g' {} +

* T5195: move chmod* helpers to vyos.utils.permission

* T5195: use colon_separated_to_dict from vyos.utils.dict

* T5195: move is_systemd_service_* to vyos.utils.process

* T5195: fix boot issues with missing imports

* T5195: move dict_search_* helpers to vyos.utils.dict

* T5195: move network helpers to vyos.utils.network

* T5195: move commit_* helpers to vyos.utils.commit

* T5195: move user I/O helpers to vyos.utils.io</content>
</entry>
<entry>
<title>router-advert: T5240: verify() that no more then 3 IPv6 name-servers configured</title>
<updated>2023-05-28T13:23:33+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2023-05-28T13:23:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=8ef017a3496467433c311af63116af7657c58037'/>
<id>urn:sha1:8ef017a3496467433c311af63116af7657c58037</id>
<content type='text'>
This is a radvd limitation.
</content>
</entry>
<entry>
<title>router-advert: T4582: fix preferred cannot equal valid lifetime</title>
<updated>2022-07-31T22:13:36+00:00</updated>
<author>
<name>initramfs</name>
<email>initramfs@initramfs.io</email>
</author>
<published>2022-07-31T01:35:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=f6efe3035d352970dc492450c3c9ddf710dda5fe'/>
<id>urn:sha1:f6efe3035d352970dc492450c3c9ddf710dda5fe</id>
<content type='text'>
Allows preferred lifetime for prefix advertisements to equal the
configured valid lifetime as per RFC 4861.
</content>
</entry>
<entry>
<title>router-advert: T4477: support RDNSS lifetime option</title>
<updated>2022-06-29T18:01:38+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2022-06-29T18:00:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=cefc7ce9bfcf7750700e73edbc21864fe8ab0bee'/>
<id>urn:sha1:cefc7ce9bfcf7750700e73edbc21864fe8ab0bee</id>
<content type='text'>
set service router-advert interface eth0 name-server-lifetime &lt;value&gt;
</content>
</entry>
<entry>
<title>router-advert: T4353: fix Jinja2 linting errors</title>
<updated>2022-05-01T17:48:54+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2022-05-01T17:48:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=0565b602ac8c21f31e80426c2c7519dc231e8ca9'/>
<id>urn:sha1:0565b602ac8c21f31e80426c2c7519dc231e8ca9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>router-advert: T3561: fix inconsistent use of tabs and spaces in indentation</title>
<updated>2021-05-24T06:33:23+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2021-05-24T06:33:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=acc701bac3483a3242c77a2e00c076890e27eea9'/>
<id>urn:sha1:acc701bac3483a3242c77a2e00c076890e27eea9</id>
<content type='text'>
Commit c17f259d ("router-advert: T3561: add support for specific routes") used
tabs over spaces in the Migration script which triggered a TabError (inconsistent
use of tabs and spaces in indentation").
</content>
</entry>
</feed>
