Users browsing this thread: 15 Guest(s)
|
|||
I had trouble for connecting with a client that does not handle TLS (like ii, sic, ...), and I found a solution! :)
I use an inetd stream entry which for piping the command-line TLS client* and a local TCP socket for your client to connect to. You can even have a Proxy machine which does the translation! * openssl s_client, nc -ssl, brssl client... now you have the choice of your backend! :D Pipes are universal. # vi /etc/services Code: irc-freenode 6970/tcp # vi /etc/inetd.conf Code: irc-freenode stream tcp nowait nobody /usr/bin/openssl openssl s_client -quiet -connect irc.freenode.net:6697 And then start the inetd service, the inetd daemon... however you distro or you wants it... If it already runs, you can probably reload its configuration with: # pkill -HUP inetd You can pretty much use xinetd for this, the command itox translates the inetd format to xinetd format: # itox < inetd.conf Code: service irc-unix |
|||
Messages In This Thread |
RE: IRC - by TheAnachron - 05-01-2017, 10:58 AM
RE: IRC - by pranomostro - 05-01-2017, 10:27 PM
RE: IRC - by sametsisartenep - 11-03-2017, 12:07 PM
RE: IRC - by robotchaos - 12-04-2017, 01:40 PM
RE: IRC - by pyratebeard - 12-04-2017, 06:46 PM
RE: IRC - by robotchaos - 12-04-2017, 07:31 PM
RE: IRC - by robotchaos - 18-04-2017, 03:34 PM
RE: IRC - by perrierjouet - 15-10-2017, 03:32 PM
RE: IRC - by josuah - 09-02-2018, 05:45 AM
RE: IRC - by TheAnachron - 20-05-2021, 04:05 PM
RE: IRC - by TheAnachron - 24-05-2021, 06:20 AM
RE: IRC - by TheAnachron - 26-05-2021, 02:10 PM
|