Page MenuHomeVyOS Platform
Feed All Stories

Aug 1 2024

Viacheslav added a comment to T5657: Add VRF support for zabbix-agent.

Request to drop privileges https://support.zabbix.com/browse/ZBXNEXT-9380

Aug 1 2024, 10:03 AM · VyOS 1.5 Circinus
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX1171e3d359cc: T6617: T6618: vpn ipsec remote-access: fix profile generators (authored by lucasec).
Aug 1 2024, 5:53 AM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXca12e0bc07ea: T6617: T6618: vpn ipsec remote-access: fix profile generators (authored by lucasec).
Aug 1 2024, 5:52 AM
c-po moved T6618: ipsec: remote access VPN: "generate ipsec profile windows-remote-access" broken from Open to Finished on the VyOS 1.5 Circinus board.
Aug 1 2024, 5:52 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
c-po moved T6617: ipsec: remote access VPN: "generate ipsec profile ios-remote-access" wrong profile for x509 auth from Open to Finished on the VyOS 1.5 Circinus board.
Aug 1 2024, 5:52 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
c-po added projects to T6617: ipsec: remote access VPN: "generate ipsec profile ios-remote-access" wrong profile for x509 auth: VyOS Rolling, VyOS 1.4 Sagitta (1.4.1).
Aug 1 2024, 5:52 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
c-po added projects to T6618: ipsec: remote access VPN: "generate ipsec profile windows-remote-access" broken: VyOS Rolling, VyOS 1.4 Sagitta (1.4.1).
Aug 1 2024, 5:51 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
lucasec committed rVYOSONEXe97d86e619e1: T6617: T6618: vpn ipsec remote-access: fix profile generators.
Aug 1 2024, 5:50 AM
GitHub <[email protected]> committed rVYOSONEXb12cd41000bf: Merge pull request #3903 from lucasec/ipsec-remote-access-profile (authored by c-po).
Aug 1 2024, 5:50 AM
GitHub <[email protected]> committed rVYOSONEXe61a175838f2: Merge pull request #3914 from vyos/mergify/bp/sagitta/pr-3874 (authored by c-po).
Aug 1 2024, 5:49 AM
GitHub <[email protected]> committed rVYOSONEXb05bc1e2c0a4: Merge pull request #3918 from vyos/mergify/bp/sagitta/pr-3915 (authored by c-po).
Aug 1 2024, 5:45 AM
GitHub <[email protected]> committed rVYOSONEX96624c22a41a: Merge pull request #3917 from vyos/mergify/bp/circinus/pr-3915 (authored by c-po).
Aug 1 2024, 5:44 AM
Viacheslav committed rVYOSONEXab331fab9e92: T5657: Add VRF support for zabbix-agent.
Aug 1 2024, 5:44 AM
GitHub <[email protected]> committed rVYOSONEXcab6560949ac: Merge pull request #3919 from sever-sever/T5657 (authored by c-po).
Aug 1 2024, 5:44 AM

Jul 31 2024

tiberiuv created T6625: Firewall group size limit API.
Jul 31 2024, 8:47 PM · Restricted Project, VyOS 1.5 Circinus
GitHub <[email protected]> committed rVYOSONEX7ab67d1be17e: Merge pull request #3907 from vyos/mergify/bp/sagitta/pr-3715 (authored by fett0 <[email protected]>).
Jul 31 2024, 7:58 PM
fernando changed the status of T6555: OpenVPN - mode server-bridge interfaces TAP from Confirmed to In progress.
Jul 31 2024, 7:24 PM · VyOS 1.4 Sagitta, VyOS 1.5 Circinus
fernando added a comment to T6555: OpenVPN - mode server-bridge interfaces TAP .

PR : https://github.com/vyos/vyos-1x/pull/3920

Jul 31 2024, 7:24 PM · VyOS 1.4 Sagitta, VyOS 1.5 Circinus
fernando claimed T6555: OpenVPN - mode server-bridge interfaces TAP .
Jul 31 2024, 5:37 PM · VyOS 1.4 Sagitta, VyOS 1.5 Circinus
Viacheslav added a comment to T5657: Add VRF support for zabbix-agent.

PR https://github.com/vyos/vyos-1x/pull/3919

Jul 31 2024, 3:34 PM · VyOS 1.5 Circinus
Viacheslav added a comment to T5657: Add VRF support for zabbix-agent.

There are issues with cgroups when enabling VRF

