Unable to connect to server (Connection timed out)

These are old archives. They are kept for historic purposes only.
Post Reply
Bebras
Posts: 2
Joined: Sat May 16, 2015 2:00 pm

Unable to connect to server (Connection timed out)

Post by Bebras »

Hello, first of all I'd like to say that I did read all the other topics.

I have setup a Unreal3.2.10.4 server on my Ubuntu VPS.

I tried connecting to it from my own windows PC, all i get is the error Unable to connect to server (Connection timed out).

I also tried connecting from localhost, via command-line irc, this worked.

My unrealircd.conf:
loadmodule "src/modules/commands.so";
loadmodule "src/modules/cloak.so";


me {
name "irc.maze.lt";
info "Maze IRC";
numeric 1;
};


admin {
"Bebras";
"Edvinas";
};

class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};

class servers
{
pingfreq 90;
maxclients 10;
sendq 1000000;
connfreq 100;
};


oper Bebras {
class clients;
from {
userhost [removed];
};
password "ILiKEopeRING1022";
flags
{
netadmin;
can_zline;
can_gzline;
can_gkline;
global;
};
};

#This is the services link block

#link irc.maze.lt
#{
# username *;
# hostname 127.0.0.1;
# bind-ip *;
# port 6667;
# hub *;
# password-connect "Sup3rSERViCE";
# password-receive "Sup3rSERViCE";
# class servers;
#};


#This is the ulines block
ulines {
services.maze.lt;
};

#START OF BAN BLOCKS
ban nick {
mask "*C*h*a*n*S*e*r*v*";
reason "Reserved for Services";
};

ban ip {
mask 195.86.232.81;
reason "Noob";
};

ban user {
mask *tirc@*.saturn.bbn.com;
reason "Idiot";
};

ban realname {
mask "Swat Team";
reason "mIRKFORCE";
};

except ban {
/* don't ban Mp5shooter :) */
mask *Mp5shooter@adsl-074*;
};

deny channel {
channel "*warez*";
reason "Warez is illegal";
};
#END OF BAN BLOCKS

#This is the vHost block
vhost {
vhost super.cool.irc.dude;
from {
userhost *@*;
};
login YourName;
password LovingTheKwlHost;
};

#This is the network settings block
set {
network-name "MazeIRC";
default-server "188.226.168.37";
services-server "services.maze.lt";
stats-server "stats.maze.lt";
help-channel "#Help";
hiddenhost-prefix "Test";
cloak-keys {
"KIuoehnfOush230uNSDL309subnsA";
"Jk93uKLsd30skSHNfel39wLKHd3ws";
"Iehnludhnfe83KLBDHef39ekHBD44";
};
hosts {
local "locop.maze.lt";
global "ircop.maze.lt";
coadmin "coadmin.maze.lt";
admin "admin.maze.lt";
servicesadmin "csops.maze.lt";
netadmin "netadmin.maze.lt";
host-on-oper-up "no";
};
};

#This is the server settings block
set {
kline-address "[email protected]";
modes-on-connect "+ix";
modes-on-oper "+xwgs";
oper-auto-join "#opers";
options {
show-connect-info;
};
maxchannelsperuser 30;
anti-spam-quit-message-time 10s;
oper-only-stats "okfGsMRUEelLCXzdD";
throttle {
connections 3;
period 60s;
};
anti-flood {
nick-flood 3:60;
};
spamfilter {
ban-time 1d;
ban-reason "Spam/Advertising";
virus-help-channel "#help";
};
};

#Do not edit anything below this line, unless you know what you are doing

include "help.conf";
include "badwords.channel.conf";
include "badwords.message.conf";
include "badwords.quit.conf";
include "spamfilter.conf";



allow {
ip *@*;
hostname *@*;
class clients;
maxperip 5;
};

listen *:6697
{
options
{
ssl;
clientsonly;
};
};

listen *:8067;
listen *:6667;

log "ircd.log" {
maxsize 2097152;
flags {
oper;
kline;
connects;
server-connects;
kills;
errors;
sadmin-commands;
chg-commands;
oper-override;
spamfilter;
};
};

alias NickServ { type services; };
alias ChanServ { type services; };
alias OperServ { type services; };
alias HelpServ { type services; };
include "aliases/anope.conf";
Bebras
Posts: 2
Joined: Sat May 16, 2015 2:00 pm

Re: Unable to connect to server (Connection timed out)

Post by Bebras »

Nevermind it all. The problem was that I needed to open port 6667 on the server side.
Post Reply