Page MenuHomeVyOS Platform
Feed Advanced Search

Nov 20 2021

trae32566 added a comment to T3936: [Feature] - DHCP Option 82 Support.

I think this is what it would look like in service dhcp server. I left some comments to explain my thinking a bit, and I tried to make it as flexible as possible (for example the way match options are strings, so future DHCP options can be supported as soon as ISC supports them):

failover {
    name INT
    remote 192.168.15.4
    source-address 192.168.15.3
    status primary
}
shared-network-name INT {
    description "Internal connection to ir01"
    class CLIENT_MAP {
       rule 10 {
           action permit                                       # This is equivalent to dhcpd's allow/deny members of
           match option "agent.circuit_id" value "Vlan200"     # This could match any option (ex: dhcp-client-identifier)
       }
    }
    class GUEST_MAP {
       rule 10 {
           action permit
           match option "agent.circuit_id" value "Vlan240"
       }
    }
    subnet 192.168.1.0/24 {
        class CLIENT_MAP
        default-router 192.168.1.1
        domain-name int.trae32566.org
        domain-search int.trae32566.org
        domain-search ipa.trae32566.org
        domain-search trae32566.org
        enable-failover
        name-server 192.168.255.1
        name-server 192.168.15.10
        name-server 192.168.31.3
        ntp-server 192.168.255.2
        ntp-server 192.168.15.11
        ntp-server 192.168.31.4
        range CLIENTS {
            start 192.168.1.2
            stop 192.168.1.240
        }
        server-identifier 192.168.15.2
        static-mapping QUEST {
            ip-address 192.168.1.17
            mac-address 80:f3:ef:11:e7:e7
        }
    }
    subnet 192.168.6.0/24 {
        class GUEST_MAP
        default-router 192.168.6.1
        enable-failover
        name-server 1.1.1.1
        name-server 1.0.0.1
        name-server 8.8.8.8
        ntp-server 50.205.57.38
        ntp-server 64.225.34.103
        ntp-server 129.250.35.251
        server-identifier 192.168.15.2
        range GUESTS {
            start 192.168.6.2
            stop 192.168.6.254
        }
    }
    subnet 192.168.15.0/29 {        # This tells it indirectly to use the interface eth2, which is on this subnet (is there a better way?)
        default-router 192.168.15.1
        enable-failover
        range DUMMY {
            start 192.168.15.2
            stop 192.168.15.7
        }
    }
}
Nov 20 2021, 3:54 AM · VyOS 1.5 Circinus

Oct 23 2021

trae32566 created T3936: [Feature] - DHCP Option 82 Support.
Oct 23 2021, 11:26 PM · VyOS 1.5 Circinus

Oct 14 2021

trae32566 created T3906: [Traffic Control] Invalid Port Configuration Still Commits.
Oct 14 2021, 8:28 AM · Known issue, VyOS 1.4 Sagitta
trae32566 awarded T2798: Allow port range in tc filter a Like token.
Oct 14 2021, 8:13 AM · VyOS 1.5 Circinus, VyOS 1.4 Sagitta, vyatta-cfg-qos

Oct 9 2021

trae32566 created T3898: [RADIUS] - Reverse DNS Lookup Failing .
Oct 9 2021, 10:52 PM · VyOS 1.4 Sagitta

Jul 8 2021

trae32566 added a comment to T3628: commit-archive source-address Interface Broken.
trae@cr01a-vyos# show system config-management 
 commit-archive {
     location sftp://cr01a-vyos.int:<somePassword>@stor01z-rh8.int.trae32566.org:/int/cr01a-vyos
     source-address lo
 }
 commit-revisions 10000
Jul 8 2021, 5:20 AM · VyOS 1.4 Sagitta

Jul 7 2021

trae32566 reopened T3628: commit-archive source-address Interface Broken, a subtask of T3356: Script for remote file transfers, as Open.
Jul 7 2021, 5:51 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 reopened T3628: commit-archive source-address Interface Broken as "Open".

This is still broken on the most recent rolling release:

trae@cr01a-vyos# commit
Using source address lo
Archiving config...
  sftp://stor01z-rh8.int.trae32566.org:/int/cr01a-vyos Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 315, in upload
    upload_sftp(local_path, url.hostname, url.path, username, password, port, source, progressbar)
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 190, in upload_sftp
    transfer_sftp('upload', *args, **kwargs)
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 162, in transfer_sftp
    sock.connect((hostname, port))
