<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-1x.git/src/conf_mode, branch 1.4.0-rc2</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=1.4.0-rc2</id>
<link rel='self' href='https://git.amelek.net/vyos/vyos-1x.git/atom?h=1.4.0-rc2'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/'/>
<updated>2024-01-12T16:25:45+00:00</updated>
<entry>
<title>bgp: T5306: fix verify_remote_as() to support v6only interface with peer-group</title>
<updated>2024-01-12T16:25:45+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-01-12T16:20:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=6c6dae767c2485e9b77f33f58bfc4e84dffa03a8'/>
<id>urn:sha1:6c6dae767c2485e9b77f33f58bfc4e84dffa03a8</id>
<content type='text'>
To test:

set protocols bgp neighbor eth0 interface v6only peer-group 'fabric'
set protocols bgp peer-group fabric address-family ipv4-unicast
set protocols bgp peer-group fabric address-family ipv6-unicast
set protocols bgp peer-group fabric capability extended-nexthop
set protocols bgp peer-group fabric remote-as 'external'
set protocols bgp system-as 64496

(cherry picked from commit 12e81dbb47b942b3d9a7a69189adefb5b176c4ef)
</content>
</entry>
<entry>
<title>ipsec: T5918: warn when dynamic interfaces are used to bind ipsec daemon</title>
<updated>2024-01-11T15:18:19+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-01-11T07:20:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=7e9d465dc23e7395b24b088e4f107c6ef1a0a8fd'/>
<id>urn:sha1:7e9d465dc23e7395b24b088e4f107c6ef1a0a8fd</id>
<content type='text'>
Fix after commit 8452d8f4921 ("T5918: Fix typo in verify vpn ipsec interface")
so that dynamic interfaces can be used by ipsec but a warning is issued that
this will only work after they are available on the system.

PPPoE interfaces are the best example for this, as they are down during system
bootup and will be available anytime after the boot once we've dialed into
the BRAS.

(cherry picked from commit 8c941e316035e56757d77b782cf39702c73546e0)
</content>
</entry>
<entry>
<title>dns: T5791: use common pattern for exclude check of dynamic interfaces</title>
<updated>2024-01-11T15:18:19+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-01-11T07:18:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=900289cf5d94cfc2dbb59cad548efb126389bbf9'/>
<id>urn:sha1:900289cf5d94cfc2dbb59cad548efb126389bbf9</id>
<content type='text'>
This uses a more common pattern froma base class while the original code from
0a1c9bc38 ("T5791: DNS dynamic exclude check for dynamic interfaces PPPoE") is
still retained.

(cherry picked from commit e5ce4222c6e9b24d276625678db7339ada0c54ef)
</content>
</entry>
<entry>
<title>Merge pull request #2789 from vyos/mergify/bp/sagitta/pr-2777</title>
<updated>2024-01-11T05:48:06+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-01-11T05:48:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=d0145bfc824099cb17ad6dc2cc2f81cace4f430d'/>
<id>urn:sha1:d0145bfc824099cb17ad6dc2cc2f81cace4f430d</id>
<content type='text'>
T5688: Changed 'range' to multi in 'client-ip-pool' for accell-ppp (backport #2777)</content>
</entry>
<entry>
<title>dhcp: T5787: Prevent duplicate IP addresses on static mappings</title>
<updated>2024-01-10T21:16:21+00:00</updated>
<author>
<name>sarthurdev</name>
<email>965089+sarthurdev@users.noreply.github.com</email>
</author>
<published>2024-01-09T21:48:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=b68def8d50688eb429328892437647860f9fc6c1'/>
<id>urn:sha1:b68def8d50688eb429328892437647860f9fc6c1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>T5918: Fix typo in verify vpn ipsec interface</title>
<updated>2024-01-10T20:02:52+00:00</updated>
<author>
<name>Viacheslav Hletenko</name>
<email>v.gletenko@vyos.io</email>
</author>
<published>2024-01-10T19:43:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=60127f12d6bd4fa9fb869167bd3582bbb9c5c19f'/>
<id>urn:sha1:60127f12d6bd4fa9fb869167bd3582bbb9c5c19f</id>
<content type='text'>
The correct CLI command is `interface` and not `interfaces`
```
set vpn ipsec interface xxx
```

(cherry picked from commit 8452d8f49216d224bc5d5751354414274982f5be)
</content>
</entry>
<entry>
<title>T5688: Changed 'range' to multi in 'client-ip-pool' for accell-ppp</title>
<updated>2024-01-10T19:00:37+00:00</updated>
<author>
<name>aapostoliuk</name>
<email>a.apostoliuk@vyos.io</email>
</author>
<published>2024-01-05T14:18:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=b588e0784626ca42bf0da84a766213bda725305e'/>
<id>urn:sha1:b588e0784626ca42bf0da84a766213bda725305e</id>
<content type='text'>
Changed node 'range' to multi in 'client-ip-pool' for accell-ppp
services.
Added completionHelp to default-pool and next-pool.
Fixed verification in vpn l2tp config script.

(cherry picked from commit 4ffec67d04670192d9b722353cbaef04cb0ba129)
</content>
</entry>
<entry>
<title>T5916: Added segment routing check for index base size and SRGB base size</title>
<updated>2024-01-10T17:25:46+00:00</updated>
<author>
<name>Cheeze_It</name>
<email>none@none.com</email>
</author>
<published>2024-01-10T01:18:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=4c35c1a4c818869781cdbd489851eba2960eaa21'/>
<id>urn:sha1:4c35c1a4c818869781cdbd489851eba2960eaa21</id>
<content type='text'>
(cherry picked from commit cfb5b052c84ffba789d61a59350676b6b4a0a5f7)
</content>
</entry>
<entry>
<title>Merge pull request #2783 from vyos/mergify/bp/sagitta/pr-2263</title>
<updated>2024-01-10T10:21:25+00:00</updated>
<author>
<name>Christian Breunig</name>
<email>christian@breunig.cc</email>
</author>
<published>2024-01-10T10:21:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=d7c50c8139828db1bebfc767d0878c81418d439f'/>
<id>urn:sha1:d7c50c8139828db1bebfc767d0878c81418d439f</id>
<content type='text'>
T5530: isis: Adding loop free alternate feature (backport #2263)</content>
</entry>
<entry>
<title>T5530: isis: Adding loop free alternate feature</title>
<updated>2024-01-10T07:27:04+00:00</updated>
<author>
<name>Cheeze_It</name>
<email>none@none.com</email>
</author>
<published>2023-08-31T18:16:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-1x.git/commit/?id=2d778c4cb468352c6ff4ea9d984951f6bb12586c'/>
<id>urn:sha1:2d778c4cb468352c6ff4ea9d984951f6bb12586c</id>
<content type='text'>
(cherry picked from commit 7a2b70bd73c8579a885348b93b8addfb20fb006c)
</content>
</entry>
</feed>
