Page MenuHomeVyOS Platform
Feed Advanced Search

Dec 1 2020

Unknown Object (User) changed the status of T3102: Destination NAT fails to commit from Open to In progress.

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

Dec 1 2020, 8:55 PM · VyOS 1.3 Equuleus (1.3.0)

Nov 30 2020

Unknown Object (User) closed T1207: DMVPN behind NAT as Resolved.

PR with changed types in docs https://github.com/vyos/vyos-documentation/pull/380
ESP transport mode works properly on Cisco Router and VyOS routers together.

Nov 30 2020, 2:28 PM · VyOS 1.3 Equuleus (1.3.0-epa1)
Unknown Object (User) changed the status of T1207: DMVPN behind NAT from Open to In progress.

DMVPN Spokes work properly behind a NAT if we use transport mode instead of tunnel. e.g.

set vpn ipsec esp-group ESP-HUB mode transport

So I think we need to add this info to docs.vyos.io and close this Feature Request

Nov 30 2020, 7:27 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Nov 27 2020

Unknown Object (User) claimed T1207: DMVPN behind NAT.

Following this issue request https://sourceforge.net/p/opennhrp/support-requests/3/ we need to use transport mode instead of a tunnel. Was tested on AWS node and it looks working even with selector remote_ts = dynamic[gre]

Nov 27 2020, 7:51 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Nov 25 2020

Unknown Object (User) claimed T2744: igmp-proxy issue: Address already in use.

Let's run pimd only if IGMP or PIM configured.
https://github.com/vyos/vyos-1x/pull/618
https://github.com/vyos/vyos-build/pull/134

Nov 25 2020, 7:14 PM · VyOS 1.3 Equuleus (1.3.0)

Nov 13 2020

Unknown Object (User) added a comment to T3066: reboot in - Invalid time.

How about these changes https://github.com/vyos/vyos-1x/blob/current/src/op_mode/powerctrl.py#L37

diff --git a/src/op_mode/powerctrl.py b/src/op_mode/powerctrl.py
index 69af427e..c000d7d0 100755
--- a/src/op_mode/powerctrl.py
+++ b/src/op_mode/powerctrl.py
@@ -34,7 +34,11 @@ def utc2local(datetime):
 def parse_time(s):
     try:
         if re.match(r'^\d{1,2}$', s):
-            return datetime.strptime(s, "%M").time()
+            if (int(s) > 59):
+                s = str(int(s)//60) + ":" + str(int(s)%60)
+                return datetime.strptime(s, "%H:%M").time()
+            else:
+                return datetime.strptime(s, "%M").time()
         else:
             return datetime.strptime(s, "%H:%M").time()
     except ValueError:
Nov 13 2020, 8:00 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) changed the status of T3066: reboot in - Invalid time from Open to Confirmed.

It looks like need to do some calculation

vyos@vyos:~$ show version | match Version
Version:          VyOS 1.3-rolling-202011130217
vyos@vyos:~$ show date 
Fri 13 Nov 2020 07:18:44 AM UTC
vyos@vyos:~$ reboot in 60
Invalid time "60". The valid format is HH:MM
vyos@vyos:~$ reboot in 59
Reboot is scheduled 2020-11-13 08:18:04
vyos@vyos:~$ reboot in 61
Invalid time "61". The valid format is HH:MM
Nov 13 2020, 7:21 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) closed T3059: L2TPv3 interface: Enforced to shutdown but no command to enable interface permanently as Resolved.

Tested on 1.3-rolling-202011130217, all works as expected.
Thanks to @ernstjo

Nov 13 2020, 7:14 AM · VyOS 1.3 Equuleus (1.3.0)

Nov 11 2020

Unknown Object (User) changed the status of T3059: L2TPv3 interface: Enforced to shutdown but no command to enable interface permanently from Open to Confirmed.
Nov 11 2020, 3:41 PM · VyOS 1.3 Equuleus (1.3.0)

Nov 6 2020

Unknown Object (User) created T3050: Broken address/subnet validation on NAT configuration.
Nov 6 2020, 7:19 AM · VyOS 1.3 Equuleus (1.3.0)

Nov 2 2020

Unknown Object (User) added a comment to T3038: Supporting AZERTY keyboards .

PR https://github.com/vyos/vyos-1x/pull/590
I hope it will be helpful for many people from France. As for me it better solution then glue stickers with QWERTY keys =)

