Page MenuHomeVyOS Platform
Feed All Stories

Aug 17 2022

Viacheslav moved T4618: Traffic policy not set on virtual interfaces from Need Triage to Finished on the VyOS 1.4 Sagitta board.
Aug 17 2022, 9:49 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav added a comment to T4618: Traffic policy not set on virtual interfaces.

PR for 1.3.2 https://github.com/vyos/vyatta-cfg-qos/pull/16

Aug 17 2022, 9:49 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav added a comment to T4621: OpenConnect group selection.

The similar request T3896

Aug 17 2022, 1:49 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta

Aug 16 2022

sempervictus updated subscribers of T4621: OpenConnect group selection.
Aug 16 2022, 8:39 PM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
sempervictus created T4621: OpenConnect group selection.
Aug 16 2022, 8:38 PM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
c-po edited projects for T4538: Macsec does not work correctly when the interface status changes., added: VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta; removed VyOS 1.3 Equuleus (1.3.2).
Aug 16 2022, 6:06 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po moved T4260: Extend vyos.configdict.node_changed() to support recursiveness from Need Triage to Finished on the VyOS 1.3 Equuleus (1.3.2) board.
Aug 16 2022, 6:06 PM · VyOS 1.3 Equuleus (1.3.2)
c-po moved T4537: MACsec not working with cipher gcm-aes-256 from Need Triage to Finished on the VyOS 1.3 Equuleus (1.3.2) board.
Aug 16 2022, 6:06 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po closed T4537: MACsec not working with cipher gcm-aes-256 as Resolved.
Aug 16 2022, 6:05 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
aserkin added a comment to T4617: VRF specification is needed for telegraf prometheus-client listen-address <address> .

Manual start of telegraf works for me

Aug 16 2022, 4:46 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4620: UPnP does not work due to incorrect template.

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

Aug 16 2022, 4:30 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4611: UPnP rule IP should be a prefix instead of an address.

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

Aug 16 2022, 4:30 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4611: UPnP rule IP should be a prefix instead of an address from Open to In progress.
Aug 16 2022, 4:11 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T4620: UPnP does not work due to incorrect template.
Aug 16 2022, 3:54 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4620: UPnP does not work due to incorrect template from Open to In progress.
Aug 16 2022, 3:52 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4611: UPnP rule IP should be a prefix instead of an address.

It seems UPnP rules doesn't work at all task T4620

Aug 16 2022, 3:52 PM · VyOS 1.4 Sagitta
Viacheslav created T4620: UPnP does not work due to incorrect template.
Aug 16 2022, 3:51 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4611: UPnP rule IP should be a prefix instead of an address.

@patrickli Could you send a real example? In your example, port ranges are incorrect also it is not all required UPnP configuration
If you sent all UPnP configuration, it already has been done :)
I'm not a UPnP person, so I ask for some examples.

Aug 16 2022, 3:23 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4613: UPnP configuration without listen option fail.

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

Aug 16 2022, 3:04 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4613: UPnP configuration without listen option fail from Open to In progress.
Aug 16 2022, 2:29 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T4613: UPnP configuration without listen option fail.
Aug 16 2022, 2:28 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4617: VRF specification is needed for telegraf prometheus-client listen-address <address> .

I tried to add vrf, but it requires some permissions, service is not starting

diff --git a/data/templates/monitoring/override.conf.j2 b/data/templates/monitoring/override.conf.j2
index 9f1b4ebe..63e479af 100644
--- a/data/templates/monitoring/override.conf.j2
+++ b/data/templates/monitoring/override.conf.j2
@@ -1,7 +1,10 @@
+{% set vrf_command = 'ip vrf exec ' ~ vrf ~ ' ' if vrf is vyos_defined else '' %}
 [Unit]
 After=vyos-router.service
 ConditionPathExists=/run/telegraf/vyos-telegraf.conf
 [Service]