$ git diff
diff --git a/data/templates/zabbix-agent/10-override.conf.j2 b/data/templates/zabbix-agent/10-override.conf.j2
index 7c296e8fd..0acf775be 100644
--- a/data/templates/zabbix-agent/10-override.conf.j2
+++ b/data/templates/zabbix-agent/10-override.conf.j2
@@ -1,3 +1,4 @@
+{% set zabbix_command = 'ip vrf exec ' ~ vrf ~ ' ' if vrf is vyos_defined else '' %}
 [Unit]
 After=
 After=vyos-router.service
@@ -7,7 +8,9 @@ ConditionPathExists=/run/zabbix/zabbix-agent2.conf
 [Service]
 EnvironmentFile=
 ExecStart=
-ExecStart=/usr/sbin/zabbix_agent2 --config /run/zabbix/zabbix-agent2.conf --foreground
+ExecStart={{ zabbix_command }}/usr/sbin/zabbix_agent2 --config /run/zabbix/zabbix-agent2.conf --foreground
+CapabilityBoundingSet=CAP_NET_ADMIN CAP_SYS_ADMIN CAP_SYS_RESOURCE CAP_BPF CAP_DAC_OVERRIDE CAP_FOWNER
+AmbientCapabilities=CAP_NET_ADMIN CAP_SYS_ADMIN CAP_SYS_RESOURCE CAP_BPF CAP_DAC_OVERRIDE CAP_FOWNER
 WorkingDirectory=
 WorkingDirectory=/run/zabbix
 Restart=always
diff --git a/interface-definitions/service_monitoring_zabbix-agent.xml.in b/interface-definitions/service_monitoring_zabbix-agent.xml.in
index 3754e9145..e44b31312 100644
--- a/interface-definitions/service_monitoring_zabbix-agent.xml.in
+++ b/interface-definitions/service_monitoring_zabbix-agent.xml.in
@@ -185,6 +185,7 @@
                 </properties>
                 <defaultValue>3</defaultValue>
               </leafNode>
+              #include <include/interface/vrf.xml.i>
             </children>
           </node>
         </children>
