在局域网中,没有DNS服务。我也没有权限sudo
。
在日常工作中,经常会用到一些节点之间使用SSH,每次都要输入密码,太麻烦了。ssh [email protected]
还有其他方法可以将别名绑定到 IP 并使其SSH
更方便吗?
答案1
在你的文件中创建一个Host
节~/.ssh/config
,随意命名。ssh_config(5)
有关详细信息,请参阅手册页。
Host thatoverthere
HostName 192.168.1.2
...
$ ssh user@thatoverthere