Page MenuHomeVyOS Platform
Feed All Stories

Jul 29 2022

Viacheslav committed rVYOSONEXf38729bd8d44: nat: T4543: Fix and rewrite show nat source statistics.
Jul 29 2022, 4:14 PM
GitHub <noreply@github.com> committed rVYOSONEXbcbfc8cc0ad4: Merge pull request #1441 from sever-sever/T4543 (authored by c-po).
Jul 29 2022, 4:14 PM
Viacheslav committed rVYOSONEX5e7120a00278: vrf: T4562: Rewrite show vrf name xxx delete old script.
Jul 29 2022, 4:14 PM
GitHub <noreply@github.com> committed rVYOSONEX0d7ad932d284: Merge pull request #1443 from sever-sever/T4562 (authored by c-po).
Jul 29 2022, 4:14 PM
tjjh89017 committed rVYOSONEX10287b4a2b30: T4577: wwan: fix incorrect return value unpacking.
Jul 29 2022, 3:21 PM
GitHub <noreply@github.com> committed rVYOSONEXfafd18c41e33: Merge pull request #1444 from tjjh89017/fix_t4577 (authored by c-po).
Jul 29 2022, 3:21 PM
Viacheslav renamed T4089: Show nat destination rules shows ip address instead of interface 'any' from Show nat rules shows ip address instead of interface 'any' to Show nat destination rules shows ip address instead of interface 'any'.
Jul 29 2022, 3:00 PM · VyOS 1.4 Sagitta
tjjh89017 added a comment to T4577: WWAN commit failed which simple config.

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

Jul 29 2022, 2:46 PM · VyOS 1.4 Sagitta
tjjh89017 created T4577: WWAN commit failed which simple config.
Jul 29 2022, 2:42 PM · VyOS 1.4 Sagitta
Viacheslav added a subtask for T4564: Root task for rewriting [op-mode] to vyos.opmode format: T4089: Show nat destination rules shows ip address instead of interface 'any'.
Jul 29 2022, 2:40 PM · VyOS Rolling
Viacheslav added a parent task for T4089: Show nat destination rules shows ip address instead of interface 'any': T4564: Root task for rewriting [op-mode] to vyos.opmode format.
Jul 29 2022, 2:40 PM · VyOS 1.4 Sagitta
n.fort added a comment to T3933: The firewall does not filter incoming traffic on the interface with vrf..

Moving in from forwardto prerouting doesn't seem to be a good idea. Filtering in prerouting will also filter local traffic.
Also, as remarked in previous entry, I would try to avoid using marks in mangle, since it may lead to mayor problems/incompatibilities when PBR also present in configuration.

Jul 29 2022, 2:27 PM · Bugs, VyOS 1.3 Equuleus (1.3.9), VyOS 1.4 Sagitta (1.4.0-GA), Restricted Project
Viacheslav claimed T4562: Rewrite show vrf to new format.
Jul 29 2022, 2:07 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4562: Rewrite show vrf to new format.

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

vyos@r14:~$ show vrf foo
Name    State    MAC address        Flags                     Interfaces
------  -------  -----------------  ------------------------  ------------
foo     up       aa:de:40:58:2e:dd  noarp,master,up,lower_up  eth1.2
vyos@r14:~$ 
vyos@r14:~$ 
vyos@r14:~$ 
vyos@r14:~$ /usr/libexec/vyos/op_mode/vrf.py show --name bar --raw
[
    {
        "ifname": "bar",
        "operstate": "UP",
        "address": "ce:c1:4f:e8:dc:9a",
        "flags": [
            "NOARP",
            "MASTER",
            "UP",
            "LOWER_UP"
        ]
    }
]
vyos@r14:~$
Jul 29 2022, 2:06 PM · VyOS 1.4 Sagitta
aserkin created T4576: vpn l2tp logging level configuration.
Jul 29 2022, 10:13 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta (1.4.0-GA)