Jul 31 2024, 1:48 PM · VyOS 1.5 Circinus
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXc823d7c84d4d: ipsec: T6148: Removed unused imports (#3915) (authored by aapostoliuk <[email protected]>).
Jul 31 2024, 12:27 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXd213e3f09ad3: ipsec: T6148: Removed unused imports (#3915) (authored by aapostoliuk <[email protected]>).
Jul 31 2024, 12:27 PM
GitHub <[email protected]> committed rVYOSONEXcb1834742f4e: ipsec: T6148: Removed unused imports (#3915) (authored by aapostoliuk <[email protected]>).
Jul 31 2024, 12:26 PM
Viacheslav claimed T5657: Add VRF support for zabbix-agent.
Jul 31 2024, 11:48 AM · VyOS 1.5 Circinus
HollyGurza added a comment to T6619: Remove the remaining uses of per-protocol FRR configs.

https://github.com/vyos/vyos-1x/pull/3916

Jul 31 2024, 11:43 AM · VyOS 1.4 Sagitta (1.4.0), VyOS 1.5 Circinus
HollyGurza added a comment to T6623: Command `protocols static multicast` does not have any effect.

https://github.com/vyos/vyos-1x/pull/3916

Jul 31 2024, 11:43 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
GitHub <[email protected]> committed rVYOSONEX9bc2680e12ac: ipsec: T6148: Fixed reset command by adding init after terminating (#3763)… (authored by mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>).
Jul 31 2024, 9:36 AM
Viacheslav closed T6539: Add logging options to load-balancer reverse-proxy as Resolved.
Jul 31 2024, 9:30 AM · VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
Viacheslav triaged T6624: service suricata address-groups cannot be used in each other as Low priority.
Jul 31 2024, 9:29 AM · Restricted Project, VyOS 1.5 Circinus
GitHub <[email protected]> committed rVYOSONEXcdfa92e5c0c8: Merge pull request #3908 from vyos/mergify/bp/circinus/pr-3763 (authored by c-po).
Jul 31 2024, 9:09 AM
GitHub <[email protected]> committed rVYOSONEXb4229c839f23: Merge pull request #3910 from vyos/mergify/bp/sagitta/pr-3698 (authored by c-po).
Jul 31 2024, 9:08 AM
GitHub <[email protected]> committed rVYOSONEXc332e96cd1f3: Merge pull request #3913 from vyos/mergify/bp/sagitta/pr-3753 (authored by c-po).
Jul 31 2024, 9:07 AM
lucasec added a comment to T6177: Intel QAT causes CPU runaway/stall with ipsec VPN.

I was hoping some combination of the newer QAT driver 4.24 and newer kernel in the latest rolling releases might fix this... but seemingly not.

Jul 31 2024, 6:20 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX19faa3129a59: smoketest: T6592: remove unused "import os" (authored by c-po).
Jul 31 2024, 6:03 AM
GitHub <[email protected]> committed rVYOSONEX10bf3c852783: Merge pull request #3906 from vyos/mergify/bp/circinus/pr-3715 (authored by c-po).
Jul 31 2024, 6:01 AM
fsbof added a comment to T5653: Command to display fingerprint.

I finally managed to give 1.5 a run and the first thing I did was check this. Perfect! Thank you everyone,

Jul 31 2024, 5:48 AM · VyOS 1.4 Sagitta, VyOS 1.5 Circinus

Jul 30 2024

ruffy91 created T6624: service suricata address-groups cannot be used in each other.
Jul 30 2024, 7:56 PM · Restricted Project, VyOS 1.5 Circinus
GitHub <[email protected]> committed rVYOSONEX0dc248a587d6: Merge pull request #3902 from vyos/c-po-patch-1 (authored by c-po).
Jul 30 2024, 3:33 PM
GitHub <[email protected]> committed rVYOSONEXe9211ae7bd85: T6572: stop repo sync for circinus (authored by Vijayakumar A <[email protected]>).
Jul 30 2024, 3:20 PM
GitHub <[email protected]> committed rVYOSONEXdf15c8990c11: Merge pull request #3912 from kumvijaya/circinus (authored by c-po).
Jul 30 2024, 3:20 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXfb07945a9d52: T6539: add logging options to load-balancer reverse-proxy (authored by jvoss).
Jul 30 2024, 3:18 PM
c-po reopened T6539: Add logging options to load-balancer reverse-proxy as "In progress".
Jul 30 2024, 3:17 PM · VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
GitHub <[email protected]> committed rVYOSONEX40dd6b7ca9c6: Merge pull request #3911 from vyos/mergify/bp/circinus/pr-3698 (authored by c-po).
Jul 30 2024, 3:09 PM
c-po closed T6610: Missing minisign pub key from image as Resolved.
Jul 30 2024, 2:04 PM · VyOS 1.4 Sagitta (1.4.1)
c-po moved T6610: Missing minisign pub key from image from Backlog to Finished on the VyOS 1.4 Sagitta (1.4.1) board.
Jul 30 2024, 2:04 PM · VyOS 1.4 Sagitta (1.4.1)
Viacheslav committed rVYOSONEXfe50f1a9292b: T6486: T6379: Rewrite generate openvpn client-config.
Jul 30 2024, 2:03 PM
GitHub <[email protected]> committed rVYOSONEX80c45befaaad: Merge pull request #3747 from sever-sever/T6486 (authored by c-po).
Jul 30 2024, 2:03 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXdb6f10654df7: system: op-mode: T3334: allow delayed getty restart when configuring serial… (authored by Andrew Topp <[email protected]>).
Jul 30 2024, 1:53 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX1ce6c77eb37c: system: op-mode: T3334: replace some print() statements with Warning() (authored by c-po).
Jul 30 2024, 1:53 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX1f7a775f0b67: system: op-mode: T3334: replace some print() statements with Warning() (authored by c-po).
Jul 30 2024, 1:53 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX9d8609c97650: system: op-mode: T3334: allow delayed getty restart when configuring serial… (authored by Andrew Topp <[email protected]>).
Jul 30 2024, 1:53 PM
c-po committed rVYOSONEXb3b31153963c: system: op-mode: T3334: replace some print() statements with Warning().
Jul 30 2024, 1:51 PM
c-po committed rVYOSONEXbc9049ebd765: system: op-mode: T3334: allow delayed getty restart when configuring serial… (authored by Andrew Topp <[email protected]>).
Jul 30 2024, 1:51 PM
GitHub <[email protected]> committed rVYOSONEX33f2fd502810: Merge pull request #3698 from talmakion/bugfix/T3334 (authored by c-po).
Jul 30 2024, 1:51 PM
c-po moved T6603: vrf: nftables conntrack ct_iface_map contains multiple identical entries from Open to Finished on the VyOS 1.5 Circinus board.
Jul 30 2024, 1:16 PM · VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
Viacheslav edited projects for T5153: OpenConnect route restriction via iptables is ignored, added: VyOS Rolling; removed VyOS 1.3 Equuleus (1.3.8).
Jul 30 2024, 1:08 PM · Restricted Project, VyOS Rolling, VyOS 1.5 Circinus
Viacheslav changed the status of T6231: Vendor Drivers for NVidia (Mellanox) Adapters from Open to Needs testing.

Can someone test/check if it works as expected?

Jul 30 2024, 12:52 PM · VyOS 1.5 Circinus
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXe3ff9b518ac9: ipsec: T6148: Fixed reset command by adding init after terminating (#3763) (authored by aapostoliuk <[email protected]>).
Jul 30 2024, 12:22 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX9be079ac855b: ipsec: T6148: Fixed reset command by adding init after terminating (#3763) (authored by aapostoliuk <[email protected]>).
Jul 30 2024, 12:22 PM
a.apostoliuk moved T6148: Reset vpn ipsec command breaks tunnel and does not reset SAs that are down from Open to Finished on the VyOS 1.5 Circinus board.
Jul 30 2024, 12:18 PM · VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus
Viacheslav placed T741: move user home to persistent storage up for grabs.
Jul 30 2024, 12:15 PM · VyOS Rolling, VyOS 1.5 Circinus
n.fort added a comment to T6570: Firewall bridge allways passes traffic to IP layer.

PR: https://github.com/vyos/vyos-1x/pull/3901

Jul 30 2024, 12:08 PM · VyOS Rolling, VyOS 1.5 Circinus
n.fort changed the status of T5680: Allow selecting mac-groups in bridge firewall from Confirmed to In progress.

PR: https://github.com/vyos/vyos-1x/pull/3901

Jul 30 2024, 12:08 PM · Restricted Project, VyOS 1.5 Circinus
Viacheslav moved T6313: Add "NAT" to "generate" command for rule resequence from Open to Finished on the VyOS 1.5 Circinus board.
Jul 30 2024, 12:03 PM · VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus
Viacheslav added a project to T6313: Add "NAT" to "generate" command for rule resequence: VyOS 1.4 Sagitta (1.4.1).
Jul 30 2024, 12:03 PM · VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXb04cabbaf15d: T6313: Add "NAT" to "generate" command for rule resequence (authored by khramshinr <[email protected]>).
Jul 30 2024, 12:01 PM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX014bf70b494b: T6313: Add "NAT" to "generate" command for rule resequence (authored by khramshinr <[email protected]>).
Jul 30 2024, 12:00 PM
Viacheslav changed the status of T6313: Add "NAT" to "generate" command for rule resequence from Open to Needs testing.
Jul 30 2024, 12:00 PM · VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus
Viacheslav assigned T6313: Add "NAT" to "generate" command for rule resequence to HollyGurza.
Jul 30 2024, 11:58 AM · VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus
Viacheslav reassigned T6406: Add config option for container cpu limit from Viacheslav to nvollmar.
Jul 30 2024, 11:47 AM · VyOS 1.5 Circinus
Viacheslav closed T6406: Add config option for container cpu limit as Resolved.
Jul 30 2024, 11:46 AM · VyOS 1.5 Circinus
talmakion added a comment to T6622: Add support for non-decimal numbers to the numeric validator.

My opinion is largely based on my recent use-case for this, the GRE-match ethertype fields. I remember grumbling a couple of times about needing to convert bases to decimal in the past, but it's been too long to remember specifically what I was configuring at the time.

Jul 30 2024, 11:34 AM · VyOS Rolling
HollyGurza created T6623: Command `protocols static multicast` does not have any effect.
Jul 30 2024, 10:25 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
dmbaturin created T6622: Add support for non-decimal numbers to the numeric validator.
Jul 30 2024, 9:54 AM · VyOS Rolling
GitHub <[email protected]> committed rVYOSONEX0dc8b5899e05: Merge pull request #3904 from vyos/mergify/bp/circinus/pr-3883 (authored by c-po).
Jul 30 2024, 9:47 AM
GitHub <[email protected]> committed rVYOSONEXa81d270b166d: T6572: trigger remote pr only for circinus pr merge (#3899) (authored by Vijayakumar A <[email protected]>).
Jul 30 2024, 9:12 AM
csszep added a comment to T6362: Create a conntrack/translations logger daemon.

I have a related question too.

Jul 30 2024, 8:38 AM · VyOS 1.5 Circinus
HollyGurza claimed T6619: Remove the remaining uses of per-protocol FRR configs.
Jul 30 2024, 8:21 AM · VyOS 1.4 Sagitta (1.4.0), VyOS 1.5 Circinus
HollyGurza renamed T6619: Remove the remaining uses of per-protocol FRR configs from Use only a unified configuration file for FRR to Remove the remaining uses of per-protocol FRR configs.
Jul 30 2024, 8:15 AM · VyOS 1.4 Sagitta (1.4.0), VyOS 1.5 Circinus
csszep added a comment to T6362: Create a conntrack/translations logger daemon.

I am not against the Python implementation, but why isn't ulogd2 simply used for this?

Jul 30 2024, 8:14 AM · VyOS 1.5 Circinus
Apachez created T6621: Workflow action in github spams forks.
Jul 30 2024, 8:11 AM · VyOS 1.5 Circinus
HollyGurza changed the status of T6362: Create a conntrack/translations logger daemon from Open to Needs testing.
Jul 30 2024, 8:01 AM · VyOS 1.5 Circinus
HollyGurza changed the status of T6362: Create a conntrack/translations logger daemon, a subtask of T5169: Add CGNAT Carrier-Grade NAT based on nftables, from Open to Needs testing.
Jul 30 2024, 8:01 AM · VyOS Rolling, VyOS 1.5 Circinus
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX2cbd1c66276c: vrf: T6603: improve code runtime when retrieving info from nftables vrf zone (authored by c-po).
Jul 30 2024, 7:47 AM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXa05251f766c6: vrf: T6603: conntrack ct_iface_map must only contain one entry for… (authored by c-po).
Jul 30 2024, 7:47 AM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEXebac16ea3f24: vrf: T6603: improve code runtime when retrieving info from nftables vrf zone (authored by c-po).
Jul 30 2024, 7:47 AM
Mergify <37929162+mergify[bot]@users.noreply.github.com> committed rVYOSONEX6fead781cb16: vrf: T6603: conntrack ct_iface_map must only contain one entry for… (authored by c-po).
Jul 30 2024, 7:47 AM
GitHub <[email protected]> committed rVYOSONEXff0b3b670848: T6572: trigger remote bot pr only from circinus (authored by Vijayakumar A <[email protected]>).
Jul 30 2024, 7:47 AM
GitHub <[email protected]> committed rVYOSONEX7db9c020e272: Merge pull request #3900 from kumvijaya/circinus (authored by dmbaturin).
Jul 30 2024, 7:47 AM
GitHub <[email protected]> committed rVYOSONEXeed26f65a413: Merge pull request #3883 from c-po/vrf-conntrack (authored by c-po).
Jul 30 2024, 7:46 AM
c-po committed rVYOSONEX31acb42ecdf4: vrf: T6603: improve code runtime when retrieving info from nftables vrf zone.
Jul 30 2024, 7:46 AM
c-po committed rVYOSONEXd6e9824f1612: vrf: T6603: conntrack ct_iface_map must only contain one entry for….
Jul 30 2024, 7:46 AM
lucasec changed the status of T6618: ipsec: remote access VPN: "generate ipsec profile windows-remote-access" broken from Open to In progress.

PR https://github.com/vyos/vyos-1x/pull/3903

Jul 30 2024, 7:29 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
lucasec changed the status of T6617: ipsec: remote access VPN: "generate ipsec profile ios-remote-access" wrong profile for x509 auth from Open to In progress.

PR https://github.com/vyos/vyos-1x/pull/3903

Jul 30 2024, 7:29 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
c-po closed T6614: Initial support for smoketesting op-mode commands as Resolved.
Jul 30 2024, 6:25 AM · VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
c-po moved T6614: Initial support for smoketesting op-mode commands from Backlog to Finished on the VyOS 1.4 Sagitta (1.4.1) board.
Jul 30 2024, 6:25 AM · VyOS 1.4 Sagitta (1.4.1), VyOS Rolling, VyOS 1.5 Circinus
c-po closed T6601: op-mode: Move "reset ip arp" -> "clear ip arp" and "reset ipv6 neighbors" -> "clear ipv6 neighbors" as Invalid.
Jul 30 2024, 6:11 AM · VyOS Rolling, VyOS 1.5 Circinus
c-po updated subscribers of T6601: op-mode: Move "reset ip arp" -> "clear ip arp" and "reset ipv6 neighbors" -> "clear ipv6 neighbors".

Top level op mode words have specific meanings in VyOS. clear is reserved for completely non-disruptive operations: clearing the screen, clearing rule counters... reset is for locally-disruptive operations.
Since removing a neighbor table entry can lead to lost packets or increased latencies for new connections, it doesn't qualify for clear, which is why it was called reset.
I'd prefer to keep that terminology consistent. BGP neighbors in Cisco IOS are also under clear, but we don't plan to mimic that, do we? ;)

Jul 30 2024, 6:11 AM · VyOS Rolling, VyOS 1.5 Circinus
c-po committed rVYOSONEX9b99a01653e3: pbr: T6430: refactor to use vyos.utils.network.get_vrf_tableid().
Jul 30 2024, 6:10 AM