Page MenuHomeVyOS Platform
Feed Search

Apr 16 2021

Viacheslav added a comment to T3481: Exclude tag node values from key mangling.

@jestabro Cool!!!

Apr 16 2021, 10:49 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro added a comment to T3481: Exclude tag node values from key mangling.
>>> from vyos.config import Config
>>> import pprint
>>> conf = Config()
>>> # no mangling
... tmp = conf.get_config_dict(['simple'], get_first_key=True)
>>> pprint.pprint(tmp)
{'some-tag-node': {'some-foo': {'just-a-node': {'single-value': 'bar'}},
                   'some-other-foo': {'just-a-node': {'multiple-value': ['first',
                                                                         'second']}}}}
>>> # standard mangling
... tmp = conf.get_config_dict(['simple'], get_first_key=True, key_mangling=('-', '_'))
>>> pprint.pprint(tmp)
{'some_tag_node': {'some_foo': {'just_a_node': {'single_value': 'bar'}},
                   'some_other_foo': {'just_a_node': {'multiple_value': ['first',
                                                                         'second']}}}}
>>> # mangling with no_tag_node_value_mangle=True
... tmp = conf.get_config_dict(['simple'], get_first_key=True, key_mangling=('-', '_'), no_tag_node_value_mangle=True)
>>> pprint.pprint(tmp)
{'some_tag_node': {'some-foo': {'just_a_node': {'single_value': 'bar'}},
                   'some-other-foo': {'just_a_node': {'multiple_value': ['first',
                                                                         'second']}}}}
>>>
Apr 16 2021, 9:22 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro added a subtask for T3250: PPPoE server: wrong local usernames: T3481: Exclude tag node values from key mangling.
Apr 16 2021, 9:19 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro added a parent task for T3481: Exclude tag node values from key mangling: T3250: PPPoE server: wrong local usernames.
Apr 16 2021, 9:19 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro changed the status of T3481: Exclude tag node values from key mangling from Open to Needs testing.
Apr 16 2021, 9:11 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
Unknown Object (User) created T3480: Does not possible to change console baud-rate.
Apr 16 2021, 5:45 PM · VyOS 1.4 Sagitta
c-po created T3479: route-maps containing "aggregator as" can not be deleted.
Apr 16 2021, 5:08 PM · VyOS 1.4 Sagitta
BiMW updated the task description for T3478: Radius.
Apr 16 2021, 7:12 AM · VyOS 1.4 Sagitta
BiMW created T3478: Radius.
Apr 16 2021, 7:10 AM · VyOS 1.4 Sagitta
erkin updated the task description for T3356: Script for remote file transfers.
Apr 16 2021, 1:19 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
dmbaturin added a comment to T3472: commit-confirm script not found.

Is there a specific reason not to put it in vyos-1x instead?

Apr 16 2021, 1:09 AM · VyOS 1.4 Sagitta

Apr 15 2021

jack9603301 added a comment to T3420: Support UPNP protocol.

Thank you. If you have any questions, please keep in touch.

Apr 15 2021, 7:42 PM
ZPrime added a comment to T3420: Support UPNP protocol.

@jack9603301 Unfortunately the only environment I have to test in is home, and my wife would probably kill me. ;) I also don't have a second "router PC" available right now which I would need before I can spin up VyOS and give it a try. I need to keep the other system untouched so I have something I can fall back on if I can't make VyOS work the way I want, and the hardware is old enough that if I virtualize my router OS, network performance suffers. I tried using ESXi with OPNsense and WAN throughput was down 200-300Mbps vs. what I can do on the bare metal.

Apr 15 2021, 7:26 PM
jack9603301 added a comment to T3420: Support UPNP protocol.

@ZPrime Although UPNP is not merged, you are welcome to test it if you wish, and if you have any questions, please let me know (you can also get in touch with me on Stack) so I can fix it before merging

Apr 15 2021, 5:56 PM
carl.byington created T3477: inconsistent documentation show ipv6 bgp.
Apr 15 2021, 4:15 PM · Restricted Project
carl.byington added a comment to T3376: Setting ipv6 address autoconf causes all interfaces besides the target to lose their IP.

ipv6 address autoconf works here. It does pick up a v6 address from the RA - I had an error in the config on the router issuing the RA announcements, and thought that autoconf was not working, but it does. Perhaps this issue should be closed?

