PR was now merged. Please also backport to 1.4. Thanks!
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Oct 22 2025
Oct 21 2025
Now that T5942 has been merged, is there any interest in extending it to add PPPoE support? The state change hooks would be nice as well. Thanks!
New patch v3 lkml:
https://lkml.org/lkml/2025/10/21/1117
Oct 20 2025
Found procedure to easily trigger bug in https://github.com/FRRouting/frr/issues/19359
Notes from @zsdc
Oct 19 2025
PR for this: https://github.com/vyos/vyos-1x/pull/4801
Seems I've typo'd Kea 3.0 commits on this task ID. Linked this task to T7281 so commits can be tracked.
Problem reproduces when switching from xdp to dpdk:
Oct 18 2025
Oct 17 2025
Oct 16 2025
In PR changed interface to
It was investigated - the bug is indeed in the kernel.
Currently, the patch is proposed. But it probably would be refactored in the near future to a patch ver3:
Confirmed fixed in v2025.10.12-0019-rolling
Oct 15 2025
There are several errors.
- listen_address instead of address
- `listen-address could has multiple values
vyos@r14# run show conf com | match haproxy
set load-balancing haproxy backend bk01 server 192.0.2.5 address '192.0.2.5'
set load-balancing haproxy backend bk01 server 192.0.2.5 port '993'
set load-balancing haproxy service wan-993 listen-address 192.0.2.2
set load-balancing haproxy service wan-993 port '993'
[edit]
vyos@r14#
[edit]
vyos@r14# set load-balancing haproxy service wan-993 listen-address 192.168.122.14
[edit]
vyos@r14# commit
[ load-balancing haproxy ]
{'backend': {'bk01': {'balance': 'round-robin',
'mode': 'http',
'server': {'192.0.2.5': {'address': '192.0.2.5',
'port': '993'}}}},
'global_parameters': {'ssl_bind_ciphers': ['ecdhe-ecdsa-aes128-gcm-sha256',
'ecdhe-rsa-aes128-gcm-sha256',
'ecdhe-ecdsa-aes256-gcm-sha384',
'ecdhe-rsa-aes256-gcm-sha384',
'ecdhe-ecdsa-chacha20-poly1305',
'ecdhe-rsa-chacha20-poly1305',
'dhe-rsa-aes128-gcm-sha256',
'dhe-rsa-aes256-gcm-sha384'],
'tls_version_min': '1.3'},
'pki': {},
'service': {'wan-993': {'listen_address': {'192.0.2.2': {},
'192.168.122.14': {}},
'mode': 'http',
'port': '993'}},
'timeout': {'check': '5', 'client': '50', 'connect': '10', 'server': '50'}}tmp_address = front_config.get('address', None)shouldn't this be listen_address instead of address on line 75?
Something is wrong with this check