Jul 28 2022

Viacheslav changed the status of T4575: vyos.utill add new wrapper "rc_cmd" to get the return code and output from Open to In progress.
Jul 28 2022, 11:54 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
Viacheslav renamed T4575: vyos.utill add new wrapper "rc_cmd" to get the return code and output from vyos.utill add new wrapper "rc_cmd" to get te return code and output to vyos.utill add new wrapper "rc_cmd" to get the return code and output.
Jul 28 2022, 11:21 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
Viacheslav added a comment to T4575: vyos.utill add new wrapper "rc_cmd" to get the return code and output.

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

>>> from vyos.util import rc_cmd
>>>
>>> rc_cmd('uname')
(0, 'Linux')
>>> 
>>> rc_cmd('ip link show dev fake')
(1, 'Device "fake" does not exist.')
>>>

Ex2

>>> rc, command = rc_cmd('ip link show dev eth999')
>>> 
>>> 
>>> print(rc)
1
>>> print(command)
Device "eth999" does not exist.
>>>
Jul 28 2022, 11:13 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
Viacheslav changed the subtype of T4575: vyos.utill add new wrapper "rc_cmd" to get the return code and output from "Bug" to "Feature Request".
Jul 28 2022, 10:57 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
Viacheslav created T4575: vyos.utill add new wrapper "rc_cmd" to get the return code and output.
Jul 28 2022, 10:50 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
zsdc added a comment to T3933: The firewall does not filter incoming traffic on the interface with vrf..

True, marking packets can help. I would only be very careful because we use marks a lot for PBR, LB, etc. Not sure if they can conflict with each other. Also, the performance is the question - better to check how marking each packet on an interface affects it.

Jul 28 2022, 9:13 PM · Bugs, VyOS 1.3 Equuleus (1.3.9), VyOS 1.4 Sagitta (1.4.0-GA), Restricted Project
aderouineau added a comment to T4570: Exception when trying to set up VXLAN over Wireguard.

The reason I set an MTU is because I get the following error when unset:

WARNING: RFC7348 recommends VXLAN tunnels preserve a 1500 byte MTU
Jul 28 2022, 5:58 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4551: IPsec rekeying collisions bug.

VyOS 1.3-stable-202207280515 is not affected and works as expected

vyos@r14:~$ show vpn ipsec sa
Connection                 State    Uptime    Bytes In/Out    Packets In/Out    Remote address    Remote ID    Proposal
-------------------------  -------  --------  --------------  ----------------  ----------------  -----------  --------------
peer-192.0.2.2-tunnel-0    up       9s        0B/0B           0/0               192.0.2.2         N/A          AES_GCM_16_256
peer-2001:db8::2-tunnel-0  up       9s        0B/0B           0/0               2001:db8::2       N/A          AES_GCM_16_256
vyos@r14:~$

SAs

vyos@r14:~$ sudo swanctl -l
peer-2001:db8::2-tunnel-0: #4, ESTABLISHED, IKEv2, bae267e189f183be_i 008bf75c872ced6a_r*
  local  '2001:db8::1' @ 2001:db8::1[500]
  remote '2001:db8::2' @ 2001:db8::2[500]
  AES_GCM_16-256/PRF_HMAC_SHA2_256/MODP_2048
  established 25s ago, rekeying in 85328s
  peer-2001:db8::2-tunnel-0: #3, reqid 1, INSTALLED, TUNNEL, ESP:AES_GCM_16-256
    installed 25s ago, rekeying in 28178s, expires in 28775s
    in  c762627a,      0 bytes,     0 packets
    out c2278f63,      0 bytes,     0 packets
    local  2001:db8:1111::/64
    remote 2001:db8:2222::/64