Nov 2 2020, 7:35 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a comment to T3038: Supporting AZERTY keyboards .

Ok, let's review the situation when you install VyOS on bare metal and you have an only AZERTY keyboard. You press key A but in console, you see Q, you press Z on the console you see W.
Debian way, install console-data from https://packages.debian.org/sid/console-data and run sudo loadkeys fr

Nov 2 2020, 11:58 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a comment to T3038: Supporting AZERTY keyboards .

To add the possibility to switch from default QWERTY keyboard type to AZERTY.

Screenshot 2020-11-02 at 14.42.07.png (452×1 px, 169 KB)

Nov 2 2020, 11:44 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) updated the task description for T3038: Supporting AZERTY keyboards .
Nov 2 2020, 11:37 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) changed the status of T3038: Supporting AZERTY keyboards from Open to In progress.
Nov 2 2020, 11:37 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) created T3038: Supporting AZERTY keyboards .
Nov 2 2020, 11:37 AM · VyOS 1.3 Equuleus (1.3.0)

Oct 28 2020

Unknown Object (User) closed T2631: l2tp, sstp, pptp add option to disable radius accounting as Resolved.
Oct 28 2020, 4:00 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 22 2020

Unknown Object (User) closed T2978: IPoE service does not work on shared mode as Resolved.
Oct 22 2020, 5:55 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 21 2020

Unknown Object (User) added a comment to T2631: l2tp, sstp, pptp add option to disable radius accounting.

@Viacheslav if we set acct-port=0 it should to disable accounting.

[radius]
server=x.x.x.x,secret,auth-port=1812,acct-port=0
Oct 21 2020, 5:00 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 20 2020

Unknown Object (User) changed the status of T2984: (igb, ixgbe) HW queues applied only for the first 2 interfaces from Needs testing to Backport candidate.
Oct 20 2020, 9:52 AM · VyOS 1.2 Crux (VyOS 1.2.7)

Oct 19 2020

Unknown Object (User) changed the status of T2883: op-mode reset vpn command shows wrong completion from Open to In progress.

It looks like this works, but when we don't have any connected user, it listed the current directory file

vyos@RTR1:~$ touch 1.txt
vyos@RTR1:~$ reset vpn remote-access user <tab>
Possible completions:
  1.txt         Terminate specified user's current remote access VPN session(s)

After a user connected, all works properly

vyos@RTR1:~$ reset vpn remote-access user <tab>
Possible completions:
  test1         Terminate specified user's current remote access VPN session(s)
Oct 19 2020, 11:30 AM · VyOS 1.2 Crux
Unknown Object (User) created T2996: Checking digital signature failed on downgrade from rolling to stable..
Oct 19 2020, 10:01 AM · VyOS 1.3 Equuleus (1.3.5)

Oct 17 2020

Unknown Object (User) changed the status of T2984: (igb, ixgbe) HW queues applied only for the first 2 interfaces from In progress to Needs testing.

PR https://github.com/vyos/vyos-build/pull/128

Oct 17 2020, 7:16 AM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) changed the status of T2984: (igb, ixgbe) HW queues applied only for the first 2 interfaces from Open to In progress.
Oct 17 2020, 7:09 AM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) created T2984: (igb, ixgbe) HW queues applied only for the first 2 interfaces .
Oct 17 2020, 7:09 AM · VyOS 1.2 Crux (VyOS 1.2.7)

Oct 16 2020

Unknown Object (User) changed the status of T2978: IPoE service does not work on shared mode from Confirmed to Needs testing.

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

Oct 16 2020, 11:29 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) created T2983: Add support to DHCP server include an extended config.
Oct 16 2020, 6:47 PM · VyOS 1.3 Equuleus (1.3.4)

Oct 15 2020

Unknown Object (User) added a comment to T2978: IPoE service does not work on shared mode.

Yes, both clients configured as DHCP clients.
Client 1 - eth0 - 50:00:00:06:00:00
Client 2 - eth0 - 50:00:00:07:00:00

Oct 15 2020, 12:18 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 14 2020

Unknown Object (User) changed the status of T2978: IPoE service does not work on shared mode from Open to Confirmed.
Oct 14 2020, 8:14 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) created T2978: IPoE service does not work on shared mode.
Oct 14 2020, 8:14 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) closed T2972: PPPoE server rate limiter allows max 65535 kbps to be set as Resolved.
Oct 14 2020, 7:59 AM · VyOS 1.2 Crux (VyOS 1.2.7)

