码迷,mamicode.com
首页 > 其他好文 > 详细

如何修改ssh默认端口

时间:2017-11-03 23:58:01      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:linux   ssh   


在使用云服务器的过程中发现有黑客远程暴力破解我的ssh端口,为避免该安全隐患应更改ssh服务的默认端口号。

ssh的配置文件保存在/etc/ssh/sshd_config     文件中

[root@jdu4e00u53f7 ~]# vim /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 22     此处去掉#,并将22修改为你想使用的端口号,但修改后端口号不可与其他服务发生冲突。
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

# Disable legacy (protocol version 1) support in the server for new
# installations. In future the default will change to require explicit
# activation of protocol 1
Protocol 2

# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key


[root@jdu4e00u53f7 ~]# service sshd restart   修改文件后应重启服务使配置生效


本文出自 “Linux学习记录” 博客,请务必保留此出处http://zjmlinux.blog.51cto.com/4684186/1978864

如何修改ssh默认端口

标签:linux   ssh   

原文地址:http://zjmlinux.blog.51cto.com/4684186/1978864

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!