# I'm just not gonna write troff :-) =head1 NAME sslh - protocol demultiplexer =head1 SYNOPSIS sslh [B<-F> I] [ B<-t> I ] [B<--transparent>] [B<-p> I [B<-p> I ...] [B<--ssl> I] [B<--ssh> I] [B<--openvpn> I] [B<--http> I] [B<--anyprot> I] [B<--on-timeout> I] [B<-u> I] [B<-P> I] [-v] [-i] [-V] [-f] [-n] =head1 DESCRIPTION B accepts connections on specified ports, and forwards them further based on tests performed on the first data packet sent by the remote client. Probes for HTTP, SSL, SSH, OpenVPN, tinc, XMPP are implemented, and any other protocol that can be tested using a regular expression, can be recognised. A typical use case is to allow serving several services on port 443 (e.g. to connect to ssh from inside a corporate firewall, which almost never block port 443) while still serving HTTPS on that port. Hence B acts as a protocol demultiplexer, or a switchboard. Its name comes from its original function to serve SSH and HTTPS on the same port. =head2 Libwrap support One drawback of B is that the servers do not see the original IP address of the client anymore, as the connection is forwarded through B. For this reason, B can be compiled with B to check accesses defined in F and F. Libwrap services can be defined using the configuration file. =head2 Configuration file A configuration file can be supplied to B. Command line arguments override file settings. B uses B to parse the configuration file, so the general file format is indicated in L. Please refer to the example configuration file provided with B for the specific format (Options have the same names as on the command line, except for the list of listen ports and the list of protocols). The configuration file makes it possible to specify protocols using regular expressions: a list of regular expressions is given as the I parameter, and if the first packet received from the client matches any of these expressions, B connects to that protocol. =head2 Probing protocols When receiving an incoming connection, B will read the first bytes sent be the connecting client. It will then probe for the protocol in the order specified on the command line (or the configuration file). Therefore B<--anyprot> should alway be used last, as it always succeeds and further protocols will never be tried. If no data is sent by the client, B will eventually time out and connect to the protocol specified with B<--on-timeout>, or I if none is specified. =head2 Logging As a security/authorization program, B logs to the LOG_AUTH facility, with priority LOG_INFO for normal connections and LOG_ERR for failures. =head1 OPTIONS =over 4 =item B<-F> I, B<--config> I Uses I has configuration file. If other command-line options are specified, they will override the configuration file's settings. =item B<-t> I, B<--timeout> I Timeout before forwarding the connection to the timeout protocol (which should usually be SSH). Default is 2s. =item B<--on-timeout> I Name of the protocol to connect to after the timeout period is over. Default is 'ssh'. =item B<--transparent> Makes B behave as a transparent proxy, i.e. the receiving service sees the original client's IP address. This works on Linux only and involves B settings. Refer to the README for more information. =item B<-p> I, B<--listen> I Interface and port on which to listen, e.g. I, where I is the name of an interface (typically the IP address on which the Internet connection ends up). This can be specified several times to bind B to several addresses. =item B<--ssl> I =item B<--tls> I Interface and port on which to forward SSL connection, typically I. Note that you can set B to listen on I and B to listen on I: this allows clients inside your network to just connect directly to B. Also, B probes for SSLv3 (or TLSv1) handshake and will reject connections from clients requesting SSLv2. This is compliant to RFC6176 which prohibits the usage of SSLv2. If you wish to accept SSLv2, use B<--default> instead. =item B<--ssh> I Interface and port on which to forward SSH connections, typically I. =item B<--openvpn> I Interface and port on which to forward OpenVPN connections, typically I. =item B<--xmpp> I Interface and port on which to forward XMPP connections, typically I. =item B<--http> I Interface and port on which to forward HTTP connections, typically I. =item B<--tinc> I Interface and port on which to forward tinc connections, typically I. This is experimental. If you use this feature, please report the results (even if it works!) =item B<--anyprot> I Interface and port on which to forward if no other protocol has been found. Because B tries protocols in the order specified on the command line, this should be specified last. If no default is specified, B will forward unknown protocols to the first protocol specified. =item B<-v>, B<--verbose> Increase verboseness. =item B<-n>, B<--numeric> Do not attempt to resolve hostnames: logs will contain IP addresses. This is mostly useful if the system's DNS is slow and running the I variant, as DNS requests will hang all connections. =item B<-V> Prints B version. =item B<-u> I, B<--user> I Requires to run under the specified username. =item B<-P> I, B<--pidfile> I Specifies a file in which to write the PID of the main server. =item B<-i>, B<--inetd> Runs as an I server. Options B<-P> (PID file), B<-p> (listen address), B<-u> (user) are ignored. =item B<-f>, B<--foreground> Runs in foreground. The server will not fork and will remain connected to the terminal. Messages normally sent to B will also be sent to I. =item B<--background> Runs in background. This overrides B if set in the configuration file (or on the command line, but there is no point setting both on the command line unless you have a personality disorder). =back =head1 FILES =over 4 =item F Start-up script. The standard actions B, B and B are supported. =item F Server configuration. These are environment variables loaded by the start-up script and passed to B as command-line arguments. Refer to the OPTIONS section for a detailed explanation of the variables used by B. =back =head1 SEE ALSO Last version available from L, and can be tracked from L. =head1 AUTHOR Written by Yves Rutschle