Oct 13 2020

Unknown Object (User) added a comment to T2972: PPPoE server rate limiter allows max 65535 kbps to be set.

PR for CRUX https://github.com/vyos/vyos-1x/pull/568

Oct 13 2020, 11:20 AM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) changed the status of T2972: PPPoE server rate limiter allows max 65535 kbps to be set from Open to In progress.
Oct 13 2020, 10:54 AM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) changed the status of T2976: Client IP pool does not work for PPPoE local users from Open to In progress.
Oct 13 2020, 9:53 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a comment to T2972: PPPoE server rate limiter allows max 65535 kbps to be set.

PR with increasing validator values https://github.com/vyos/vyos-1x/pull/566

Oct 13 2020, 9:53 AM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) created T2976: Client IP pool does not work for PPPoE local users.
Oct 13 2020, 9:44 AM · VyOS 1.3 Equuleus (1.3.0)

Oct 11 2020

Unknown Object (User) added a comment to T2972: PPPoE server rate limiter allows max 65535 kbps to be set.

@c-po , it looks like the wrong CLI definition, we can increase the limit in XML.

Oct 11 2020, 5:09 PM · VyOS 1.2 Crux (VyOS 1.2.7)

Oct 8 2020

Unknown Object (User) closed T2891: Support to change ring-buffers from CLI as Resolved.
Oct 8 2020, 2:42 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)

Oct 7 2020

Unknown Object (User) created T2968: Add support for Intel Atom C2000 series QAT.
Oct 7 2020, 4:47 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 2 2020

Unknown Object (User) added a comment to T2954: Use kernel mode L2TP in xl2tpd.

Note: New xl2tpd package does not work with the followings params in options.xl2tpd

crtscts
lock
Oct 2 2020, 7:13 PM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) created T2954: Use kernel mode L2TP in xl2tpd.
Oct 2 2020, 7:00 PM · VyOS 1.2 Crux (VyOS 1.2.7)

Sep 30 2020

Unknown Object (User) added a project to T2891: Support to change ring-buffers from CLI: Ready for Crux (1.2.x).

PR for CRUX https://github.com/vyos/vyatta-cfg-system/pull/130

Sep 30 2020, 8:30 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) changed the status of T2932: The second QAT device does not start from Open to In progress.

PR https://github.com/vyos/vyos-build/pull/127
Also will be good cherrypick this to crux.

Sep 30 2020, 7:59 AM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) closed T2461: documentation firewall state as Resolved.
Sep 30 2020, 7:35 AM · Restricted Project

Sep 29 2020

Unknown Object (User) closed T2918: Accounting interim jitter for pppoe, l2tp, pptp, ipoe as Resolved.

Works properly, tested on 1.3-rolling-202009290117.
One remark, jitter will be applied for all accounting packet except the first packet. The first packet is a flag that the session is started.

Sep 29 2020, 6:27 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) closed T2917: PPPoE server: Preallocate NAS-Port-Id as Resolved.

Works properly on VyOS 1.3-rolling-202009290117.
When command set service pppoe-server authentication radius preallocate-vif committed, pppoe-server send the next attributes in Access-Request packet on a client authorization:

NAS-Port = 0
NAS-Port-Id = "ppp0"
NAS-Port-Type = Virtual
Sep 29 2020, 6:07 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) closed T2919: PPPoE server: Called-Station-Id attribute as Resolved.

Successfully tested on 1.3-rolling-202009290117

set service pppoe-server authentication radius called-sid-format 'ifname:mac'

Radius recived Called-Station-Id = "eth1:50:00:00:05:00:01"

set service pppoe-server authentication radius called-sid-format 'ifname'

Radius recived Called-Station-Id = "eth1"
By default radius recive Called-Station-Id = "50:00:00:05:00:01"

Sep 29 2020, 6:01 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) created T2934: proxy-arp-pvlan on VRRP interface.
Sep 29 2020, 7:00 AM · VyOS 1.5 Circinus

Sep 28 2020

Unknown Object (User) created T2932: The second QAT device does not start.
Sep 28 2020, 7:37 PM · VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) changed the status of T2919: PPPoE server: Called-Station-Id attribute from In progress to Needs testing.
Sep 28 2020, 5:33 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) changed the status of T2919: PPPoE server: Called-Station-Id attribute from Open to In progress.

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

