Page 1 of 1

SSL Link Error

Posted: Sun Jul 15, 2007 6:37 am
by WyRm
SSL_connect(): Internal OpenSSL error or protocol error unrealircd

I get this when I try to connect to ircd servers together. Both are being ran on Ubunutu.

Server 1 Listen Line

listen 1.2.3.4:7002
{
options
{
ssl;
serversonly;
};
}

Server 1 Link line

link server1.com
{
username *;
hostname 5.6.7.8;
bind-ip *;
port 7002;
hub *;
password-connect "password";
password-receive "password";
class servers;
options {
autoconnect;
zip;
ssl;
};

Server 2 Listen Line

listen 5.6.7.8:7002

options
{
ssl;
serversonly;
};
}

Server 1 Link line

link server1.com
{
username *;
hostname 1.2.3.4;
bind-ip *;
port 7002;
hub *;
password-connect "password";
password-receive "password";
class servers;
options {
autoconnect;
zip;
ssl;
};

If I do not use SSL they link up fine but when I try to SSL the link I get that error up top. Any one have a suggestion on that. SSL works for users so it has to be some dumb thing im missing.

Posted: Sun Jul 15, 2007 6:53 am
by WyRm
I got it to work by using port 7000 for ssl server only...