OSError: [Errno 22] Invalid argument
[edit protocols bgp]
Jul 7 2021, 5:51 AM · VyOS 1.4 Sagitta

Jun 23 2021

trae32566 added a comment to T3638: Passwords With Dollar Sign Set Incorrectly.

Try to set single quotes.

Jun 23 2021, 3:31 AM · VyOS 1.4 Sagitta

Jun 22 2021

trae32566 added a comment to T3638: Passwords With Dollar Sign Set Incorrectly.

Confirmed that's what is happening:

vyos@cr01a-vyos# TEST='variable'
[edit]
vyos@cr01a-vyos# set system login user vyos authentication plaintext-password HqNzXaK27k19$TEST
[edit]
vyos@cr01a-vyos# comp
[edit system login user vyos authentication]
+plaintext-password HqNzXaK27k19variable
Jun 22 2021, 8:35 AM · VyOS 1.4 Sagitta
trae32566 added a comment to T3638: Passwords With Dollar Sign Set Incorrectly.

@fernando Are you sure you're testing this on 1.3?

vyos@cr01a-vyos# run show ver
Jun 22 2021, 8:25 AM · VyOS 1.4 Sagitta

Jun 20 2021

trae32566 created T3638: Passwords With Dollar Sign Set Incorrectly.
Jun 20 2021, 8:37 AM · VyOS 1.4 Sagitta
trae32566 added a comment to T3563: commit-archive breaks with IPv6 source addresses.

Yes, though the error has changed:

trae@cr01b-vyos# commit
Using source address fd52:d62e:8011:fffe:192:168:253:3
Archiving config...
  sftp://stor01z-rh8.int.trae32566.org:/int/cr01b-vyos Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 299, in upload
    upload_sftp(local_path, url.hostname, url.path, username, password, port, source, progressbar)
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 178, in upload_sftp
    transfer_sftp('upload', *args, **kwargs)
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 174, in transfer_sftp
    sock.shutdown(socket.SHUT_RDWR)
OSError: [Errno 9] Bad file descriptor
Jun 20 2021, 7:56 AM · VyOS 1.4 Sagitta

Jun 16 2021

trae32566 renamed T3628: commit-archive source-address Interface Broken from commit-archive source-address interface Broken to commit-archive source-address Interface Broken.
Jun 16 2021, 7:03 AM · VyOS 1.4 Sagitta
trae32566 added a subtask for T3356: Script for remote file transfers: T3628: commit-archive source-address Interface Broken.
Jun 16 2021, 7:03 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 added a parent task for T3628: commit-archive source-address Interface Broken: T3356: Script for remote file transfers.
Jun 16 2021, 7:03 AM · VyOS 1.4 Sagitta
trae32566 created T3628: commit-archive source-address Interface Broken.
Jun 16 2021, 7:01 AM · VyOS 1.4 Sagitta

Jun 12 2021

trae32566 closed T3609: BGP Peer Group Changes Slow as Resolved.

This appears to be fixed in the most recent rolling releases; I'm not sure how, but it's fixed.

Jun 12 2021, 7:20 AM · VyOS 1.3 Equuleus (1.3.0)

Jun 11 2021

trae32566 reopened T3563: commit-archive breaks with IPv6 source addresses, a subtask of T3356: Script for remote file transfers, as Open.
Jun 11 2021, 9:45 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 reopened T3563: commit-archive breaks with IPv6 source addresses as "Open".

This does not appear to be fixed; I think it's something specific to 1.4:

trae@cr01a-vyos# commit
Using source address fd52:d62e:8011:fffe:192:168:253:2
Archiving config...
  sftp://stor01z-rh8.int.trae32566.org:/int/cr01a-vyos Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 287, in upload
    upload_sftp(local_path, url.hostname, url.path, username, password, port, source, progressbar)
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 166, in upload_sftp
    transfer_sftp('upload', *args, **kwargs)
  File "/usr/lib/python3/dist-packages/vyos/remote.py", line 162, in transfer_sftp
    sock.shutdown()
TypeError: shutdown() takes exactly one argument (0 given)
[edit policy route-map BGP-BACKBONE-OUT]
trae@cr01a-vyos# run show ver
Jun 11 2021, 9:45 AM · VyOS 1.4 Sagitta
trae32566 added a comment to T3378: commit-archive source-address broken for IPv6 addresses.

