This is a part of notes for fastai
Linux设置
安装SSH服务
- 默认的Ubuntu子系统没有SSH服务,所以需要手动安装
apt-get install openssh-server
- 设置SSH服务
vi /etc/ssh/sshd_config
修改以下内容
Port = 22 #SSH端口
PermitRootLogin yes #如果不需要root登陆则为no
PasswordAuthentication yes #允许使用帐号密码登陆,如果使用证书登陆则可以无视
- 防火墙设置
ufw allow 22 #开启22端口
或者
ufw disable #直接禁用防火墙
- 启动SSH服务
service ssh start
Windows设置
- 因为是Windows 10/ Server 2019中的子系统,使用了和宿主机同一IP,所以也需要设置Windows的防火墙
- 打开控制面板,搜索防火墙,进入高级设置
- 选择“入站规则”,新建规则
- 选择端口,TCP模式,输入你要的端口,添加规则即可
转载请标注来源