Page MenuHomeVyOS Platform
Feed All Stories

May 13 2023

Viacheslav added a comment to T5222: Add load-balancing reverse-proxy based on haproxy .

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

May 13 2023, 1:19 PM · VyOS 1.4 Sagitta

May 12 2023

c-po added a comment to T5222: Add load-balancing reverse-proxy based on haproxy .

We should make the ssl-bind ciphers and ssl-bind-options configurable (<multi/> node) by the user

May 12 2023, 7:50 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5222: Add load-balancing reverse-proxy based on haproxy .
May 12 2023, 6:20 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5222: Add load-balancing reverse-proxy based on haproxy .
May 12 2023, 6:09 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5222: Add load-balancing reverse-proxy based on haproxy .
May 12 2023, 6:01 PM · VyOS 1.4 Sagitta
bbabich added a comment to T3655: NAT doesn't work correctly with VRF.

I have NAT working with vrf in VyOS 1.4-rolling-202208290458 + custom nat offload

set interfaces ethernet eth0 address '192.168.122.14/24'
set interfaces ethernet eth1 address '192.0.2.1/24'
set interfaces ethernet eth1 vrf 'foo'
set protocols static route 192.0.2.0/24 interface eth1 vrf 'foo'
set system conntrack
set vrf name foo protocols static route 0.0.0.0/0 next-hop 192.168.122.1 interface 'eth0'
set vrf name foo protocols static route 0.0.0.0/0 next-hop 192.168.122.1 vrf 'default'
set vrf name foo table '1010'

Nftables

root@r14:/home/vyos# cat nat.nft 
flush ruleset

table ip filter {
	flowtable fastnat {
		hook ingress priority filter
		devices = { eth0, eth1 }
	}

	chain forward {
		type filter hook forward priority filter; policy accept;
		ip protocol { tcp, udp } flow add @fastnat
	}
}
table ip nat {
	chain POSTROUTING {
		type nat hook postrouting priority srcnat; policy accept;
		ip saddr 192.0.2.0/24 oif "eth0" snat to 192.168.122.14 persistent
	}

	chain PREROUTING {
		type nat hook prerouting priority dstnat; policy accept;
	}
}

Conntrack table

vyos@r14:~$ sudo conntrack -F
conntrack v1.4.6 (conntrack-tools): connection tracking table has been emptied.
vyos@r14:~$ 
vyos@r14:~$ sudo conntrack -L
tcp      6 431999 ESTABLISHED src=192.168.122.14 dst=192.168.122.1 sport=22 dport=44462 src=192.168.122.1 dst=192.168.122.14 sport=44462 dport=22 [ASSURED] mark=0 use=1
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=33018 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=33018 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=37517 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=37517 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=59794 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=59794 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=39288 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=39288 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=39616 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=39616 [OFFLOAD] mark=0 use=2
icmp     1 29 src=192.0.2.2 dst=1.1.1.1 type=8 code=0 id=12387 src=1.1.1.1 dst=192.168.122.14 type=0 code=0 id=12387 mark=0 use=1
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=41155 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=41155 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=39829 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=39829 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=33655 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=33655 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=44835 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=44835 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=40213 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=40213 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=33729 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=33729 [OFFLOAD] mark=0 use=2
udp      17 src=192.0.2.2 dst=1.1.1.1 sport=48344 dport=53 src=1.1.1.1 dst=192.168.122.14 sport=53 dport=48344 [OFFLOAD] mark=0 use=2
conntrack v1.4.6 (conntrack-tools): 14 flow entries have been shown.
vyos@r14:~$
May 12 2023, 2:24 PM · VyOS 1.4 Sagitta (1.4.0-epa3)
n.fort assigned T5210: IPSec cosmetic bug for Warning vti inrerface to jnulandicho.
May 12 2023, 2:15 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5221: BGP as-override behavior differs from new FRR and other vendors from In progress to Needs testing.
May 12 2023, 1:45 PM · VyOS 1.3 Equuleus (1.3.4)
Viacheslav edited projects for T5221: BGP as-override behavior differs from new FRR and other vendors, added: VyOS 1.3 Equuleus (1.3.3); removed VyOS 1.3 Equuleus.
May 12 2023, 1:45 PM · VyOS 1.3 Equuleus (1.3.4)
Viacheslav claimed T5222: Add load-balancing reverse-proxy based on haproxy .
May 12 2023, 1:30 PM · VyOS 1.4 Sagitta
Viacheslav renamed T5222: Add load-balancing reverse-proxy based on haproxy from Add loadbalancing based on haproxy to Add load-balancing based on haproxy .
May 12 2023, 1:30 PM · VyOS 1.4 Sagitta
Viacheslav created T5222: Add load-balancing reverse-proxy based on haproxy .
May 12 2023, 1:30 PM · VyOS 1.4 Sagitta
zsdc added a comment to T5221: BGP as-override behavior differs from new FRR and other vendors.

PR with the fix: https://github.com/vyos/vyos-build/pull/350

May 12 2023, 11:41 AM · VyOS 1.3 Equuleus (1.3.4)
zsdc changed the status of T5221: BGP as-override behavior differs from new FRR and other vendors from Open to In progress.
May 12 2023, 11:17 AM · VyOS 1.3 Equuleus (1.3.4)
zsdc created T5221: BGP as-override behavior differs from new FRR and other vendors.
May 12 2023, 11:16 AM · VyOS 1.3 Equuleus (1.3.4)
diodep added a comment to T5186: QoS test cannot pass for 1.3.
In T5186#148559, @c-po wrote:

Reverted Kernel back to 5.4.234 for upcoming 1.3.3. release.

May 12 2023, 10:18 AM · VyOS 1.3 Equuleus (1.3.3)
Zen3515 changed the status of T5219: ddclient: Cloudflare doesn't require login from Open to In progress.

I've create a pull request for this task at https://github.com/vyos/vyos-1x/pull/2002

May 12 2023, 9:44 AM · VyOS 1.4 Sagitta
c-po changed the status of T5186: QoS test cannot pass for 1.3 from Open to In progress.
May 12 2023, 5:29 AM · VyOS 1.3 Equuleus (1.3.3)
c-po added a comment to T5186: QoS test cannot pass for 1.3.

Reverted Kernel back to 5.4.234 for upcoming 1.3.3. release.

May 12 2023, 5:28 AM · VyOS 1.3 Equuleus (1.3.3)
c-po closed T2778: Migrate "system syslog" to get_config_dict() to support new features as Resolved.
May 12 2023, 5:28 AM · VyOS 1.4 Sagitta
c-po moved T2778: Migrate "system syslog" to get_config_dict() to support new features from Backlog to Finished on the VyOS 1.4 Sagitta board.
May 12 2023, 5:27 AM · VyOS 1.4 Sagitta
c-po closed T2769: Add VRF support for syslog, a subtask of T2778: Migrate "system syslog" to get_config_dict() to support new features, as Resolved.
May 12 2023, 5:27 AM · VyOS 1.4 Sagitta
c-po closed T2769: Add VRF support for syslog as Resolved.
May 12 2023, 5:27 AM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta

May 11 2023

c-po moved T2769: Add VRF support for syslog from Backlog to Finished on the VyOS 1.4 Sagitta board.
May 11 2023, 6:46 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
c-po moved T2769: Add VRF support for syslog from Need Triage to Finished on the VyOS 1.3 Equuleus (1.3.3) board.
May 11 2023, 6:45 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
c-po added a comment to T2769: Add VRF support for syslog.

Backport for 1.3.3 https://github.com/vyos/vyos-1x/pull/2001

May 11 2023, 6:45 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
zsdc changed the status of T5220: Unattended installation from Open to In progress.
May 11 2023, 6:22 PM · VyOS 1.5 Circinus
zsdc created T5220: Unattended installation.
May 11 2023, 6:20 PM · VyOS 1.5 Circinus
jestabro added a comment to T5194: Add reference tree to vyos1x-config.

PR:
https://github.com/vyos/vyos1x-config/pull/17

May 11 2023, 1:47 PM · VyOS 1.4 Sagitta
Viacheslav edited projects for T5219: ddclient: Cloudflare doesn't require login, added: VyOS 1.4 Sagitta; removed ddclient.
May 11 2023, 1:46 PM · VyOS 1.4 Sagitta
Zen3515 created T5219: ddclient: Cloudflare doesn't require login.
May 11 2023, 1:43 PM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5217: Add firewall SYNPROXY .
May 11 2023, 12:48 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5186: QoS test cannot pass for 1.3.

@c-po I guess it should be v5.4.234

May 11 2023, 12:16 PM · VyOS 1.3 Equuleus (1.3.3)
Viacheslav added a comment to T4362: Wan Load Balancing - Can't create routing tables.

