我有两台Mac笔记本电脑连接到我的家用路由器。我的机器在IP上,192.168.0.11
而第二台机器在IP上192.168.0.13
。我正在尝试将scp
文件从我的计算机(*.11
)传输到另一台计算机(*.13
):
scp ~/files/somefile.txt user2@192.168.0.13:/Users/user2
当我运行它时,我得到:
ssh: connect to host 192.168.0.13 port 22: Connection refused
lost connection
我尝试看看两台机器之间是否存在合理的连接:
telnet 192.168.0.13 22
确定SSH可以正常运行。这给了我:
Trying 192.168.0.13...
telnet: connect to address 192.168.0.13: Connection refused
telnet: Unable to connect to remote host
如何解决此问题并开始scp
工作?
192.168.0.13
?什么是防火墙配置?