CentOS 6.6에서 sshd 기본포트인 22포트를 변경하고 원격을 허용하는 과정을 기술
1. sshd 설정변경
- vi /etc/ssh/sshd_config
a. #Port 22 를 찾아서 주석(#) 제거 후 원하는 포트로 변경
- service sshd restart
2. 방화벽 허용
- vi /etc/sysconfig/iptables
a. -A INPUT -m state -state NEW -m tcp -p tcp --dport 10022 -j ACCEPT
- service iptables restart
ps. 사용자제한
- vi /etc/ssh/sshd_config
a. Allowusers root 사용자1 사용자2
'Linux' 카테고리의 다른 글
리눅스 unixODBC FreeTDS 설치 (MSSQL) (0) | 2015.12.02 |
---|---|
VIrtualBox ova 복원 후 eth0 찾지 못하는 경우 (0) | 2015.11.26 |
[6-6] zabbix agent 설치 (0) | 2015.10.21 |
[6-5] zabbix server 설치 (0) | 2015.10.21 |
[6-4] php 설치 (0) | 2015.10.21 |