From: Gabriel B. <sh...@us...> - 2005-12-26 17:47:15
|
Update of /cvsroot/solidircd/solidircd-stable/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3642/doc Modified Files: opers.txt ssl.txt ssltutorial.txt Log Message: Documentation update. Index: opers.txt =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/opers.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** opers.txt 27 Jun 2005 03:02:58 -0000 1.1.1.1 --- opers.txt 26 Dec 2005 17:47:06 -0000 1.2 *************** *** 31,35 **** *+n - Can see routing notices. *+o - Is a global IRC Operator. ! *+y - Can see certain information requests. (e.g. /stats) *+A - Is a server administrator. *+F - Can bypass the ircd's recvq throttling --- 31,36 ---- *+n - Can see routing notices. *+o - Is a global IRC Operator. ! *+y - Can see certain information requests. (e.g. /stats) ! Also Notices Opers when a user does a /whois on him. *+A - Is a server administrator. *+F - Can bypass the ircd's recvq throttling *************** *** 37,42 **** *+O - Is a local IRC Operator. *+C - Can see global connections/exits ! +*H - Allows you to hide your oper status ! +*E - Notices opers when a user does a /whois on him. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= --- 38,42 ---- *+O - Is a local IRC Operator. *+C - Can see global connections/exits ! +*H - Allows you to hide your oper status =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= *************** *** 170,177 **** --- 170,202 ---- KLINE 10 <nick|user@host> :cool off for 10 minutes + + UNKLINE - UNKLINE <user@host> -- If compiled with UNKLINE -- Will attempt to unkline the given <user@host> + + + + GLINE - GLINE [minutes] <nick|user@host> :[reason] + Adds a GLINE to the ircd.conf or glines.conf file which + will ban the specified user from using that server. + The banned client will receive a message saying he/she + is banned with reason [reason] + + For a temporary GLINE, length of gline is given in + minutes as the first parameter i.e. + GLINE 10 <nick|user@host> :cool off for 10 minutes + + + + UNGLINE - UNGLINE <user@host> + -- If compiled with UNGLINE -- + Will attempt to ungline the given <user@host> + + + +SHUN - SHUN [seconds] <nick|user@host> :[reason] + Freezes the user from the entire network for the specified amount of + seconds. + + To remove use /shun - <nick|user@host> + + SET - SET <option> <value> <option> can be one of the following: Index: ssltutorial.txt =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/ssltutorial.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ssltutorial.txt 27 Jun 2005 03:02:58 -0000 1.1.1.1 --- ssltutorial.txt 26 Dec 2005 17:47:07 -0000 1.2 *************** *** 1,7 **** ! SSL Tutorial v0.1 This document was originaly written by mj (mj...@so...) on 10/05/2005 ! Last revised by Gabriel Baez (sh...@so...) on 15/05/2005 ! How to make Solid-IRCd ready for SSL? At first: Why? :) --- 1,7 ---- ! SSL Tutorial v0.2 This document was originaly written by mj (mj...@so...) on 10/05/2005 ! Last revised by Gabriel Baez (sh...@so...) on 12/26/2005 ! How to make solid-ircd ready for SSL? At first: Why? :) *************** *** 13,23 **** and communicate via a query window. ! It's presumed that you have already configured, compiled and installedSolid-IRCd ! without any errors. In addition to that you should have installed that latest ! versions of OpenSSL and Kerberos to use the SSL encryption. First we have to generate a public key and a secret key for SSL encryption with ! Solid-IRCd. For this purpose we have to use the "makecert.sh" shell script ! that's in the "ssl" directory of the Soild-IRCd source directory you extracted before. --- 13,23 ---- and communicate via a query window. ! It's presumed that you have already configured, compiled and installed ! solid-ircd without any errors. In addition to that you should have installed the latest ! version of OpenSSL and Kerberos to use the SSL encryption. First we have to generate a public key and a secret key for SSL encryption with ! solid-ircd. For this purpose we have to use the "makecert.sh" shell script ! that's in the "ssl" directory of the solid-ircd source directory you extracted before. *************** *** 32,36 **** private key. ! It's suggested to create a subdirectory called "ssl" in Solid-IRCd's install directory, e. g. "/usr/local/solid-ircd/ssl". Move the two key files there. You can rename it, if you want to, e. g. "myserver.pem" and "myserverkey.pem". Then --- 32,36 ---- private key. ! It's suggested to create a subdirectory called "ssl" in solid-ircd's install directory, e. g. "/usr/local/solid-ircd/ssl". Move the two key files there. You can rename it, if you want to, e. g. "myserver.pem" and "myserverkey.pem". Then *************** *** 39,43 **** is able to read and write: "chmod 600 myserver.pem myserverkey.pem" ! Then you have to tell Solid-IRCd where the key files live. That's done by editing the "ssl" block in your configuration: --- 39,43 ---- is able to read and write: "chmod 600 myserver.pem myserverkey.pem" ! Then you have to tell solid-ircd where the key files live. That's done by editing the "ssl" block in your configuration: Index: ssl.txt =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/doc/ssl.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ssl.txt 27 Jun 2005 03:03:00 -0000 1.1.1.1 --- ssl.txt 26 Dec 2005 17:47:07 -0000 1.2 *************** *** 1,3 **** $Id$ ! How to Set up SSL \ No newline at end of file --- 1,3 ---- $Id$ ! See ssltutorial.txt \ No newline at end of file |