I have a similar problem, but different, in T3563. I've reopened it and added information, but basically 1.4 still has the issue reported in that bug report.

Jun 11 2021, 9:43 AM · VyOS 1.3 Equuleus (1.3.0)

Jun 10 2021

trae32566 closed T2645: Editing route-map action requires adding a new rule as Resolved.
Jun 10 2021, 4:48 PM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 added a comment to T3609: BGP Peer Group Changes Slow.

Again, the problem is not the time it takes to commit, but the time it takes to set. I will try reproducing it again and see if I can come up with an easier way. I would suggest trying adding the BGP config and prefix lists and route-maps without the export route-map applied, then commit, then try applying the export route-maps.

Jun 10 2021, 4:15 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 added a comment to T3609: BGP Peer Group Changes Slow.

FRR appears to have no problems processing this extremely quickly:

vyos@cr01b-vyos# time vtysh -c "conf t" -c "router bgp 4242420670" -c "address-family ipv4 unicast" -c "neighbor BACKBONE route-map BGP-BACKBONE-OUT out"
Jun 10 2021, 7:32 AM · VyOS 1.3 Equuleus (1.3.0)

Jun 9 2021

trae32566 added a comment to T3609: BGP Peer Group Changes Slow.

I'm wondering if perhaps it's my prefix lists or route-maps maybe? I can upload those in a bit once I test how fast / slow it is in frr.

Jun 9 2021, 6:02 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 updated the task description for T3609: BGP Peer Group Changes Slow.
Jun 9 2021, 9:51 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T3609: BGP Peer Group Changes Slow.
Jun 9 2021, 9:39 AM · VyOS 1.3 Equuleus (1.3.0)

Jun 7 2021

trae32566 updated the task description for T3604: Changing BGP Neighbor Peer-Group Association Causes Routing Subsystem Failure.
Jun 7 2021, 8:32 PM
trae32566 created T3604: Changing BGP Neighbor Peer-Group Association Causes Routing Subsystem Failure.
Jun 7 2021, 8:31 PM
trae32566 added a comment to T3602: Renaming BGP Peer Groups Leaves Router Broken.

This is indeed fixed!

Jun 7 2021, 8:27 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T3602: Renaming BGP Peer Groups Leaves Router Broken.
Jun 7 2021, 8:39 AM · VyOS 1.3 Equuleus (1.3.0)

May 23 2021

trae32566 created T3573: as-path-prepend Description Invalid.
May 23 2021, 10:12 AM · VyOS 1.4 Sagitta
trae32566 updated the task description for T3572: Basic Drive Diagnostic Tools.
May 23 2021, 2:59 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 updated the task description for T3572: Basic Drive Diagnostic Tools.
May 23 2021, 2:57 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 created T3572: Basic Drive Diagnostic Tools.
May 23 2021, 2:56 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 created T3571: Broken Show Tab Complete.
May 23 2021, 2:36 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta

May 20 2021

trae32566 triaged T3564: Multiple BGP Confederation Peers Not Allowed as High priority.
May 20 2021, 7:24 AM · VyOS 1.4 Sagitta
trae32566 triaged T3563: commit-archive breaks with IPv6 source addresses as Normal priority.
May 20 2021, 7:00 AM · VyOS 1.4 Sagitta

Mar 27 2021

trae32566 created T3437: BGP Confederation Addition Causes Error.
Mar 27 2021, 5:21 AM · VyOS 1.3 Equuleus (1.3.7)

Mar 3 2021

trae32566 added a comment to T3271: qemu-kvm grub issue.

I've had this bite me a few times now as well, but I wasn't able to pin it down before to being a bug.

Mar 3 2021, 5:12 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 awarded T3271: qemu-kvm grub issue a Like token.
Mar 3 2021, 5:11 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta

Mar 2 2021

trae32566 created T3378: commit-archive source-address broken for IPv6 addresses.
Mar 2 2021, 6:51 AM · VyOS 1.3 Equuleus (1.3.0)

Feb 15 2021

trae32566 updated the task description for T3311: BGP Error: Remote AS must be set for neighbor or peer-group.
Feb 15 2021, 8:12 AM · VyOS 1.4 Sagitta
trae32566 updated the task description for T3311: BGP Error: Remote AS must be set for neighbor or peer-group.
Feb 15 2021, 6:50 AM · VyOS 1.4 Sagitta
trae32566 created T3311: BGP Error: Remote AS must be set for neighbor or peer-group.
Feb 15 2021, 12:16 AM · VyOS 1.4 Sagitta