Apr 15 2021, 4:05 PM · VyOS 1.4 Sagitta
dmbaturin updated the task description for T3476: Update availability check.
Apr 15 2021, 1:41 PM · VyOS 1.4 Sagitta
dmbaturin created T3476: Update availability check.
Apr 15 2021, 1:40 PM · VyOS 1.4 Sagitta
Viacheslav closed T3386: PPPoE-server don't start with local authentication as Resolved.
Apr 15 2021, 9:39 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
Viacheslav closed T3190: Unable to subtract value from local-preference in route-map as Resolved.
Apr 15 2021, 9:37 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T3333: "show vpn ipsec sa" reports ESP tunnels to be up when they are not. from Open to Needs testing.
Apr 15 2021, 7:24 AM · VyOS 1.2 Crux (VyOS 1.2.8)
c-po renamed T3318: Update Linux Kernel to v5.4.208 / 5.10.142 from Update Linux Kernel to v5.4.111 / 5.10.29 to Update Linux Kernel to v5.4.112 / 5.10.30.
Apr 15 2021, 6:45 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta

Apr 14 2021

jestabro added a comment to T3474: Revisit storing syntax version of interface definitions in XML file.

The suggested resolution is to define an include file with the syntaxVersion element. The syntaxVersion element contains the component name and version number; the including interface definition file corresponds to the conf_mode script. Hence, this defines a mapping

Apr 14 2021, 10:53 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
jestabro renamed T3475: XML dictionary cache unable to process syntaxVersion elements from XML dictionary cache unable to process syntaxVersion element to XML dictionary cache unable to process syntaxVersion elements.
Apr 14 2021, 7:30 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro updated the task description for T3475: XML dictionary cache unable to process syntaxVersion elements.
Apr 14 2021, 6:47 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro updated the task description for T3475: XML dictionary cache unable to process syntaxVersion elements.
Apr 14 2021, 6:31 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro added a subtask for T3475: XML dictionary cache unable to process syntaxVersion elements: T3474: Revisit storing syntax version of interface definitions in XML file.
Apr 14 2021, 6:30 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro added a parent task for T3474: Revisit storing syntax version of interface definitions in XML file: T3475: XML dictionary cache unable to process syntaxVersion elements.
Apr 14 2021, 6:30 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
jestabro added a parent task for T3475: XML dictionary cache unable to process syntaxVersion elements: T1962: Add syntax version to schema.
Apr 14 2021, 6:28 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro triaged T3475: XML dictionary cache unable to process syntaxVersion elements as Normal priority.
Apr 14 2021, 6:28 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
jestabro updated the task description for T3474: Revisit storing syntax version of interface definitions in XML file.
Apr 14 2021, 6:15 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
jestabro added a parent task for T3474: Revisit storing syntax version of interface definitions in XML file: T1962: Add syntax version to schema.
Apr 14 2021, 6:13 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
jestabro triaged T3474: Revisit storing syntax version of interface definitions in XML file as Normal priority.
Apr 14 2021, 6:13 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
Viacheslav assigned T3425: Scripts from the /config/scripts/ folder do not run on live system to zsdc.
Apr 14 2021, 6:09 PM · VyOS 1.3 Equuleus (1.3.0-epa2)
Viacheslav added a comment to T3333: "show vpn ipsec sa" reports ESP tunnels to be up when they are not..

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

Apr 14 2021, 5:51 PM · VyOS 1.2 Crux (VyOS 1.2.8)
Viacheslav updated the task description for T3473: IPSec op-mode show sa error.
Apr 14 2021, 4:24 PM · VyOS 1.4 Sagitta
Viacheslav created T3473: IPSec op-mode show sa error.
Apr 14 2021, 4:22 PM · VyOS 1.4 Sagitta
c-po assigned T3472: commit-confirm script not found to erkin.
Apr 14 2021, 4:05 PM · VyOS 1.4 Sagitta
FileGo renamed T3472: commit-confirm script not found from commit-confirm scrpt not found to commit-confirm script not found.
Apr 14 2021, 3:03 PM · VyOS 1.4 Sagitta
FileGo created T3472: commit-confirm script not found.
Apr 14 2021, 3:02 PM · VyOS 1.4 Sagitta
Viacheslav closed T3055: op-mode incorrect naming for ipsec policy-based tunnels as Resolved.
Apr 14 2021, 1:04 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
Viacheslav closed T3398: Can't commit as Resolved.
Apr 14 2021, 8:01 AM · VyOS 1.4 Sagitta

