This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
faq [2015/09/09 13:43] jomat created |
faq [2016/06/27 01:07] (current) jomat [What's the difference to blafasel?] |
||
|---|---|---|---|
| Line 7: | Line 7: | ||
| ===== Why aren't there any services? ===== | ===== Why aren't there any services? ===== | ||
| - | People tend to register with services, leaving behind their mail adresses or other data we don't want to have and don't want to be in charge of. | + | People tend to register with services, leaving behind their mail addresses or other data we don't want to have and don't want to be in charge of. |
| ===== But i want services! ===== | ===== But i want services! ===== | ||
| - | Ok. Just use a bot that gives you op or whatever you need. | + | Ok. Just use a bot that gives you op or whatever you need. Authentication towards the bot is possible through client certs or a multitude of different means. |
| + | |||
| + | ===== How do I use a client certificate? ===== | ||
| + | |||
| + | First you need to create one: | ||
| + | <code> | ||
| + | openssl req -newkey rsa:4096 -days 365 -x509 -keyout irssi.key -out irssi.crt -nodes -subj "/CN=yournick" | ||
| + | </code> | ||
| + | |||
| + | Next you need to configure your client to use it. | ||
| + | If you use irssi, add the following options to the darkfasel server config: | ||
| + | <code> | ||
| + | servers = ( | ||
| + | […] | ||
| + | { | ||
| + | […] | ||
| + | ssl_cert = "~/irssi.crt"; | ||
| + | ssl_pkey = "~/irssi.key"; | ||
| + | } | ||
| + | ) | ||
| + | </code> | ||
| + | |||
| + | Don't give away your private key! | ||
| ===== What's the difference to blafasel? ===== | ===== What's the difference to blafasel? ===== | ||
| - | Some blafasel users weren't too happy with the missing security features of blafasel, so they forked a darkfasel net. By now, most of the active blafasel channels and users have moved to darkfasel. | + | Some blafasel users weren't too happy with the missing security features of blafasel, so they forked a darkfasel net. |