Sep 28 2020, 7:42 AM · VyOS 1.3 Equuleus (1.3.0), Restricted Project

Sep 24 2020

Unknown Object (User) updated the task description for T2920: Commit crash when adding the second mGRE tunnel with the same key.
Sep 24 2020, 2:43 PM · VyOS 1.3 Equuleus (1.3.0-epa1), VyOS 1.4 Sagitta
Unknown Object (User) created T2920: Commit crash when adding the second mGRE tunnel with the same key.
Sep 24 2020, 12:47 PM · VyOS 1.3 Equuleus (1.3.0-epa1), VyOS 1.4 Sagitta

Sep 23 2020

Unknown Object (User) created T2919: PPPoE server: Called-Station-Id attribute.
Sep 23 2020, 11:48 AM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) created T2918: Accounting interim jitter for pppoe, l2tp, pptp, ipoe.
Sep 23 2020, 11:41 AM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) created T2917: PPPoE server: Preallocate NAS-Port-Id.
Sep 23 2020, 9:57 AM · VyOS 1.3 Equuleus (1.3.0), Restricted Project

Sep 18 2020

Unknown Object (User) added a parent task for T1251: IKEv2 Agile VPN Support: T2816: Rewrite IPsec scripts with the new XML/Python approach.
Sep 18 2020, 10:41 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a subtask for T2816: Rewrite IPsec scripts with the new XML/Python approach: T1251: IKEv2 Agile VPN Support.
Sep 18 2020, 10:41 AM · VyOS 1.4 Sagitta
Unknown Object (User) closed T945: Unable to change configuration after changing it from script (vbash + script-template) as Resolved.

Marked as resolved

Sep 18 2020, 8:48 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Sep 17 2020

Unknown Object (User) changed the status of T2891: Support to change ring-buffers from CLI from Open to Needs testing.

Thanks, let's merge it only after 1.2.6 release

Sep 17 2020, 5:55 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) added a comment to T2891: Support to change ring-buffers from CLI.

Can we add this implementation for crux in the old style?
https://github.com/DmitriyEshenko/vyatta-cfg-system/commit/0adc41a62b6d532da7c4b47cb5da920d1ed39664

Sep 17 2020, 12:48 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) added a project to T2891: Support to change ring-buffers from CLI: VyOS 1.2 Crux (VyOS 1.2.7).
Sep 17 2020, 12:46 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)

Sep 16 2020

Unknown Object (User) claimed T2891: Support to change ring-buffers from CLI.
Sep 16 2020, 7:32 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)
Unknown Object (User) created T2891: Support to change ring-buffers from CLI.
Sep 16 2020, 7:32 PM · Restricted Project, VyOS 1.2 Crux (VyOS 1.2.7)

Sep 14 2020

Unknown Object (User) created T2883: op-mode reset vpn command shows wrong completion.
Sep 14 2020, 9:13 PM · VyOS 1.2 Crux

Sep 11 2020

Unknown Object (User) added a comment to T2868: Tcp-mss option in policy calls kernel-panic.

@c-po , the same behavior even with kernel 5.8.8

vyos@R1:~$ uname -a
Linux R1 5.8.8-amd64-vyos #1 SMP Thu Sep 10 08:58:42 UTC 2020 x86_64 GNU/Linux
Sep 11 2020, 10:06 AM · VyOS 1.3 Equuleus (1.3.0)

Sep 9 2020

Unknown Object (User) added a comment to T2868: Tcp-mss option in policy calls kernel-panic.

How about migrating this iptables rule from mangle to filter?

Sep 9 2020, 6:59 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a comment to T2036: Open Connect VPN Server () support.

New PR for fixing it https://github.com/vyos/vyos-1x/pull/541

Sep 9 2020, 6:48 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) reopened T2036: Open Connect VPN Server () support as "In progress".

As discussed in the maintainer's slack channel will be good to replace CLI commands from set vpn anyconnect to set vpn openconnect. But in our docs we should use anyconnect-compatible server.

Sep 9 2020, 6:42 AM · VyOS 1.3 Equuleus (1.3.0)

Sep 8 2020

Unknown Object (User) changed the status of T2810: Docs for vpn anyconnect-server, a subtask of T2036: Open Connect VPN Server () support, from Open to In progress.
Sep 8 2020, 3:27 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) changed the status of T2810: Docs for vpn anyconnect-server from Open to In progress.
Sep 8 2020, 3:27 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project
Unknown Object (User) added a comment to T2810: Docs for vpn anyconnect-server.