peer-192.0.2.2-tunnel-0: #3, ESTABLISHED, IKEv2, c923210fb14e11d5_i 2450ab183218d566_r*
  local  '192.0.2.1' @ 192.0.2.1[500]
  remote '192.0.2.2' @ 192.0.2.2[500]
  AES_GCM_16-256/PRF_HMAC_SHA2_256/MODP_2048
  established 25s ago, rekeying in 85526s
  peer-192.0.2.2-tunnel-0: #4, reqid 2, INSTALLED, TUNNEL, ESP:AES_GCM_16-256
    installed 25s ago, rekeying in 27722s, expires in 28775s
    in  c1892b7b,      0 bytes,     0 packets
    out c8fbbb2f,      0 bytes,     0 packets
    local  100.64.0.0/24
    remote 100.64.55.0/24
vyos@r14:~$
Jul 28 2022, 5:45 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4565: vlan aware bridge not working .

I have it working between VyOS 1.4-rolling-202207280217 (kernel 5.10.133) and VyOS 1.3-stable-202207280515 (kernel 5.4.205)

Jul 28 2022, 5:36 PM · VyOS 1.4 Sagitta (1.4.0-GA), VyOS 1.3 Equuleus (1.3.2)
Viacheslav added a comment to T4572: Add an option to force interface MTU to the value received from DHCP.

Will it work if you replace this https://github.com/vyos/vyos-1x/blob/4168e03721b2a9595de4090fddf1280d39ccce4c/python/vyos/ifconfig/interface.py#L1378-L1379

sudo nano -c +1385 /usr/lib/python3/dist-packages/vyos/ifconfig/interface.py

with:

Jul 28 2022, 4:46 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav changed the status of T4562: Rewrite show vrf to new format, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from Open to Needs testing.
Jul 28 2022, 3:59 PM · VyOS Rolling
Viacheslav changed the status of T4562: Rewrite show vrf to new format from Open to Needs testing.
Jul 28 2022, 3:59 PM · VyOS 1.4 Sagitta
jestabro updated the task description for T4554: Implement GraphQL resolvers for standardized op-mode scripts.
Jul 28 2022, 2:10 PM · VyOS 1.4 Sagitta
Viacheslav renamed T4551: IPsec rekeying collisions bug from IPsec rekeying collisions with IPv6 peers to IPsec rekeying collisions bug.
Jul 28 2022, 1:55 PM · VyOS 1.4 Sagitta
jestabro triaged T4574: Add token based authentication to GraphQL API as Normal priority.
Jul 28 2022, 1:47 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4543: Show source nat statistics shows incorrect interface, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from Open to In progress.
Jul 28 2022, 12:46 PM · VyOS Rolling
Viacheslav changed the status of T4543: Show source nat statistics shows incorrect interface from Open to In progress.
Jul 28 2022, 12:46 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4543: Show source nat statistics shows incorrect interface.

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

vyos@r14:~$ show nat source statistics 
Rule    Packets    Bytes    Interface
------  ---------  -------  -----------
10      5          380      eth0
20      0          0        any
30      0          0        any
40      0          0        eth0
40      0          0        eth0
vyos@r14:~$
Jul 28 2022, 12:46 PM · VyOS 1.4 Sagitta
zsdc added a comment to T4572: Add an option to force interface MTU to the value received from DHCP.

I have no proof now of any obvious negative issues. Moreover, in my personal opinion - if some protocol or interface type requires a default MTU that is not assigned to it by the kernel, this is the problem that should be solved by configuration script for that particular interface.

Jul 28 2022, 11:54 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
aserkin added a comment to T4409: route received via Framed-Route radius attribute is installed into default table when terminating connection to VRF.

Is there any chance to fix that ?

Jul 28 2022, 11:44 AM · VyOS 1.5 Circinus (2025.11)
v.huti added a comment to T4180: Support for QoS Policy Propagation via BGP (QPPB).

The latest version of the demo can be found here:

Jul 28 2022, 10:44 AM · VyOS Rolling
Viacheslav closed T3435: NAT rules show corruption as Resolved.
Jul 28 2022, 10:22 AM · VyOS 1.4 Sagitta
Viacheslav closed T4531: NAT op-mode errors with exclude rules, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, as Resolved.
Jul 28 2022, 10:21 AM · VyOS Rolling
Viacheslav closed T4531: NAT op-mode errors with exclude rules as Resolved.
Jul 28 2022, 10:21 AM · VyOS 1.4 Sagitta
Viacheslav moved T4571: Sflow with vrf configured does not use vrf to validate agent-address IP from vrf-configured interfaces from Open to Backport Candidates on the VyOS 1.4 Sagitta board.
Jul 28 2022, 9:11 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta

Jul 27 2022

Viacheslav changed the status of T4531: NAT op-mode errors with exclude rules, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from In progress to Needs testing.
Jul 27 2022, 10:02 PM · VyOS Rolling
Viacheslav changed the status of T4531: NAT op-mode errors with exclude rules from In progress to Needs testing.
Jul 27 2022, 10:02 PM · VyOS 1.4 Sagitta
fernando closed T4573: PPPOE - missing options default-route-distance as Invalid.
Jul 27 2022, 6:15 PM · VyOS 1.4 Sagitta
fernando created T4573: PPPOE - missing options default-route-distance.
Jul 27 2022, 5:57 PM · VyOS 1.4 Sagitta
Viacheslav committed rVYOSONEX948e55af1f59: nat: T4531: Fix op-mode NAT rules add default values.
Jul 27 2022, 5:54 PM
GitHub <noreply@github.com> committed rVYOSONEXb33de0bac817: Merge pull request #1439 from sever-sever/T4531 (authored by c-po).
Jul 27 2022, 5:54 PM
df3rry closed T4571: Sflow with vrf configured does not use vrf to validate agent-address IP from vrf-configured interfaces as Resolved.

Tested locally and receive sflow with agent IP of the configured ip/interface/vrf.

Jul 27 2022, 2:28 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
Viacheslav claimed T4569: Rewrite show bridge to new format.
Jul 27 2022, 2:25 PM · VyOS 1.4 Sagitta
Viacheslav closed T4552: Unable to reset IPsec IPv6 peer, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, as Resolved.
Jul 27 2022, 2:25 PM · VyOS Rolling
Viacheslav closed T4552: Unable to reset IPsec IPv6 peer as Resolved.
Jul 27 2022, 2:25 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4572: Add an option to force interface MTU to the value received from DHCP.

Will it affect also tunnels/openvpn/wireguard/vxlan etc?
If you get rid of the default MTU values you get more pain.

Jul 27 2022, 12:34 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav added a comment to T4570: Exception when trying to set up VXLAN over Wireguard.

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

Jul 27 2022, 12:02 PM · VyOS 1.4 Sagitta
Viacheslav added a project to T4570: Exception when trying to set up VXLAN over Wireguard: VyOS 1.4 Sagitta.
Jul 27 2022, 11:38 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4570: Exception when trying to set up VXLAN over Wireguard from Open to In progress.
Jul 27 2022, 11:38 AM · VyOS 1.4 Sagitta
zsdc changed the status of T4572: Add an option to force interface MTU to the value received from DHCP from Open to Confirmed.
Jul 27 2022, 11:28 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
zsdc created T4572: Add an option to force interface MTU to the value received from DHCP.
Jul 27 2022, 11:28 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
Viacheslav added a comment to T4570: Exception when trying to set up VXLAN over Wireguard.

I can reproduce it:

Jul 27 2022, 10:34 AM · VyOS 1.4 Sagitta

Jul 26 2022

aderouineau added a comment to T4570: Exception when trying to set up VXLAN over Wireguard.

Here is my WG config:

set interfaces wireguard wg2 address 'REDACTED_IPV6/64'
set interfaces wireguard wg2 peer mypeer address 'REDACTED_IPV4'
set interfaces wireguard wg2 peer mypeer allowed-ips '::/0'
set interfaces wireguard wg2 peer mypeer persistent-keepalive '60'
set interfaces wireguard wg2 peer mypeer port '51820'
set interfaces wireguard wg2 peer mypeer public-key 'REDACTED'
set interfaces wireguard wg2 private-key 'REDACTED'
set interfaces wireguard wg2 vrf 'test'
Jul 26 2022, 11:41 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T2516: vyos-container: cannot configure ethernet interface from Open to Needs testing.
Jul 26 2022, 8:02 PM · VyOS 1.4 Sagitta, VyOS 1.3 Equuleus (1.3.3)
masterit added a project to T305: loadbalancing does not work with one pppoe connection and another connection of either dhcp or static : VyOS 1.4 Sagitta.
Jul 26 2022, 7:53 PM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta, test
Viacheslav changed the status of T4545: Rewrite show nat source rules, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from Open to Needs testing.
Jul 26 2022, 7:35 PM · VyOS Rolling
Viacheslav changed the status of T4545: Rewrite show nat source rules from Open to Needs testing.
Jul 26 2022, 7:35 PM · VyOS 1.4 Sagitta
Viacheslav claimed T4145: Conntrack table not showing after firewall rewriting.
Jul 26 2022, 7:34 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4531: NAT op-mode errors with exclude rules.

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

Jul 26 2022, 7:33 PM · VyOS 1.4 Sagitta
Viacheslav claimed T4531: NAT op-mode errors with exclude rules.
Jul 26 2022, 7:08 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4531: NAT op-mode errors with exclude rules, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from Open to In progress.
Jul 26 2022, 7:08 PM · VyOS Rolling
Viacheslav changed the status of T4531: NAT op-mode errors with exclude rules from Open to In progress.

VyOS config:

set nat source rule 10 destination address '192.0.2.0/24'
set nat source rule 10 exclude
set nat source rule 10 outbound-interface 'any'
set nat source rule 10 protocol 'all'
set nat source rule 10 source address '0.0.0.0/0'
set nat source rule 100 outbound-interface 'eth0'
set nat source rule 100 source address '203.0.113.0/24'
set nat source rule 100 translation address masquerade

The bug is still here:

vyos@r14# run show nat source rules 
Traceback (most recent call last):
  File "/usr/libexec/vyos/op_mode/nat.py", line 157, in <module>
    res = vyos.opmode.run(sys.modules[__name__])
  File "/usr/lib/python3/dist-packages/vyos/opmode.py", line 118, in run
    res = func(**args)
  File "/usr/libexec/vyos/op_mode/nat.py", line 152, in show_rules
    return _get_formatted_output_rules(nat_rules, direction)
  File "/usr/libexec/vyos/op_mode/nat.py", line 103, in _get_formatted_output_rules
    sport {sport}'''
UnboundLocalError: local variable 'sport' referenced before assignment
[edit]
vyos@r14#
Jul 26 2022, 7:08 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4569: Rewrite show bridge to new format from Open to In progress.
Jul 26 2022, 5:52 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4569: Rewrite show bridge to new format, a subtask of T4564: Root task for rewriting [op-mode] to vyos.opmode format, from Open to In progress.
Jul 26 2022, 5:52 PM · VyOS Rolling
Viacheslav added a comment to T4569: Rewrite show bridge to new format.

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

Jul 26 2022, 5:52 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T4571: Sflow with vrf configured does not use vrf to validate agent-address IP from vrf-configured interfaces from Open to Needs testing.
Jul 26 2022, 4:22 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
c-po claimed T4565: vlan aware bridge not working .
Jul 26 2022, 4:03 PM · VyOS 1.4 Sagitta (1.4.0-GA), VyOS 1.3 Equuleus (1.3.2)
GitHub <noreply@github.com> committed rVYOSONEX8bbaafd554d0: T4571: add sflow vrf to sflow agent address IP validation (authored by df3rry).
Jul 26 2022, 3:36 PM
df3rry created T4571: Sflow with vrf configured does not use vrf to validate agent-address IP from vrf-configured interfaces.
Jul 26 2022, 1:52 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
a.apostoliuk committed rVYOSONEX59927630d982: nhrp: T4546: Fixed gateway in route add command.
Jul 26 2022, 12:34 PM
GitHub <noreply@github.com> committed rVYOSONEX1589eefe8b24: Merge pull request #1436 from aapostoliuk/T4546-sagitta (authored by c-po).
Jul 26 2022, 12:34 PM
Viacheslav committed rVYOSONEXe72795a11fe1: bridge: T4569: Rewrite show bridge script of vyos.opmode format.
Jul 26 2022, 10:55 AM
GitHub <noreply@github.com> committed rVYOSONEX183dc5fc17b5: Merge pull request #1435 from sever-sever/T4569 (authored by c-po).
Jul 26 2022, 10:55 AM
Viacheslav added a project to T4565: vlan aware bridge not working : VyOS 1.4 Sagitta.
Jul 26 2022, 10:42 AM · VyOS 1.4 Sagitta (1.4.0-GA), VyOS 1.3 Equuleus (1.3.2)
Viacheslav added a comment to T4565: vlan aware bridge not working .

It seems not related to kernel and definitely another bug

vyos@r14# run show conf com | match bri
set interfaces bridge br0 enable-vlan
set interfaces bridge br0 member interface eth1 allowed-vlan '5-50'
set interfaces bridge br0 member interface eth1 native-vlan '5'
[edit]
vyos@r14# 
[edit]
vyos@r14# run show bridge vlan 
port              vlan-id  
br0               1 PVID Egress Untagged
[edit]
vyos@r14#
Jul 26 2022, 10:42 AM · VyOS 1.4 Sagitta (1.4.0-GA), VyOS 1.3 Equuleus (1.3.2)
Viacheslav closed T4568: show vpn debug peer doesn't work as Resolved.
Jul 26 2022, 10:09 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4570: Exception when trying to set up VXLAN over Wireguard.

@aderouineau Describe please all steps of how to reproduce it (with commands set xxx)
I don't have any issues with it

set interfaces vxlan vxlan0 group '239.0.0.241'
set interfaces vxlan vxlan0 mtu '1370'
set interfaces vxlan vxlan0 port '4789'
set interfaces vxlan vxlan0 source-interface 'wg0'
set interfaces vxlan vxlan0 vni '123'
set interfaces wireguard wg0 address '100.64.0.1/24'
set interfaces wireguard wg0 peer PEER01 allowed-ips '0.0.0.0/0'
set interfaces wireguard wg0 peer PEER01 public-key 'VVfR5S0yi+QPEJRLr25ZAfzFnwZM40G5WCZ/7ou7h3k='
set interfaces wireguard wg0 private-key 'yGOy08Kv8KUe8rsO6WHeo5jC7YdOAzQK0SJkDFQWlmA='
Jul 26 2022, 10:01 AM · VyOS 1.4 Sagitta
Viacheslav changed the subtype of T4570: Exception when trying to set up VXLAN over Wireguard from "Task" to "Bug".
Jul 26 2022, 9:48 AM · VyOS 1.4 Sagitta
Viacheslav moved T4495: Combine BGP reset op commands from Open to Finished on the VyOS 1.4 Sagitta board.
Jul 26 2022, 9:47 AM · VyOS 1.4 Sagitta
Viacheslav moved T4556: fastnetmon: Allow configure white_list_path and populate with hosts/networks that should be ignored. from Open to Finished on the VyOS 1.4 Sagitta board.
Jul 26 2022, 9:45 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T4569: Rewrite show bridge to new format.

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

vyos@r14:~$ show bridge 
Bridge interface br0:
Member    State       MTU    Flags                            Prio
--------  ----------  -----  -------------------------------  ------
dum0      forwarding  1500   broadcast,noarp,up,lower_up      32
eth1.30   forwarding  1500   broadcast,multicast,up,lower_up  32
eth1.55   forwarding  1500   broadcast,multicast,up,lower_up  32
Jul 26 2022, 9:35 AM · VyOS 1.4 Sagitta
aalmenar closed T4556: fastnetmon: Allow configure white_list_path and populate with hosts/networks that should be ignored. as Resolved.

Mark as resolved as a i have tested it on 1.4-rolling-202207260217 and has been merged

Jul 26 2022, 8:28 AM · VyOS 1.4 Sagitta
aderouineau added a comment to T4497: ping cannot force ipv4 or ipv6.

@n.fort source-address is useful especially when more precision is needed. At the moment its use is cumbersome as it does not provide help hint on the addresses assigned to the router, forcing an operator to first list those addresses.

Jul 26 2022, 2:14 AM · VyOS 1.4 Sagitta
aderouineau added a comment to T4492: Incorrect list of neighbors in help for "show bgp vrf VRF neighbors".

As of 1.4-rolling-202207250217 this is still not resolved.

Jul 26 2022, 2:10 AM · VyOS 1.4 Sagitta
aderouineau closed T4495: Combine BGP reset op commands as Resolved.

I can confirm that at least as of version 1.4-rolling-202207250217the op commands have been merged:

vyos@vyos-lab:~$ reset bgp
Possible completions:
  <x.x.x.x>     BGP IPv4/IPv6 neighbor to clear
  <h:h:h:h:h:h:h:h>
  1-4294967295  Reset peers with the AS number
  all           Clear all peers
  external      Reset all external peers
  ipv4          IPv4 Address Family
  ipv6          IPv6 Address Family
  l2vpn         Layer 2 Virtual Private Network Address Family
  peer-group    Reset all members of peer-group
  prefix        Clear bestpath and re-advertise
  vrf           Virtual Routing and Forwarding (VRF)
Jul 26 2022, 2:09 AM · VyOS 1.4 Sagitta
aderouineau created T4570: Exception when trying to set up VXLAN over Wireguard.
Jul 26 2022, 2:01 AM · VyOS 1.4 Sagitta

Jul 25 2022

aalmenar added a comment to T4561: reset ip bgp <neighbor> allows reset bgp peer for ipv4, also it should exist one for ipv6.

@c-po which one is the new syntax?

Jul 25 2022, 10:35 PM · VyOS Rolling
aalmenar closed T4474: Adding more than 1 prefix-list is ignored as Invalid.
Jul 25 2022, 10:33 PM
aalmenar added a comment to T4474: Adding more than 1 prefix-list is ignored.

@Viacheslav i believe this one can be closed ge and le where inverted order until i found out the error.

Jul 25 2022, 10:33 PM
c-po committed rVYOSONEX8274e9706adf: bgp: T4560: neighbor/peer-group local-as option is only allowed for eBGP.
Jul 25 2022, 7:10 PM
c-po closed T4560: VRF and BGP neighbor local-as error as Resolved.
Jul 25 2022, 6:52 PM · VyOS 1.4 Sagitta
c-po committed rVYOSONEX96d2939780dc: fastnetmon: T2659: PID file location is static and can't be changed.
Jul 25 2022, 6:20 PM
Viacheslav committed rVYOSONEX870fe6c828a8: ipsec: T4568: Fix debug IPsec peer.
Jul 25 2022, 5:38 PM
GitHub <noreply@github.com> committed rVYOSONEXd9ef43e31106: Merge pull request #1433 from sever-sever/T4568 (authored by c-po).
Jul 25 2022, 5:38 PM
aalmenar committed rVYOSONEXbd119de6fd32: fastnetmon: T4556: Allow configure white_list_path and populate with….
Jul 25 2022, 5:36 PM