分类: BSD
2010-11-18 11:44:00
1.开机启动ssh服务,编辑/etc/rc.conf文件 #echo ‘sshd_enabl=”YES’>>/etc/rc.conf 2. 编辑/etc/inetd.conf文件,找到ssh开头的,有2行,在这2行最前头加上#注释掉 3. 编辑/etc/ssh/sshd_config,增加以下几行 # echo ‘PermitRootLogin
yes’>>/etc/ssh/sshd_conf # echo ‘PasswordAuthentication yes’>>/etc/ssh/sshd_config 4. 启动ssh服务 # /etc/rc.d/sshd start |