06-16-2005 09:39 PM
I do not have a SSL module.
How can I configure SSL without a SSL module?
any comment will appreciated
Thanks in advance.
Solved! Go to Solution.
06-20-2005 09:04 PM
You can not terminate an SSL session on a CSS w/o an SSL module in place.
Rather, you can terminate right onto the Servers at the back-end, bypassing the CSS for SSL communications.
06-20-2005 09:04 PM
You can not terminate an SSL session on a CSS w/o an SSL module in place.
Rather, you can terminate right onto the Servers at the back-end, bypassing the CSS for SSL communications.
06-20-2005 09:13 PM
How can I configure it? redirect? however, could you please give me an example or point me a URL.
And what I want do is load balancing for both http(80) and https(433) on three web servers.
Many Regards
06-20-2005 10:23 PM
Refer the model config below:
You might be well aware of applying for SSL certificates with CAs, however I am giving you the procedure below if you are not.
For the server side SSL termination, generate a 'certificate-request' on the server and use it at verisign.com.au web site. You can apply for a full certificate an year long or two for a fee. You can also get a 30-day free signed certificate I hope.
Once received the singed-certificate from verisign upload it onto your server. I think you might need one certificate for each server per url but not sure.
owner westernsydney_uni
content http
add service server1-http
add service server2-http
add service server3-http
protocol tcp
port 80
url "//xxx.xxx/*"
balance aca
vip address yy.yy.yy.yy
active
content https
protocol tcp
port 443
add service server1-https
add service server2-https
add service server3-https
balance srcip
vip address yy.yy.yy.yy
active
service server1-https
ip address xx.xx.xx.xx
protocol tcp
port 443
keepalive tcp-close fin
keepalive port 443
active
service server2-https
ip address xx.xx.xx.xx
protocol tcp
port 443
keepalive tcp-close fin
keepalive port 443
active
service server3-https
ip address xx.xx.xx.xx
protocol tcp
port 443
keepalive tcp-close fin
keepalive port 443
active
service server1-http
ip address xx.xx.xx.xx
protocol tcp
port 80
keepalive type tcp
keepalive port 80
keepalive tcp-close fin
active
service server2-http
ip address xx.xx.xx.xx
protocol tcp
port 80
keepalive type tcp
keepalive port 80
keepalive tcp-close fin
active
service server3-http
ip address xx.xx.xx.xx
protocol tcp
port 80
keepalive type tcp
keepalive port 80
keepalive tcp-close fin
active
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide