marcoscarraro
(usa CentOS)
Enviado em 11/01/2011 - 08:26h
Eae Leandro
Pode fazer algo assim.
#!/bin/bash
echo "
#-----------------------------------------------------#
+ +
+ ESCRITO POR Marcos Carraro +
+ +
+ SINCE 2011 New :D +
+ +
#-----------------------------------------------------#
#-------------------------------------
# Variaveis
#-------------------------------------
echo -n "Forneça a porta para o SSH Ex:. 2232: "
read PORTA
echo -n "Onde esta o arquivo de configuração do ssh? Ex:. /etc/ssh/sshd_conf: "
READ ARQ
echo "\n Verifique como ficou a configuração do SSH\n"
echo "
Port ${PORTA}
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
UsePrivilegeSeparation yes
keyRegenerationInterval 3600
ServerKeyBits 768
SyslogFacility AUTH
LogLevel INFO
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM yes
" >> ${ARQ}