首先在BT5中配置ssh.在BT5中不需要你自己去安装ssh,自身就有的所以直接启动ssh服务
1 |
# /etc/init.d/ssh restart |
然后查看ssh是否启动并查看端口22是否开放
1 2 |
#netstat -tlp #netstat -ant | grep 22 |
但是到这里后在win7 中使用SSH Secure Shell还是连不上,原来还得先生成两个密钥
1 2 |
#ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key #ssh-keygen -t dsa -f /etc/ssh/ssh_host_rsa_key |
执行命令后都会让输入密码,直接敲回车设置为空即可
然后在本机win7系统使用SSH Secure Shell连接即可
1 2 3 4 5 6 7 8 9 |
root@192.168.1.132's password: Linux root 2.6.38 #1 SMP Thu Mar 17 20:52:18 EDT 2011 i686 GNU/Linux ################################################################### [*] Welcome to the BackTrack 5 Distribution, Codename "Revolution" [*] Official BackTrack Home Page: http://www.backtrack-linux.org [*] Official BackTrack Training : http://www.offensive-security.com ################################################################### [*] To start a graphical interface, type "startx". [*] The default root password is "toor". |
转载请注明:exchen's blog » 通过ssh访问Back Track 5