Page MenuHomeVyOS Platform
Feed Advanced Search

Jul 10 2023

Viacheslav added a comment to T775: Config Sync between two VyOS routers.

@trae32566 Thanks I can confirm it is a bug with using commit-archive location, there is a separate task https://vyos.dev/T5348
Thanks

Jul 10 2023, 1:57 PM · VyOS 1.4 Sagitta
Viacheslav changed the subtype of T5348: Service config-sync can freeze the secondary router if it has commit-archive location from "Feature Request" to "Bug".
Jul 10 2023, 1:56 PM · VyOS 1.4 Sagitta (1.4.0-epa1), Restricted Project, VyOS 1.5 Circinus
Viacheslav created T5348: Service config-sync can freeze the secondary router if it has commit-archive location.
Jul 10 2023, 1:55 PM · VyOS 1.4 Sagitta (1.4.0-epa1), Restricted Project, VyOS 1.5 Circinus
jestabro added a comment to T5347: Compare commit revision bug.

As shared with @Viacheslav , I see the following on a 1.4 VM, built last week:

Jul 10 2023, 1:15 PM · VyOS 1.4 Sagitta
Viacheslav created T5347: Compare commit revision bug.
Jul 10 2023, 12:54 PM · VyOS 1.4 Sagitta
jestabro closed T5345: Error incorrectly raised in revised multi_to_list when tag node value name == tag node name as Resolved.
Jul 10 2023, 12:35 AM · VyOS 1.4 Sagitta

Jul 9 2023

jvoss created T5346: MPLS sysctl not persistent for L2TP interfaces.
Jul 9 2023, 10:48 PM · VyOS 1.4 Sagitta
jestabro triaged T5345: Error incorrectly raised in revised multi_to_list when tag node value name == tag node name as Urgent! priority.
Jul 9 2023, 7:49 PM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

@Viacheslav So I figured out what's causing it..it looks like for some reason my commit-archive configuration on the secondary side (which works fine normally) is causing the hanging. As soon as I remove the set system config-management commit-archive on the secondary side, everything starts working fine, even with my full firewall configuration. Has this been tested at all with commit-archive? Could there be some sort of bug happening with it? Here's the section of the secondary side config, for reference:

[system config-management]
- commit-archive {
-     location "sftp://<someUser>:<somePass>@stor01a-rh9.int.trae32566.org/int/cr01b-vyos"
-     source-address "fd52:d62e:8011:fffe::3"
- }
Jul 9 2023, 6:21 PM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

Yeah I tried increasing the timeout to the maximum (300) and it still timed out, but I'll try config-sync mode 'set' I guess. The config is fairly large; 549 lines of just set firewall.

Jul 9 2023, 6:01 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T775: Config Sync between two VyOS routers.

@Viacheslav I'm not sure why, but it appears that after doing this, there is high CPU usage on the secondary side, and eventually it stops responding entirely (bgp sessions go down, no response to anything via icmp) and has to be hard reset; it won't even respond to a console login attempt:

image.png (668×819 px, 380 KB)

This makes me think something in my firewall configuration is making it unhappy. I can paste my full firewall config somewhere if you'd like, but I'd prefer if it's not public for security reasons (is email fine?).

Jul 9 2023, 5:58 PM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

@Viacheslav I'm not sure why, but it appears that after doing this, there is high CPU usage on the secondary side, and eventually it stops responding entirely (bgp sessions go down, no response to anything via icmp) and has to be hard reset; it won't even respond to a console login attempt:

image.png (668×819 px, 380 KB)

Jul 9 2023, 5:04 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T775: Config Sync between two VyOS routers.

@Viacheslav I think that fixed it...sorta. It looks like now it does sync successfully, though it appears to time out after awhile for some reason:

trae@cr01a-vyos:~$ configure
[edit]
trae@cr01a-vyos# set firewall name INT_TO_LOCAL rule 80 destination address 192.168.253.2-192.168.253.3                                                                                                                                                                                                                    
[edit]
trae@cr01a-vyos# commit
INFO:vyos_config_sync:Config synchronization: Mode=load, Secondary=cr01b-vyos.int.rtr.trae32566.org