+ExecStart=
+ExecStart={{ vrf_command }}/usr/bin/telegraf -config /run/telegraf/vyos-telegraf.conf -config-directory /etc/telegraf/telegraf.d $TELEGRAF_OPTS
 Environment=INFLUX_TOKEN={{ influxdb.authentication.token }}
 CapabilityBoundingSet=CAP_NET_RAW CAP_NET_ADMIN CAP_SYS_ADMIN
 AmbientCapabilities=CAP_NET_RAW CAP_NET_ADMIN
diff --git a/interface-definitions/service-monitoring-telegraf.xml.in b/interface-definitions/service-monitoring-telegraf.xml.in
index 36f40a53..dc014ee1 100644
--- a/interface-definitions/service-monitoring-telegraf.xml.in
+++ b/interface-definitions/service-monitoring-telegraf.xml.in
@@ -306,6 +306,7 @@
                   </leafNode>
                 </children>
               </node>
+              #include <include/interface/vrf.xml.i>
             </children>
           </node>
         </children>
Aug 16 2022, 1:40 PM · VyOS 1.4 Sagitta
jestabro removed a project from T3993: Extend HTTP API GraphQL support: VyOS 1.3 Equuleus.
Aug 16 2022, 1:26 PM · VyOS 1.4 Sagitta
jestabro moved T3993: Extend HTTP API GraphQL support from Need Triage to In Progress on the VyOS 1.4 Sagitta board.
Aug 16 2022, 1:25 PM · VyOS 1.4 Sagitta
jestabro edited projects for T3993: Extend HTTP API GraphQL support, added: VyOS 1.4 Sagitta, VyOS 1.3 Equuleus; removed VyOS 1.3 Equuleus (1.3.2).
Aug 16 2022, 1:25 PM · VyOS 1.4 Sagitta
jestabro closed T4413: Add an API endpoint with basic system stats as Resolved.
Aug 16 2022, 1:22 PM · VyOS 1.4 Sagitta
daniil updated the task description for T4619: Static arp is not set if another entry is present.
Aug 16 2022, 1:07 PM · VyOS 1.4 Sagitta
daniil added a comment to T4619: Static arp is not set if another entry is present.

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

Aug 16 2022, 12:53 PM · VyOS 1.4 Sagitta
daniil created T4619: Static arp is not set if another entry is present.
Aug 16 2022, 12:36 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4617: VRF specification is needed for telegraf prometheus-client listen-address <address> .

As we have one config file for all plugins, as we start only one telegraf process, I guess it should be global telegraf option set service monitoring telegraf vrf <vrf-name>

Aug 16 2022, 12:32 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4596: "show openconnect-server sessions" command does not work in the openconnect module, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from In progress to Needs testing.
Aug 16 2022, 11:58 AM · Restricted Project, VyOS 1.4 Sagitta (1.4.0-GA), VyOS 1.5 Circinus
Viacheslav changed the status of T4596: "show openconnect-server sessions" command does not work in the openconnect module from In progress to Needs testing.
Aug 16 2022, 11:58 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4618: Traffic policy not set on virtual interfaces.

PR https://github.com/vyos/vyatta-cfg-qos/pull/14

Aug 16 2022, 11:48 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav changed the status of T4618: Traffic policy not set on virtual interfaces from Open to In progress.
Aug 16 2022, 11:31 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin closed T4592: macsec: can not create two interfaces using the same source-interface as Resolved.
Aug 16 2022, 10:14 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav assigned T4601: dhcp : relay agent IP address issue. to Unknown Object (User).
Aug 16 2022, 9:58 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav changed the status of T4601: dhcp : relay agent IP address issue. from Confirmed to Needs testing.
Aug 16 2022, 9:58 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
daniil created T4618: Traffic policy not set on virtual interfaces.
Aug 16 2022, 9:52 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po moved T4584: hostap: create custom package build from Need Triage to Finished on the VyOS 1.3 Equuleus (1.3.2) board.
Aug 16 2022, 6:19 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po closed T4584: hostap: create custom package build, a subtask of T4537: MACsec not working with cipher gcm-aes-256, as Resolved.
Aug 16 2022, 6:19 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po closed T4584: hostap: create custom package build as Resolved.
Aug 16 2022, 6:19 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Unknown Object (User) changed the status of T4601: dhcp : relay agent IP address issue. from Open to Confirmed.

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

