☆ 问题描述
我在内网主机中,使用docker创建了多个虚拟机,我希望能通过我的公网ip服务器端口进行shell访问
★ 解决方案
我创建一个新的虚拟机为例
1. 创建并打开容器
docker run -itd --name test ubuntu
2. 进入容器
docker exec -it test /bin/bash
3. 设置容器密码
passwd
4. 安装ssh
apt-get update
apt-get install openssh-client
apt-get install openssh-server
5. 修改ssh配置
先安装vim
apt-get install vim
然后进入配置文件,不要cd…然后在vim,直接vim …
vim /etc/ssh/sshd_config
配置文件内容
修改其中的:
6. 重启ssh服务
service ssh restart
7. 进行端口转发
SSH -R <服务区端口>:localhost:22 -N root@<服务器地址>
8.使用shell工具进行连接
✅ 总结
- 注意不要输错单词
- shell链接的时候,ip和端口都是输入服务器的,但是密码输入的是虚拟机的。