summaryrefslogtreecommitdiff
path: root/docs/help/in/server.in
AgeCommit message (Collapse)Author
2017-02-14Do not alias /server <hostname> to /server connect <hostname>LemonBoy
Closes #559.
2017-01-06Fix syntax on /help SERVER exampleLasse Toimela
2016-10-22Add x509 certificate and public key pinning support.Alexander Færøy
This patch adds two new options to /CONNECT and /SERVER to let the user pin either an x509 certificate and/or the public key of a given server. It is possible to fetch the certificate outside of Irssi itself to verify the checksum. To fetch the certificate call: $ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \ openssl x509 > freenode.cert This will download chat.freenode.net:6697's TLS certificate and put it into the file freenode.cert. -tls_pinned_cert ---------------- This option allows you to specify the SHA-256 hash of the x509 certificate. When succesfully connected to the server, irssi will verify that the given server certificate matches the pin set by the user. The SHA-256 hash of a given certificate can be verified outside of irssi using the OpenSSL command line tool: $ openssl x509 -in freenode.cert -fingerprint -sha256 -noout -tls_pinned_pubkey ------------------ This option allows you to specify the SHA-256 hash of the subject public key information section of the server certificate. This section contains both the cryptographic parameters for the public key, but also information about the algorithm used together with the public key parameters. When succesfully connected to the server, irssi will verify that the given public key matches the pin set by the user. The SHA-256 hash of a public key can be verified outside of irssi using the OpenSSL command line tool: $ openssl x509 -in freenode.cert -pubkey -noout | \ openssl pkey -pubin -outform der | \ openssl dgst -sha256 -c | \ tr a-z A-Z It is possible to specify both -tls_pinned_cert and -tls_pinned_pubkey together.
2016-10-22Rename SSL to TLS.Alexander Færøy
This patch changes the internal name of SSL to TLS. We also add -tls_* options to /CONNECT and /SERVER, but make sure that the -ssl_* versions of the commands continue to work like before.
2016-06-18Add info about MODIFY to help filesJari Matilainen
2015-04-18trivial: Minor cosmetic changes fixing docs as per review from ahf.Haw Loeung
2015-04-14ssl: Add option to specify SSL cipher suite preference.Haw Loeung
2014-11-14Fix -ssl_pass documentation in /server and /connectdequis
Copied text from 68f8229 (SVN r5231)
2014-10-20Actually fix the params for /SERVER REMOVEDavid Leadbeater
2014-10-15Tiny fix to the param order in the /SERVER REMOVE helpdequis
2014-08-07Applied grammar and styling correctionsGeert Hauwaerts
Applied grammar and styling corrections.
2014-07-30Fixed a typo in the cmdmax argumentGeert Hauwaerts
Fixed a typo in the cmdmax argument.
2014-07-06Updated SERVER documentationGeert Hauwaerts
Added the noautosendcmd parameters to the SERVER syntax documentation
2014-07-06Replaced google.com with irssi.org examplesGeert Hauwaerts
Replaced google.com with irssi.org examples.
2014-07-06New syntax documentation for NETWORK and SERVERGeert Hauwaerts
Rewrote the syntax documentation for NETWORK and SERVER
2014-01-11Add -ssl_pass to /connect and /serverAlexander Færøy
Fixes: Bug #305 git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5231 dbcabf3a-b0e7-0310-adc4-f8d773084564
2011-11-21Add -noautosendcmd to /SERVER and /CONNECT.Alexander Færøy
Passing this option will force Irssi to not execute the content of the autosendcmd chatnet-setting upon connect. Fixes: #738 git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5209 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-03-21Allow servers with the same server and port to be part of multiple networks. ↵Alexander Færøy
This should make life much easier for znc users. Thanks to Tykling, Bazerka and znx. git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5125 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-08-01Fix typos.Emanuele Giaquinta
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4865 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-05-18Clarify the meaning of 'port' option for 'server add', patch by Dyana Wu.Emanuele Giaquinta
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4831 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-10-30documentation: added the explanation of the -noproxy option of in the server ↵Valentin Batz
command git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4394 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-17Fix /help server: -noauto is the defaultWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3322 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-07-11s/ircnet/network/ - patch by Joost VunderinkTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3270 dbcabf3a-b0e7-0310-adc4-f8d773084564
2003-11-16ssl changesTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3149 dbcabf3a-b0e7-0310-adc4-f8d773084564
2003-06-04updates, by sixTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3115 dbcabf3a-b0e7-0310-adc4-f8d773084564
2002-08-26SSL updatesTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2892 dbcabf3a-b0e7-0310-adc4-f8d773084564
2002-04-09Added CONNECT to "see also" listTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2662 dbcabf3a-b0e7-0310-adc4-f8d773084564
2002-03-06added -! option help, by c0ffeeTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2536 dbcabf3a-b0e7-0310-adc4-f8d773084564
2001-03-04IPv6 fixes. Everything now keeps both v4 and v6 addresses in memory andTimo Sirainen
at connect() time it's decided which one should be used. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1334 dbcabf3a-b0e7-0310-adc4-f8d773084564
2001-01-05updated docsTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1071 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-07-26Help files by liteTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@536 dbcabf3a-b0e7-0310-adc4-f8d773084564