Jan 22 2021

trae32566 updated the task description for T3229: Ethtool CLI Integration.
Jan 22 2021, 10:50 PM · VyOS 1.5 Circinus

Jan 18 2021

trae32566 closed T2679: VRRP with BFD Failure Detection as Resolved.

Interesting. I agree, I think that defeats the purpose of VRRP if both have to be running. I guess we can go ahead and close this as not feasible at this time.

Jan 18 2021, 10:18 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 updated the task description for T3229: Ethtool CLI Integration.
Jan 18 2021, 7:55 AM · VyOS 1.5 Circinus
trae32566 created T3229: Ethtool CLI Integration.
Jan 18 2021, 7:26 AM · VyOS 1.5 Circinus

Jan 15 2021

trae32566 added a comment to T3204: Performance system option destroy defined sysctl custom params.

This can be fixed by copying the two profile directories you're using (/usr/lib/tuned/network-throughput and /usr/lib/tuned/network-latency) to /etc/tuned and changing the sysctl section to only contain enabled=false. Here's it working:

root@cr01a-vyos:~# diff /usr/lib/tuned/network-latency/tuned.conf /etc/tuned/network-latency/tuned.conf
13,16c13
< net.core.busy_read=50
< net.core.busy_poll=50
< net.ipv4.tcp_fastopen=3
< kernel.numa_balancing=0
---
> enabled=false
root@cr01a-vyos:~# diff /usr/lib/tuned/network-throughput/tuned.conf /etc/tuned/network-throughput/tuned.conf 
10,16c10
< # Increase kernel buffer size maximums.  Currently this seems only necessary at 40Gb speeds.
< #
< # The buffer tuning values below do not account for any potential hugepage allocation.
< # Ensure that you do not oversubscribe system memory.
< net.ipv4.tcp_rmem="4096 87380 16777216"
< net.ipv4.tcp_wmem="4096 16384 16777216"
< net.ipv4.udp_mem="3145728 4194304 16777216"
---
> enabled=false
Jan 15 2021, 9:24 PM · VyOS 1.3 Equuleus (1.3.7), VyOS 1.5 Circinus, VyOS 1.4 Sagitta

Jan 14 2021

trae32566 updated the task description for T3215: Operational command "show ipv6 route" is broken.
Jan 14 2021, 8:30 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 added a comment to T3216: Removal of restricted-shell broke configure mode for RADIUS users.

Yep, I use RADIUS.

Jan 14 2021, 8:29 AM · VyOS 1.4 Sagitta
trae32566 created T3216: Removal of restricted-shell broke configure mode for RADIUS users.
Jan 14 2021, 7:35 AM · VyOS 1.4 Sagitta
trae32566 created T3215: Operational command "show ipv6 route" is broken.
Jan 14 2021, 6:41 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta

Jan 9 2021

trae32566 closed T2467: Restarting flow accounting fails with systemd error as Resolved.

This is fixed:

trae@cr01b-vyos:~$ restart flow-accounting
trae@cr01b-vyos:~$ show ver
Jan 9 2021, 7:50 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T3201: Operational command "show log all" is not working for RADIUS users.
Jan 9 2021, 7:26 PM · VyOS 1.3 Equuleus (1.3.0)

Jan 7 2021

trae32566 awarded T3191: PAM RADIUS freezing when accounting does not configured on RADIUS server a Like token.
Jan 7 2021, 8:15 AM · VyOS 1.3 Equuleus (1.3.6), VyOS 1.5 Circinus, VyOS 1.4 Sagitta

Jan 6 2021

trae32566 created T3188: Tunnel local-ip to dhcp-interface Change Fails to Update.
Jan 6 2021, 7:29 AM · VyOS 1.3 Equuleus (1.3.0-epa3), VyOS 1.4 Sagitta

Nov 3 2020

trae32566 closed T2967: Duplicate IPv6 BFD peers created as Resolved.

Yes! Turns out the following is what fixed it:
https://phabricator.vyos.net/T2980

Nov 3 2020, 10:18 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 26 2020

trae32566 added a comment to T3015: It's over 9000! Super Jumbo Frame Support.

