有些服务器会更改SSH端口,更改方法如下:
sshd_config
#Port 22
Port 65535
更改后使用新方式进行修改配置文件
ssh-copy-id "-p port [email protected]"
ssh-copy-id "-p 65535 [email protected]"
配置ansible的hosts配置文件
[port]
192.168.3.102
[port:vars]
ansible_ssh_user="user"
ansible_ssh_port=65535
$ ansible port -m ping -u root 192.168.3.102 | SUCCESS => { "changed": false, "ping": "pong" }
时间: 2024-12-16 10:44:07