Apr 13 2021

zsdc created T3471: DHCP hook is not able to detect all running DHCP instances.
Apr 13 2021, 6:14 PM · VyOS 1.4 Sagitta (1.4.0-epa1), Restricted Project
zsdc edited a custom field on T3430: Cloud-init failing with “Unable to render networking” on VyOS 1.3.
Apr 13 2021, 5:29 PM · VyOS 1.4 Sagitta
zsdc changed the status of T3430: Cloud-init failing with “Unable to render networking” on VyOS 1.3 from Open to Needs testing.

The issue exists because the ifupdown package that is required for the eni renderer was removed by the https://github.com/vyos/vyatta-cfg-system/commit/3dd837f2d3518b7ddcf8e1ab68d8ab9f3eff0968
To not take back it again for all the platforms, the problem was resolved by the https://github.com/vyos/vyos-vm-images/commit/090e5367dc6df9b49c037e0b60f7adfafdf54a53 , so all the images created with the vyos-vm-images should not contain the problem with the renderer.

Apr 13 2021, 5:28 PM · VyOS 1.4 Sagitta
Viacheslav moved T3431: Show version all bug from Open to Backport Candidates on the VyOS 1.4 Sagitta board.
Apr 13 2021, 5:22 PM · VyOS 1.3 Equuleus (1.3.0-epa1), VyOS 1.4 Sagitta
zsdc added a comment to T200: Automated config deployment from a removable drive at installation time.

This task must be obsoleted by the https://phabricator.vyos.net/T2116

Apr 13 2021, 5:21 PM · Ideas
Viacheslav closed T3434: Refactoring bgp op-mode for support vrf as Resolved.
Apr 13 2021, 5:20 PM · VyOS 1.4 Sagitta
Viacheslav closed T3436: Refactoring ospf op-mode for support vrf as Resolved.
Apr 13 2021, 5:20 PM · VyOS 1.4 Sagitta
zsdc changed the status of T694: netboot PXE/gPXE/iPXE support from Open to In progress.

Just a small update on this.
PXE boot service for all 1.2 / 1.3 / 1.4 versions is up and running in private testing.

Apr 13 2021, 5:11 PM · VyOS Rolling
Viacheslav changed the status of T3455: system users can not be added in "edit" from Open to Needs testing.
Apr 13 2021, 5:10 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
Thunderstorm added a comment to T3470: as-override isn't applied to frr.

PR# 803

Apr 13 2021, 4:17 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T3455: system users can not be added in "edit".

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

Apr 13 2021, 4:09 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
Thunderstorm triaged T3470: as-override isn't applied to frr as Low priority.
Apr 13 2021, 4:04 PM · VyOS 1.4 Sagitta
Thunderstorm claimed T3470: as-override isn't applied to frr.

looks like this was missing in the bgp template
manually adding to /usr/share/vyos/templates/frr/bgp.frr.tmpl:

{%       if afi_config.as_override is defined %}
  neighbor {{ neighbor }} as-override
{%       endif %}
Apr 13 2021, 4:03 PM · VyOS 1.4 Sagitta
Thunderstorm updated the task description for T3470: as-override isn't applied to frr.
Apr 13 2021, 4:02 PM · VyOS 1.4 Sagitta
Thunderstorm created T3470: as-override isn't applied to frr.
Apr 13 2021, 4:00 PM · VyOS 1.4 Sagitta

Apr 12 2021

ZPrime added a comment to T3420: Support UPNP protocol.

UPnP is something I require (as a home user with multiple gaming systems), so I'm very happy to see this making progress in VyOS. I've been getting tired of the mess over in pfSense/OPNsense-land, wanting to try a Linux-based router, and I'm familiar with VyOS from past experience with "EdgeOS" on Ubiquiti hardware so it was on the top of my list, but held back by lack of UPnP in the past.

Apr 12 2021, 9:53 PM
c-po changed the status of T3454: dhclient reject option from Unknown Status to Resolved.
Apr 12 2021, 7:53 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
c-po moved T3454: dhclient reject option from Backport Candidates to Finished on the VyOS 1.4 Sagitta board.
Apr 12 2021, 7:53 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
c-po moved T3454: dhclient reject option from Need Triage to Finished on the VyOS 1.3 Equuleus board.
Apr 12 2021, 7:53 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
c-po closed T3328: Bgp not possible to delete bgp route-map as Resolved.
Apr 12 2021, 7:36 PM · VyOS 1.4 Sagitta
dtoux added a comment to T3427: Show prefix received via IA_PD in interface info.

