ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
<h1>OpsCloud v4.0 SSH-Server</h1> ![](https://img.shields.io/badge/springshell-2.0.1.RELEASE-brightgreen.svg?style=plastic) #### 简介 `SSH Server` 是使用 Java 开发,`Opscloud4`项目中的`SSH`服务模块,支持标准的ssh连接 `SSH Server` 基于Springshell二次开发的,并使用了Springboot、jSch、io.fabric8.kubernetes-client等技术 #### 集群架构 ```mermaid flowchart LR A[User] -->|SSH:22| B{SLB} B-->|TCP:2222| C[Opscloud Server] B-->|TCP:2222| D[Opscloud Server] ``` #### Generate an SSH key pair >Type ssh-keygen -t followed by the key type and an optional comment.This comment is included in the .pub file that's created.You may want to use an email address for the comment. + For example, for ED25519: ``` $ ssh-keygen -t ed25519 -C "${email}" ``` + For 2048-bit RSA: ``` $ ssh-keygen -t rsa -b 2048 -C "${email}" ```