Page MenuHomeVyOS Platform
Feed All Stories

May 12 2023

c-po committed rVYOSONEXd1abba032291: ocserv: T3896: improve XML definition and add warning about 3rd party configs.
May 12 2023, 7:07 PM
GitHub <noreply@github.com> committed rVYOSONEX380bc7ddf6b9: T2778: Fix syslog octet_counted format (authored by Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>).
May 12 2023, 6:39 PM
GitHub <noreply@github.com> committed rVYOSONEX25ddb57b66de: Merge pull request #2003 from bjw-s/octet_counted (authored by c-po).
May 12 2023, 6:39 PM
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
PeppyH committed rVYOSONEX80d83f6392ce: ocserv: T3896: CLI help and description rewording.
May 12 2023, 6:15 PM
PeppyH committed rVYOSONEX70794c8266ff: ocserv: T3896: add CLI options to configure ocserv config-per-user/group.
May 12 2023, 6:15 PM
PeppyH committed rVYOSONEX93de3abe1368: ocserv: T3896: refactor: change ocserv config-per-x node name.
May 12 2023, 6:15 PM
GitHub <noreply@github.com> committed rVYOSONEXc60e9c932cab: Merge pull request #1783 from PeppyH/T3896-ocserv-config-per-x (authored by c-po).
May 12 2023, 6:15 PM
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
Zen3515 committed rVYOSONEX9fc53924271c: T5219: ddclient: Cloudflare doesn't require login.
May 12 2023, 4:01 PM
GitHub <noreply@github.com> committed rVYOSONEX0224707acc72: Merge pull request #2002 from Zen3515/fix-cloudflare-ddns (authored by c-po).
May 12 2023, 4:01 PM
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 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 Unknown Status to Resolved.
May 12 2023, 5:27 AM · VyOS 1.4 Sagitta
c-po changed the status of T2769: Add VRF support for syslog from Unknown Status to Resolved.
May 12 2023, 5:27 AM · VyOS 1.3 Equuleus (1.3.3), VyOS 1.4 Sagitta
c-po committed rVYOSONEXbdc9e293a9ac: syslog: T2769: add VRF support.
May 12 2023, 3:07 AM
GitHub <noreply@github.com> committed rVYOSONEX0b85c416525e: Merge pull request #2001 from c-po/t2769-syslog-vrf-backport (authored by Viacheslav).
May 12 2023, 3:07 AM
dmbaturin committed rVYOSONEX07de3355e92f: vyos.utils: T5195: fix option list output in vyos.utils.dict..
May 12 2023, 1:35 AM
dmbaturin committed rVYOSONEX00b48dfa0a15: vrrp: T5215: fix VRRP commit error when health check is not configured.
May 12 2023, 1:35 AM
GitHub <noreply@github.com> committed rVYOSONEX25545b1e3cf2: Merge pull request #1999 from dmbaturin/T5251-vrrp-group-ping-fix (authored by jestabro).
May 12 2023, 1:35 AM

May 11 2023

