diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/pxemenu.template | 2 | ||||
-rw-r--r-- | data/sshd_config.template | 34 |
2 files changed, 35 insertions, 1 deletions
diff --git a/data/pxemenu.template b/data/pxemenu.template index 61ec1fa..5d39364 100644 --- a/data/pxemenu.template +++ b/data/pxemenu.template @@ -61,7 +61,7 @@ LABEL shutdown LABEL net MENU LABEL ^bwLehrpool-Umgebung starten TEXT HELP - Durch Drücken von ENTER wird die bwLehrpoolumgebung gestartet. + Durch Drücken von ENTER wird die bwLehrpool-Umgebung gestartet. Sie bietet Zugriff auf die Virtuellen Labore. ENDTEXT KERNEL http://%ipaddress%/boot/default/kernel diff --git a/data/sshd_config.template b/data/sshd_config.template new file mode 100644 index 0000000..0a73779 --- /dev/null +++ b/data/sshd_config.template @@ -0,0 +1,34 @@ +Port %PORT% +Protocol 2 +HostKey /etc/ssh/ssh_host_rsa_key +HostKey /etc/ssh/ssh_host_dsa_key +HostKey /etc/ssh/ssh_host_ecdsa_key +UsePrivilegeSeparation yes +KeyRegenerationInterval 3600 +ServerKeyBits 768 +SyslogFacility AUTH +LogLevel INFO +LoginGraceTime 30 +PermitRootLogin yes +StrictModes yes +RSAAuthentication yes +PubkeyAuthentication yes +PasswordAuthentication %PASSWORDLOGIN% +AuthorizedKeysFile %h/.ssh/authorized_keys +IgnoreRhosts yes +RhostsRSAAuthentication no +HostbasedAuthentication no +PermitEmptyPasswords no +ChallengeResponseAuthentication no +X11Forwarding yes +X11DisplayOffset 10 +PrintMotd no +PrintLastLog yes +TCPKeepAlive yes +Banner /etc/issue.net +AcceptEnv LANG LC_* +Subsystem sftp /usr/lib/openssh/sftp-server +UsePAM yes +DenyUsers demo +UseDNS no + |