SSH 에 포트를 추가 하는 방법입니다.

기본 22번 포트가 열려있는데. 저같은경우 22번이 막혀있는지라(사정상;;). 다른 포트를 열어야 됩니다. 그런데 문제는 방화벽 정책이 초기화될수도 있어서 두개를 열어놓아야 합니다. 즉 SSH 접속할수 있는 포트를 22번과 다른 한개를 더 추가 해야 된다는말입니다.

방법은 간단합니다.

 

Centos 6.5 입니다. 다른 것도 다르지 않을거라 봅니다. sshd_config 를 수정합니다. 

#vi /etc/ssh/sshd_config

소스 일부를 발췌한것입니다. 쓰고자 하는 포트를 추가 시켜주시면 됩니다. 물론 방화벽정책에 쓰고자 하는 포트를 열어주셔야 합니다.

 

#       $OpenBSD: sshd_config,v 1.80 2008/07/02 02:24:18 djm Exp $

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options change a
# default value.

Port 222
Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

 

 

#service sshd restart