Aug 16 2022, 12:15 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta

Aug 15 2022

aserkin created T4617: VRF specification is needed for telegraf prometheus-client listen-address <address> .
Aug 15 2022, 10:22 PM · VyOS 1.4 Sagitta
c-po added a comment to T4616: openconnect: KeyError: 'local_users'.

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

Aug 15 2022, 6:55 PM · VyOS 1.3 Equuleus (1.3.2)
c-po claimed T4616: openconnect: KeyError: 'local_users'.
Aug 15 2022, 6:51 PM · VyOS 1.3 Equuleus (1.3.2)
c-po edited projects for T4616: openconnect: KeyError: 'local_users', added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus.
Aug 15 2022, 6:50 PM · VyOS 1.3 Equuleus (1.3.2)
c-po created T4616: openconnect: KeyError: 'local_users'.
Aug 15 2022, 6:50 PM · VyOS 1.3 Equuleus (1.3.2)
c-po added a comment to T4614: OpenConnect split-dns directive.

PR for VyOS 1.3 https://github.com/vyos/vyos-1x/pull/1470

Aug 15 2022, 6:47 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po moved T4614: OpenConnect split-dns directive from Need Triage to Finished on the VyOS 1.4 Sagitta board.
Aug 15 2022, 6:17 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po closed T4565: vlan aware bridge not working with - Kernel: T3318: update Linux Kernel to v5.4.205 #249 as Resolved.
Aug 15 2022, 5:47 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po moved T4565: vlan aware bridge not working with - Kernel: T3318: update Linux Kernel to v5.4.205 #249 from In Progress to Finished on the VyOS 1.3 Equuleus (1.3.2) board.
Aug 15 2022, 5:47 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po edited projects for T4565: vlan aware bridge not working with - Kernel: T3318: update Linux Kernel to v5.4.205 #249 , added: VyOS 1.3 Equuleus (1.3.2); removed VyOS 1.3 Equuleus (1.3.3).
Aug 15 2022, 5:47 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
aserkin renamed T4615: vpn sessions-columns configuration needed from vpn session-columns configuration needed to vpn sessions-columns configuration needed.
Aug 15 2022, 5:40 PM · VyOS 1.5 Circinus
aserkin created T4615: vpn sessions-columns configuration needed.
Aug 15 2022, 5:38 PM · VyOS 1.5 Circinus
c-po changed the status of T4614: OpenConnect split-dns directive from Open to In progress.
Aug 15 2022, 5:04 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po added a project to T4537: MACsec not working with cipher gcm-aes-256: VyOS 1.4 Sagitta.
Aug 15 2022, 4:02 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
sempervictus assigned T4614: OpenConnect split-dns directive to c-po.
Aug 15 2022, 2:46 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
sempervictus created T4614: OpenConnect split-dns directive.
Aug 15 2022, 2:46 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin added a comment to T4206: Policy Based Routing with DHCP Interface Issue.

Fixed in https://github.com/vyos/vyatta-cfg-quagga/commit/d4097690c40f619bc0e78a0d674985f7880a19a3 according to @Viacheslav

Aug 15 2022, 12:14 PM · VyOS 1.3 Equuleus (1.3.2)
dmbaturin closed T4206: Policy Based Routing with DHCP Interface Issue as Resolved.
Aug 15 2022, 12:13 PM · VyOS 1.3 Equuleus (1.3.2)
Viacheslav edited projects for T4082: Add op mode command to restart ldpd, added: VyOS 1.3 Equuleus; removed VyOS 1.3 Equuleus (1.3.2).
Aug 15 2022, 11:38 AM · VyOS 1.3 Equuleus (1.3.0)
Viacheslav closed T3988: Feature Request: IPsec Multiple local/remote prefix for the tunnel as Resolved.
Aug 15 2022, 11:33 AM · VyOS 1.4 Sagitta
patrickli added a comment to T4612: Support arbitrary netmasks in firewall rules.

