Search found 54 matches

by warg
Mon Jul 12, 2010 2:15 pm
Forum: Services
Topic: ChanServ OPER Message - Question!
Replies: 4
Views: 3718

Re: ChanServ OPER Message - Question!

This has nothing to do with UnrealIRCd. Consult the documentation and support mediums of your services.
by warg
Mon Jul 12, 2010 2:14 pm
Forum: Unreal 3.2 Support
Topic: no acceptable C compiler found in $PATH
Replies: 1
Views: 2014

Re: no acceptable C compiler found in $PATH

install gcc

as root, on centos, you should: yum install gcc zlib-devel openssl-devel
by warg
Mon Jul 12, 2010 2:12 pm
Forum: General chat
Topic: KyZiX - new member - new unrealircd admin
Replies: 1
Views: 2250

Re: KyZiX - new member - new unrealircd admin

Welcome =)
by warg
Mon Jul 12, 2010 2:10 pm
Forum: Unreal 3.2 Support
Topic: How can I do like this? (two hubs in same network)
Replies: 1
Views: 1111

Re: How can I do like this? (two hubs in same network)

Compile both servers as hubs, and link them together as normal, and configure their link blocks as you would for a hub. What you're asking about DNS is called a round-robin. You give multiple A records with the same name. For example... irc.domain.tld. IN A 192.168.0.100 irc.domain.tld. IN A 192.168...
by warg
Mon Jul 12, 2010 2:05 pm
Forum: Unreal 3.2 Support
Topic: limit shell account to leaf ircd mode
Replies: 6
Views: 2213

Re: limit shell account to leaf ircd mode

I believe he wants to prevent his shell clients from compiling UnrealIRCd as a hub at all.

ysar68, you should ask that company how they did that. I can't imagine how.
by warg
Mon Jul 12, 2010 1:59 pm
Forum: Unreal 3.2 Support
Topic: Targeting users with specific modes to Kill/Zline/Kick/Ban
Replies: 1
Views: 1092

Re: Targeting users with specific modes to Kill/Zline/Kick/B

Sorry, but no. If you only want to allow specific people to be on your server, checkout the documentation on the allow block.
by warg
Mon Jul 12, 2010 1:47 pm
Forum: Unreal 3.2 Support
Topic: SSL Handshake Failure
Replies: 1
Views: 3200

Re: SSL Handshake Failure

I suspect this to be an issue w/ your system's openssl. Try compiling a local openssl in your $HOME for Unreal: wget http://openssl.org/source/openssl-1.0.0a.tar.gz tar xf openssl-1.0.0a.tar.gz cd openssl-1.0.0a ./config --prefix=$HOME/openssl no-threads zlib-dynamic make && make install The...
by warg
Mon Jul 12, 2010 1:31 pm
Forum: General chat
Topic: Great day, guys.
Replies: 1
Views: 2211

Re: Great day, guys.

Welcome, glad to have you! =)
by warg
Mon Jul 12, 2010 1:30 pm
Forum: Unreal 3.2 Support
Topic: C-ares could not resolve host
Replies: 7
Views: 4595

Re: C-ares could not resolve host

Code: Select all

wget http://www.unrealircd.com/downloads/Unreal3.2.8.1.tar.gz
tar xzf Unreal3.2.8.1.tar.gz
cd Unreal3.2
wget http://c-ares.haxx.se/c-ares-1.7.3.tar.gz
tar xzf c-ares-1.7.3.tar.gz
wget http://curl.haxx.se/download/curl-7.21.0.tar.gz
tar xzf curl-7.21.0.tar.gz
./curlinstall c-ares-1.7.3 curl-7.21.0
by warg
Mon Jul 12, 2010 1:08 pm
Forum: Unreal 3.2 Modules
Topic: mobile options information
Replies: 1
Views: 1938

Re: mobile options information

You are unable to find information on mobile and cp_win because these options do not exist. It is a modified unrealircd.
by warg
Mon Jul 12, 2010 12:56 pm
Forum: General chat
Topic: Introduce yourself
Replies: 1
Views: 3000

Re: Introduce yourself

James L. Jones exp. w/ FreeBSD, OpenBSD, Linux (Arch, Debian, Gentoo, SUSE/OpenSUSE, RHEL/Fedora & CentOS) exp. w/ BASH, Python int. in C, C++, Perl Movies: The Rocky Horror Picture Show, Lemony Snicket's A Series of Unfortunate Events, The Princess Bride, ...+ Music: Korn FTW, ...+ Books: Sir G...
by warg
Mon Jul 12, 2010 12:52 pm
Forum: Unreal 3.2 Support
Topic: irc defender secureoper.pm anyone who can help
Replies: 1
Views: 1295

Re: irc defender secureoper.pm anyone who can help

Read the secureoper section in the README, located in the defender directory . You can get support for IRCDefender in #Defender on irc.ChatSpike.net.
by warg
Mon Jul 12, 2010 12:45 pm
Forum: Services
Topic: hey i want please help
Replies: 1
Views: 1987

Re: hey i want please help

I don't understand your question.
by warg
Mon Jul 12, 2010 12:44 pm
Forum: Unreal 3.2 Support
Topic: Guide how to / Help
Replies: 1
Views: 1030

Re: Guide how to / Help

I'm not sure of the purpose in this, but... You could just give them a vhost: http://www.vulnscan.org/UnrealIrcd/unreal32docs.html#vhostblock . If you really want to touch the sources, then... grep -R 'servicesadmin' {src/,include} ...in the Unreal3.2 directory for an idea of what files to touch. Ho...