加载笔记内容...
加载笔记内容...
**Secure Shell(SSH)**协议采用分层架构设计,包含三个关键层次:
传输层协议(Transport Layer Protocol)
用户认证协议(User Authentication Protocol)
连接协议(Connection Protocol)
1# 推荐使用Ed25519算法(256位安全性)
2ssh-keygen -t ed25519 -a 100 -C "workstation@company"
3
4# 传统RSA算法应使用4096位长度
5ssh-keygen -t rsa -b 4096 -o -a 100
密钥存储安全策略:
1# 使用ssh-copy-id自动部署公钥
2ssh-copy-id -i ~/.ssh/id_ed25519.pub user@host
3
4# 多服务器批量部署方案
5ansible all -m authorized_key -a "user=deploy key='{{ lookup('file', '/home/user/.ssh/id_ed25519.pub') }}'"
1Host *.production
2 User admin
3 IdentityFile ~/.ssh/production_key
4 ProxyJump bastion-host
5 ServerAliveInterval 30
6 TCPKeepAlive yes
7
8Host gitlab
9 HostName git.example.com
10 User git
11 IdentityFile ~/.ssh/gitlab_key
12 AddKeysToAgent yes
关键参数解析:
1# /etc/ssh/sshd_config 关键配置
2Protocol 2
3LoginGraceTime 1m
4PermitRootLogin prohibit-password
5MaxAuthTries 3
6MaxSessions 10
7ClientAliveInterval 300
8ClientAliveCountMax 0
纵深防御策略:
1# 本地转发(访问内网数据库)
2ssh -L 63306:db.internal:3306 jumpbox -N
3
4# 远程转发(暴露本地开发环境)
5ssh -R 8080:localhost:3000 public-server
1# 创建SOCKS代理隧道
2ssh -D 1080 user@bastion
3
4# 浏览器代理配置验证
5curl --socks5 localhost:1080 https://internal-site
典型应用场景:
1# ~/.ssh/config
2Host *
3 ControlMaster auto
4 ControlPath ~/.ssh/control-%r@%h:%p
5 ControlPersist 1h
连接超时问题:
1ssh -v user@host # 启用详细日志
2journalctl -u sshd --since "5 minutes ago" # 查看服务端日志
密钥认证失败处理:
ssh-keygen -lf key.pub
后量子密码学进展:
当前推荐实践:
1ssh-keygen -t ed25519 # 传统安全
2ssh-keygen -t dilithium3 # 量子安全(实验性)
金融行业部署方案:
云原生环境应用:
1# Kubernetes SSH Bastion方案
2kubectl port-forward pod/database 3306:3306 &
3ssh -L 3306:localhost:3306 user@bastion
参考资源:
技术风险提示: