summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-23avahi: T6908: add option to define max-cache entries (#4207)Christian Breunig
* avahi: T6908: reduce runtime overhead in smoketests by using setUpClass/tearDownClass * avahi: T6908: add option to define mdns-repeater max-cache entries Add CLI option to configure `cache-entries-max` entries in Avahi daemon configuration. Default value of 4096 for "cache-entries" CVLI node was retrieved from source code.
2024-11-21Merge pull request #4202 from jestabro/drop-legacy-show-configuration-filesDaniil Baturin
op-mode: T6900: remove uninformative 'show configuration files'
2024-11-21T6806: Rework QoS Policy for HFSC Shaper (#4181)Roman Khramshin
- Removed default `m1` and `m2` values from interface definitions - Adjusted filter priorities for shapers - Fixed SFQ qdisc and HFSC class creation to fully support `m1`, `d`, and `m2` parameters - Added validation logic similar to VyOS 1.3 to improve error handling and user experience
2024-11-21T6796: QoS: match filter by interface(iif) (#4188)Roman Khramshin
2024-11-20op-mode: T6900: remove uninformative 'show configuration files'John Estabrook
The legacy node and behavior under 'show configuration files' is not useful as is; remove node and drop script to allow for a useful repurpose in the future.
2024-11-20Merge pull request #4201 from sarthurdev/T3397Simon
serial: T3397: Remove `--keep-baud` which could result in unexpected baud rate
2024-11-20Merge pull request #4197 from jestabro/multipart-msg-outputDaniil Baturin
configd: T6899: use multipart message instead of extra exchange
2024-11-20serial: T3397: Remove `--keep-baud` which could result in unexpected baud ratesarthurdev
2024-11-20T6790: QoS: Improve CAKE Policy (#4173)Roman Khramshin
- Fixed handling of flow isolation parameters. - Corrected support for `nat` and `nonat` in flow isolation. - Extended RTT values to cover the full range supported by `tc`. - Make migration script 2-to-3 qos
2024-11-19T6490: Allow creation of wireguard interfaces without requiring peers (#4194)sskaje
* T6490: Allow creation of wireguard interfaces without requiring peers
2024-11-19configd: T6899: use multipart message instead of extra exchangeJohn Estabrook
2024-11-19Merge pull request #4195 from nvollmar/T6884Daniil Baturin
T6884: adds mtu option for container networks
2024-11-18T6884: enables 16000 mtuNicolas Vollmar
2024-11-18T6884: adds mtu option for container networksNicolas Vollmar
2024-11-15Merge pull request #4190 from HollyGurza/6795Christian Breunig
T6795: QoS: Fix duplicate entries in class match filters
2024-11-15Merge pull request #4191 from HollyGurza/T6801Christian Breunig
T6801: QoS: Policy rate-control is broken by default
2024-11-15Merge pull request #4192 from sever-sever/T6876Daniil Baturin
dhcp-server: T6876: increase retries that Kea makes to open a socket
2024-11-15Merge pull request #4193 from HollyGurza/T6878Daniil Baturin
conntrack: T6878: stop the conntrack logger daemon correctly
2024-11-15T6878: Stop conntrack logging servicekhramshinr
2024-11-14T6876: DHCP-server increase retries that Kea makes to open a socketViacheslav Hletenko
KEA DHCP-server sometimes could be in the race condition when an interface is not in the UP state. The server tries to open the socket 5 times with an interval of 5 seconds, then just starts as it is. In this case, users cannot get leases from the interface, which was in the DOWN state before starting KEA, but it is now in the UP state. Increase 'service-sockets-max-retries' from 5 to 60
2024-11-14T6801: QoS: Policy rate-control is broken by defaultkhramshinr
- Fixed unhandled exception for policy rate-control without params
2024-11-13Merge pull request #4187 from c-po/babel-testsDaniil Baturin
babel: T6866: IPv6 distribute-lists in access-list6 format have names not numbers
2024-11-13T6795: Fix duplicate entries in class match filterskhramshinr
2024-11-12babel: T6866: IPv6 distribute-lists in access-list6 format have names not ↵Christian Breunig
numbers
2024-11-12babel: T4977: add missing smoketestsChristian Breunig
2024-11-12babel: T4977: use common include for IPv4/IPv6 route redistributionChristian Breunig
2024-11-12babel: T4977: we do not have EIGRP support - remove redistribution optionChristian Breunig
2024-11-12T6861: op-mode: add 0 into errno expect list (#4189)Date Huang
Signed-off-by: Date Huang <tjjh89017@hotmail.com>
2024-11-11Merge pull request #4186 from tjjh89017/T6861Daniil Baturin
T6861: op-mode: ignore error code 255 if this UEFI doesn't support secure boot
2024-11-08Merge pull request #4185 from c-po/syslog-fixupDaniil Baturin
syslog: T6858: bugfix remote syslog using TCP
2024-11-08Merge pull request #4179 from natali-rs1985/T3501-currentDaniil Baturin
T3501: Allow using more than one tuned profile
2024-11-08T6861: op-mode: ignore error code 255 if this UEFI doesn't support secure bootDate Huang
`mokutil --sb-state` will output "This system doesn't support Secure Boot" to stderr. and return error code 255 if the UEFI system doesn't support secure boot. Signed-off-by: Date Huang <tjjh89017@hotmail.com>
2024-11-08T6802: Fix QoS Policy Round-Robin with Default Configuration (#4177)Roman Khramshin
- Resolved unhandled exception occurring with default round-robin policy config. - Added default filter to ensure proper round-robin policy.
2024-11-08dhcp_server: T6031: DHCP Option Failures - windows-static-route (#4183)Nataliia S.
In "option-def" parameter "record-types" field is an array of uint8 in format "<netmask>, <network-byte1>, <network-byte2>, <network-byte3>, <router-byte1>, <router-byte2>, <router-byte3>" where <network-byte3> with the value 0 is omitted, so the minimal length of array is 7 (e.g. for routing 10.1.0.0/16 via 10.1.6.4 "record-types": "16,10,1,10,1,6,4")
2024-11-07syslog: T6858: bugfix remote syslog using TCPChristian Breunig
Commit 042be39cc ("syslog: T5367: add format option to include timezone in message") added an invalid, outer if-statement when rendering the rsyslog configuration option for TCP. Remote hosts only got added when the format option "octet-counting" was defined in addition to the TCP protocol. This has been fix and now TCP transport is decoupled from octet-counting mode.
2024-11-07smoketest: T6719: use read_file() over 'sudo cat FILENAME'Christian Breunig
2024-11-07Merge pull request #4151 from natali-rs1985/T6695Daniil Baturin
T6695: Machine-readable operational mode support for traceroute
2024-11-07T3501: Allow using more than one tuned profileNataliia Solomko
2024-11-06Merge pull request #4184 from natali-rs1985/T6852Christian Breunig
dhcp_server: T6852: Add op mode command "show dhcpv6 server statistics"
2024-11-05T6764: Fix unhandled exception on ethtool output parsing for Xen NICs (#4182)Viacheslav Hletenko
Not all NICs could provide ring-buffers info requested by ethtool in JSON format For example 'vif' Xen/XCP-NG interfaces Fix it
2024-11-05dhcp_server: T6852: Add op mode command "show dhcpv6 server statistics"Nataliia Solomko
2024-11-01Merge pull request #4171 from aslanvyos/patch-1Daniil Baturin
system_login: T6807: allow a trailing slash character in system login
2024-10-28Merge pull request #4172 from natali-rs1985/T6808-currentJohn Estabrook
op_mode: T6808: Console server op mode commands throw errors when console server is not configured
2024-10-28Merge pull request #4178 from vyos/T6712-motd-80-25-terminalJohn Estabrook
login: T6712: honor 80x25 terminal size for nonproduction banner message
2024-10-27login: T6712: honor 80x25 terminal size for nonproduction banner messageT6712-motd-80-25-terminalChristian Breunig
2024-10-25T6812: Fix smoketest iproute2 check (#4174)Viacheslav Hletenko
In the new iproute2 package the link to `ip` was changed $ file /usr/sbin/ip /usr/sbin/ip: symbolic link to ../bin/ip Fix smoketest
2024-10-24op_mode: T6808: Console server op mode commands throw errors when console ↵Nataliia Solomko
server is not configured
2024-10-24T6807: allow a trailing slash character in system loginAslan Hajiyev
Allow the use of a trailing slash `("/")` at the of the user's home directory path. For example `/home/test/`
2024-10-24Merge pull request #4155 from HollyGurza/T4583Christian Breunig
T4583: Rewrite VRRP op-mode to vyos.opmode format
2024-10-21Merge pull request #4167 from HollyGurza/T6791Daniil Baturin
T6791: Extend fair-queue hash-interval