当前位置: 技术问答>linux和unix
linux机开了telnet服务,我在win2000远程登入输入root和密码完全是对,但就是进不去.请指教
来源: 互联网 发布时间:2015-08-02
本文导语: . | telnet默认是不允许root登陆的 你可以用一个普通的账号登陆,再su 到root | 你的防火墙看看是不是允许telnet通过的 | setup | xharry(charry) ( ) ...
.
|
telnet默认是不允许root登陆的
你可以用一个普通的账号登陆,再su 到root
你可以用一个普通的账号登陆,再su 到root
|
你的防火墙看看是不是允许telnet通过的
|
setup
|
xharry(charry) ( ) 正解.
如果能够用root用户远程telnet,那linux不是太不安全了.
似乎能够通过设置改变这个缺省行为,但我也不知道了,哈
如果能够用root用户远程telnet,那linux不是太不安全了.
似乎能够通过设置改变这个缺省行为,但我也不知道了,哈
|
你为什么非要用root登陆呢?
如果你坚持的话,用ssh,这个可以用root直接登陆
如果你坚持的话,用ssh,这个可以用root直接登陆
|
同意用ssh
|
同意不用telnet,我刚开始时也用它,现在改成ssh了。
|
setup
service
把telnet关掉把ssh打开
/sbin/service xinetd restart
或者
/sbin/chkconfig telnet off
/sbin/chkconfig ssh on
/sbin/service xinetd restart
就可以了
service
把telnet关掉把ssh打开
/sbin/service xinetd restart
或者
/sbin/chkconfig telnet off
/sbin/chkconfig ssh on
/sbin/service xinetd restart
就可以了
|
root can not telnet to the remote machine directly
you can rlogin as a non-root user and the su to root
or you can use ssh instead of telnet
you can rlogin as a non-root user and the su to root
or you can use ssh instead of telnet
|
好像telnet不能使用root,建议新建一个用户试试.