one issue.
the migration scripts don't take into account older load balancing configs.

if the test > rule > type > ping isn't explicitly set then the rule defaults to the next hop address and ignores the rule entirely.
the default rule seems to be the next hop address for the interface.

May 11 2023, 10:56 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5171: Use XML for conf-mode "load-balancing wan" instead of legacy templates.

set default check type ping https://github.com/vyos/vyos-1x/pull/1998

May 11 2023, 10:55 AM · VyOS 1.4 Sagitta
Zen3515 added a comment to T4983: `shutdown_required` should be set when running command `connect interface wwan0`.

This issue was tested in two version which are
1.4-rolling-202212080318
1.4-rolling-202209130217

May 11 2023, 9:01 AM
Viacheslav changed the status of T5213: Accel-ppp sending accounting interim updates acct-interim-interval option from In progress to Needs testing.
May 11 2023, 6:45 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav added a comment to T3829: Support separated TCP/IP stack via "ip netns".

Veth is not ready to work together with netns
As Interface moves entirely to logical stack and with the next commit will be recreated and try to move to netns again. As it doesn't see veth interface which moved to another logical stack, it tryes to recreate this interface.
We should either fix it or revert the previous commit.

May 11 2023, 3:46 AM · VyOS 1.5 Circinus

May 10 2023

jestabro added a subtask for T2665: vyos.xml.defaults for tag nodes: T5218: Revise vyos xml lib for bug fixes and extensions.
May 10 2023, 10:17 PM · VyOS 1.4 Sagitta
jestabro added a parent task for T5218: Revise vyos xml lib for bug fixes and extensions: T2665: vyos.xml.defaults for tag nodes.
May 10 2023, 10:16 PM · VyOS 1.4 Sagitta
jestabro added a comment to T5218: Revise vyos xml lib for bug fixes and extensions.

PR:
https://github.com/vyos/vyos-1x/pull/1997
This will remain in draft until corresponding PR fro vyos1x-config is merged.

May 10 2023, 10:16 PM · VyOS 1.4 Sagitta
jestabro changed the status of T5218: Revise vyos xml lib for bug fixes and extensions from Open to In progress.
May 10 2023, 10:01 PM · VyOS 1.4 Sagitta
syncer changed the status of T3829: Support separated TCP/IP stack via "ip netns" from Open to In progress.
May 10 2023, 7:27 PM · VyOS 1.5 Circinus
syncer changed the status of T160: Support NAT64 from Open to In progress.
May 10 2023, 7:08 PM · VyOS 1.4 Sagitta (1.4.0-epa1)
Viacheslav updated the task description for T5217: Add firewall SYNPROXY .
May 10 2023, 2:29 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5217: Add firewall SYNPROXY .

Add kernel module https://github.com/vyos/vyos-build/pull/348

May 10 2023, 1:05 PM · VyOS 1.4 Sagitta
Viacheslav created T5217: Add firewall SYNPROXY .
May 10 2023, 11:45 AM · VyOS 1.4 Sagitta
aserkin removed a watcher for VyOS 1.4 Sagitta: aserkin.
May 10 2023, 11:40 AM
Viacheslav closed T5209: dhclient load-balancing exit hook 04-dhcp-wanlb returned non-zero exit status as Resolved.
May 10 2023, 9:51 AM · VyOS 1.4 Sagitta
Viacheslav closed T5060: add a VRRP 'maintenance mode' as Resolved.
May 10 2023, 9:48 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.

PR for L2TP https://github.com/vyos/vyos-1x/pull/1988

May 10 2023, 9:39 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
a.apostoliuk added a comment to T5197: Conntrack-sync external cache commit error.

Not working. The same errors

May 10 2023, 9:32 AM · VyOS 1.4 Sagitta
Viacheslav closed T5065: Mixing `destination port xxx` and `destination group port-group yyy` in firewall rules doesn't work, but can be commited as Resolved.
May 10 2023, 8:10 AM · VyOS 1.4 Sagitta
Viacheslav created T5216: Add encrypting syslog traffic with TLS (SSL).
May 10 2023, 7:29 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5144: Modernize dynamic dns operation from Open to Needs testing.
May 10 2023, 7:20 AM · VyOS 1.4 Sagitta
dmbaturin created T5215: Add a built-in ICMP health check for VRRP groups.
May 10 2023, 12:36 AM · VyOS 1.4 Sagitta

May 9 2023

