Self sign-up has been disabled due to increased spam activity. If you want to get access, please send an email to a project owner (preferred) or at gitlab(at)nic(dot)cz. We apologize for the inconvenience.
My Turris Omnia just got auto-updated from 6.4.4 to 6.5.0. The openvpn client configuration that I have for multiple years suddenly stopped working properly. The vpn connection shows as connected, but no traffic flows through the router anymore with the vpn on. I have to disable the vpn to get connectivity again.
Which logs can help debug this situation?
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
...
Show closed items
Linked items
0
Link issues together to show that they're related.
Learn more.
Same issue here. Turris 1.0 as server and Shield as ovpn client. Connection broken after automatic update of the shield to 6.5. It is an issue with routing between the ports on the Shield. Connection works from the shield (ssh). But not from the clients connected to the lan ports.
sorry for troubles. Look closer on the problem and I find the "bug". As temporary solution open on client's side openvpn under init.d folder with editor.
vim /etc/init.d/openvpn
go to the line 142, you should see here something like "local conf=$(basename "$3")" change it to:
local conf="$3"
and then edit few lines lower:
"local client=$(grep -qEx "client|tls-client" "$dir/$conf" && echo 1)" to local client=$(grep -qEx "client|tls-client" "$conf" && echo 1)
then save the changes and restart openvpn service with command /etc/init.d/openvpn reload