Not reproduced anymore
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Feed Search
Oct 28 2025
Oct 28 2025
Viacheslav added a parent task for T2584: pppoe-server NAS-Filter-Rule attribute: T7961: accel-ppp-ng related features the root task.
Viacheslav added a parent task for T7650: Accel-ppp and VPP sync client, IPv4 : T7961: accel-ppp-ng related features the root task.
Viacheslav moved T7921: Bump accel-ppp-ng to d13b611 from Open to Finished on the VyOS 1.5 Circinus (1.5-stream-2025-Q3) board.
Viacheslav changed the status of T7849: Impossible to add dynamic interfaces to the firewall zone from Open to In progress.
Oct 27 2025
Oct 27 2025
Viacheslav moved T7128: VPP address not assigned to partly deleted vpp config vxlan from Need Triage to Completed on the VyOS Rolling board.
Viacheslav closed T7128: VPP address not assigned to partly deleted vpp config vxlan, a subtask of T7070: VPP related bugs the root task, as Resolved.
Viacheslav added a parent task for T7959: VPP: Optional pre‑FIB IPsec policy lookup: T7221: VPP related features the root task.
Viacheslav triaged T7956: QoS shaper policy filters actually polices and limits bandwidth as Normal priority.
Oct 24 2025
Oct 24 2025
Viacheslav added a subtask for T7221: VPP related features the root task: T7954: VPP add op-mode commands to show LACP.
Viacheslav added a parent task for T7954: VPP add op-mode commands to show LACP: T7221: VPP related features the root task.
Viacheslav moved T7723: Support for DHCP option 26 (MTU) from Open to Finished on the VyOS 1.5 Circinus (1.5-stream-2025-Q3) board.
Oct 23 2025
Oct 23 2025
This is not implemented by FRR at the moment https://github.com/FRRouting/frr/issues/19110
Oct 20 2025
Oct 20 2025
Viacheslav added a parent task for T7949: Support children of bond interfaces in VPP NAT: T7221: VPP related features the root task.
Notes from @zsdc
Viacheslav updated the task description for T7945: The motd for system update-check is removed after reboot.
Viacheslav updated the task description for T7945: The motd for system update-check is removed after reboot.
Viacheslav updated the task description for T7945: The motd for system update-check is removed after reboot.
Viacheslav triaged T7945: The motd for system update-check is removed after reboot as Normal priority.
Oct 17 2025
Oct 17 2025
Oct 16 2025
Oct 16 2025
Viacheslav triaged T7935: Rewrite accel-ppp-nd build to exclude whole build VPP and include VPP required dependencies as Normal priority.
Viacheslav closed T7823: DHCP-server lease cannot be cleared, a subtask of T6211: VRF support for Kea-based DHCP server, as Resolved.
Oct 15 2025
Oct 15 2025
Viacheslav added a comment to T7928: load-balancing haproxy not taking into account listen-address when checking for other services on port.
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'}}Viacheslav added a comment to T7928: load-balancing haproxy not taking into account listen-address when checking for other services on port.
Something is wrong with this check
Viacheslav added a comment to T7928: load-balancing haproxy not taking into account listen-address when checking for other services on port.
sudo netstat -tulpn | grep 993
Viacheslav moved T7188: haproxy op-mode not reporting correct usage stats from Need Triage to Completed on the VyOS Rolling board.
vyos@r14# run show haproxy Proxy name Role Status Req rate Resp time Last change -------------------- --------- -------- ---------- ----------- ------------- web FRONTEND OPEN 4 buildin_acme_certbot BACKEND UP 0 ms 3m24s bk01 BACKEND UP 1 ms 1m8s buildin_acme_certbot localhost no check 0 ms 3m24s bk01 srv01 UP 1 ms 1m8s bk01 srv02 UP 1 ms 1m3s [edit] vyos@r14# run show ver Version: VyOS 2025.10.10-0733-integration Release train: current Release flavor: generic
Links from @zsdc where the problem could be
With the 1.4.7 gve driver the behaviour is the same
vyos@VyOS-for-Smoke-Tests# delete vpp
[edit]
vyos@VyOS-for-Smoke-Tests# commit
[ vpp ]
Traceback (most recent call last):
File "/usr/libexec/vyos/services/vyos-configd", line 156, in run_script
script.apply(c)
File "/usr/libexec/vyos/conf_mode/vpp.py", line 660, in apply
initialize_interface(
File "/usr/libexec/vyos/conf_mode/vpp.py", line 594, in initialize_interface
iface_new_name: str = control_host.get_eth_name(iface_config['dev_id'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/vyos/vpp/control_host.py", line 227, in get_eth_name
raise FileNotFoundError(
FileNotFoundError: A device with ID 0000:00:05.0 not found in ethernet interfacesViacheslav changed the status of T7934: Trigger rebuild linux-kernel if vyos-vpp-patches changed from Open to In progress.
I have found another implementation if someone wants to play with it https://git.ipng.ch/ipng/govpp-snmp-agentx
Oct 14 2025
Oct 14 2025
@pr0ton11, do you see the same log? Can you try the latest rolling?
Viacheslav raised the priority of T7932: Changes in the repo vyos-vpp-patches have to trigger rebuild linux-kernel instead of vpp from Low to Normal.
Viacheslav added a parent task for T7911: Wireguard support in VPP: T7221: VPP related features the root task.
Viacheslav added a subtask for T7221: VPP related features the root task: T7911: Wireguard support in VPP.
Viacheslav moved T7864: Bump HostAP version to 2.11 from Need Triage to Completed on the VyOS Rolling board.
Viacheslav moved T7864: Bump HostAP version to 2.11 from Backlog to Finished on the VyOS 1.4 Sagitta (1.4.4) board.
Viacheslav moved T7864: Bump HostAP version to 2.11 from Open to Finished on the VyOS 1.5 Circinus (1.5-stream-2025-Q3) board.
Viacheslav moved T7873: Bump Suricata version to 7.0.10 from Need Triage to Completed on the VyOS Rolling board.
@rherold any updates?
Oct 13 2025
Oct 13 2025