[YMCS/YDMP Free Trial Program]Yealink would like to offer Free Trial Program of Yealink device management service for our current eligible customers. You can see the details below.
https://www.yealink.com/ydmp-freetrial-2020


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
Author Message
Fritz-EDV Offline
Junior Member
**

Posts: 7
Joined: Jun 2020
Reputation: 0
Post: #1
T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
Greetings community!

We are using the PhoneSuite CTI Software with Yealink phones - the TAPI Driver of this Software is connecting to the phone using IExplore core component. This was working fine some Firmware versions ago. After recently updating to 66.85.0.5 the TAPI Driver throws "HTTPS/SSL error" - This is caused due to a bug / incompatibility in IE with SSL2 in conjunction with TLS1.2 preventing successful connection to the phone. Workaround would be, to deactivate HTTPS function in Yealink phone completely. We would prefer, to not do this "workaround". We would rather like to just deactivate TLS 1.2 in phone config and fall back to TLS1.1. Is there a way to do this? Other solution would be, to disable HTTP redirection in phones webserver. TAPI Driver is only functioning properly with HTTP - but phone is forcing HTTP requests to be redirected to HTTPS in recent FW causing the mentioned bug above.

Are there any other solutions than "disable HTTPS" right now?

Thanks in advance!

For reference:
https://support.microsoft.com/en-us/help...-and-tls-1

https://translate.google.com/translate?s...Findex.htm - only in german, translated via google.
(This post was last modified: 06-12-2020 02:13 PM by Fritz-EDV.)
06-12-2020 02:06 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
complex1 Offline
3CX Adv. Cert. Engineer
*****

Posts: 1,522
Joined: Jan 2014
Reputation: 44
Post: #2
RE: T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
(06-12-2020 02:06 PM)Fritz-EDV Wrote:  Greetings community!

We are using the PhoneSuite CTI Software with Yealink phones - the TAPI Driver of this Software is connecting to the phone using IExplore core component. This was working fine some Firmware versions ago. After recently updating to 66.85.0.5 the TAPI Driver throws "HTTPS/SSL error" - This is caused due to a bug / incompatibility in IE with SSL2 in conjunction with TLS1.2 preventing successful connection to the phone. Workaround would be, to deactivate HTTPS function in Yealink phone completely. We would prefer, to not do this "workaround". We would rather like to just deactivate TLS 1.2 in phone config and fall back to TLS1.1. Is there a way to do this? Other solution would be, to disable HTTP redirection in phones webserver. TAPI Driver is only functioning properly with HTTP - but phone is forcing HTTP requests to be redirected to HTTPS in recent FW causing the mentioned bug above.

Are there any other solutions than "disable HTTPS" right now?

Thanks in advance!

For reference:
https://support.microsoft.com/en-us/help...-and-tls-1

https://translate.google.com/translate?s...Findex.htm - only in german, translated via google.

Hi,

What you can do to deactivate TLS1.2 and activate TLS1.1 is auto provisioning:
static.security.default_ssl_method = 4
This configures the TLS version to use for handshake negotiation between the phone and server (for example, SIP registration server, provisioning server)

Hope this will help.

Kind regards,
Frank.

I am not an employee of Yealink.
Dutch is my native language, not English. Apologies for my imperfect grammar.
Please do not send unsolicited PM messages. I will not answer them.
06-12-2020 03:31 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Fritz-EDV Offline
Junior Member
**

Posts: 7
Joined: Jun 2020
Reputation: 0
Post: #3
RE: T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
(06-12-2020 03:31 PM)complex1 Wrote:  Hi,

What you can do to deactivate TLS1.2 and activate TLS1.1 is auto provisioning:
static.security.default_ssl_method = 4
This configures the TLS version to use for handshake negotiation between the phone and server (for example, SIP registration server, provisioning server)

Hope this will help.

Thanks for your reply! In the meantime i stumbled across another thread mentioning this option. I had already tried - but without success. Seems like the TAPI driver is not compatible with HTTPS at all and not "only faulty" due to the mentioned TLS bug. Sad

So only chance seems to be to disable HTTP -> HTTPS redirection in phone webserver. But I think such feature has to be added from Yealink development team. Maybe they can add a checkbox in EWS to enable / disable this
(This post was last modified: 06-12-2020 03:49 PM by Fritz-EDV.)
06-12-2020 03:42 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
complex1 Offline
3CX Adv. Cert. Engineer
*****

Posts: 1,522
Joined: Jan 2014
Reputation: 44
Post: #4
RE: T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
(06-12-2020 03:42 PM)Fritz-EDV Wrote:  
(06-12-2020 03:31 PM)complex1 Wrote:  Hi,

What you can do to deactivate TLS1.2 and activate TLS1.1 is auto provisioning:
static.security.default_ssl_method = 4
This configures the TLS version to use for handshake negotiation between the phone and server (for example, SIP registration server, provisioning server)

Hope this will help.

Thanks for your reply! In the meantime i stumbled across another thread mentioning this option. I had already tried - but without success. Seems like the TAPI driver is not compatible with HTTPS at all and not "only faulty" due to the mentioned TLS bug. Sad

So only chance seems to be to disable HTTP -> HTTPS redirection in phone webserver. But I think such feature has to be added from Yealink development team. Maybe they can add a checkbox in EWS to enable / disable this

Then try:
static.wui.https_enable = 0
(Network > Advanced > Web Server > HTTPS)
This disables to access the web user interface of the phone over a secure tunnel (HTTPS)

Kind regards,
Frank.

I am not an employee of Yealink.
Dutch is my native language, not English. Apologies for my imperfect grammar.
Please do not send unsolicited PM messages. I will not answer them.
06-12-2020 03:55 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Fritz-EDV Offline
Junior Member
**

Posts: 7
Joined: Jun 2020
Reputation: 0
Post: #5
RE: T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
(06-12-2020 03:55 PM)complex1 Wrote:  Then try:
static.wui.https_enable = 0
(Network > Advanced > Web Server > HTTPS)
This disables to access the web user interface of the phone over a secure tunnel (HTTPS)

Won't this option shut down HTTPS function entirely for this device?
06-12-2020 04:05 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
complex1 Offline
3CX Adv. Cert. Engineer
*****

Posts: 1,522
Joined: Jan 2014
Reputation: 44
Post: #6
RE: T4x: Possible to deactivate TLS 1.2 / disable HTTP redirection?
(06-12-2020 04:05 PM)Fritz-EDV Wrote:  
(06-12-2020 03:55 PM)complex1 Wrote:  Then try:
static.wui.https_enable = 0
(Network > Advanced > Web Server > HTTPS)
This disables to access the web user interface of the phone over a secure tunnel (HTTPS)

Won't this option shut down HTTPS function entirely for this device?

No. Only the web user interface.

Kind regards,
Frank.

I am not an employee of Yealink.
Dutch is my native language, not English. Apologies for my imperfect grammar.
Please do not send unsolicited PM messages. I will not answer them.
06-12-2020 08:13 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Disable X button to reject calls hercross 0 841 07-07-2023 04:01 PM
Last Post: hercross
  Send different codes on keystroke (enable and disable) Marsl84 0 1,013 04-21-2023 08:15 PM
Last Post: Marsl84
  T46G - shortcut to activate/ deactivate accounts? westats 4 5,645 07-07-2022 11:40 AM
Last Post: westats
  Disable "recall" transfers Luke Escude 9 24,938 10-29-2021 09:47 PM
Last Post: radartc
  yealink T46g cannot disable lcd screensaver mike702 2 7,791 02-10-2021 04:33 AM
Last Post: jamesbchz
  Feature request - X header, disable missed call DarrenWilliams 0 3,641 10-14-2020 02:52 PM
Last Post: DarrenWilliams
  Disable SSL / TLS jakes 1 8,845 04-14-2020 07:18 AM
Last Post: Mamoulian
  Disable SMS/IM Beeping On Handset gflow 1 5,323 02-12-2020 08:31 AM
Last Post: complex1
  T48G or T48S Disable dislpad when off-hook RRC_Support 1 6,013 08-30-2019 09:03 AM
Last Post: Jacky_Yealink
  HTTP only CWR 16 33,787 08-05-2019 02:46 PM
Last Post: justingoldberg

Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us   Yealink   Return to Top   Return to Content   Lite (Archive) Mode   RSS Syndication