从这个问题我想问更多
解决了需要在云服务上打开端口的问题。现在的下一个问题是如何使用 URLgitlab.gitlabinstance.com
而不是主机 IP 进行克隆。示例:
ssh [email protected] -p 6022
x.x.x.x
是主机IP并且它可以工作。
我想通过 ssh
ssh [email protected] -p 6022
我得到了这个输出,其中 IP 地址与主机 IP 不同(zzzz,yyyy,a,a,a,a)
其中z.z.z.z
、y.y.y.y
、a.a.a.a
是公共地址
ssh -vT gitlab.example.com -p6022
OpenSSH_8.5p1, OpenSSL 1.1.1k 25 Mar 2021
debug1: Reading configuration data /c/Users/Sam/.ssh/config
debug1: /c/Users/Sam/.ssh/config line 1: Applying options for gitlab.example.com
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to gitlab.example.com [z.z.z.z] port 6022.
debug1: connect to address z.z.z.z port 6022: Connection timed out
debug1: Connecting to gitlab.example.com [y.y.y.y] port 6022.
debug1: connect to address y.y.y.y port 6022: Connection timed out
debug1: Connecting to gitlab.example.com [a:a:a:a] port 6022.
debug1: connect to address a:a:a:aport 6022: Network is unreachable
debug1: Connecting to gitlab.example.com [a:a:a:a] port 6022.
debug1: connect to address 2606:4700:3032::ac43:97fa port 6022: Network is unreachable
ssh: connect to host gitlab.example.com port 6022: Network is unreachable
有什么解决办法吗?