sshd_config revision 1.1 1 # $NetBSD: sshd_config,v 1.1 2013/03/19 22:16:53 garbled Exp $
2
3 # Special cut-down sshd_config for sshramdisk
4 # Tim Rightnour <garbled (a] NetBSD.org>
5
6 #Port 22
7 #AddressFamily any
8 #ListenAddress 0.0.0.0
9 #ListenAddress ::
10 #Protocol 2
11 #HostKey /etc/ssh/ssh_host_dsa_key
12 LoginGraceTime 600
13 # needed because sysinst is uid 0
14 PermitRootLogin yes
15 AuthorizedKeysFile .ssh/authorized_keys
16 PasswordAuthentication yes
17 # just in case
18 PermitEmptyPasswords yes
19 UsePrivilegeSeparation sandbox
20 AllowUsers pi sysinst
21