sshd_config注释

Easter79
• 阅读 698
  1 [root@H0f ~]# cat /etc/ssh/sshd_config
  2 #update by H0f 2018-03-13
  3 #    $OpenBSD: sshd_config,v 1.80 2008/07/02 02:24:18 djm Exp $
  4 
  5 # This is the sshd server system-wide configuration file.  See
  6 # sshd_config(5) for more information.
  7 
  8 # This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin
  9 
 10 # The strategy used for options in the default sshd_config shipped with
 11 # OpenSSH is to specify options with their default value where
 12 # possible, but leave them commented.  Uncommented options change a
 13 # default value.
 14 
 15 #Port 22           #ssh预设端口
 16 #AddressFamily any
 17 #ListenAddress 0.0.0.0  # 监听的主机适配卡
 18 #ListenAddress ::       ## 监听所有的SSH联机
 19 
 20 # Disable legacy (protocol version 1) support in the server for new
 21 # installations. In future the default will change to require explicit
 22 # activation of protocol 1
 23 Protocol 2     # 选择的 SSH 协议版本
 24 
 25 # HostKey for protocol version 1   # SSH version 1  
 26 #HostKey /etc/ssh/ssh_host_key    # SSH version 1 使用的私钥 
 27 # HostKeys for protocol version 2 # SSH version 2
 28 #HostKey /etc/ssh/ssh_host_rsa_key# SSH version 2 使用的 RSA 私钥 
 29 #HostKey /etc/ssh/ssh_host_dsa_key #SSH version 2 使用的 DSA 私钥  
 30 
 31 # Lifetime and size of ephemeral version 1 server key
 32 #KeyRegenerationInterval 1h  #key建立时间
 33 #ServerKeyBits 1024          # Server key 的长度
 34 
 35 # Logging
 36 # obsoletes QuietMode and FascistLogging
 37 #SyslogFacility AUTH
 38 SyslogFacility AUTHPRIV    #指定 sshd(8) 将日志消息通过哪个日志子系统(facility)发送
 39 #LogLevel INFO               #登录记录的等级
 40 
 41 # Authentication:
 42 
 43 #LoginGraceTime 2m        #限制用户必须在指定的时限内认证成功
 44 #PermitRootLogin yes      #允许root用户远程登录
 45 #StrictModes yes          #指定是否要求 sshd(8) 在接受连接请求前对用户主目录和相关的配置文件进行宿主和权限检查。
 46 #MaxAuthTries 6           #指定每个连接最大允许的认证次数。默认值是 6 
 47 #MaxSessions 10           #最大允许保持多少个未认证的连接。默认值是 10 
 48 
 49 #RSAAuthentication yes    #是否允许使用纯 RSA 公钥认证。仅用于SSH-1。默认值是"yes"
 50 RSAAuthentication no
 51 #PubkeyAuthentication yes #是否允许公钥认证。仅可以用于SSH-2。默认值为"yes"。
 52 PubkeyAuthentication no
 53 #AuthorizedKeysFile    .ssh/authorized_keys #存放该用户可以用来登录的 RSA/DSA 公钥。
 54 #AuthorizedKeysCommand none              #是否允许authorized_keys中使用command项
 55 #AuthorizedKeysCommandRunAs nobody       #限制能够在authorized_keys中使用command项的用户
 56 
 57 # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts 
 58              #是否开启基于rhosts的主机RSA算法认证,密钥存放于/etc/ssh/ssh_known_hosts
 59 #RhostsRSAAuthentication no              #是否开启基于主机的密钥认证
 60 # similar for protocol version 2
 61 #HostbasedAuthentication no              #是否开启基于主机的密钥认证
 62 # Change to yes if you don't trust ~/.ssh/known_hosts for
 63 # RhostsRSAAuthentication and HostbasedAuthentication
 64 #IgnoreUserKnownHosts no                 #设置是否忽略主机用户识别,前提是/.ssh/kown_hosts是否可信
 65 # Don't read the user's ~/.rhosts and ~/.shosts files
 66 #IgnoreRhosts yes                        #不查询用户主目录下的/.rhosts和/.shosts文件
 67 
 68 # To disable tunneled clear text passwords, change to no here!
 69 #PasswordAuthentication yes   #是否允许使用基于密码的认证
 70 #PermitEmptyPasswords no      #是否允许密码为空的用户远程登录
 71 PasswordAuthentication yes
 72 
 73 # Change to no to disable s/key passwords
 74 #ChallengeResponseAuthentication yes
 75 ChallengeResponseAuthentication no  #不开启质疑-应答认证
 76 
 77 # Kerberos options               #要使用Kerberos认证,服务器需要一个可以校验 KDC identity 的 Kerberos servtab 。
 78 #KerberosAuthentication no       #是否允许使用基于 Kerberos的用户认证。默认值为”no”。仅用于SSH-2
 79 #KerberosOrLocalPasswd yes       #如果 Kerberos 密码认证失败,那么该密码还将要通过其它的认证机制(比如 /etc/passwd)。默认值为”yes”。
 80 #KerberosTicketCleanup yes       #是否在用户退出登录后自动销毁用户的 ticket 。默认值是”yes”
 81 #KerberosGetAFSToken no          #如果使用了 AFS 并且该用户有一个 Kerberos 5 TGT,那么开启该指令后,
 82                                   将会在访问用户的家目录前尝试获取一个 AFS token 。默认为”no”
 83 #KerberosUseKuserok yes
 84 
 85 # GSSAPI options
 86 #GSSAPIAuthentication no         #是否允许使用基于 GSSAPI 的用户认证。默认值为”no”。仅用于SSH-2。
 87 #GSSAPIAuthentication no
 88 #GSSAPICleanupCredentials yes    #是否在用户退出登录后自动销毁用户凭证缓存。默认值是”yes”
 89 GSSAPICleanupCredentials yes
 90 #GSSAPIStrictAcceptorCheck yes   #是否对接收到的用户凭证严格校验
 91 #GSSAPIKeyExchange no            #是否开启密钥交换
 92 
 93 # Set this to 'yes' to enable PAM authentication, account processing, 
 94 # and session processing. If this is enabled, PAM authentication will 
 95 # be allowed through the ChallengeResponseAuthentication and
 96 # PasswordAuthentication.  Depending on your PAM configuration,
 97 # PAM authentication via ChallengeResponseAuthentication may bypass
 98 # the setting of "PermitRootLogin without-password".
 99 # If you just want the PAM account and session checks to run without
100 # PAM authentication, then enable this but set PasswordAuthentication
101 # and ChallengeResponseAuthentication to 'no'.
102 #UsePAM no
103 UsePAM yes    #启用pam认证
104 
105 # Accept locale-related environment variables
106 AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
107 AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
108 AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
109 AcceptEnv XMODIFIERS
110 
111 #AllowAgentForwarding yes
112 #AllowTcpForwarding yes  #允许TCP转发
113 #GatewayPorts no         #转发路径端口
114 #X11Forwarding no        #是否允许进行 X11 转发。默认值是"no",设为"yes"表示允许
115 X11Forwarding yes
116 #X11DisplayOffset 10     #指定 sshd(8) X11 转发的第一个可用的显示区(display)数字。默认值是 10 
117 #X11UseLocalhost yes     #否应当将X11转发服务器绑定到本地loopback地址。默认值是"yes"
118 #PrintMotd yes           #设置登录后是否显示/etc/motd文件中的信息
119 #PrintLastLog yes        #设置登录后是否显示上一次登录时间
120 #TCPKeepAlive yes        #keepalive检测
121 #UseLogin no             #是否在交互式登录时启用login
122 #UsePrivilegeSeparation yes #是否让 sshd(8)通过创建非特权子进程处理接入请求的方法来进行权限分离 默认值是”yes
123 #PermitUserEnvironment no   #指定是否允许 sshd(8) 处理 ~/.ssh/environment 以及~/.ssh/authorized_keys 中的 environment= 选项。默认值是”no”。
124 #Compression delayed        #是否对通信数据进行加密,还是延迟到认证成功之后再对通信数据加密 可用值:”yes” “delayed”(默认) “no”
125 #ClientAliveInterval 0      #设置空闲登录的最大时长
126 #ClientAliveCountMax 3      #在没收到任何数据的时候,最多向3个客户端进行keepalive检测
127 #ShowPatchLevel no          #显示补丁级别
128 #UseDNS yes                 #开启域名解析
129 #PidFile /var/run/sshd.pid  #存放守护进程的默认文件
130 #MaxStartups 10:30:100      #最大可以保持多少个未认证的连接
131 #PermitTunnel no            #允许tun设备转发
132 #ChrootDirectory none       #是否允许切换目录
133 
134 # no default banner path
135 #Banner none                #不设置欢迎词
136 
137 # override default of no subsystems
138 Subsystem    sftp    /usr/libexec/openssh/sftp-server
139 
140 # Example of overriding settings on a per-user basis
141 #Match User anoncvs
142 #    X11Forwarding no        #开启X11转发
143 #    AllowTcpForwarding no   # 是否允许TCP转发,默认值为"yes"。
144 #    ForceCommand cvs server #限制命令
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Wesley13 Wesley13
3年前
java将前端的json数组字符串转换为列表
记录下在前端通过ajax提交了一个json数组的字符串,在后端如何转换为列表。前端数据转化与请求varcontracts{id:'1',name:'yanggb合同1'},{id:'2',name:'yanggb合同2'},{id:'3',name:'yang
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
Easter79
Easter79
Lv1
今生可爱与温柔,每一样都不能少。
文章
2.8k
粉丝
5
获赞
1.2k