Nice. Is this syntax supported in vyos or it needs some development?

Aug 15 2022, 11:26 AM · VyOS 1.4 Sagitta
Viacheslav created T4613: UPnP configuration without listen option fail.
Aug 15 2022, 11:21 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4612: Support arbitrary netmasks in firewall rules.

It is possible but with specific syntax
I found some examples:

nft insert rule ip filter VYOS_FW_FORWARD ip 'saddr & 0.255.0.255 != 0.11.0.13' counter
Aug 15 2022, 11:15 AM · VyOS 1.4 Sagitta
Viacheslav closed T4609: Unable to Restart Container VyOS 1.4 as Resolved.
Aug 15 2022, 11:05 AM · VyOS 1.4 Sagitta
patrickli added a comment to T4612: Support arbitrary netmasks in firewall rules.

OK. I was trying to migrate from an EdgeRouter and this is a rule I used to have.

Aug 15 2022, 10:29 AM · VyOS 1.4 Sagitta
patrickli added a comment to T4611: UPnP rule IP should be a prefix instead of an address.
set service upnp rule 10 action allow
set service upnp rule 10 external-port-range 1024-65536
set service upnp rule 10 internal-port-range 1024-65536
set service upnp rule 10 ip 10.0.0.1/24
Aug 15 2022, 10:16 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4612: Support arbitrary netmasks in firewall rules.

@patrickli nftables is not engine for iptables. It is programs to work with netfilter
That's why I ask for the real example

root@r1:/home/vyos# nft insert rule ip6 filter INPUT ip6 saddr ::dead:beef/::ffff:ffff counter
Error: syntax error, unexpected string, expecting number
insert rule ip6 filter INPUT ip6 saddr ::dead:beef/::ffff:ffff counter
                                                   ^^^^^^^^^^^
root@r1:/home/vyos#
Aug 15 2022, 10:15 AM · VyOS 1.4 Sagitta
patrickli added a comment to T4612: Support arbitrary netmasks in firewall rules.

Yeah nftables is just the engine for iptables. EdgeOS supports this syntax.

Aug 15 2022, 10:08 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4612: Support arbitrary netmasks in firewall rules.

@patrickli In 1.4 we don't use iptables, we use nftables
LInk to nftables example will be helpful.

Aug 15 2022, 10:03 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4611: UPnP rule IP should be a prefix instead of an address.

@patrickli Could you attach an example of VyOS configuration with set service upnp xxx
If you manually change upnpd.conf does it work correctly?

Aug 15 2022, 10:01 AM · VyOS 1.4 Sagitta
patrickli created T4612: Support arbitrary netmasks in firewall rules.
Aug 15 2022, 9:59 AM · VyOS 1.4 Sagitta
Viacheslav closed T2763: New SNMP resource request - SNMP over TCP as Resolved.
Aug 15 2022, 9:54 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
patrickli created T4611: UPnP rule IP should be a prefix instead of an address.
Aug 15 2022, 9:51 AM · VyOS 1.4 Sagitta
Viacheslav created T4610: Firewall with 20K entries cannot load after reboot.
Aug 15 2022, 9:50 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4609: Unable to Restart Container VyOS 1.4.

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

Aug 15 2022, 9:36 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4609: Unable to Restart Container VyOS 1.4 from Open to In progress.
Aug 15 2022, 9:24 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4595: DPD interval and timeout do not work in DMVPN from Open to Needs testing.
Aug 15 2022, 9:05 AM · VyOS 1.4 Sagitta

