- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2023 10:22 AM
I have a dev instance setup and I can connect to it from multiple different hosts in our network, except the one I am doing development on.
$ openssl s_client -connect dev########.service-now.com:443 --state
CONNECTED(00000003)
SSL_connect:before SSL initialization
SSL_connect:SSLv3/TLS write client hello
SSL_connect:error in SSLv3/TLS write client hello
write:errno=104 # # 104 is ECONNRESET for "Connection reset by peer"
---
Is there a place I can go to unblock the IP or find out why the remote is disconnecting?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2023 06:30 AM
It turns out there was a firewall issue in our local network. The problem is now resolved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2023 10:41 AM
It may be a crypto protocol problem.
Does your browser use at least TLS1.2?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2023 11:31 AM
Browser isn't involved, I am connecting from OpenSSL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2023 11:35 AM
The same.
What happens if you add command line parameter -tls1_2?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2023 11:37 AM
Same error:
$ openssl s_client -connect dev142043.service-now.com:443 --state -tls1_2
CONNECTED(00000003)
SSL_connect:before SSL initialization
SSL_connect:SSLv3/TLS write client hello
SSL_connect:error in SSLv3/TLS write client hello
write:errno=104
