Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
0answers
57 views

Terminating a high volume of SSL connections cost effectively

I have recently set up a Node.js based web socket server that has been tested to handle around 2,000 new connection requests per second on a small EC2 instance (m1.small). Considering the cost of a ...
2
votes
2answers
138 views

How to test failing of SSL certificate for certain visitors

For some of my site visitors, the SSL certificate is failing. Whatever tests I do on various browsers for me the SSL certificate is valid. I can't think of how to test this on client side, and to ...
1
vote
0answers
65 views

stunnel https gets redirected to http

I have a Web service listening on port 8081 (it's a ServiceStack REST Web Service running on mono, if that helps). I am trying to secure it using stunnel, but the problem is as soon as I connect to ...
1
vote
1answer
85 views

stunnel without client

Can stunnel server work without stunnel client? I mean can I write my own http server with only HTTP and add SSL support via Stunnel server? and clients will connect to stunnel server with they own ...
1
vote
1answer
764 views

HAProxy loadbalancing HTTPs and session failover

We are investigating if it is possible to use HAProxy to load balance across multiple tomcat servers. We would like to use HTTPs for all requests and use sessions via the JSESSIONID cookie. HAProxy ...
1
vote
2answers
462 views

How to use STunnel for TCP Server/Client where Client sends out on port 39000

I have a TCP Server/Client where the Server listens on port 5000 and the Client outgoing port is 39000. I have Stunnel set up on the Server: [custom] accept = 6000 connect = 5000 ... so it ...
1
vote
2answers
165 views

stunnel on window for IBM MQ connection

Does anyone have an experience or just thoughts about securing MQ TCP communication channels using stunnel? I am integration with third party S.W which has MQ support built in but it can not ...
1
vote
2answers
179 views

Where can I find an introduction to SSL with OpenSSL?

I want to learn about the nuts-and-bolts of using SSL to secure client/server communication. Is there any documentation, anywhere, regarding how to do this with OpenSSL? The best I've been able to ...
0
votes
1answer
19 views

Stunnel - Specify Outbound IP?

Is there any way to specify a particular outbound IP address for stunnel? Right now, it's always using the main IP of the server, but I'd like it to use a specific outbound IP address.
0
votes
0answers
40 views

Stunnel Configuration

I have program which uses Tcp connection where SSL is not implemented , so in order to overcome the obstacle i am installed the stunnel which serves me like SSL Proxy (client configured to connect to ...
0
votes
0answers
51 views

VNC Java applet over stunnel ? 'Yet' possible?

I have a bunch (dynamic, can be 1 up to 32) VNC servers on a Linux Host (ubuntu). Each VNC instance is listening to a specific port : Instance A: listens port 5900 Instance B: listens port 5901 ...
0
votes
1answer
62 views

stunnel “fingerprint does not match”

I'm trying to run stunnel on a clean installation of Win7 and am encountering the following error: FIPS_mode_set: 2D06906E: error:2D06906E:FIPS routines:FIPS_CHECK_INCORE_FINGERPRINT:fingerprint does ...
0
votes
0answers
80 views

wininet https connections not persisting with stunnel

I have a simple wininet test app that connects to a server and executes 4 https GETs. It works fine on one server, but on another server I can see via both WireShark and the WinInet event viewer that ...
0
votes
2answers
264 views

Receiving Chunked HTTP Data With Winsock

I'm having trouble reading in some chunked HTTP response data using winsock. I send a request fine and get the following back: HTTP/1.1 200 OK Server: LMAX/1.0 Content-Type: text/xml; charset=utf-8 ...
0
votes
2answers
198 views

Why connection to localhost is refused?

I have a server, to which a client machine connects. Recently I decided to encrypt the connection with stunnel, so now client program connects not directly to the server, but to localhost:8045 (I ...
0
votes
3answers
195 views

Running a sudo command line in the start of Mac OS X [closed]

I am using a Mac OS X - Snow Leopard. And to connect in our CVS we need to start the stunnel. All time I have to go to "Terminal" and write sudo /opt/local/bin/stunnel => than write the password ...
0
votes
1answer
45 views

Piwik Master/Slave database configuration

Is it possible to configure a piwik installation to use one database server for writing and one for reading? And if so, how?
0
votes
1answer
215 views

One machine being server AND client with STunnel

I know that STunnel can be set up as either server or client with the "client = no" or "client = yes" lines in the config file. Is there a way for a machine to be BOTH a server and client?
0
votes
0answers
571 views

Stunnel Configuration for SSL Connection

I'm trying to use Stunnel to use a mail client that doesn't support SSL to interface with a mail server that wants to use SSL. I want to be able to use plain POP3/SMTP to some local port that Stunnel ...
0
votes
1answer
150 views

CVS in cmd/gui works only the third time I run a command

I'm using CVS in the command line. I'm in my repository folder. When I call a CVS command, I get... cvs [log aborted]: unrecognized auth response from localhost: -f [pserver aborted]: ...
0
votes
1answer
1k views

Bad OpenSSL certificate

I am trying to make a fake CA and sign a certificate with it to use with stunnel (which just seems to be calling OpenSSL routines, so you probably don't need to know the program to help :). However, ...
0
votes
1answer
576 views

Not able to connect using Stunnel on reconnect

When I setup stunnel as a client on a machine to forward to another system on SSL port. I am able to connect once using that but when I disconnect from that server and then try to connect again it ...
0
votes
3answers
963 views

Getting a SSL connection to work with STUNNEL/Win32

The service I need to connect to has provided me three files and I'm trying to figure out what I need to create the Cert=xxx.PEM file that STUNNEL needs I have a "keystore.jks" file. Dumping that ...