Aug 14 2022

florin added a comment to T4466: intel i225-v nic does not detect link after boot.

@dmbaturin, here are the changes I made: https://github.com/vyos/vyos-build/compare/equuleus...fvlaicu:equuleus
I'm using the 1.4 kernel in 1.3.

Aug 14 2022, 7:19 PM · VyOS 1.3 Equuleus
dmbaturin edited projects for T4393: sstp: add support for configuring host-name (SNI), added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:52 PM · VyOS 1.4 Sagitta (1.4.0-GA)
dmbaturin closed T3507: Bond with mode LACP show u/u in show interfaces even if peer is not configured as Resolved.
Aug 14 2022, 6:51 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin closed T3714: Some sysctl custom parameters disappear after reboot as Resolved.
Aug 14 2022, 6:51 PM · VyOS 1.3 Equuleus (1.3.2)
dmbaturin edited projects for T4412: commit archive: reboot not working with sftp, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:50 PM · VyOS 1.3 Equuleus (1.3.4), VyOS 1.4 Sagitta
dmbaturin closed T4421: Add support for floating point numbers in the numeric validator as Resolved.
Aug 14 2022, 6:50 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin edited projects for T4455: smp-affinity required by some platforms but doesn't exists in the CLI, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:49 PM · Restricted Project, VyOS 1.3 Equuleus (1.3.9), VyOS 1.4 Sagitta (1.4.0-GA), VyOS 1.5 Circinus
dmbaturin edited projects for T2763: New SNMP resource request - SNMP over TCP, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:49 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin edited projects for T4511: IPv6 DNS lookup, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:48 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
dmbaturin edited projects for T4533: Radius clients don’t have simple permissions, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:48 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
dmbaturin closed T4579: bridge: can not delete member interface CLI option when VLAN is enabled as Resolved.
Aug 14 2022, 6:47 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin edited projects for T4565: vlan aware bridge not working with - Kernel: T3318: update Linux Kernel to v5.4.205 #249 , added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:46 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
dmbaturin edited projects for T3474: Revisit storing syntax version of interface definitions in XML file, added: VyOS 1.4 Sagitta; removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:46 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
dmbaturin closed T3785: Add unicode support to configtree backend, a subtask of T2941: Using a non-ASCII character in the description field causes UnicodeDecodeError in configsource.py, as Resolved.
Aug 14 2022, 6:44 PM · VyOS 1.3 Equuleus (1.3.0-epa1), VyOS 1.4 Sagitta
dmbaturin closed T3785: Add unicode support to configtree backend as Resolved.
Aug 14 2022, 6:44 PM · VyOS 1.3 Equuleus (1.3.2)
dmbaturin edited projects for T3977: dhcp-relay-agent uses "physical" IP instead of vrrp IP, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:43 PM · VyOS 1.3 Equuleus (1.3.6)
dmbaturin edited projects for T3980: vrrp transition-script validator makes warning fatal and also causes a python NameError exception, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:43 PM · VyOS 1.3 Equuleus (1.3.6)
dmbaturin edited projects for T3987: An error occurs after stopping snmpd in frr, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:41 PM · VyOS 1.3 Equuleus (1.3.6)
dmbaturin edited projects for T3988: Feature Request: IPsec Multiple local/remote prefix for the tunnel, added: VyOS 1.4 Sagitta; removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:40 PM · VyOS 1.4 Sagitta
dmbaturin added a project to T3989: Firewall - Can't delete rule in firewall entry and leave just default-action when firewall entry is in used: Known issue.
Aug 14 2022, 6:39 PM · Restricted Project, VyOS 1.3 Equuleus (1.3.8), Known issue
dmbaturin edited projects for T3989: Firewall - Can't delete rule in firewall entry and leave just default-action when firewall entry is in used, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus (1.3.2).
Aug 14 2022, 6:36 PM · Restricted Project, VyOS 1.3 Equuleus (1.3.8), Known issue