An error occurred: HTTPSConnectionPool(host='cr01b-vyos.int.rtr.trae32566.org', port=443): Read timed out. (read timeout=60)
ERROR:vyos_config_sync:An error occurred: HTTPSConnectionPool(host='cr01b-vyos.int.rtr.trae32566.org', port=443): Read timed out. (read timeout=60)

That being said, it does appear to have set the config on the other side:

trae@cr01b-vyos# show firewall name INT_TO_LOCAL rule 80
 action accept
 description "API access"
 destination {
     address 192.168.253.2-192.168.253.3
 }
 protocol tcp
 source {
     address 192.168.253.2-192.168.253.3
 }
trae@cr01b-vyos# cat /var/log/nginx/access.log 
fd52:d62e:8011:fffe::2 - - [09/Jul/2023:09:54:23 -0500] "POST /configure-section HTTP/1.1" 200 80 "-" "python-requests/2.28.1"
fd52:d62e:8011:fffe::2 - - [09/Jul/2023:09:55:25 -0500] "POST /configure-section HTTP/1.1" 499 0 "-" "python-requests/2.28.1"

Also, If it's any easier / you'd prefer I can set up a Webex or something.

Jul 9 2023, 4:18 PM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

@Viacheslav I think that fixed it...sorta. It looks like now it does sync successfully, though it appears to time out after awhile for some reason:

trae@cr01a-vyos:~$ sudo nano -c +140 /run/scripts/commit/post-hooks.d/vyos_config_sync
trae@cr01a-vyos:~$ sudo systemctl restart vyos-configd
trae@cr01a-vyos:~$ configure
[edit]
trae@cr01a-vyos# set firewall name INT_TO_LOCAL rule 80 destination address 192.168.253.2-192.168.253.3                                                                                                                                                                                                                    
[edit]
trae@cr01a-vyos# commit
INFO:vyos_config_sync:Config synchronization: Mode=load, Secondary=cr01b-vyos.int.rtr.trae32566.org
Jul 9 2023, 3:00 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T775: Config Sync between two VyOS routers.

@trae32566 Thanks, could you change one file and comment on one check?

sudo nano -c +140 /run/scripts/commit/post-hooks.d/vyos_config_sync

Set comment

# Config sync only if sections changed
#if not any(map(is_section_revised, sections)):
#    return
Jul 9 2023, 2:49 PM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

Same version on both, 1.4-rolling-202307070317. Also, if you can disable 2 factor on my Slack account ([email protected]) we can talk in Slack about this (lost my 2 factor app / backup codes).
@Viacheslav

Jul 9 2023, 2:45 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T775: Config Sync between two VyOS routers.

@trae32566 Which version on the remote site?

Jul 9 2023, 2:35 PM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

@trae32566 Try the same with ip address, I tested with IPv4 addresses

Jul 9 2023, 1:15 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T775: Config Sync between two VyOS routers.

@trae32566 Try the same with ip address, I tested with IPv4 addresses

Jul 9 2023, 11:06 AM · VyOS 1.4 Sagitta
trae32566 added a comment to T775: Config Sync between two VyOS routers.

@Viacheslav Thanks for all the work on this, I'm glad to see it moving along! This doesn't appear to work for me on 1.4-rolling-202307070317; I've configured it for both firewall and NAT and it appears to not be getting triggered (though I've only tried firewall changes so far). Here's the primary side (cr01a-vyos.int) config:

trae@cr01a-vyos# show service config-sync
 mode load
 secondary {
     address cr01b-vyos.int.rtr.trae32566.org
     key <MyKey>
 }
 section nat
 section firewall
Jul 9 2023, 3:36 AM · VyOS 1.4 Sagitta

Jul 8 2023

Viacheslav changed the status of T5343: BGP peer group VPNv4 & VPNv6 Address Family Support from Open to Needs testing.
Jul 8 2023, 5:07 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5344: Container Auto Pull Image from Open to In progress.
Jul 8 2023, 1:26 PM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
yzguy updated the task description for T5344: Container Auto Pull Image.
Jul 8 2023, 4:03 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
yzguy updated the task description for T5344: Container Auto Pull Image.
Jul 8 2023, 3:35 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta
yzguy created T5344: Container Auto Pull Image.
Jul 8 2023, 3:33 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta

Jul 7 2023

jestabro added a comment to T5330: Keep track of source of config dict value when merging defaults.

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

Jul 7 2023, 2:13 PM · VyOS 1.4 Sagitta
diekos added a comment to T970: Support matching domain name in firewall rules.

I tested this feature with the following firewall config:

set firewall group domain-group DG_TEST address 'nu.nl'
set firewall group domain-group DG_TEST address 'www.nu.nl'
set firewall interface eth1 out name 'ETH1_OUT'
set firewall name ETH1_OUT default-action 'accept'
set firewall name ETH1_OUT rule 10 action 'drop'
set firewall name ETH1_OUT rule 10 destination group domain-group 'DG_TEST'
Jul 7 2023, 1:43 PM · VyOS 1.4 Sagitta (1.4.0-epa3)
Viacheslav changed the status of T775: Config Sync between two VyOS routers from Open to Needs testing.
Jul 7 2023, 7:17 AM · VyOS 1.4 Sagitta
aztec102 added a comment to T5325: Moschip MCS9900 fix driver.
vyos@vyos:~$ zcat /proc/config.gz | grep PARPORT
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
# CONFIG_PARPORT is not set
vyos@vyos:~$ uname -a
Linux vyos 6.1.37-amd64-vyos #1 SMP PREEMPT_DYNAMIC Wed Jul  5 12:01:47 UTC 2023 x86_64 GNU/Linux
Jul 7 2023, 5:00 AM · VyOS 1.4 Sagitta

Jul 6 2023

marvin added a comment to T5267: Another corruption on upgrade.

A developer I work with reports this:

After nearly 30 reinstalls the upgrade finally blew up. The issue is in the initial copying of the config file, between lines 182 and 219 in the install script. That's where it happens... what's causing it / how it happens is still unclear...

Jul 6 2023, 6:17 PM · VyOS 1.4 Sagitta
n.fort changed the status of T5340: SNMP and VRF from In progress to Needs testing.
Jul 6 2023, 6:10 PM · VyOS 1.4 Sagitta
n.fort added a comment to T5154: Chrony - multiple listen addresses.

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

Jul 6 2023, 6:05 PM · VyOS 1.4 Sagitta
n.fort changed the status of T5154: Chrony - multiple listen addresses from Confirmed to In progress.
Jul 6 2023, 6:05 PM · VyOS 1.4 Sagitta
jvoss created T5343: BGP peer group VPNv4 & VPNv6 Address Family Support.
Jul 6 2023, 4:34 PM · VyOS 1.4 Sagitta
marvin added a comment to T5267: Another corruption on upgrade.

I'm encountering similar issues on upgrade as well: the configuration fails to apply because of a broken config.boot file (incomplete; stops partway through, perhaps a migration issue?)

Jul 6 2023, 3:04 PM · VyOS 1.4 Sagitta
n.fort changed the status of T5154: Chrony - multiple listen addresses from Open to Confirmed.
Jul 6 2023, 12:04 PM · VyOS 1.4 Sagitta
n.fort claimed T5154: Chrony - multiple listen addresses.
Jul 6 2023, 11:22 AM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5341: Improve CLI for high-availability virtual-server to work with multiple ports.
Jul 6 2023, 11:19 AM · VyOS 1.4 Sagitta
n.fort added a comment to T4500: Missing firewall logs.

Can we close this task?

Jul 6 2023, 10:24 AM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5341: Improve CLI for high-availability virtual-server to work with multiple ports.
Jul 6 2023, 9:22 AM · VyOS 1.4 Sagitta
Viacheslav created T5341: Improve CLI for high-availability virtual-server to work with multiple ports.
Jul 6 2023, 9:10 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5325: Moschip MCS9900 fix driver.

Check if it exists in the kernel.

zcat /proc/config.gz | grep PARPORT
Jul 6 2023, 7:35 AM · VyOS 1.4 Sagitta
Viacheslav closed T5336: Add Swedish keyboard-layout as Resolved.

@Apachez Thanks!

Jul 6 2023, 7:09 AM · VyOS 1.4 Sagitta
Apachez added a comment to T5336: Add Swedish keyboard-layout.
set system option keyboard-layout se-latin1

Verified in vyos-1.4-rolling-202307060317-amd64.iso but Im biased :-)

Jul 6 2023, 6:13 AM · VyOS 1.4 Sagitta
blackhole added a comment to T5267: Another corruption on upgrade.

Just tried to upgrade from April image and its failed with this error :(

Jul 6 2023, 5:16 AM · VyOS 1.4 Sagitta
cuongdt1994 added a comment to T5325: Moschip MCS9900 fix driver.

Right, i found in modules ArchLinux support it.

Jul 6 2023, 5:12 AM · VyOS 1.4 Sagitta
jestabro added a comment to T5330: Keep track of source of config dict value when merging defaults.

Implementation here:
https://github.com/vyos/vyos-1x/compare/current...jestabro:from-defaults

Jul 6 2023, 4:06 AM · VyOS 1.4 Sagitta
aztec102 added a comment to T5325: Moschip MCS9900 fix driver.

@cuongdt1994
I installed Arch linux, there is already a parport_pc in the kernel, the device is perfectly defined.
Why it doesn’t work here, I don’t understand, despite the fact that there is no parport module in lsmod

Jul 6 2023, 2:52 AM · VyOS 1.4 Sagitta
cuongdt1994 added a comment to T5325: Moschip MCS9900 fix driver.

@aztec102 https://github.com/torvalds/linux/blob/master/drivers/parport/Kconfig

Jul 6 2023, 2:42 AM · VyOS 1.4 Sagitta
aztec102 added a comment to T5325: Moschip MCS9900 fix driver.
vyos@vyos:~$ show version 
Version:          VyOS 1.4-rolling-202307051212
Release train:    current
Jul 6 2023, 2:24 AM · VyOS 1.4 Sagitta

Jul 5 2023

fernando added a comment to T5339: Geneve interface - option to use IPv4 as inner protocol .

basic configuration :

Jul 5 2023, 3:31 PM · VyOS 1.4 Sagitta
fernando changed the status of T5339: Geneve interface - option to use IPv4 as inner protocol from In progress to Needs testing.
Jul 5 2023, 3:30 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5336: Add Swedish keyboard-layout from In progress to Needs testing.
Jul 5 2023, 3:21 PM · VyOS 1.4 Sagitta
Apachez added a comment to T5336: Add Swedish keyboard-layout.

Merged with current: https://github.com/vyos/vyos-1x/commit/8afdb5ad5515a0a1ae716204f397f3d974cec714

Jul 5 2023, 3:18 PM · VyOS 1.4 Sagitta
JonSanMan added a comment to T5314: QOS Default classes are not configured with correct qdisc.

In preparing/testing a revised pull-request to fix a merge conflict, with version 1.4-rolling-202307050317, the testing commands need to be slightly modified.

Jul 5 2023, 3:02 PM · VyOS 1.4 Sagitta
JonSanMan renamed T5314: QOS Default classes are not configured with correct qdisc from Default qos classes are not configured with correct qdisc to QOS Default classes are not configured with correct qdisc.
Jul 5 2023, 2:56 PM · VyOS 1.4 Sagitta
Apachez added a comment to T5336: Add Swedish keyboard-layout.

Pull request created: https://github.com/vyos/vyos-1x/pull/2075

Jul 5 2023, 2:38 PM · VyOS 1.4 Sagitta
Apachez added a comment to T5336: Add Swedish keyboard-layout.

Actual file to modify for commit: https://github.com/vyos/vyos-1x/blob/current/interface-definitions/system-option.xml.in

Jul 5 2023, 1:47 PM · VyOS 1.4 Sagitta
aztec102 added a comment to T5325: Moschip MCS9900 fix driver.

@cuongdt1994 Thanks a lot, I'll definitely check it out.

Jul 5 2023, 1:27 PM · VyOS 1.4 Sagitta
n.fort changed the status of T5340: SNMP and VRF from Confirmed to In progress.
Jul 5 2023, 1:26 PM · VyOS 1.4 Sagitta
Apachez added a comment to T5336: Add Swedish keyboard-layout.

Verified this particular request by modifying node.def and be able to select se-latin1.

Jul 5 2023, 1:24 PM · VyOS 1.4 Sagitta
Apachez added a comment to T5336: Add Swedish keyboard-layout.

Selectable keymaps are available in /usr/share/keymaps/i386/

Jul 5 2023, 1:24 PM · VyOS 1.4 Sagitta
Viacheslav reassigned T5336: Add Swedish keyboard-layout from Viacheslav to Apachez.
Jul 5 2023, 1:22 PM · VyOS 1.4 Sagitta
fernando changed the status of T5339: Geneve interface - option to use IPv4 as inner protocol from Open to In progress.
Jul 5 2023, 1:13 PM · VyOS 1.4 Sagitta
fernando added a comment to T5339: Geneve interface - option to use IPv4 as inner protocol .

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

Jul 5 2023, 1:13 PM · VyOS 1.4 Sagitta
n.fort added a comment to T5340: SNMP and VRF.

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

Jul 5 2023, 1:11 PM · VyOS 1.4 Sagitta
cuongdt1994 added a comment to T5325: Moschip MCS9900 fix driver.

Try and report, it's included in kernel:
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m

Jul 5 2023, 1:09 PM · VyOS 1.4 Sagitta
n.fort changed the status of T5340: SNMP and VRF from Open to Confirmed.
Jul 5 2023, 10:38 AM · VyOS 1.4 Sagitta
n.fort created T5340: SNMP and VRF.
Jul 5 2023, 10:36 AM · VyOS 1.4 Sagitta

Jul 4 2023

syncer triaged T5338: Add 'mpls bgp forwarding' feature as Normal priority.
Jul 4 2023, 11:43 PM · VyOS 1.4 Sagitta
fernando claimed T5339: Geneve interface - option to use IPv4 as inner protocol .
Jul 4 2023, 8:35 PM · VyOS 1.4 Sagitta
fernando created T5339: Geneve interface - option to use IPv4 as inner protocol .
Jul 4 2023, 8:34 PM · VyOS 1.4 Sagitta
cuongdt1994 added a comment to T5325: Moschip MCS9900 fix driver.

Ok, I will try

Jul 4 2023, 3:50 PM · VyOS 1.4 Sagitta
aztec102 added a comment to T5325: Moschip MCS9900 fix driver.

@cuongdt1994
The kernel has assembled, as a result, the image now cannot be assembled
vyos-build/data/defaults.json change version 6.4.0

Jul 4 2023, 3:22 PM · VyOS 1.4 Sagitta
a.apostoliuk added a subtask for T5337: MPLS/BGP: Route leak does not happen from the VPNv4 table to specific vrf: T5338: Add 'mpls bgp forwarding' feature.
Jul 4 2023, 1:45 PM · VyOS 1.4 Sagitta
a.apostoliuk added a parent task for T5338: Add 'mpls bgp forwarding' feature: T5337: MPLS/BGP: Route leak does not happen from the VPNv4 table to specific vrf.
Jul 4 2023, 1:45 PM · VyOS 1.4 Sagitta
a.apostoliuk changed the status of T5338: Add 'mpls bgp forwarding' feature from Open to In progress.
Jul 4 2023, 1:44 PM · VyOS 1.4 Sagitta
a.apostoliuk created T5338: Add 'mpls bgp forwarding' feature.
Jul 4 2023, 1:44 PM · VyOS 1.4 Sagitta
a.apostoliuk added a comment to T5337: MPLS/BGP: Route leak does not happen from the VPNv4 table to specific vrf.

It can work if you use

Jul 4 2023, 1:40 PM · VyOS 1.4 Sagitta
daniil added a comment to T4989: QoS Policy Limiter - classes for marked traffic do not work.
Version:          VyOS 1.4-rolling-202307040317
Jul 4 2023, 1:36 PM · vyatta-cfg-qos, VyOS 1.4 Sagitta
SrividyaA created T5337: MPLS/BGP: Route leak does not happen from the VPNv4 table to specific vrf.
Jul 4 2023, 1:06 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5336: Add Swedish keyboard-layout.
Jul 4 2023, 10:58 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5336: Add Swedish keyboard-layout.

There are several layouts

se-fi-ir209
se-fi-lat6
se-ir209
se-lat6
Jul 4 2023, 10:33 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5336: Add Swedish keyboard-layout from Open to In progress.
Jul 4 2023, 9:56 AM · VyOS 1.4 Sagitta
Viacheslav closed T5333: Policy base routing PBR generetes incorrect rules with name POSTROUTING as Resolved.
Jul 4 2023, 9:50 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5335: ISIS: error when loading config from file from In progress to Needs testing.
Jul 4 2023, 9:22 AM · VyOS 1.4 Sagitta
Viacheslav created T5336: Add Swedish keyboard-layout.
Jul 4 2023, 9:07 AM · VyOS 1.4 Sagitta
Cheeze_It closed T5081: ISIS and OSPF syncronization with IGP-LDP sync as Resolved.
Jul 4 2023, 12:08 AM · VyOS 1.4 Sagitta

Jul 3 2023

Cheeze_It added a comment to T5081: ISIS and OSPF syncronization with IGP-LDP sync.

Under normal operations the VyOS box looks like this for OSPF:

Jul 3 2023, 11:47 PM · VyOS 1.4 Sagitta
sarthurdev claimed T5275: Add op mode commands for exporting certificates to PEM files with correct headers.
Jul 3 2023, 8:48 PM · VyOS 1.3 Equuleus (1.3.6), VyOS 1.4 Sagitta
c-po closed T5334: ospf: add support for External Route Summarisation Type-5 and Type-7 as Resolved.
Jul 3 2023, 7:04 PM · VyOS 1.4 Sagitta
c-po added a comment to T5334: ospf: add support for External Route Summarisation Type-5 and Type-7.

Added new commands and documentation

Jul 3 2023, 7:03 PM · VyOS 1.4 Sagitta
jvoss changed the status of T5335: ISIS: error when loading config from file from Open to In progress.

PR submitted for review:

Jul 3 2023, 2:55 PM · VyOS 1.4 Sagitta
jvoss created T5335: ISIS: error when loading config from file.
Jul 3 2023, 2:43 PM · VyOS 1.4 Sagitta
cuongdt1994 added a comment to T5325: Moschip MCS9900 fix driver.

@cuongdt1994 I did not build the kernel, I built the image and specified the modules in the file. Which you were talking about earlier.

изображение.png (178×1 px, 21 KB)

Jul 3 2023, 1:55 PM · VyOS 1.4 Sagitta
diekos added a comment to T5334: ospf: add support for External Route Summarisation Type-5 and Type-7.

I can update the documentation when the feature is implemented.

Jul 3 2023, 1:52 PM · VyOS 1.4 Sagitta
c-po changed the status of T5334: ospf: add support for External Route Summarisation Type-5 and Type-7 from Open to In progress.
Jul 3 2023, 1:12 PM · VyOS 1.4 Sagitta
c-po created T5334: ospf: add support for External Route Summarisation Type-5 and Type-7.
Jul 3 2023, 1:12 PM · VyOS 1.4 Sagitta
aztec102 added a comment to T5325: Moschip MCS9900 fix driver.

@cuongdt1994 I did not build the kernel, I built the image and specified the modules in the file. Which you were talking about earlier.

изображение.png (178×1 px, 21 KB)

Jul 3 2023, 12:31 PM · VyOS 1.4 Sagitta
Viacheslav closed T5295: QoS shaper incorrect rate limit the traffic, a subtask of T5048: QoS doesn't work correctly root task, as Resolved.
Jul 3 2023, 12:14 PM · VyOS 1.4 Sagitta