Tip of the day: The Security article gives hands-on tips on how to deal with drone attacks, flooding, spammers, (D)DoS and more.

Sandbox2/en

From UnrealIRCd documentation wiki
Jump to navigation Jump to search

Some text is here lalala

About UnrealIRCd

UnrealIRCd is an Open Source IRC Server, serving thousands of IRC networks since 1999. It runs on Linux, FreeBSD, OS X and Windows and is currently the most widely deployed IRC Server with a market share of 42% according to IRCStats.org.

Some of UnrealIRCd's most notable features include:

  • Module support: full freedom to load specific features or not
  • Advanced security features: such as anti-flood and anti-spam systems: Spamfilter, channel mode +f, DNS Blacklists (DNSBL), AntiRandom, connection throttling based on reputation.
  • Highly configurable configuration file
  • Extensive documentation (on this wiki and also on IRC through the /HELPOP command)
  • SSL/TLS encrypted client and server connections, with secure defaults and a lot of configuration options.
  • Channel Owners (+q) and Channel Admins (+a)
  • Channel Half-ops (+h)
  • Advanced banning through extended bans, including but not limited to: timed bans (that are removed after X minutes), allowing/exempting by services account name, certificate fingerprint, etc.
  • Text filtering via a "swear filter" user/channel mode (+G) and per-channel text filter via the ~T extban.
  • Channel linking (+L)
  • Hostname cloaking (+x)
  • Color blocking and stripping (+c/+S)
  • Vhosts
  • DCCDeny
  • Much more... see also the Features section.

If you want to download UnrealIRCd, go to https://www.unrealircd.org/download

Installing from source

To install UnrealIRCd on Linux, FreeBSD, OpenBSD, OS X and other *NIX systems you generally compile and install from source. In addition to that you will also need to configure UnrealIRCd. This page explains how to do all that. Even if you are completely new to UnrealIRCd then all these steps to get the IRCd up and running shouldn't take more than 30 minutes in total.

Prerequisites

At a minimum, UnrealIRCd needs a compiler and the OpenSSL library. Even better is if you install a few other libraries, but this is not required as UnrealIRCd will fallback to its own libraries if you miss them.

  • Ubuntu 20.*/21.*: sudo apt-get install build-essential pkg-config libssl-dev libpcre2-dev libargon2-dev libsodium-dev libc-ares-dev libcurl4-openssl-dev
  • Ubuntu 18.*: sudo apt-get install build-essential pkg-config libssl-dev libpcre2-dev libargon2-0-dev libsodium-dev libc-ares-dev libcurl4-openssl-dev
  • Ubuntu 16.*: sudo apt-get install build-essential pkg-config libssl-dev libpcre2-dev libsodium-dev libc-ares-dev libcurl4-openssl-dev
  • Debian 9/10: sudo apt-get install build-essential pkg-config libssl-dev libpcre2-dev libargon2-0-dev libsodium-dev libc-ares-dev libcurl4-openssl-dev
  • For unlisted Linux distro's which use apt-get, the minimum requirement is: sudo apt-get install build-essential libssl-dev
  • For Linux distro's that use yum: you need a compiler and the openssl-dev/openssl-devel/libssl-dev package.
  • For FreeBSD: your system normally already has a compiler and the openssl development library installed, so you are good to go.

If, for some reason, you are curious what libraries UnrealIRCd uses or can use, then see Libraries used by UnrealIRCd.

Don't run as root

Be sure to build and run the IRCd as a regular user and not as root. If you are on a VPS / root shell then create a user 'unrealircd' or similar (sudo adduser unrealircd) and do all steps below as that user (login as user 'unrealircd'). See also Do not run as root.

Upgrading?

If you are upgrading an existing UnrealIRCd installation, then we recommend using ./unrealircd upgrade which will do all the work for you. See also Upgrading.

Grab the source (.tar.gz)

From the shell

Connect to the *NIX server via SSH. All the following commands execute on the *NIX server.

wget --trust-server-names https://www.unrealircd.org/downloads/unrealircd-latest.tar.gz

On FreeBSD you may have to use:

fetch https://www.unrealircd.org/downloads/unrealircd-latest.tar.gz

If neither works, for example you get an 'unknown command' then you should install the 'wget' package on your system or try uploading (see next).

Alternative: uploading to shell

You can also choose to download the .tar.gz of UnrealIRCd via your browser, save it to disk, and then upload it to the shell via SCP or SFTP.

Extract the source

Extract the .tar.gz and enter the unrealircd-x.y.z directory:

tar xzvf unrealircd-5.2.X.tar.gz
cd unrealircd-5.2.X

NOTE: There's some logic here. If the file is called, say, unrealircd-5.2.0.tar.gz then it will extract to the unrealircd-5.2.0/ directory. As you can see, the directory name is different for each release to make sure you don't accidentally overwrite your existing installation.

Compiling

First, run the ./Config script which will ask a number of questions. You can just press Enter to accept the default answers.

./Config

Now, compile UnrealIRCd by running make, this may take a minute (or two):

make

Finally, run make install (important!):

make install

Creating a configuration file

UnrealIRCd needs a configuration file. Don't worry, you don't have to create this file from scratch. We ship with an example configuration file that you have to walk through and tweak at a few places:

  1. Change to the installed UnrealIRCd directory, this is /home/yourusername/unrealircd by default (For more information on the directory structure see UnrealIRCd files and directories).
    cd ~/unrealircd
  2. Copy conf/example/example.conf to your conf/ directory and rename it to unrealircd.conf
    cp conf/examples/example.conf conf/unrealircd.conf
    TIP: Is your native language not English? Then check the conf/examples directory. We ship with several example configuration files in different languages. If you want to use one of those, simply copy that one instead.
  3. Open the file with an editor (eg: nano conf/unrealircd.conf)
  4. Read the Configuration file syntax article. It will only take a few minutes and will save you a lot of trouble in next step(s)!
  5. Walk through the unrealircd.conf block by block / line by line and edit the settings to suit your needs. This takes 10 - 20 minutes.
  6. Boot UnrealIRCd by running ./unrealircd start from your ~/unrealircd directory.
  7. Errors? Edit your unrealircd.conf, fix them (see the FAQ for common problems), and try starting UnrealIRCd again.
  8. Up and running? Connect with an IRC client to your server and have fun. See next section too.

Further reading

  • See the FAQ if you have any problems. A lot of common problems are answered there.
  • Read the IRCOp guide to learn more about how to do server administrative tasks.
  • Add a Cron job to make sure UnrealIRCd (re)starts after system startup or a crash
  • See Features for various available features on UnrealIRCd and Configuration for all possible things you can configure on UnrealIRCd.