summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-05-26 15:24:38 -0400
committerAdam <Adam@anope.org>2013-05-26 15:27:28 -0400
commitf2dee1e1d642b07947f59f91dfba9af34ef84685 (patch)
treed2cf47d47e612e0bd19b473699a0ffde14ab086a /data
parent968ef349d655e36bb9f1652e3d002c49e9dc8dbe (diff)
Update INSTALL and place some example link configurations in example.conf
Diffstat (limited to 'data')
-rw-r--r--data/example.conf33
1 files changed, 32 insertions, 1 deletions
diff --git a/data/example.conf b/data/example.conf
index baa569ed2..4d468ebcf 100644
--- a/data/example.conf
+++ b/data/example.conf
@@ -128,6 +128,37 @@ define
* This section is used to set up Anope to connect to your IRC network.
* This section can be included multiple times, and Anope will attempt to
* connect to each server until it finally connects.
+ *
+ * Each uplink IRCd should have a corresponding configuration to allow Services
+ * to link to it.
+ *
+ * An example configuration for InspIRCd that is compatible with the below uplink
+ * and serverinfo configuration would look like:
+ *
+ * <link name="services.localhost.net"
+ * ipaddr="127.0.0.1"
+ * port="7000"
+ * sendpass="mypassword"
+ * recvpass="mypassword">
+ * <uline server="services.localhost.net" silent="yes">
+ * <bind address="127.0.0.1" port="7000" type="servers">
+ *
+ * An example configuration for UnrealIRCd that is compatible with the below uplink
+ * and serverinfo configuration would look like:
+ *
+ * link services.localhost.net
+ * {
+ * username *;
+ * hostname *;
+ * bind-ip "127.0.0.1";
+ * port 7000;
+ * hub *;
+ * password-connect "mypassword";
+ * password-receive "mypassword";
+ * class servers;
+ * };
+ * ulines { services.localhost.net; };
+ * listen 127.0.0.1:7000;
*/
uplink
{
@@ -157,7 +188,7 @@ uplink
*
* Refer to your IRCd documentation for how this is to be done.
*/
- port = 6667
+ port = 7000
/*
* The password to send to the IRC server for authentication.