tilde.club/docs/ircserver-connections.md

21 lines
1.5 KiB
Markdown
Raw Normal View History

2014-10-11 03:57:05 +00:00
When we're ready to allow other tilde.club IRC servers to connect to us, these are we'll need bits of information from the remote server admin.
* remote IRC server IP address (if the server is behind NAT, this needs to be the external IP address)
* port the server is listening on (preferably the SSL port)
* the name of the remote IRC server (if it's a charybdis server, this is `name` in the `serverinfo` section of its `ircd.conf` file)
* two passwords, one we will send to the remote server, and one we will receive from the remote server
2014-10-11 03:59:10 +00:00
Then, these are the configurations changes that we'll need to make at our end to enable the connections.
2014-10-11 03:57:05 +00:00
2014-10-11 03:59:10 +00:00
### Firewall or EC2 security group
2014-10-11 03:57:05 +00:00
The main tilde.club IRC server needs to allow traffic from the remote server; this means that we need to allow traffic from the specific IP address to either port `6667` (for non-SSL connections) or port `6697` (for SSL connections).
2014-10-11 03:59:10 +00:00
### charybdis ircd.conf file
2014-10-11 03:57:05 +00:00
There needs to be [a `connect` section](https://github.com/tildeclub/tilde.club/blob/master/docs/ircserver.md#connect-section) in the `ircd.conf` file for each remote server. See [the documentation for our server setup](https://github.com/tildeclub/tilde.club/blob/master/docs/ircserver.md#connect-section) for full information about how this is configured.
2014-10-11 03:59:10 +00:00
## Debugging the connections
You should have the `/var/log/charybdis/serverinfo` log file enabled, and it's this file that will contain the pertinent information about the success or failure of server connections.