# yum install openssh-server openssh-clients
sshd를 enable시키고 시작하는 방법입니다.
# chkconfig sshd on
# service sshd start
만약 iptables(firewall)이 구동되고 있다면 아래와 같이 추가해 주세요.
# /sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
# service iptables save
만약 원하는 source network만 허용해주기를 원하신다면 아래와 같이 추가해 주면 됩니다.
# /sbin/iptables -A INPUT -s 192.168.1.0/24 -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
# service iptables save
댓글 없음:
댓글 쓰기