summaryrefslogtreecommitdiff
path: root/sshd_config.5
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2018-06-06 18:24:00 +0000
committerDamien Miller <djm@mindrot.org>2018-06-07 04:27:21 +1000
commit04df43208b5b460d7360e1598f876b92a32f5922 (patch)
tree6cf9b06fbc4637dedaf8240151470275fcaad728 /sshd_config.5
parent93c06ab6b77514e0447fe4f1d822afcbb2a9be08 (diff)
upstream: man bits for PermitListen
OpenBSD-Commit-ID: 35b200cba4e46a16a4db6a80ef11838ab0fad67c
Diffstat (limited to 'sshd_config.5')
-rw-r--r--sshd_config.543
1 files changed, 41 insertions, 2 deletions
diff --git a/sshd_config.5 b/sshd_config.5
index 1231f3db8..775caf717 100644
--- a/sshd_config.5
+++ b/sshd_config.5
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: sshd_config.5,v 1.270 2018/06/01 06:23:10 jmc Exp $ 36.\" $OpenBSD: sshd_config.5,v 1.271 2018/06/06 18:24:00 djm Exp $
37.Dd $Mdocdate: June 1 2018 $ 37.Dd $Mdocdate: June 6 2018 $
38.Dt SSHD_CONFIG 5 38.Dt SSHD_CONFIG 5
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -1125,6 +1125,7 @@ Available keywords are
1125.Cm MaxSessions , 1125.Cm MaxSessions ,
1126.Cm PasswordAuthentication , 1126.Cm PasswordAuthentication ,
1127.Cm PermitEmptyPasswords , 1127.Cm PermitEmptyPasswords ,
1128.Cm PermitListen ,
1128.Cm PermitOpen , 1129.Cm PermitOpen ,
1129.Cm PermitRootLogin , 1130.Cm PermitRootLogin ,
1130.Cm PermitTTY , 1131.Cm PermitTTY ,
@@ -1184,6 +1185,44 @@ When password authentication is allowed, it specifies whether the
1184server allows login to accounts with empty password strings. 1185server allows login to accounts with empty password strings.
1185The default is 1186The default is
1186.Cm no . 1187.Cm no .
1188.It Cm PermitListen
1189Specifies the addresses/ports on which a remote TCP port forwarding may listen.
1190The listen specification must be one of the following forms:
1191.Pp
1192.Bl -item -offset indent -compact
1193.It
1194.Cm PermitListen
1195.Sm off
1196.Ar host : port
1197.Sm on
1198.It
1199.Cm PermitListen
1200.Sm off
1201.Ar IPv4_addr : port
1202.Sm on
1203.It
1204.Cm PermitListen
1205.Sm off
1206.Ar \&[ IPv6_addr \&] : port
1207.Sm on
1208.El
1209.Pp
1210Multiple permissions may be specified by separating them with whitespace.
1211An argument of
1212.Cm any
1213can be used to remove all restrictions and permit any listen requests.
1214An argument of
1215.Cm none
1216can be used to prohibit all listen requests.
1217The host name may contain wildcards as described in the PATTERNS section in
1218.Xr ssh_config 5 .
1219The wildcard
1220.Sq *
1221can also be used in place of a port number to allow all ports.
1222By default all port forwarding listen requests are permitted.
1223Note that
1224.Cm GatewayPorts
1225option may further restrict which addresses may be listened on.
1187.It Cm PermitOpen 1226.It Cm PermitOpen
1188Specifies the destinations to which TCP port forwarding is permitted. 1227Specifies the destinations to which TCP port forwarding is permitted.
1189The forwarding specification must be one of the following forms: 1228The forwarding specification must be one of the following forms: