当我尝试登录 nagios 服务器时,它给所有用户同时连接带来了麻烦。要么连接时间太长,要么根本无法连接。
这是尝试连接时发生的情况。
bbnladmin@bbnladmin~$ ssh kiran@<ip address> -p714 -vvvv
OpenSSH_5.9p1 Debian-5ubuntu1.1, OpenSSL 1.0.1 14 Mar 2012
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to <ip address> [ip address] port 714.
这到此为止并且不再继续。
请帮助它。
答案1
这似乎是防火墙问题。检查 nagios 服务器中的防火墙是否阻止了连接。另外,检查 nagios 服务器中的 /etc/hosts 文件,看看是否有任何有趣的条目,例如主机副 ACL
答案2
您确实读过man ssh
,其中部分内容如下:
SYNOPSIS
ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]
[-D [bind_address:]port] [-E log_file] [-e escape_char]
[-F configfile] [-I pkcs11] [-i identity_file]
[-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec]
[-O ctl_cmd] [-o option] [-p port]
[-Q cipher | cipher-auth | mac | kex | key]
[-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port]
[-w local_tun[:remote_tun]] [user@]hostname [command]
将此命令与您使用的命令进行比较,我们发现您告诉ssh
:
ssh kiran@<ip address>
<ip address>
使用其默认选项,以用户身份连接kiran
,然后执行“命令”
-p714 -vvvv
这可能不是您想要的。
应该把选项前该user@hostname
部分,例如:
ssh -p 714 -vvvv kiran@<ip address>