The error message is: Attempting to connect to uplink #1 201.46.113.40 (201.46.113.40/6667) with protocol UnrealIRCd 4+
Unable to connect to uplink #1 (201.46.113.40:6667): Connection refused
My unrealircd.conf
Code: Select all
/* Puerto IRC estándar 6667 */
listen {
ip 127.0.0.1;
port 6667;
}
/* Puerto IRC estándar 6697 */
listen {
ip 127.0.0.1;
port 6697;
options { tls; }
}
/* Puerto especial solo para servidores SSL/TLS para vincular */
listen {
ip 127.0.0.1;
port 6667;
}
Code: Select all
link services.chatcomunidades.es
{
incoming {
mask *@201.46.113.40;
}
outgoing {
bind-ip 127.0.0.1; /* o explicitamente una IP */
hostname services.chatcomunidades.es;
port 6667;
}
Code: Select all
ulines {
services.chatcomunidades.es;
}
Code: Select all
define
{
name = "services.host"
value = "services.chatcomunidades.es"
}
Code: Select all
uplink
{
/*
* The IP or hostname of the IRC server you wish to connect Services to.
* Usually, you will want to connect Services over 127.0.0.1 (aka localhost).
*
* NOTE: On some shell providers, this will not be an option.
*/
host = "201.46.113.40"
/*
* Enable if Services should connect using IPv6.
*/
ipv6 = no
/*
* Enable if Services should connect using SSL.
* You must have an SSL module loaded for this to work.
*/
ssl = no
/*
* The port to connect to.
* The IRCd *MUST* be configured to listen on this port, and to accept
* server connections.
*
* Refer to your IRCd documentation for how this is to be done.
*/
port = 6667
/*
* The password to send to the IRC server for authentication.
* This must match the link block on your IRCd.
*
* Refer to your IRCd documentation for more information on link blocks.
*/
password = "ghdhgfh4985/jdj)jsFW"
}