Sorry for the late reply, I've dismantled the setup as I needed to put the PPP link back in use, I will look into it again tonight. In essence, it would be good to see something like this on terse view:

Apr 12 2021, 5:54 PM
kevinrausch created T3468: Tunnel interfaces aren't suggested as being available for bridging (regression).
Apr 12 2021, 6:50 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta

Apr 11 2021

kabaga added a comment to T3398: Can't commit.

This can be close. The commit is working again after upgrading to the latest rolling

Apr 11 2021, 8:52 PM · VyOS 1.4 Sagitta
SrividyaA added a comment to T3458: vyos docs missing gretap from tunnel section.

Submitted following PR:

Apr 11 2021, 5:55 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project, VyOS 1.4 Sagitta
jack9603301 closed T3435: NAT rules show corruption as Resolved.
Apr 11 2021, 10:14 AM · VyOS 1.4 Sagitta
c-po renamed T3318: Update Linux Kernel to v5.4.208 / 5.10.142 from Update Linux Kernel to v5.4.110 / 5.10.28 to Update Linux Kernel to v5.4.111 / 5.10.29.
Apr 11 2021, 9:09 AM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta

Apr 10 2021

c-po changed the status of T3328: Bgp not possible to delete bgp route-map from Open to In progress.
Apr 10 2021, 9:22 PM · VyOS 1.4 Sagitta
c-po added a comment to T3427: Show prefix received via IA_PD in interface info.

@dtoux could you provide us with a mocked up output what you would like to see?

Apr 10 2021, 9:20 PM
c-po moved T3454: dhclient reject option from Open to Backport Candidates on the VyOS 1.4 Sagitta board.
Apr 10 2021, 9:19 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
c-po moved T2108: Use minisign/signify instead of GPG for release signing from Open to Backlog on the VyOS 1.4 Sagitta board.
Apr 10 2021, 9:18 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.2 Crux (VyOS 1.2.9), VyOS 1.4 Sagitta
c-po closed T3460: bgp, Configuration FRR failed while commiting code as Resolved.
Apr 10 2021, 8:14 PM · VyOS 1.4 Sagitta
c-po added a comment to T3460: bgp, Configuration FRR failed while commiting code.

frr-reload output: 184 % Cannot have local-as same as BGP AS number

Apr 10 2021, 1:41 PM · VyOS 1.4 Sagitta
c-po changed the status of T3460: bgp, Configuration FRR failed while commiting code from Open to In progress.
Apr 10 2021, 1:40 PM · VyOS 1.4 Sagitta
c-po renamed T1711: BGP - migrate from tagNode to node (remove ASN from tagNode) from Bgp set local-AS number one time to BGP - migrate from tagNode to node (remove ASN from tagNode).
Apr 10 2021, 10:31 AM · VyOS 1.4 Sagitta

Apr 9 2021

scj643 added a comment to T3376: Setting ipv6 address autoconf causes all interfaces besides the target to lose their IP.

This issue seems to have gone away or I haven't noticed it recently.

Apr 9 2021, 5:03 PM · VyOS 1.4 Sagitta
carl.byington added a comment to T3376: Setting ipv6 address autoconf causes all interfaces besides the target to lose their IP.

I cannot reproduce this on VyOS 1.4-rolling-202104062128. Instead, on that version, ipv6 address autoconf commits, but the interface never picks up a v6 address.

Apr 9 2021, 4:54 PM · VyOS 1.4 Sagitta
c-po placed T264: Use base64 or hex format in ipsec.secrets to allow double quotes up for grabs.
Apr 9 2021, 12:25 PM · VyOS 1.4 Sagitta (1.4.1), VyOS 1.5 Circinus, VyOS Rolling
c-po closed T3464: OSPF: route-map names containing a hypen are not "found" as Resolved.
Apr 9 2021, 9:37 AM · VyOS 1.4 Sagitta

Apr 8 2021

joolli created T3466: Ping command not working as expected.
Apr 8 2021, 10:18 PM · VyOS 1.4 Sagitta
c-po changed the status of T3456: firewall: rules that should be deleted seem to be still in use from Unknown Status to Resolved.
Apr 8 2021, 7:35 PM · VyOS 1.2 Crux (VyOS 1.2.8)
c-po moved T3456: firewall: rules that should be deleted seem to be still in use from Backlog to Finished on the VyOS 1.2 Crux (VyOS 1.2.8) board.
Apr 8 2021, 7:35 PM · VyOS 1.2 Crux (VyOS 1.2.8)
c-po added a comment to T3464: OSPF: route-map names containing a hypen are not "found".

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

Apr 8 2021, 6:53 PM · VyOS 1.4 Sagitta
c-po closed T3463: Prevent IPv4 Route exchange with IPv6 neighbors as Resolved.
Apr 8 2021, 6:24 PM · VyOS 1.4 Sagitta
c-po changed the status of T3463: Prevent IPv4 Route exchange with IPv6 neighbors from Open to In progress.
Apr 8 2021, 6:11 PM · VyOS 1.4 Sagitta
c-po added a comment to T3463: Prevent IPv4 Route exchange with IPv6 neighbors.

Looks like that is actually working.

Apr 8 2021, 6:11 PM · VyOS 1.4 Sagitta
carl.byington closed T3462: show ipv6 bgp -- missing as Resolved.

Oops, I did not see that. Thanks.

Apr 8 2021, 6:08 PM · VyOS 1.4 Sagitta
carl.byington added a comment to T3463: Prevent IPv4 Route exchange with IPv6 neighbors.

I modified bgp.frr.tmpl, but systemctl restart vyos-configd did not seem to do anything. Rebooting the router produces the correct config:

Apr 8 2021, 6:05 PM · VyOS 1.4 Sagitta
c-po updated the task description for T3464: OSPF: route-map names containing a hypen are not "found".
Apr 8 2021, 3:21 PM · VyOS 1.4 Sagitta
c-po added a comment to T3374: IPv6 GRE Tunnel issues.

@linuxludo thanks for the heads-up - should be fixed in the next bugfix version of 5.10 then which I regularely update VyOS to. See T3318

Apr 8 2021, 1:51 PM · VyOS 1.4 Sagitta
c-po renamed T3318: Update Linux Kernel to v5.4.208 / 5.10.142 from Update Linux Kernel to v5.4.109 / 5.10.27 to Update Linux Kernel to v5.4.110 / 5.10.28.
Apr 8 2021, 1:51 PM · VyOS 1.3 Equuleus (1.3.2), VyOS 1.4 Sagitta
c-po added a comment to T3463: Prevent IPv4 Route exchange with IPv6 neighbors.

We probably should move the following statement https://github.com/vyos/vyos-1x/blob/current/data/templates/frr/bgp.frr.tmpl#L362-L364

Apr 8 2021, 12:41 PM · VyOS 1.4 Sagitta
linuxludo added a comment to T3374: IPv6 GRE Tunnel issues.

Just for your information.
The patch was added to kernel 5.4, 5.10 and 5.11.
https://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git/

Apr 8 2021, 12:04 PM · VyOS 1.4 Sagitta
c-po moved T3464: OSPF: route-map names containing a hypen are not "found" from Open to In Progress on the VyOS 1.4 Sagitta board.
Apr 8 2021, 11:04 AM · VyOS 1.4 Sagitta
c-po changed the status of T3464: OSPF: route-map names containing a hypen are not "found" from Open to In progress.
Apr 8 2021, 11:04 AM · VyOS 1.4 Sagitta
c-po updated the task description for T3464: OSPF: route-map names containing a hypen are not "found".
Apr 8 2021, 11:03 AM · VyOS 1.4 Sagitta
c-po created T3464: OSPF: route-map names containing a hypen are not "found".
Apr 8 2021, 9:41 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T3463: Prevent IPv4 Route exchange with IPv6 neighbors.

If you add neighbor/commit and after that commit adding "set protocols bgp parameters default no-ipv4-unicast" it can not be accepted. Because neighbor was added before this command.
Re-create neighbor and commit. And check again.

Apr 8 2021, 9:31 AM · VyOS 1.4 Sagitta
c-po added a comment to T3462: show ipv6 bgp -- missing.

When on VyOS 1.4 please use the show bgp ipv6 command as exposed by FRR. The show ip bgp command is only kept as not all options from show ip bgp are exposed in FRR under the show bgp ipv4 tree.

Apr 8 2021, 8:48 AM · VyOS 1.4 Sagitta