Forum Discussion
you can try this:
Seçkin1983 definitely what mihaic has stated but you can also use curl from the F5 bash prompt to see this output in a slightly different way. The following is an example of what you can run.
curl -Ivk "https://<pool_member_IP>:<pool_member_port>/"
If your server requires that you provide a valid hostname you can do the following instead.
curl -IvkH 'Host: <site_host>' "https://<pool_member_IP>:<pool_member_port>/"
Both of these will step through the SSL handshake process providing you the SSL certificate that is used which you can then see that this pool member is expecting SSL communication over that IP and port combination.