PR from @ronie https://github.com/vyos/vyos-documentation/pull/317

Sep 8 2020, 3:27 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project

Sep 7 2020

Unknown Object (User) added a comment to T2853: Intel QAT acceleration does not work.

Intel QAT works for CRUX brunch. As for rolling with the newest kernel 5.8.5, it seems some issues on the modules building stage.

Sep 7 2020, 6:47 AM · VyOS 1.2 Crux (VyOS 1.2.6)

Sep 6 2020

Unknown Object (User) added a comment to T2853: Intel QAT acceleration does not work.

From official docs

Screenshot 2020-09-06 at 18.27.58.png (388×680 px, 77 KB)

Sep 6 2020, 3:28 PM · VyOS 1.2 Crux (VyOS 1.2.6)
Unknown Object (User) added a comment to T2853: Intel QAT acceleration does not work.

@c-po I build qat manually but add --enable-qat-lkcf to https://github.com/vyos/vyos-build/blob/crux/packages/linux-kernel/build-intel-qat.sh#L55 and it seems it works

vyos@R2-QAT:~$ show system acceleration qat device qat_dev0 flows 
+------------------------------------------------+
| FW Statistics for Qat Device                   |
+------------------------------------------------+
| Firmware Requests [AE  0]:              147225 |
| Firmware Responses[AE  0]:              147225 |
+------------------------------------------------+
| Firmware Requests [AE  1]:              113758 |
| Firmware Responses[AE  1]:              113758 |
+------------------------------------------------+
| Firmware Requests [AE  2]:              144886 |
| Firmware Responses[AE  2]:              144886 |
+------------------------------------------------+
| Firmware Requests [AE  3]:              147221 |
| Firmware Responses[AE  3]:              147221 |
+------------------------------------------------+
| Firmware Requests [AE  4]:              113774 |
| Firmware Responses[AE  4]:              113774 |
+------------------------------------------------+
| Firmware Requests [AE  5]:              144891 |
| Firmware Responses[AE  5]:              144891 |
+------------------------------------------------+
Sep 6 2020, 3:25 PM · VyOS 1.2 Crux (VyOS 1.2.6)
Unknown Object (User) closed T2860: Update Accel-PPP to fix l2tp CVE as Resolved.

Tested on 1.3-rolling-202009060846

Sep 6 2020, 10:00 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) changed the status of T2860: Update Accel-PPP to fix l2tp CVE from Open to Needs testing.

PR https://github.com/vyos/vyos-build/pull/124

Sep 6 2020, 7:41 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) created T2860: Update Accel-PPP to fix l2tp CVE.
Sep 6 2020, 7:34 AM · VyOS 1.3 Equuleus (1.3.0)

Sep 3 2020

Unknown Object (User) added a project to T2853: Intel QAT acceleration does not work: VyOS 1.2 Crux (VyOS 1.2.6).
Sep 3 2020, 5:07 AM · VyOS 1.2 Crux (VyOS 1.2.6)

Sep 2 2020

Unknown Object (User) assigned T2853: Intel QAT acceleration does not work to c-po.
Sep 2 2020, 4:54 PM · VyOS 1.2 Crux (VyOS 1.2.6)
Unknown Object (User) created T2853: Intel QAT acceleration does not work.
Sep 2 2020, 4:54 PM · VyOS 1.2 Crux (VyOS 1.2.6)

Sep 1 2020

Unknown Object (User) added a comment to T291: support for Predictable Network Interface Names.

@maznu but it seems really odd behavior, I mean message settled in 121 sec. failed!
121 sec - equal to 121 interfaces when the router is first booted. But if in config already present hw-id, it should be faster then 0 sec.
Will be interesting to reproduce this in our lab. Also will be helpful if you provide sudo dmesg output.

Sep 1 2020, 7:04 AM · VyOS 1.5 Circinus

Aug 31 2020

Unknown Object (User) added a comment to T2820: BGP crash in if_destroy_via_zapi.

Hello @marekm, I think [ppp]unit-cache=n might help in this case, but the main issue in FRR. Do you want a package for the test with these improvements?

unit-cache=n
By default is disabled: unit-cache=0
Aug 31 2020, 8:12 AM · VyOS 1.2 Crux

Aug 30 2020

Unknown Object (User) added a comment to T291: support for Predictable Network Interface Names.

