home, interlink counts, modified times
no backlinks
modified 2025-02-12 wednesday 10:04 utc

weechat proxy through ssh tunnel

persist a socks tunnel to the proxy server (untested):

$ autossh -M 0 -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -N -D 9000 $proxy_node

weechat:

/proxy add my_proxy socks5 localhost 9000
/server add example irc.example.irc
/set irc.server.example.proxy my_proxy
/connect example

i use this because i want to connect to specific servers directly, and others from a proxy. i’d also prefer if my logs weren’t stored on the proxy node.

depending on your use case, alternatives to this might include running the client or a bouner on the proxy node.