SSL - problem with localhost
SSL - problem with localhost
Hi,
i have a little problem
I am connecting via SSL to IRCD, its working perfect.
but when i joined the channel my local host IP address is IP of IRCD server.
I like to view real IP from client who is connect to server, Its possible?
I use this command:
./stunnel -c -d irc.server.com:6668 -r irc.server.com:6697
This is output:
nick is [email protected] * pstruh
nick is connecting from *@irc.server.com IP.IP.IP.IP
nick on @#mtf
nick using irc.server
nick is a Secure Connection
nick has been idle 10secs, signed on Wed Feb 23 20:47:12
nick End of /WHOIS list.
I cant see real IP of nick, only IP irc.server.com.
I want to see,
nick is [email protected] * pstruh
nick is connecting from *@real.IP.of.client IP.IP.IP.IP
but I dont know how can I fix it.
Thanks.
i have a little problem
I am connecting via SSL to IRCD, its working perfect.
but when i joined the channel my local host IP address is IP of IRCD server.
I like to view real IP from client who is connect to server, Its possible?
I use this command:
./stunnel -c -d irc.server.com:6668 -r irc.server.com:6697
This is output:
nick is [email protected] * pstruh
nick is connecting from *@irc.server.com IP.IP.IP.IP
nick on @#mtf
nick using irc.server
nick is a Secure Connection
nick has been idle 10secs, signed on Wed Feb 23 20:47:12
nick End of /WHOIS list.
I cant see real IP of nick, only IP irc.server.com.
I want to see,
nick is [email protected] * pstruh
nick is connecting from *@real.IP.of.client IP.IP.IP.IP
but I dont know how can I fix it.
Thanks.
-
Stealth
- Head of Support
- Posts: 2085
- Joined: Tue Jun 15, 2004 8:50 pm
- Location: Chino Hills, CA, US
- Contact:
I am not sure about how stunnel works or how you are using it, but I do know that it is obsolete.
If you are trying to make it so people can connect to your IRCd using SSL, compile Unreal with SSL support and make a listen block with SSL.
If you are trying to use stunnel with your client on your local machine, look for an upgrade to your client. Most clients support SSL.
If you are trying to make it so people can connect to your IRCd using SSL, compile Unreal with SSL support and make a listen block with SSL.
If you are trying to use stunnel with your client on your local machine, look for an upgrade to your client. Most clients support SSL.
-
Stealth
- Head of Support
- Posts: 2085
- Joined: Tue Jun 15, 2004 8:50 pm
- Location: Chino Hills, CA, US
- Contact:
So it appears you have it set up like this...
- Clients connect to Stunnel
- Stunnel forwards the connection to the server
- Stunnel's IP is used as the clients IP
-
Stealth
- Head of Support
- Posts: 2085
- Joined: Tue Jun 15, 2004 8:50 pm
- Location: Chino Hills, CA, US
- Contact:
So then why are you using Stunnel?!
Just open a port with the IRCd that is SSL, like this:
Just open a port with the IRCd that is SSL, like this:
Code: Select all
listen *:6697 { options { ssl; }; };My listen box is same like this. If I try to connect on port 6697 then type my this error Software caused connection abort.Stealth wrote:So then why are you using Stunnel?!
Just open a port with the IRCd that is SSL, like this:
Code: Select all
listen *:6697 { options { ssl; }; };
You have to install OpenSSL and connect to port +6697, not 6697 (yes, with the plus sign)
http://www.mirc.co.uk/ssl.html
http://www.mirc.co.uk/ssl.html
Dukat wrote:You have to install OpenSSL and connect to port +6697, not 6697 (yes, with the plus sign)
http://www.mirc.co.uk/ssl.html
Yes, OK, its working perfect. thanks