Como criar um ssh para mais de um servidor linux?

0

atualizado *

Eu tenho dois servidores Linux CentOS 7 & Debian 6 executando um aplicativo web vulnerável dentro do Virtual Box, meu sistema operacional host é o Kali Linux & conectado a ambas as configurações de VM'S com Host-only -adapter. Eu posso com sucesso SSH para CentOS, mas quando eu SSH para o Debian diz a verificação do host falhou, minha pergunta era como ssh para debian sem ter erro ou se conectar a mais de um vm?

"desculpas por não fornecer informações suficientes anteriormente", conforme solicitado, eu tenho os detalhes

ssh_config

Host *
#   ForwardAgent no
#   ForwardX11 no
#   ForwardX11Trusted yes
#   RhostsRSAAuthentication no
#   RSAAuthentication yes
#   PasswordAuthentication yes
#   HostbasedAuthentication no
#   GSSAPIAuthentication no
#   GSSAPIDelegateCredentials no
#   GSSAPIKeyExchange no
#   GSSAPITrustDNS no
#   BatchMode no
#   -o CheckHostIP no 192.168.56.101
#   AddressFamily any
#   ConnectTimeout 0
#   StrictHostKeyChecking no
#   IdentityFile ~/.ssh/identity
#   IdentityFile ~/.ssh/id_rsa
#   IdentityFile ~/.ssh/id_dsa
#   Port 22
#   Protocol 2,1
#   Cipher 3des
#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
#   MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
#   VisualHostKey no
#   ProxyCommand ssh -q -W %h:%p gateway.example.com

#   RekeyLimit 1G 1h
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes
    GSSAPIDelegateCredentials no
    NoHostAuthenticationForLocalhost yes

sshd_config

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile     %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server'enter code here'
    
por user2767092 25.01.2016 / 03:37

1 resposta

0

você tem duas opções:

  • adicione a opção -o "CheckHostIP no" à linha de comando ssh;
  • adicione o seguinte snipplet ao seu arquivo ~/.ssh/config :

Host ip-address-of-your-VM

CheckHostIP no

Atualização:

Consegui acertar a partir da sua atualização, que o arquivo que você tem no diretório ~/.ssh é denominado ssh_config ? Se isso for verdade, você cometeu um erro: ele deve ser nomeado apenas config (sem ssh_ )

Na configuração que você postou, você tem uma linha que obviamente adiciona:

#   -o CheckHostIP no 192.168.56.101

Deve parecer completamente diferente:

Host 192.168.56.101
CheckHostIP no

E, de preferência, coloque essas duas linhas no final do arquivo config , para que a entrada do host da VM derive de todas as outras configurações que você definiu.

    
por 25.01.2016 / 03:59

Tags