-
Notifications
You must be signed in to change notification settings - Fork 6
/
robustirc-bridge.1
89 lines (73 loc) · 2.43 KB
/
robustirc-bridge.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.TH robustirc-bridge 1 "JANUARY 2015" Linux "User Manuals"
.SH NAME
robustirc-bridge \- bridge between IRC and RobustIRC
.SH SYNOPSIS
.B robustirc-bridge
.RB [\|\-listen
.IR address \|]
.RB [\|\-network
.IR address \|]
.RB [\|\-socks
.IR address \|]
.RB [\|\-tls_ca_file
.IR path \|]
.RB [\|\-tls_cert_path
.IR path \|]
.RB [\|\-tls_key_path
.IR path \|]
.RB [\|\-motd_path
.IR path \|]
.SH DESCRIPTION
.B robustirc-bridge
allows you to connect to a RobustIRC network using your regular IRC client
(such as irssi, WeeChat, XChat, etc).
It can be used as a SOCKS proxy for IRC clients which support SOCKS proxies,
or it can be run for a specific RobustIRC network, in which case it will
listen on a port (localhost:6667 by default) and talk IRC.
.SH OPTIONS
.TP
.BI \-listen\ address \fR
Listen on the provided address for IRC connections (in host:port format, see
also http://golang.org/pkg/net/#Dial for more details).
\fB-network\fR must also be specified for \fB-listen\fR to have any effect.
.TP
.BI \-network\ address \fR
When accepting new connections on the port specified by \fB-listen\fR, to which
network should they be bridged? This is a DNS name such as "robustirc.net". The
servers to connect to will be resolved by resolving the _robustirc._tcp SRV
record for that DNS name.
If \fB-network\fR is unspecified, \fB-listen\fR will not be used, and only the
\fB-socks\fR functionality will be provided.
.TP
.BI \-socks\ address \fR
Listen on the provided address for SOCKS connections (in host:port format, see
also http://golang.org/pkg/net/#Dial for more details).
.TP
.BI \-motd_path\ path \fR
Path to a text file containing the message of the day (MOTD) to prefix to the
network MOTD.
The default MOTD warns people that they should run their own bridge instead of
connecting, and you are expected to specify \fB-motd_path=\fR (i.e. empty) when
starting the bridge in a scenario where you are the only user or all users run
their IRC client on the same machine as the bridge.
.TP
.BI \-tls_cert_path\ path \fR
Path to a .pem file containing the TLS certificate. If unspecified, TLS is not used.
.TP
.BI \-tls_key_path\ path \fR
Path to a .pem file containing the TLS private key. If unspecified, TLS is not used.
.TP
.BI \-tls_ca_file\ path \fR
Use the specified file as trusted CA instead of the system CAs. Useful for
testing.
.SH AUTHOR
Michael Stapelberg