I have a client which does not support tls_auth, the client is a Grandstream DP750.
I can see that I can disable it by editing the mongo db but I’m not sure if that is going to work.
What can I do to disable tls_auth on a particular server.
Thanks!
I have a client which does not support tls_auth, the client is a Grandstream DP750.
I can see that I can disable it by editing the mongo db but I’m not sure if that is going to work.
What can I do to disable tls_auth on a particular server.
Thanks!
You will need to either use the API to modify the hidden tls_auth server option or edit the document in the servers collection of the database to set tls_auth to false. The MongoDB shell command below will disable TLS on all servers.
use pritunl
db.servers.updateMany({}, {$set: {"tls_auth": false}})
Thank you
Works perfectly