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 ssh预设端口
#AddressFamily any 地址簇 ipv4 ipv6 还是所有
#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 ssh协议版本
# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key ssh version 1使用的私钥
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key ssh version 2使用的RSA私钥
#HostKey /etc/ssh/ssh_host_dsa_key ssh version 2使用的DSA私钥
# Lifetime and size of ephemeral version 1 server key
#KeyRegenerationInterval 1h version1的私钥更新周期
#ServerKeyBits 1024 version1的私钥的长度
# Logging
# obsoletes QuietMode and FascistLogging
#SyslogFacility AUTH 通过AUTH发送日志
SyslogFacility AUTHPRIV 通过AUTHPRIV发送日志
#LogLevel INFO 日志级别
# Authentication:
#LoginGraceTime 2m 登录连接时长
#PermitRootLogin yes 允许管理员身份登录
#StrictModes yes 登录之前检查用户家目录和rhost文件的权限和所有权
#MaxAuthTries 6 认证次数
#MaxSessions 10 最大连接数
#RSAAuthentication yes 只允许RSA认证
#PubkeyAuthentication yes 公钥认证
#AuthorizedKeysFile .ssh/authorized_keys 存放远程复制来得公钥文件
#AuthorizedKeysCommand none 是否允许authorized_keys中的command项
#AuthorizedKeysCommandRunAs nobody 限制能够在authorized_keys中的使用command项的用户
# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#RhostsRSAAuthentication no 是否开启基于rhosts的主机RSA算法认证,秘钥存放于 /etc/ssh/ssh_kown_hosts
# similar for protocol version 2
#HostbasedAuthentication no 是否开启基于主机的秘钥认证
# Change to yes if you don't trust ~/.ssh/known_hosts for
# RhostsRSAAuthentication and HostbasedAuthentication
#IgnoreUserKnownHosts no 是否忽略主机用户识别, 前提是/.ssh/knows_hosts是否可信
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes 不查询用户主目录下的 /.rhosts /.shosts文件
# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes 使用口令方式认证
#PermitEmptyPasswords no 使用空口令登录
PasswordAuthentication yes
# Change to no to disable s/key passwords
#ChallengeResponseAuthentication yes
ChallengeResponseAuthentication no 不开启质疑-应答认证
# Kerberos options 要使用Kerberos认证,服务器需要一个可以校验 KDC identity 的 Kerberos servtab
#KerberosAuthentication no 是否允许使用基于 Kerberos的用户认证。默认值为”no”。仅用于SSH-2
#KerberosOrLocalPasswd yes 如果 Kerberos 密码认证失败,那么该密码还将要通过其它的认证机制(比如 /etc/passwd)。默认值为”yes”。
#KerberosTicketCleanup yes 是否在用户退出登录后自动销毁用户的 ticket 。默认值是”yes”
#KerberosGetAFSToken no 如果使用了 AFS 并且该用户有一个 Kerberos 5 TGT,那么开启该指令后,将会在访问用户的家目录前尝试获取一个 AFS token 。默认为”no”
#KerberosUseKuserok yes
# GSSAPI options
#GSSAPIAuthentication no 是否允许使用基于 GSSAPI 的用户认证。默认值为”no”。仅用于SSH-2
GSSAPIAuthentication yes
#GSSAPICleanupCredentials yes 是否在用户退出登录后自动销毁用户凭证缓存。默认值是”yes”
GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes 是否对接收到的用户凭证严格校验
#GSSAPIKeyExchange no 是否开启密钥交换
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
#UsePAM no
UsePAM yes 启用pam认证
# Accept locale-related environment variables 接受本地相关的环境变量类型
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
AcceptEnv XMODIFIERS
#AllowAgentForwarding yes
#AllowTcpForwarding yes 允许TCP转发
#GatewayPorts no 转发路径端口
#X11Forwarding no 是否开启X11转发
X11Forwarding yes
#X11DisplayOffset 10 设置转发的可显示区数字为10
#X11UseLocalhost yes 是否将X11的转发服务器地址保存到loopback地址
#PrintMotd yes 设置登录后是否显示/etc/motd文件中的信息
#PrintLastLog yes 设置登录后是否显示上一次登录时间
#TCPKeepAlive yes keepalive检测
#UseLogin no 是否在交互式登录时启用login
#UsePrivilegeSeparation yes 是否让 sshd(8)通过创建非特权子进程处理接入请求的方法来进行权限分离 默认值是”yes
#PermitUserEnvironment no 指定是否允许 sshd(8) 处理 ~/.ssh/environment 以及~/.ssh/authorized_keys 中的 environment= 选项。默认值是”no”。
#Compression delayed 是否对通信数据进行加密,还是延迟到认证成功之后再对通信数据加密 可用值:”yes” “delayed”(默认) “no”
#ClientAliveInterval 0 设置空闲登录的最大时长
#ClientAliveCountMax 3 在没收到任何数据的时候,最多向3个客户端进行keepalive检测
#ShowPatchLevel no 显示补丁级别
#UseDNS yes 开启域名解析
#PidFile /var/run/sshd.pid 存放守护进程的默认文件
#MaxStartups 10 最大可以保持多少个未认证的连接
#PermitTunnel no 允许tun设备转发
#ChrootDirectory none 是否允许切换目录
# no default banner path
#Banner none 不设置欢迎词
# override default of no subsystems
Subsystem sftp /usr/libexec/openssh/sftp-server 是否开启sftp服务
#Host *.local 限制主机名
# CheckHostIP no 限制主机IP
# Example of overriding settings on a per-user basis
#Match User anoncvs 限制只允许某个用户登录
# X11Forwarding no 开启X11转发
# AllowTcpForwarding no 允许TCP转发
# ForceCommand cvs server 限制命令sshd_config配置注释
sshd_config配置注释的更多相关文章
- Eclipse配置注释模板详细介绍
<引言> Eclipse 中提供了一个非常人性化的功能,可以自动生成注释为我们程序员做项目时提供便利,并且注释内容还具有定制化 可以根据自己的喜好配置不同的样式. <正文> 首 ...
- sshd_config配置详解
sshd_config配置详解 名称 sshd_config - OpenSSH SSH 服务器守护进程配置文件 大纲 /etc/ssh/sshd_config 描述 sshd(8) 默认从 /etc ...
- Idea配置注释
Idea配置注释 方法注释 点击+号 选择2 template Group 自己随便填个有意义的name(如图的mn就是我填写的) 点击你上步填写的name (我的是mn),然后点击+选择1 Live ...
- IDEA配置注释模板
直接进入主题: Ctrl+Alt+S进入设置界面(我没改过按键映射,你也可以从File-OtherSetting进入设置),找到Editor->File and Code Templates,先 ...
- IDEA2018.2.2 版本配置注释模板
Ctrl+Alt+S进入设置界面(我没改过按键映射,你也可以从File-OtherSetting进入设置),找到Editor->File and Code Templates,先在Include ...
- hibernate 配置+注释
Hibernate配置属性 属性名 用途 hibernate.dialect 一个Hibernate Dialect类名允许Hibernate针对特定的关系数据库生成优化的SQL. 取值 full.c ...
- sshd_config配置 详解
原文:http://blog.licess.org/sshd_config/ # 1. 关于 SSH Server 的整体设定,包含使用的 port 啦,以及使用的密码演算方式 Port 22 # S ...
- echart异步刷新图表,详细配置注释
echarts刷新技巧: echartData.chear(); //当异步改变数据时,配合echartData .setOption(option)才会有动画效果 echartData.resize ...
- /etc/ssh/sshd_config 配置(ssh连接)
# Package generated configuration file# See the sshd_config(5) manpage for details # What ports, IPs ...
随机推荐
- python3 + selenium + eclipse 中报错:'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
解决:提示chrome driver没有放置在正确的路径下,于是下载chrome dirver,然后放置到C:\Python36的目录下,再次运行就OK了!
- stm32之开发入门
一.开发环境配置 在开发stm32应用之前,我们需要先配置好开发环境. 首先从keil官网下载keil MDK-ARM软件包(v5版本与v4版本不同,v5版本需要下载额外的stm32芯片包)和芯片包( ...
- ssh无密码登录设置失败的 解决办法
因为要安装hadoop所以需要设置ssh无密码登录,SSH的安装就不在这里介绍了: 我的系统是ubuntu15.10,开始按照网上很多的步骤去配置,最后发现登录时还要密码,登录多次也是这样的情况 最后 ...
- In-App Purchase Programming Guide----(八) ---- Preparing for App Review
Preparing for App Review After you finish testing, you’re ready to submit your app for review. This ...
- eclipse中jquery.js文件有错误提示…
eclipse中jquery.js文件有错误提示的解决办法 2013-04-06 19:18 浏览次数:382 由于jquery.js文件进行了压缩,压缩之后的语法eclipse无法完全识别,所以有错 ...
- Swoole 协程 MySQL 客户端与异步回调 MySQL 客户端的对比
Swoole 协程 MySql 客户端与 异步回调 MySql 客户端的对比 为什么要对比这两种不同模式的客户端? 异步 MySQL 回调客户端是虽然在 Swoole 1.8.6 版本就已经发布了, ...
- Windows对象、句柄与MFC对象
windowsmfc编程c 目录(?)[-] Windows对象句柄与MFC对象 windows对象 句柄 mfc对象 杂谈 Windows对象.句柄与MFC对象 (2009-04-28 22:11: ...
- HDU - 5492 Find a path(方差公式+dp)
Find a path Frog fell into a maze. This maze is a rectangle containing NN rows and MM columns. Each ...
- gitHub上传代码
首先进入github官网注册一个帐号 00.png 注册完帐号之后创建一个项目 01.png 设置创建项目的信息 02.png 创建项目完之后复制项目的地址,以供后面下载项目使用 03.png 在桌面 ...
- java继承使用的细节问题?
关于java继承的基本概念就不多说了,下面就说说继承使用应该注意的细节问题? 示例 一: package com.bizvane; class Fu{ public Fu() { System.out ...