Viacheslav committed rVYOSONEX163ad47c7906: T5171: Set default value icmp for load-balancing test check.
May 11 2023, 7:16 PM
GitHub <noreply@github.com> committed rVYOSONEX59b8b3879a3f: Merge pull request #1998 from sever-sever/T5171 (authored by c-po).
May 11 2023, 7:16 PM
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 Rolling
zsdc created T5220: Unattended installation.
May 11 2023, 6:20 PM · VyOS Rolling
dmbaturin committed rVYOSONEXc739eb23bb26: vyos.util: T5195: remove the unused camel case to snake case function.
May 11 2023, 4:49 PM
GitHub <noreply@github.com> committed rVYOSONEXd051e9def858: Merge pull request #2000 from dmbaturin/T5195-remove-snake-case-function (authored by jestabro).
May 11 2023, 4:49 PM
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 · VyOS Rolling
mkorobeinikov <92354771+mkorobeinikov@users.noreply.github.com> committed rVYOSONEX292ac4e7c4d4: T5158: Refactoring the commad '$ sh interfaces counters'.
May 11 2023, 7:23 AM
GitHub <noreply@github.com> committed rVYOSONEXc3f957b9bfc7: Merge pull request #1956 from mkorobeinikov/current (authored by c-po).
May 11 2023, 7:23 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 Rolling

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
frebib committed rVYOSONEXf5cc84538605: veth: T3829: Allow moving veth into netns.
May 10 2023, 7:35 PM
GitHub <noreply@github.com> committed rVYOSONEX834a786a308d: Merge pull request #1996 from frebib/veth-netns (authored by c-po).
May 10 2023, 7:35 PM
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 Rolling
zsdc committed rVYOSONEX748199b10df1: cloud-init: T5190: Added Cloud-init pre-configurator.
May 10 2023, 7:15 PM
GitHub <noreply@github.com> committed rVYOSONEX7ccd7b4ab990: Merge pull request #1979 from zdc/T5190-equuleus (authored by c-po).
May 10 2023, 7:15 PM
dmbaturin committed rVYOSONEX63fb721b96ba: vyos.utils: T5195: add vyos.utils.file.
May 10 2023, 7:14 PM
GitHub <noreply@github.com> committed rVYOSONEXe5e6a32eced3: Merge pull request #1989 from dmbaturin/T5195-file-utils (authored by c-po).
May 10 2023, 7:14 PM
dmbaturin committed rVYOSONEXfe7232e6a91e: vyos.utils: T5195: add vyos.utils.convert.
May 10 2023, 7:14 PM
GitHub <noreply@github.com> committed rVYOSONEXced599b0d6b0: Merge pull request #1990 from dmbaturin/T5195-conversion-utils (authored by c-po).
May 10 2023, 7:14 PM
dmbaturin committed rVYOSONEX2309df5f1c73: vyos.utils: T5195: add vyos.utils.io.
May 10 2023, 7:13 PM
GitHub <noreply@github.com> committed rVYOSONEX79a693ed7adf: Merge pull request #1991 from dmbaturin/T5195-io-utils (authored by c-po).
May 10 2023, 7:13 PM
dmbaturin committed rVYOSONEX9495ac100114: vyos.utils: T5195: add vyos.utils.dict.check_mutually_exclusive_options.
May 10 2023, 7:13 PM
dmbaturin committed rVYOSONEX8dc6b0aa8d7b: vrrp: T5215: Add built-in ping check for VRRP groups.
May 10 2023, 7:13 PM
GitHub <noreply@github.com> committed rVYOSONEX6eaa327c2a3b: Merge pull request #1987 from dmbaturin/T5251-vrrp-group-ping (authored by c-po).
May 10 2023, 7:13 PM
Viacheslav committed rVYOSONEX153f3579d703: T5213: Add accounting-interim-interval option for L2TP-server.
May 10 2023, 7:13 PM
Viacheslav committed rVYOSONEX98c310462ded: T5213: Add accounting-interim-interval option for PPTP-server.
May 10 2023, 7:12 PM
GitHub <noreply@github.com> committed rVYOSONEX96d9bf0a88fc: Merge pull request #1988 from sever-sever/T5213 (authored by c-po).
May 10 2023, 7:12 PM
Viacheslav committed rVYOSONEX3c2a206e733c: T5217: Add smoketest for CONFIG_NFT_SYNPROXY kernel option.
May 10 2023, 7:11 PM
GitHub <noreply@github.com> committed rVYOSONEXb469ed55403b: Merge pull request #1992 from sever-sever/T5217 (authored by c-po).
May 10 2023, 7:11 PM
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 changed the status of T2769: Add VRF support for syslog from Resolved to Unknown Status.
May 9 2023, 5:39 PM · 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 Resolved to Unknown Status.
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)
zsdc committed rVYOSONEX3c229a3646a5: cloud-init: T5190: Added Cloud-init pre-configurator.
May 9 2023, 5:26 PM