"wget"을 사용하여 외부 웹사이트에 연결할 수 없는 이유를 어떻게 알 수 있나요?

"wget"을 사용하여 외부 웹사이트에 연결할 수 없는 이유를 어떻게 알 수 있나요?

CentOS 7을 사용하고 있습니다. 대부분의 다른 웹사이트는 작동하고 다른 컴퓨터에서는 이 다른 웹사이트에 연결할 수 있는데 왜 wget을 통해 외부 웹사이트에 연결할 수 없는지 알아내려고 합니다. 웹사이트는 "gitlab.com"이고 연결하려고 하면 시간 초과 오류가 발생합니다.

[root@server tmp]# wget "https://gitlab.com"
--2018-02-24 14:38:00--  https://gitlab.com/
Resolving gitlab.com (gitlab.com)... 52.167.219.168
Connecting to gitlab.com (gitlab.com)|52.167.219.168|:443... failed: Connection timed out.
Retrying.

--2018-02-24 14:39:04--  (try: 2)  https://gitlab.com/
Connecting to gitlab.com (gitlab.com)|52.167.219.168|:443... failed: Connection timed out.
Retrying.

wget을 사용하여 www.microsoft.com과 같은 대부분의 다른 웹사이트에 연결할 수 있기 때문에 이것이 이상합니다.

[root@server tmp]# wget "https://www.microsoft.com"
--2018-02-24 14:36:55--  https://www.microsoft.com/
Resolving www.microsoft.com (www.microsoft.com)... 23.79.214.159, 2600:1407:10:287::356e, 2600:1407:10:29c::356e, ...
Connecting to www.microsoft.com (www.microsoft.com)|23.79.214.159|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://www.microsoft.com/en-us/ [following]
--2018-02-24 14:36:55--  https://www.microsoft.com/en-us/
Reusing existing connection to www.microsoft.com:443.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: 'index.html.2'

    [ <=>                                                                                                   ] 221,740     --.-K/s   in 0.03s

2018-02-24 14:36:56 (6.74 MB/s) - 'index.html.2' saved [221740]

gitlab 서버에 대해 추적 경로를 실행했지만 출력이 무엇을 의미하는지 혼란스럽습니다.

[root@server tmp]# traceroute 52.167.219.168
traceroute to 52.167.219.168 (52.167.219.168), 30 hops max, 60 byte packets
 1  ssdsemi17.a2hosting.com (70.32.26.14)  0.087 ms  0.014 ms  0.014 ms
 2  75.98.175.211.static.a2webhosting.com (75.98.175.211)  0.468 ms  0.505 ms  0.547 ms
 3  75.98.175.254.static.a2webhosting.com (75.98.175.254)  0.305 ms  0.458 ms  0.435 ms
 4  * * *
 5  * * *
 6  * * *
 7  * * *
 8  * * *
 9  * * *
10  * * *
11  * * *
12  * * *
13  * * *
14  * * *
15  * * *
16  * * *
17  * * *
18  * * *
19  * * *
20  * * *
21  * * *
22  * * *
23  * * *
24  * * *
25  * * *
26  * * *
27  * * *
28  * * *
29  * * *
30  * * *

이 외부 사이트에 연결하는 방법에서 무엇을 제외/확인해야 합니까?

관련 정보