/* uplink{} blocks define connections to IRC servers. * Multiple may be defined but only one will be used at a time (IRC * being a tree shaped network). */ uplink "irc.myircnetwork.com" { // The server name of the ircd you're linking to goes above. // host // The hostname to connect to. // Use an IPv4/IPv6 address (if Charybdis has been built with IPv6 support and that your server has an IPv6 address) host = "78.40.125.4"; // vhost // The source IP to connect from, used on machines with multiple interfaces. // Leave this commented if you don't/won't use it. #vhost = "202.119.187.31"; // password // The password used for linking. password = "please_generate_a_random_safe_password"; // port // The port to connect to. // You can either use the default one (e.g. 6667), or a specific one for Atheme (e.g. 6665). port = 6665; }; /* this is an example for using an IPv6 address as an uplink */ /* The configuration for an IPv6 address as an uplink is exactly the same as for an IPv4 address; only the address changes. */ /*uplink "irc6.example.net" { host = "::1"; password = "linkage"; port = 6667; };*/