Chủ Nhật, 18 tháng 5, 2014

// // Leave a Comment

Cài đặt SSH - OpenSSH và SSHD

Cài đặt bằng lệnh:
# apt-get install openssh-server
chú ý: nếu ko cài được thì vào thay đổi namerserver thành 8.8.8.8 trong /etc/resolv.conf
Sau khi cài đặt xong, kiểm tra port 22 của ssh đã mở hay chưa:
root@wisehome:~# netstat -tulpn|grep :22
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      3096/sshd      
tcp6       0      0 :::22                   :::*                    LISTEN      3096/sshd  
File cấu hình chính:
root@wisehome:~# nano /etc/ssh/sshd_config
Sử dụng lệnh sau để kếnh nối đến server:
$ ssh user@localhost
$ ssh user@sever-ip-here
Các lệnh khởi động, stop....
# service ssh stop
# service ssh start
# service ssh restart
# service ssh status
OR
# /etc/init.d/ssh stop
# /etc/init.d/ssh start
# /etc/init.d/ssh restart
# /etc/init.d/ssh status
Cho phép khởi động chung:
root@wisehome:~# update-rc.d ssh defaults 

How Do I Open Port 22 At The Firewall Level?
Edit your firewall script and append the following rule to restrict access to 192.168.1.0/24:
/sbin/iptables -A INPUT -s 192.168.1.0/24 -m state --state NEW -p tcp --dport 22 -j ACCEPT
Save and close the file. OR, you can type the command as follows and save it to your firewall config file:
# /sbin/iptables -A INPUT -s 192.168.1.0/24 -m state --state NEW -p tcp --dport 22 -j ACCEPT
# iptables-save > /path/to/your.firewall.conf


0 nhận xét:

Đăng nhận xét

Lưu ý: Chỉ thành viên của blog này mới được đăng nhận xét.