Issues with TLS 1.0 and 1.1

Hello,

I have some devices that report in to my Genieacs server and I have no problem when the device uses TLS v1.2 in its TR069 settings.

When I set it to TLS v1.0 or v1.1 the ACS server seems to stop receiving requests from the devices. I was curious if anyone else has had this issue before and/or if I can set Genieacs up to receive requests through TLS 1.0 or TLS 1.1?

I currently have a basic implementation of Genieacs v1.2.1 set up for testing with vanilla settings.

1 Like

I faced this problem too. Now I’m trying to fix it in NodeJS but without success.
Can you help us? @zaidka

Thank you.

TLS 1.1 and 1.2 are disabled by default in Node.js. You can enable them using ‘NODE_OPTIONS’ environment variable. See TLS (SSL) | Node.js v17.8.0 Documentation

1 Like

@bjornen I try this and it worked

#!/usr/bin/env -S node –tls-min-v1.0

Thank you @zaidka

@fa12mkungz

Thank you, I will give this a try.

@fa12mkungz Can you share the instructions of how to modify the TLS Enable?