千家信息网

[HP-UX] ftp无法登陆

发表于:2024-12-13 作者:千家信息网编辑
千家信息网最后更新 2024年12月13日,HP Unix ftp无法登陆,查看/etc/inetd.conf文件.[root@xxxxxx:/xxxxx#] more /etc/inetd.confftp stream tcp6 nowait
千家信息网最后更新 2024年12月13日[HP-UX] ftp无法登陆HP Unix ftp无法登陆,查看/etc/inetd.conf文件.

[root@xxxxxx:/xxxxx#] more /etc/inetd.conf
ftp stream tcp6 nowait root /usr/lbin/ftpd ftpd -l
-a
login stream tcp6 nowait root /usr/lbin/rlogind rlogind
telnet stream tcp6 nowait root /usr/lbin/telnetd telnetd -b /etc/issue

ftpd 这行有个-a的选项时,则ftp时会调用/etc/ftpd/下的配置文件ftpusers.
[root@xxxxxx:/etc/ftpd#] ls -l #里面的文件夹都是空的.
total 0
dr-xr-xr-x 2 bin bin 96 Oct 2 2013 ftp-exec
dr-xr--r-- 2 bin bin 96 Oct 2 2013 pids

将/etc/inetd.conf的ftp行的 -a选项去掉后重启 inetd 服务后正常
[root@xxxxxx:/xxxxx#] more /etc/inetd.conf
ftp stream tcp6 nowait root /usr/lbin/ftpd ftpd -l

login stream tcp6 nowait root /usr/lbin/rlogind rlogind
telnet stream tcp6 nowait root /usr/lbin/telnetd telnetd -b /etc/issue
[root@xxxxxx:/xxxxx#] /sbin/init.d/inetd stop
Internet Services stopped
[root@xxxxxx:/xxxxx#] /sbin/init.d/inetd start
Internet Services started


0