I tested this in LAB and it seems works properly. Changing interface name for eth1 and eth2

vyos@vyos# delete interfaces ethernet eth1 hw-id 
[edit]
vyos@vyos# delete interfaces ethernet eth2 hw-id 
[edit]
vyos@vyos# set interfaces ethernet eth1 hw-id 50:01:00:02:00:02
[edit]
vyos@vyos# set interfaces ethernet eth2 hw-id 50:01:00:02:00:01
[edit]
vyos@vyos# commit
[edit]
vyos@vyos# save 
Saving configuration to '/config/config.boot'...
Done
[edit]
vyos@vyos# run reboot now

After reboot

vyos@vyos:~$ sudo ethtool -P eth1
Permanent address: 50:01:00:02:00:02
vyos@vyos:~$ sudo ethtool -P eth2
Permanent address: 50:01:00:02:00:01

@maznu , can you provide next:

show configuration commands | match hw-id
sudo cat /run/udev/log/vyatta-net-name.coldplug
Aug 30 2020, 4:15 AM · VyOS 1.5 Circinus

Aug 26 2020

Unknown Object (User) removed a project from T2333: Increase default sysctl values: VyOS 1.2 Crux (VyOS 1.2.6).
Aug 26 2020, 11:09 AM · VyOS 1.3 Equuleus (1.3.6)

Aug 23 2020

Unknown Object (User) closed T2812: Add basic smoketest for anyconnect, a subtask of T2036: Open Connect VPN Server () support, as Resolved.
Aug 23 2020, 7:11 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) closed T2812: Add basic smoketest for anyconnect as Resolved.

Jenkins output build ID 1015

16:14:06  DEBUG - Running Testcase: /usr/libexec/vyos/tests/smoke/cli/test_vpn_anyconnect.py
16:14:18  DEBUG - .
16:14:18  DEBUG - ----------------------------------------------------------------------
16:14:18  DEBUG - Ran 1 test in 11.085s
16:14:18  DEBUG - 
16:14:18  DEBUG - OK
Aug 23 2020, 7:11 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) closed T2811: Cannot delete vpn anyconnect as Resolved.

Works properly, tested on 1.3-rolling-202008231246

Aug 23 2020, 7:06 PM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) created T2823: VXLAN has state A/D after configuration.
Aug 23 2020, 6:30 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) reassigned T2810: Docs for vpn anyconnect-server from Unknown Object (User) to Unknown Object (User).
Aug 23 2020, 6:21 AM · VyOS 1.3 Equuleus (1.3.0), Restricted Project

Aug 20 2020

Unknown Object (User) created T2818: Add the possibility to passthrough LLDP, LACP, etc..
Aug 20 2020, 8:36 PM · VyOS 1.5 Circinus
Unknown Object (User) raised the priority of T439: local PBR support from Normal to High.
Aug 20 2020, 10:06 AM · VyOS 1.4 Sagitta

Aug 19 2020

Unknown Object (User) changed the status of T2812: Add basic smoketest for anyconnect, a subtask of T2036: Open Connect VPN Server () support, from Open to In progress.
Aug 19 2020, 11:00 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) changed the status of T2812: Add basic smoketest for anyconnect from Open to In progress.
Aug 19 2020, 11:00 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) triaged T2812: Add basic smoketest for anyconnect as Wishlist priority.
Aug 19 2020, 11:00 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) changed the status of T2811: Cannot delete vpn anyconnect from Open to In progress.
Aug 19 2020, 9:57 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) created T2811: Cannot delete vpn anyconnect.
Aug 19 2020, 9:56 AM · VyOS 1.3 Equuleus (1.3.0)
Unknown Object (User) added a comment to T2809: An issue with config migration (system ntp server).

This happens only when in config before migration exists nodes system 'ntp' without other params.

Aug 19 2020, 7:30 AM · VyOS 1.2 Crux (VyOS 1.2.8)
Unknown Object (User) closed T2036: Open Connect VPN Server () support as Resolved.

Works as expected on VyOS 1.3-rolling-202008190118

Aug 19 2020, 4:39 AM · VyOS 1.3 Equuleus (1.3.0)

Aug 18 2020

Unknown Object (User) triaged T2810: Docs for vpn anyconnect-server as Wishlist priority.
Aug 18 2020, 9:47 PM · VyOS 1.3 Equuleus (1.3.0), Restricted Project