All of ours do as far as I know, which includes 10,40, and 100g. I'm pretty sure 2.5g and 5g will as well.

Oct 26 2020, 2:10 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T3015: It's over 9000! Super Jumbo Frame Support.
Oct 26 2020, 1:07 AM · VyOS 1.3 Equuleus (1.3.0)

Oct 18 2020

trae32566 closed T2965: Brief BFD Peer Info as Resolved.
Oct 18 2020, 9:45 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 added a comment to T2965: Brief BFD Peer Info.

Works for me!

trae@cr01b-vyos:~$ show protocols bfd peers
Session count: 11
SessionId  LocalAddress                             PeerAddress                             Status         
=========  ============                             ===========                             ======         
3776760774 192.168.253.3                            192.168.253.7                           up             
1851352402 fd52:d62e:8011:fffe:192:168:253:3        fd52:d62e:8011:fffe:192:168:253:6       up             
3344115206 192.168.253.3                            192.168.253.2                           down           
1252680903 fd52:d62e:8011:fffe:192:168:253:3        fd52:d62e:8011:fffe:192:168:253:2       down           
3664188082 192.168.253.3                            192.168.253.6                           up             
2809207409 fd52:d62e:8011:fffe:192:168:253:3        fd52:d62e:8011:fffe:192:168:253:1       up             
2086113021 192.168.253.3                            192.168.253.12                          up             
1362288442 unknown                                  fd52:d62e:8011:fffe:192:168:253:12      down           
3846665654 fd52:d62e:8011:fffe:192:168:253:3        fd52:d62e:8011:fffe:192:168:253:7       up             
276439511  fd52:d62e:8011:fffe:192:168:253:3        fd52:d62e:8011:fffe:192:168:253:12      down           
1342044518 192.168.253.3                            192.168.253.1                           up
Oct 18 2020, 9:43 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 16 2020

trae32566 added a comment to T2965: Brief BFD Peer Info.

That sounds great to me! I actually like that more.

Oct 16 2020, 7:23 AM · VyOS 1.3 Equuleus (1.3.0)

Oct 15 2020

trae32566 added a comment to T2980: FRR bfdd crash due to invalid length.

awesome, thanks!

Oct 15 2020, 4:52 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 awarded T2980: FRR bfdd crash due to invalid length a Like token.
Oct 15 2020, 4:51 PM · VyOS 1.3 Equuleus (1.3.0)

Oct 13 2020

trae32566 updated the task description for T2975: BFD default timers.
Oct 13 2020, 3:07 AM · VyOS 1.4 Sagitta
trae32566 updated the task description for T2975: BFD default timers.
Oct 13 2020, 2:57 AM · VyOS 1.4 Sagitta

Oct 12 2020

trae32566 created T2975: BFD default timers.
Oct 12 2020, 9:52 PM · VyOS 1.4 Sagitta

Oct 7 2020

trae32566 updated the task description for T2967: Duplicate IPv6 BFD peers created.
Oct 7 2020, 3:02 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2967: Duplicate IPv6 BFD peers created.
Oct 7 2020, 2:59 AM · VyOS 1.3 Equuleus (1.3.0)

Oct 6 2020

trae32566 updated the task description for T2965: Brief BFD Peer Info.
Oct 6 2020, 7:47 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 changed Is it a breaking change? from none to compatible on T2965: Brief BFD Peer Info.
Oct 6 2020, 7:38 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 edited projects for T2965: Brief BFD Peer Info, added: VyOS 1.3 Equuleus; removed VyOS 1.2 Crux.
Oct 6 2020, 7:38 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2965: Brief BFD Peer Info.
Oct 6 2020, 7:37 AM · VyOS 1.3 Equuleus (1.3.0)

Sep 12 2020

trae32566 added a comment to T2863: Wireguard IPv6 Link-Local Addresses Are Not Unique.

Try a show ipv6 route ospfand look at the routes; they're probably being rejected:

trae@cr01b-vyos# run show ipv ro ospf
Codes: K - kernel route, C - connected, S - static, R - RIPng,
       O - OSPFv3, I - IS-IS, B - BGP, N - NHRP, T - Table,
       v - VNC, V - VNC-Direct, A - Babel, D - SHARP, F - PBR,
       f - OpenFabric,
       > - selected route, * - FIB route, q - queued route, r - rejected route
Sep 12 2020, 7:52 AM · VyOS 1.3 Equuleus (1.3.0)

Sep 7 2020

trae32566 created T2864: Wireguard IPv6 Link-Local Addresses Cannot Be Disabled.
Sep 7 2020, 9:23 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2863: Wireguard IPv6 Link-Local Addresses Are Not Unique.
Sep 7 2020, 8:50 PM · VyOS 1.3 Equuleus (1.3.0)

Jul 12 2020

trae32566 awarded T2699: NAT Regression in 1.3 a Like token.
Jul 12 2020, 12:21 AM

Jul 8 2020

trae32566 added a comment to T2644: Bonding interfaces cannot be disabled.

Can regression testing of some sort be added for this? I've seen this issue crop up before now, so I would guess this is a good candidate for that if possible.

Jul 8 2020, 7:59 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 awarded T2650: interfaces bridge, bonding: revert back to per-interface membership syntax a Like token.
Jul 8 2020, 7:58 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 closed T2692: Evaluate Setting Default Hash Policy to L3+L4, a subtask of T2646: Sysctl for IPv4 ECMP Hash Policy Not Set, as Resolved.
Jul 8 2020, 4:31 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 closed T2692: Evaluate Setting Default Hash Policy to L3+L4 as Resolved.

Closed - this is available as set system ip layer4-hashing

Jul 8 2020, 4:30 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 closed T2646: Sysctl for IPv4 ECMP Hash Policy Not Set as Resolved.

Oh, neat. Thanks, I'll close this then!

Jul 8 2020, 4:30 PM · VyOS 1.3 Equuleus (1.3.0)

Jul 7 2020

trae32566 created T2692: Evaluate Setting Default Hash Policy to L3+L4.
Jul 7 2020, 9:33 PM · VyOS 1.3 Equuleus (1.3.0)

Jul 4 2020

trae32566 created T2679: VRRP with BFD Failure Detection.
Jul 4 2020, 3:26 AM · VyOS 1.3 Equuleus (1.3.0)

Jun 25 2020

trae32566 added a comment to T2642: sshd fails to start due to configuration error.

This appears to be caused by the setting of service ssh listen-address; it appears the script generating the config is omitting the actual address. Removing a specific listening address is a temporary workaround.

Jun 25 2020, 10:37 PM · VyOS 1.3 Equuleus (1.3.0)
trae32566 updated the task description for T2646: Sysctl for IPv4 ECMP Hash Policy Not Set.
Jun 25 2020, 5:22 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2646: Sysctl for IPv4 ECMP Hash Policy Not Set.
Jun 25 2020, 5:20 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 updated the task description for T2645: Editing route-map action requires adding a new rule.
Jun 25 2020, 3:42 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 updated the task description for T2645: Editing route-map action requires adding a new rule.
Jun 25 2020, 3:10 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 triaged T2645: Editing route-map action requires adding a new rule as Wishlist priority.
Jun 25 2020, 3:10 AM · VyOS 1.3 Equuleus (1.3.0), VyOS 1.4 Sagitta
trae32566 created T2644: Bonding interfaces cannot be disabled.
Jun 25 2020, 2:57 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2643: show interfaces does not scale with terminal width.
Jun 25 2020, 2:50 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 created T2642: sshd fails to start due to configuration error.
Jun 25 2020, 2:27 AM · VyOS 1.3 Equuleus (1.3.0)

May 16 2020

trae32566 created T2468: Passwords with special characters fail in commit-archive.
May 16 2020, 8:05 AM · VyOS 1.4 Sagitta (1.4.0-epa1), VyOS 1.5 Circinus
trae32566 created T2467: Restarting flow accounting fails with systemd error.
May 16 2020, 4:39 AM · VyOS 1.3 Equuleus (1.3.0)

May 13 2020

trae32566 closed T2435: Pseudo-ethernet Interfaces Broken as Resolved.
May 13 2020, 3:47 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 added a comment to T2435: Pseudo-ethernet Interfaces Broken.

Actually I think this is a result of T2434 since the source interface is bond1, so I'm closing this again. My apologies.

May 13 2020, 3:40 AM · VyOS 1.3 Equuleus (1.3.0)
trae32566 reopened T2435: Pseudo-ethernet Interfaces Broken as "Open".

@jjakob This doesn't appear to have been fixed in VyOS 1.3-rolling-202005130117

May 13 2020, 3:09 AM · VyOS 1.3 Equuleus (1.3.0)