1
0
mirror of https://github.com/PurpleI2P/i2pd_docs_en synced 2025-03-12 21:31:07 +00:00

Improved IRC tut

This commit is contained in:
Darknet Villain 2017-01-30 09:11:09 -05:00
parent c2f344ae40
commit e1d39da3db

View File

@ -1,6 +1,27 @@
Anonymous chat servers
======================
## Connect to anonymous IRC server
You can connect to IRC servers in I2P by using **Socks proxy**. By default, it listens at ``127.0.0.1:4447``
(look at [configuration docs](../user-guide/configuration.md) for details).
Configure your IRC client to use this Socks proxy and connect to I2P servers just like to any other servers.
*Alternatively*, you may want to create **client I2P tunnel** to specific server.
This way, i2pd will "bind" IRC server port on your computer and you will be able to connect to server without modifying any IRC client settings.
To connect to IRC server at *irc.ilita.i2p:6667*, add this to ~/.i2pd/tunnels.conf:
[IRC2]
type = client
address = 127.0.0.1
port = 6669
destination = walker.i2p
destinationport = 6667
#keys = walker-keys.dat
Restart i2pd, then connect to irc://127.0.0.1:6669 with your IRC client.
## Running anonymous IRC server
1) Run your IRC server software and find out which host:port it uses (for example, 127.0.0.1:5555).
@ -51,15 +72,3 @@ Anonymous chat servers
Clients will use this address to connect to your server anonymously.
## Connect to anonymous IRC server
To connect to IRC server at *walker.i2p*, add this to ~/.i2pd/tunnels.conf:
[IRC2]
type = client
address = 127.0.0.1
port = 6669
destination = walker.i2p
#keys = walker-keys.dat
Restart i2pd, then connect to irc://127.0.0.1:6669 with your IRC client.