**ssh 기본 접속 포트가 22번
**인데 학교 와이파이로 접근할 수 없어서 불편함을 겪음
vi /etc/ssh/sshd_config
위 명령어를 입력하면 여러 설정 값들이 담긴 파일이 보일 것인데 port를 찾아서 변경하고 싶은 port로 명시
vi 편집기 문법은 알잘딱
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
# 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 override the
# default value.
Include /etc/ssh/sshd_config.d/*.conf
Port 2222 // 이런식으로 바꿔주면 된다
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::s
위를 반영하기 위해서 재시작을 시켜주면 된다.
systemctl restart sshd