sshd:在 ubuntu 14.04 上的 libc-2.19.so 中,8 ip 错误 4 处发生段错误

sshd:在 ubuntu 14.04 上的 libc-2.19.so 中,8 ip 错误 4 处发生段错误

我使用的是 Ubuntu 14.04,昨天我重新安装了 openssh-server 并设置了 goeip,以允许/拒绝按国家/地区进行 ssh 访问。在/var/log/消息,不断出现以下错误:

$ tail _/var/log/message_
...
Jul 26 11:42:23 ubuntu vmunix: [436036.421573] sshd[29389]: segfault at 8 ip 00007fa3488b4c2a sp 00007ffda1a9b498 error 4 in libc-2.19.so[7fa34881d000+1ba000]
...

# sshd  -T
/etc/ssh/sshd_config line 87: Unsupported option UsePAM
port 22
protocol 2
addressfamily any
listenaddress 0.0.0.0:22
listenaddress [::]:22
serverkeybits 768
logingracetime 120
keyregenerationinterval 3600
x11displayoffset 10
maxauthtries 6
maxsessions 10
clientaliveinterval 0
clientalivecountmax 3
permitrootlogin yes
ignorerhosts yes
ignoreuserknownhosts no
rhostsrsaauthentication no
hostbasedauthentication no
hostbasedusesnamefrompacketonly no
rsaauthentication yes
pubkeyauthentication yes
passwordauthentication yes
kbdinteractiveauthentication no
challengeresponseauthentication no
printmotd no
printlastlog yes
x11forwarding yes
x11uselocalhost yes
strictmodes yes
tcpkeepalive yes
permitemptypasswords no
permituserenvironment no
uselogin no
compression delayed
gatewayports no
usedns yes
allowtcpforwarding yes
useprivilegeseparation yes
pidfile /var/run/sshd.pid
xauthlocation /usr/bin/xauth
loglevel INFO
syslogfacility AUTH
authorizedkeysfile %h/.ssh/authorized_keys
hostkey /etc/ssh/ssh_host_rsa_key
hostkey /etc/ssh/ssh_host_dsa_key
hostkey /etc/ssh/ssh_host_ecdsa_key
acceptenv LANG
acceptenv LC_*
subsystem sftp /usr/lib/openssh/sftp-server
maxstartups 10:100:10
permittunnel no
ipqos lowdelay throughput
permitopen any

# cat /etc/hosts.deny
sshd: ALL

# cat /etc/hosts.allow
sshd: ALL: aclexec /usr/local/bin/sshfilter.sh %a

注意:SSH 过滤不起作用!昨晚它还在工作。

有人知道为什么会出现这个错误吗?

相关内容