jjduru updated jjduru.
May 9 2023, 8:22 PM
c-po changed the status of T2778: Migrate "system syslog" to get_config_dict() to support new features from In progress to Needs testing.
May 9 2023, 5:39 PM · VyOS 1.4 Sagitta
c-po reopened T2769: Add VRF support for syslog as "Backport candidate".
May 9 2023, 5:39 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
c-po reopened T2769: Add VRF support for syslog, a subtask of T2778: Migrate "system syslog" to get_config_dict() to support new features, as Backport candidate.
May 9 2023, 5:39 PM · VyOS 1.4 Sagitta
c-po closed T2769: Add VRF support for syslog, a subtask of T2778: Migrate "system syslog" to get_config_dict() to support new features, as Resolved.
May 9 2023, 5:38 PM · VyOS 1.4 Sagitta
c-po closed T2769: Add VRF support for syslog as Resolved.
May 9 2023, 5:38 PM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
c-po claimed T5186: QoS test cannot pass for 1.3.
May 9 2023, 5:38 PM · VyOS 1.3 Equuleus (1.3.3)
masterit added a comment to T4362: Wan Load Balancing - Can't create routing tables.

one issue.
the migration scripts don't take into account older load balancing configs.

May 9 2023, 5:01 PM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5209: dhclient load-balancing exit hook 04-dhcp-wanlb returned non-zero exit status from Open to In progress.

PR https://github.com/vyos/vyatta-wanloadbalance/pull/18

May 9 2023, 2:49 PM · VyOS 1.4 Sagitta
Viacheslav closed T5202: After removal load-balancing a pid remained which used in dhclient-exit-hooks as Resolved.

Fixed with rewriting to systemd unit vyos-wan-load-balance.service

May 9 2023, 2:29 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.

@Viacheslav Thanks for the prompt response. Not sure if the change will also cover L2TP as well. For example:

set vpn l2tp remote-access authentication radius accounting-interim-interval '60'
May 9 2023, 2:19 PM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav reopened T5203: load-balancing wan add systemd unit instead of old vyatta-wanloadbalance.init, a subtask of T4470: Rewrite load-balancing wan to XML/Python, as Needs testing.
May 9 2023, 2:05 PM · VyOS 1.4 Sagitta
Viacheslav reopened T5203: load-balancing wan add systemd unit instead of old vyatta-wanloadbalance.init as "Needs testing".

Sometimes it stuck for ~1.5 minutes after deleting.

vyos@r14# delete load-balancing 
[edit]
vyos@r14# commit
May 9 2023, 2:05 PM · VyOS 1.4 Sagitta
joshua.hanley updated subscribers of T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.

@Viacheslav Thanks for the prompt response. Not sure if the change will also cover L2TP as well. For example:

May 9 2023, 12:57 PM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav added a comment to T5214: PPPoE-server incorrect warning if a named pool is defined.

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

May 9 2023, 12:40 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.

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

set service pppoe-server authentication mode 'radius'
set service pppoe-server authentication radius accounting-interim-interval '60'
set service pppoe-server authentication radius server 203.0.113.1 key '123'
set service pppoe-server client-ip-pool name POOL-01 gateway-address '192.0.2.1'
set service pppoe-server client-ip-pool name POOL-01 subnet '192.0.2.0/24'
set service pppoe-server interface eth1
May 9 2023, 12:39 PM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav changed the status of T5214: PPPoE-server incorrect warning if a named pool is defined from Open to In progress.
May 9 2023, 10:36 AM · VyOS 1.4 Sagitta
Viacheslav created T5214: PPPoE-server incorrect warning if a named pool is defined.
May 9 2023, 10:36 AM · VyOS 1.4 Sagitta
Viacheslav renamed T5213: Accel-ppp sending accounting interim updates acct-interim-interval option from Sending accounting interim updates to Accel-ppp sending accounting interim updates acct-interim-interval option.
May 9 2023, 9:28 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav changed the status of T5213: Accel-ppp sending accounting interim updates acct-interim-interval option from Open to In progress.
May 9 2023, 9:28 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav added a comment to T5186: QoS test cannot pass for 1.3.

this is cause by

https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.4.235&id=7a6fb69bbcb21e9ce13bdf18c008c268874f0480

tcindex classifier is removed by upstream kernel, so

08:04:48 DEBUG - filter add dev eth1 parent 11: protocol ip prio 1 handle 128 tcindex classid 11:a

fails.

May 9 2023, 9:01 AM · VyOS 1.3 Equuleus (1.3.3)
joshua.hanley updated the task description for T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.
May 9 2023, 8:18 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
joshua.hanley renamed T5213: Accel-ppp sending accounting interim updates acct-interim-interval option from Sending account interim upates to Sending accounting interim updates.
May 9 2023, 8:16 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
joshua.hanley updated the task description for T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.
May 9 2023, 8:13 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
joshua.hanley updated the task description for T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.
May 9 2023, 8:12 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
joshua.hanley created T5213: Accel-ppp sending accounting interim updates acct-interim-interval option.
May 9 2023, 8:11 AM · VyOS 1.3 Equuleus (1.3.5), VyOS 1.4 Sagitta
Viacheslav added a comment to T5211: route-map allows both IPv4 and IPv6 in one rule which never match.

We use FRR as the backend and it uses logical AND for match entries

May 9 2023, 7:11 AM
c-po added a comment to T2778: Migrate "system syslog" to get_config_dict() to support new features.

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

May 9 2023, 5:20 AM · VyOS 1.4 Sagitta
c-po changed the status of T2769: Add VRF support for syslog from Open to In progress.
May 9 2023, 5:20 AM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
c-po changed the status of T2769: Add VRF support for syslog, a subtask of T2778: Migrate "system syslog" to get_config_dict() to support new features, from Open to In progress.
May 9 2023, 5:20 AM · VyOS 1.4 Sagitta
c-po added a comment to T2769: Add VRF support for syslog.

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

May 9 2023, 5:20 AM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
rh7819 added a comment to T5186: QoS test cannot pass for 1.3.

this is cause by

May 9 2023, 3:04 AM · VyOS 1.3 Equuleus (1.3.3)

May 8 2023

fernando closed T5212: snmp community name -error with special carracter as Resolved.
May 8 2023, 7:20 PM · VyOS 1.3 Equuleus
fernando created T5212: snmp community name -error with special carracter .
May 8 2023, 7:07 PM · VyOS 1.3 Equuleus
c-po changed the status of T2778: Migrate "system syslog" to get_config_dict() to support new features from Open to In progress.
May 8 2023, 6:48 PM · VyOS 1.4 Sagitta
marekm created T5211: route-map allows both IPv4 and IPv6 in one rule which never match.
May 8 2023, 4:54 PM
Viacheslav created T5210: IPSec cosmetic bug for Warning vti inrerface.
May 8 2023, 12:56 PM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5060: add a VRRP 'maintenance mode'.

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

set high-availability disable
set high-availability vrrp group GRP01 address 192.0.2.47/32
set high-availability vrrp group GRP01 interface 'eth1'
set high-availability vrrp group GRP01 vrid '10'
May 8 2023, 11:47 AM · VyOS 1.4 Sagitta
Viacheslav changed the status of T5060: add a VRRP 'maintenance mode' from Open to In progress.
May 8 2023, 11:41 AM · VyOS 1.4 Sagitta
Viacheslav added a comment to T5048: QoS doesn't work correctly root task.

It doesn't like protocol tcp

vyos@r14# sudo tc filter replace dev eth1 parent 1: protocol all u32 match ip protocol tcp 0xff action police rate 300000000 burst 15k flowid 1:a
Illegal "match"
[edit]
vyos@r14#

But it works with protocol 6

vyos@r14# sudo tc filter replace dev eth1 parent 1: protocol all u32 match ip protocol 6 0xff action police rate 300000000 burst 15k flowid 1:a
[edit]
vyos@r14#

And next fail:

ardware UUID:    4d6f4d29-1ae8-446f-8d2b-3decd9da64c7
May 8 2023, 10:34 AM · VyOS 1.4 Sagitta
diodep added a comment to T5048: QoS doesn't work correctly root task.

On 1.4-rolling-202305080742, speed limit and protocol detection still not worked out correctly too.

May 8 2023, 10:11 AM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5209: dhclient load-balancing exit hook 04-dhcp-wanlb returned non-zero exit status.
May 8 2023, 9:55 AM · VyOS 1.4 Sagitta
Viacheslav created T5209: dhclient load-balancing exit hook 04-dhcp-wanlb returned non-zero exit status.
May 8 2023, 9:52 AM · VyOS 1.4 Sagitta
Viacheslav updated the task description for T5202: After removal load-balancing a pid remained which used in dhclient-exit-hooks.
May 8 2023, 9:39 AM · VyOS 1.4 Sagitta