Linux-SSH服务配置文件
在Linux中关于SSH服务有两个配置服务
ssh_config 客户端配置
sshd_config 服务端配置
我们一般重点管理服务端的配置。
以下列出常见的配置项:
1、port 22 #可更改ssh登录端口,更安全
2、listenAddress 0.0.0.0 #默认监听来自网络中所有主机
3、protocol 2 #服务版本
4、Hostkey /etc/ssh/ssh_host_rsa_key #本机私钥保存地址
5、Serverkey Bits 1024 #私钥位数
6、Syslog Facility AUTH #日志记录SSH登录信息-/var/log/secure
7、Loglevel INFO #日志级别
8、GssAPIAuthentication yes #GssAPI认证开启,当其他服务器试图登录时,进行验证
service sshd restart