summaryrefslogtreecommitdiff
path: root/docs/startup-HOWTO.html
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-02-18 10:29:53 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-02-18 10:29:53 +0000
commit78b0e00b5178fef1622856fe7581fa4e961d912c (patch)
tree19d9cb2c13ede593ffb4ca0a7788bcc98d39f4e3 /docs/startup-HOWTO.html
parente79231de268e666bc96d572d104232200422bfeb (diff)
downloadirssi-78b0e00b5178fef1622856fe7581fa4e961d912c.zip
updated proxy docs
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2515 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs/startup-HOWTO.html')
-rw-r--r--docs/startup-HOWTO.html42
1 files changed, 39 insertions, 3 deletions
diff --git a/docs/startup-HOWTO.html b/docs/startup-HOWTO.html
index ef4c7b9e..ea954cd1 100644
--- a/docs/startup-HOWTO.html
+++ b/docs/startup-HOWTO.html
@@ -543,8 +543,44 @@ be better to use eg.:</p>
<h3><a id="c10">10. Proxies and IRC bouncers</a></h3>
-<p>Irssi supports connecting to IRC servers via a proxy. All proxies have
-these settings in common:</p>
+<p>Irssi supports connecting to IRC servers via a proxy. All server
+connections are then made through it, and if you've set up everything
+properly, you don't need to do any /QUOTE SERVER commands manually.</p>
+
+<p>Here's an example: You have your bouncer (lets say, BNC or BNC-like)
+listening in irc.bouncer.org port 5000. You want to use it to connect
+to servers irc.dalnet and irc.efnet.org. First you'd need to setup the
+bouncer:</p>
+
+<pre>
+ /SET use_proxy ON
+ /SET proxy_address irc.bouncer.org
+ /SET proxy_port 5000
+
+ /SET proxy_password YOUR_BNC_PASSWORD_HERE
+ /SET -clear proxy_string
+ /SET proxy_string_after conn %s %d
+</pre>
+
+<p>Then you'll need to add the server connections. These are done
+exactly as if you'd want to connect directly to them. Nothing special
+about them:</p>
+
+<pre>
+ /SERVER ADD -auto -ircnet dalnet irc.dal.net
+ /SERVER ADD -auto -ircnet efnet irc.efnet.org
+</pre>
+
+<p>With the proxy /SETs however, irssi now connects to those servers
+through your BNC. All server connections are made through them so you
+can just forget that your bouncer even exists.</p>
+
+<p>If you don't want to use the proxy for some reason, there's -noproxy
+option which you can give to /SERVER and /SERVER ADD commands.</p>
+
+<p><strong>Proxy specific settings:</strong></p>
+
+<p>All proxies have these settings in common:</p>
<pre>
/SET use_proxy ON
@@ -566,7 +602,7 @@ these settings in common:</p>
<pre>
/SET proxy_password your_pass
/SET -clear proxy_string
- /SET proxy_string conn %s %d
+ /SET proxy_string_after conn %s %d
</pre>
<p><strong>dircproxy</strong></p>