In T3655#143947, @fernando wrote:it doesn't seem the same problem as here, this logic that was applied over this version was vrf not on the table . Could you share full configuration ? there is some point over vrfs / vrf default /leaking that are not clear. So I can replicate the scenery and we see what is going on .
- Feed Queries
- All Stories
- Search
- Feed Search
- Transactions
- Transaction Logs
Feed All Stories
All Stories
All Stories
Mar 5 2023
Mar 5 2023
Mar 4 2023
Mar 4 2023
GitHub <noreply@github.com> committed rVYOSONEX493af3f3417c: Merge pull request #1862 from jestabro/schema-generate (authored by c-po).
Mar 3 2023
Mar 3 2023
Needs final testing before PR
https://github.com/vyos/vyos-1x/compare/current...jestabro:literal
jestabro updated the task description for T5051: Use Literal types to provide op-mode CLI choices and API enums.
jestabro changed the status of T5051: Use Literal types to provide op-mode CLI choices and API enums from Open to In progress.
jestabro triaged T5051: Use Literal types to provide op-mode CLI choices and API enums as Normal priority.
it doesn't seem the same problem as here, this logic that was applied over this version was vrf not on the table . Could you share full configuration ? there is some point over vrfs / vrf default /leaking that are not clear. So I can replicate the scenery and we see what is going on .
Possible completions:
<0-4294967295> DHCP lease time in seconds
Standard lease I have in the configuration is "lease 4294967295"
That is a static reservation. Ensures I have the same IP for a specific host.
VyOS 1.3-stable-202303030442 Works as expected
vyos@r1# run show conf com | match open set vpn openconnect authentication mode 'radius' set vpn openconnect authentication radius server 192.168.122.14 key 'vyos-secret' set vpn openconnect listen-ports tcp '4433' set vpn openconnect listen-ports udp '4433' set vpn openconnect network-settings client-ip-settings subnet '100.64.12.0/24' set vpn openconnect ssl ca-cert-file '/config/auth/ca.crt' set vpn openconnect ssl cert-file '/config/auth/server.crt' set vpn openconnect ssl key-file '/config/auth/server.key' [edit] vyos@r1# [edit] vyos@r1# run show version all | match ocser ii ocserv 1.1.6-3 amd64 OpenConnect VPN server compatible with Cisco AnyConnect VPN [edit] vyos@r1# [edit] vyos@r1# run show openconnect-server sessions interface username ip remote IP RX TX state uptime ----------- ---------- ------------- --------------- ------ --------- --------- -------- sslvpn0 foo 100.64.12.225 192.168.122.205 1.3 KB 152 bytes connected 55s [edit] vyos@r1#
n.fort changed the status of T5050: Firewall - Add options for logging packets from Open to Confirmed.
PR https://github.com/vyos/vyos-1x/pull/1866
set high-availability vrrp global-parameters notification mail 'destination@bar.local' set high-availability vrrp global-parameters notification send-faults set high-availability vrrp global-parameters notification smtp-server address '127.0.0.1' set high-availability vrrp global-parameters notification smtp-server connection-timeout '30' set high-availability vrrp global-parameters notification smtp-server port '25' set high-availability vrrp global-parameters notification source-mail 'foo@bar.local' set high-availability vrrp global-parameters router-id 'MYROUTER'
In T5048#143916, @Viacheslav wrote:As I understand there no percent or auto and it now expects only rate, needs to check
vyos@r14# set qos policy shaper test default bandwidth Possible completions: <number> Bits per second <number>bit Bits per second <number>kbit Kilobits per second <number>mbit Megabits per second <number>gbit Gigabits per second <number>tbit Terabits per second <number>
I don't know why when I set bandwidth from 10k-10mbit/s, the QoS shaper works correctly but when I set to 100mbit/s~600mbit/s, I only get fews of mbit/s or tens of mbit/s. When I set above about 800mbit/s it looks like no limitation at all. When I manually set limit by tc commands, it seems okay.
As I understand there no percent or auto and it now expects only rate, needs to check
vyos@r14# set qos policy shaper test default bandwidth Possible completions: <number> Bits per second <number>bit Bits per second <number>kbit Kilobits per second <number>mbit Megabits per second <number>gbit Gigabits per second <number>tbit Terabits per second <number>
I don't know why I set a 100mbit/s shaper, but result in lots of retry and 5~10mbit/s speed.
In T5048#143912, @Viacheslav wrote:Try the latest rolling release
@Jimz Which lease time are you useing?
starts 5 2023/03/03 02:09:13; ends never;
With default config I see something like
lease 192.0.2.10 {
starts 5 2023/03/03 08:07:15;
ends 6 2023/03/04 08:07:15;
...Try the latest rolling release
I have almost same problem here. Can't NAT between two VRFs correctly. The outgoing packet has been NATed correctly but the incoming packet seems be dropped, can't reach the source, it seems the return packet can't be tracked correctly.
sh dhcp server leases
Traceback (most recent call last):
File "/usr/libexec/vyos/op_mode/dhcp.py", line 286, in <module>
res = vyos.opmode.run(sys.modules[__name__])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/vyos/opmode.py", line 227, in run
res = func(**args)
^^^^^^^^^^^^
File "/usr/libexec/vyos/op_mode/dhcp.py", line 246, in _wrapper
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/usr/libexec/vyos/op_mode/dhcp.py", line 277, in show_server_leases
lease_data = _get_raw_server_leases(family=family, pool=pool, sorted=sorted, state=state)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/libexec/vyos/op_mode/dhcp.py", line 85, in _get_raw_server_leases
data_lease['end'] = lease.end.timestamp()
^^^^^^^^^^^^^^^^^^^AttributeError: 'NoneType' object has no attribute 'timestamp'
After the first lease I got the same error:
diodep added a comment to T5049: Configure GRE over IPsec tunnel when source port is in VRF, OSPF causes GRE tunnel broken..
Btw, in this rolling release, OSPF BFD in tunnel doesn't work correctly too.
You can manually modify strongswan's systemd service file to add 'ip vrf exec charond'. But it causes other problem.
I backed up /config/dhcpd.leases - replaced it with an empty file. And it appears to be working, the /config/dhcpd.leases file seems to have been corrupted or malformated.
Is there a way to share it privately? It has some of the internal domains and leases.
Mar 2 2023
Mar 2 2023
GitHub <noreply@github.com> committed rVYOSONEXe5eb4f332f03: Merge pull request #1865 from jbordongit/T4916-sagitta (authored by c-po).
PR https://github.com/vyos/vyos-1x/pull/1865
We found some issues for the migration and we fixed it on this one.
GitHub <noreply@github.com> committed rVYOSONEXd0adefa390ed: Merge pull request #1864 from jestabro/system-login-error (authored by c-po).
GitHub <noreply@github.com> committed rVYOSONEX1ab8a32a7cd3: Merge pull request #1863 from sarthurdev/T5039 (authored by c-po).
I was interested in why ping-check is no longer available.
There is a good article about it here:
https://kb.isc.org/docs/why-doesnt-kea-support-ping-check
sarthurdev changed the status of T3316: Use Kea DHCP(v6) instead of ISC DHCP(v6), a subtask of T3315: Supports dhcpv6 agent execution from pppoe0 interface, from Open to In progress.
sarthurdev changed the status of T3316: Use Kea DHCP(v6) instead of ISC DHCP(v6) from Open to In progress.
Have started work on migrating isc-dhcp v4/v6 server to Kea.
In T5041#143810, @fernando wrote:Could we use something like Dannil proposes? https://vyos.dev/T4883 , as you said FRR staticd don't allow this option but it could be useful when we have different mtu over the interface.
Could we use something like Dannil proposes? https://vyos.dev/T4883 , as you said FRR staticd don't allow this option but it could be useful when we have different mtu over the interface.
Cannot reproduce it with this configuration (VyOS 1.4-rolling-202302280651, don't have a lot of file descriptors):
set protocols bfd peer 192.0.2.5 multihop set protocols bfd peer 192.0.2.5 source address '192.0.2.1' set protocols bfd peer 192.0.2.6 multihop set protocols bfd peer 192.0.2.6 source address '192.0.2.1' set protocols bfd profile BBR interval multiplier '3' set protocols bfd profile BBR interval receive '350' set protocols bfd profile BBR interval transmit '350'
The thing is, we don't use iproute2 commands for adding a route. We use FRR staticd for it. As an exception failover route that uses iproute2 commands
FRRouting 8.4.2 doesn't have such option
r14(config)# ip route 192.0.2.1/32 203.0.113.1
<cr>
(1-255) Distance value for this route
INTERFACE IP gateway interface name
dum0 eth0 eth1 eth2 lo veth0 veth1 wg0
Null0 Null interface
color SR-TE color
label Specify label(s) for this route
nexthop-vrf Specify the VRF
table Table to configure
tag Set tag for this route
vrf Specify the VRFshow vpn ipsec remote-access shows only accel-ppp l2tp, pptp https://github.com/vyos/vyos-1x/blob/current/src/op_mode/show_vpn_ra.py
Mar 1 2023
Mar 1 2023
c-po changed the status of T4989: QoS Policy Limiter - classes for marked traffic do not work from Open to Needs testing.
Add another feature that is improved if we're thinking of moving to KEA :
jestabro added a comment to T5040: Generate API GraphQL schema on installation, rather than dynamically.
jestabro triaged T5040: Generate API GraphQL schema on installation, rather than dynamically as Normal priority.
Christian Poessinger <christian@poessinger.com> committed rVYOSONEXa214896fca17: container: T4014: Add `command`, `arg` and `entrypoint` configuration options… (authored by Zen3515).
Christian Poessinger <christian@poessinger.com> committed rVYOSONEX4bcc364559be: T4967: Allow setting container hostname (authored by Viacheslav).
Christian Poessinger <christian@poessinger.com> committed rVYOSONEX3fbe35c8ab0e: T4967: xml: provide re-usable constraint for CLI host-name definitions (authored by c-po).
GitHub <noreply@github.com> committed rVYOSONEXc4afde0f76a3: Merge pull request #1861 from c-po/container-backports (authored by Viacheslav).
Youyuan <youyuanluo@126.com> committed rVYOSONEXefd51fb7876d: policy: T5035: Add more actions to policy route rule.
GitHub <noreply@github.com> committed rVYOSONEX112fabb4bbb0: Merge branch 'vyos:current' into current (authored by Youyuan <83439858+Yuanandcircle@users.noreply.github.com>).
GitHub <noreply@github.com> committed rVYOSONEX157ac088a57f: Merge pull request #1854 from Yuanandcircle/current (authored by c-po).
Currently digging through a bug with ocserv upstream maintainers, might get a 1.1.7 once we fix that or atleast a 1.1.6-4.
Aside from the weird Duo+RADIUS thing, the version noted in this issue currently runs great.
Feb 28 2023
Feb 28 2023
GitHub <noreply@github.com> committed rVYOSONEX851364c00e05: Merge pull request #1857 from nicolas-fort/nft_queue (authored by c-po).
GitHub <noreply@github.com> committed rVYOSONEX36cf6ea9a1c8: Merge pull request #1860 from sever-sever/T4967 (authored by c-po).
My Xbox One game console is set to use "automatic" settings regarding both port selection and forwarding (via UPNP), and in doing so it chose port 54060 on my LAN (and has been distributed the IP address 172.23.217.102 from my DHCP server — which is not VyOS, by the way).
A few issues I'm encountering while trying to test it right now:
Viacheslav changed the status of T4625: Update ocserv to current revision (1.1.6) from In progress to Needs testing.
PR for 1.3 https://github.com/vyos/vyos-build/pull/316
Viacheslav changed the status of T4625: Update ocserv to current revision (1.1.6) from Open to In progress.