Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to print out pool members using SSL?

Seçkin1983
Altostratus
Altostratus

Hello,

Is that possible to learn, which pool members use SSL. I think, we can do this from command line but how?

Many Thanks

Seçkin

2 REPLIES 2

mihaic
MVP
MVP

Paulius
MVP
MVP

@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.