Ssh
如何更改特定 IP 地址的 ssh 埠?
我遇到了putty的問題,所以我更喜歡使用shell(linux)通過ssh訪問伺服器,我的ip地址的ssh埠是6091,所以無論如何可以通過命令通過ssh訪問伺服器
ssh root@myipaddress
因為我有很多伺服器的預設 ssh 埠是 22,所以我只想將埠更改為特定的 IP 地址。
從長遠來看,最舒適的解決方案是將主機添加到您的
~/.ssh/config
文件中。編輯/創建文件並添加:Host home User root Hostname myipaddress Port 6091
然後,您可以簡單地通過以下方式連接到家:
ssh home
更多資訊
ssh -p 6091 root@myipaddress
-p port Port to connect to on the remote host. This can be specified on a per-host basis in the configuration file.