15-Aug-2020 18:39
Pool members aren't coming up after applying https monitor.
Send string : GET /BrowserWeb HTTP/1.1\r\n
Receive string : 200
Could anyone assist. Thanks!
17-Aug-2020
08:51
- last edited on
04-Jun-2023
21:19
by
JimmyPackets
Hello Samit.
Three steps for troubleshooting:
1) If it were possible, check with a HTTP monitor using the same config.
2) Use curl or openssl for checking if the response is correct (200 OK).
# curl -kv https://<server>/BrowserWeb
# echo -e "GET /BrowserWeb HTTP/1.1\r\nHost:<server>\r\n\r\n" | openssl s_client -quiet -connect <server>:443 2>&1
Note: replace <server> with the IP or hostname.
2) Capture traffic using tcpdump or ssldump to check that no SSL error are occurring.
Regards,
Dario.