54 lines
2.6 KiB
HTML
54 lines
2.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}#connect — echoIRCd{% endblock %}
|
|
{% block topic %}#connect — point any client at irc.echoircd.org, or use the browser{% endblock %}
|
|
{% block chan %}#connect{% endblock %}
|
|
{% block cmd %}/server irc.echoircd.org +6697{% endblock %}
|
|
{% block buffer %}
|
|
<div class="ln"><span class="t">19:33</span><span class="g n-cyan"><you></span><span class="m">/server irc.echoircd.org +6697</span></div>
|
|
<div class="ln"><span class="t">19:33</span><span class="g dim">-!-</span><span class="m dim">connecting to irc.echoircd.org:6697 … TLS1.3 up (X25519MLKEM768)</span></div>
|
|
<div class="ln"><span class="t">19:33</span><span class="g dim">-!-</span><span class="m dim">Welcome to the echoiRCd IRC Network</span></div>
|
|
|
|
<table class="detail">
|
|
<tr><th>server</th><td>irc.echoircd.org</td></tr>
|
|
<tr><th>tls (recommended)</th><td>6697</td></tr>
|
|
<tr><th>plaintext</th><td>6667</td></tr>
|
|
<tr><th>network</th><td>echoiRCd</td></tr>
|
|
</table>
|
|
|
|
<div class="webchat">
|
|
<span class="dim">prefer the browser?</span>
|
|
<a class="btn" href="https://orbit.devtronic.pro">open the web client ↗</a>
|
|
</div>
|
|
|
|
<div class="grp">
|
|
<div class="grp-h">client quick-start</div>
|
|
<p class="note">most clients take a one-line server string; the leading <span class="kw">+</span> means TLS.</p>
|
|
<pre class="code">/server irc.echoircd.org +6697
|
|
/join #echoircd</pre>
|
|
<table class="detail">
|
|
<tr><th>HexChat</th><td>add irc.echoircd.org/+6697 · tick “Use SSL”</td></tr>
|
|
<tr><th>WeeChat</th><td>/server add echo irc.echoircd.org/6697 -tls</td></tr>
|
|
<tr><th>irssi</th><td>/connect -tls irc.echoircd.org 6697</td></tr>
|
|
<tr><th>mIRC</th><td>/server irc.echoircd.org +6697</td></tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="grp">
|
|
<div class="grp-h">register your nick</div>
|
|
<p class="note">keep your nick, found channels, and log in with SASL.</p>
|
|
<pre class="code">/msg NickServ REGISTER <password> <email>
|
|
/msg NickServ IDENTIFY <password></pre>
|
|
</div>
|
|
|
|
<div class="grp">
|
|
<div class="grp-h">log in with a key (ecdsa)</div>
|
|
<p class="note">sign a server challenge with a NIST P-256 key instead of sending a password — nothing secret crosses the wire.</p>
|
|
<pre class="code"># generate a key, read its public half
|
|
ecdsatool keygen ~/.ecdsa.pem
|
|
ecdsatool pubkey ~/.ecdsa.pem
|
|
|
|
# store it, then pick ECDSA-NIST256P-CHALLENGE for SASL
|
|
/msg NickServ SET PUBKEY <printed-public-key></pre>
|
|
<p class="note">point your client's SASL settings at the same key file.</p>
|
|
</div>
|
|
{% endblock %}
|