Networking Forums

Networking Forums > Computer Networking > Linux Networking > Linux SSL Offloader

Reply
Thread Tools Display Modes

Linux SSL Offloader

 
 
cferland
Guest
Posts: n/a

 
      09-02-2005, 02:21 PM
Hello,

I would like to use Linux as an SSL Offloader.

Via a Load Balancing switch, SSL traffic is re-directed to 2 Linux
servers for SSL encryption/decryption. The web sites are not on the
same servers. The Linux servers are just used to offload the SSL
process.

HTTPS ---> Load Balancer ---> HTTP Web server
|
|
/ \
Linux Linux
SSL1 SSL2

What software is required on the Linux servers to perform this?

Thank you.

Charles

 
Reply With Quote
 
 
 
 
tony.p.lee@gmail.com
Guest
Posts: n/a

 
      09-02-2005, 05:13 PM
Apache can do this easily. Just google apache, ssl, reverse proxy.

 
Reply With Quote
 
Olivier
Guest
Posts: n/a

 
      09-04-2005, 10:39 AM
cferland wrote:
> Hello,
>
> I would like to use Linux as an SSL Offloader.
>
> Via a Load Balancing switch, SSL traffic is re-directed to 2 Linux
> servers for SSL encryption/decryption. The web sites are not on the
> same servers. The Linux servers are just used to offload the SSL
> process.
>
> HTTPS ---> Load Balancer ---> HTTP Web server
> |
> |
> / \
> Linux Linux
> SSL1 SSL2


...
Isn't this scheme more correct:


HTTPS ---> Load Balancer
|
|
/ \
Linux Linux
SSL1 SSL2
| |
\ /
|
--- HTTP Web server

?


> What software is required on the Linux servers to perform this?

For SSL? Just run apache with mod_ssl + mod_rewrite + mod_proxy

you'll have something looking like this on SSL1 and SSL2 "mod_ssl.conf"
( or httpd.conf on apache 1.3 ):
<virtualhost *:443>

... ssl setup ..
modrewrite on

rewriterule ^(.*)$ http://http_webserver/$1 [P]

</virtualhost>



>
> Thank you.
>
> Charles
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
If I replace my existing Linksys box with Linux Router, how can I know what kind of Routing to be enabled on my Linux Box? santa19992000@yahoo.com Linux Networking 3 01-06-2005 01:18 PM
Another great example of the Linux community in action: NOT! (Was: Linux networking is a ball of confusion) Kevin Pederson Linux Networking 15 10-01-2004 07:13 PM
Trouble Installing Linux/Cisco VPN Client Has anyone had trouble compiling the linux cisco vpn client? Here is the output of the install script: # uname -rviosm Linux 2.4.22-1.2188.nptl #1 Wed Apr 21 20:19:18 EDT 2004 x86_64 x86_64 GNU/Linux JSH Linux Networking 4 07-02-2004 12:48 PM
Red Hot Linux v9.0 [2 DVDs]. Red Hot Linux v9.0 [3 CDs]. Redhat Enterprise Linux ES v3.0 REPACK [4 CDs]. Mandrake Linux 9.2 [3 CDs] -new ! TEL Linux Networking 0 12-01-2003 12:06 PM
Red Hot Linux v9.0 [2 DVDs]. Red Hot Linux v9.0 [3 CDs]. Redhat Enterprise Linux ES v3.0 REPACK [4 CDs]. Mandrake Linux 9.2 [3 CDs] - new ! TEL Linux Networking 0 11-29-2003 11:27 AM



1 2 3 4 5 6 7 8 9 10 11