summaryrefslogtreecommitdiffstats
path: root/i2p.html
blob: 14803d61d15dcbd7d9a4f263896d403b905551e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="styles.css">
    <title>I2p Setup Guide</title>
</head>
<body>
<pre>
┬   ┌┬┐ ┬─┐ ┬─┐ ┬─┐ ┌┐┐ ┬─┐
│    │  │─│ │─  │┬┘  │  │─┤
┘─┘ └┴┘ │─┘ ┴─┘ │└┘  ┘  ┘ │

┌─┐ ┬─┐ ┐─┐ ┬─┐
│   │─┤ └─┐ │─┤
└─┘ ┘ │ ──┘ ┘ │
</pre>
<h3>i2pd</h3>
<h5>Installation</h5>
<pre>
Whilst connections with the regular I2P client are possible as well, we currently only provide instructions for I2Pd.
Instructions for installing a distrubtion package for I2Pd or for compiling it from source can be found in its official documentation:
<a href="https://i2pd.readthedocs.io/en/latest/user-guide/install/"> Distribution Packages and Building from Source </a>

Distribution Packages should ideally create a "role user and a group"
as well as provide an `i2pd.service` unit file to use with systemd where available.
If you built the application from source, you might need to create these manually.

<h5>Configuration for LibertaCasa IRC</h5>
After installing I2Pd, edit or create the file <strong>/etc/i2pd/tunnels.conf</strong>.
You might need to do this as root (i.e. <code>sudo nano /etc/i2pd/tunnels.conf</code>).
Add the following section to the top of the file:
	<code>
	[IRC-LibertaCasa]
	type = client
	address = 127.0.0.3
	port = 6648
	destination = fzsgc66e52ve5phrcktrekqtko423ihau42u72v4cfg6bg4osuda.b32.i2p
	destinationport = 6667
	</code>
Start and enable the I2Pd service:
	<code>
	sudo systemctl enable --now i2pd.service
	</code>
You should now be able to connect your IRC client with the following settings:
	<code>
	IP address / Hostname: 127.0.0.3
	Port: 6648
	SSL/TLS: Off/Disabled
	</code>
Nickname, Username and SASL password are the regular details you would use for connecting to LibertaCasa.











<footer>
    <a href="mailto:hello@liberta.casa"> Contact </a>
</footer>
</pre>
</body>
</html>