ssh相关工具
Posted 王华_linux
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssh相关工具相关的知识,希望对你有一定的参考价值。
1. ssh服务器配置
服务器端:sshd
服务器端的配置文件: /etc/ssh/sshd_config
服务器端的配置文件帮助:man 5 sshd_config
常用参数:
Port
ListenAddress ip
LoginGraceTime 2m #你连接以后一直不输入密M,最多等待的时间
PermitRootLogin yes #默认ubuntu不允许root远程ssh登录
StrictModes yes #检查.ssh/文件的所有者,权限等
MaxAuthTries 6 #
MaxSessions 10 #同一个连接最大会话
PubkeyAuthentication yes #基于key验证
PermitEmptyPasswords no #空密M连接
PasswordAuthentication yes #基于用户名和密连接
GatewayPorts no
ClientAliveInterval 10 ClientAliveCountMax 3
UseDNS yes
GSSAPIAuthentication yes
MaxStartups
Banner /path/file
AllowUsers user1 user2 user3
DenyUsers
AllowGroups
DenyGroups
以上是关于ssh相关工具的主要内容,如果未能解决你的问题,请参考以下文章