質問編集履歴
2
Ip丸見えだったため修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -68,14 +68,14 @@
|
|
68
68
|
|
69
69
|
・pingコマンドを使って疎通確認。
|
70
70
|
```
|
71
|
-
# ping
|
71
|
+
# ping xxx.xxx.xxx.xxx
|
72
|
-
PING
|
72
|
+
PING xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx) 56(84) bytes of data.
|
73
|
-
64 bytes from
|
73
|
+
64 bytes from xxx.xxx.xxx.xxx: icmp_seq=1 ttl=64 time=0.123 ms
|
74
|
-
64 bytes from
|
74
|
+
64 bytes from xxx.xxx.xxx.xxx: icmp_seq=2 ttl=64 time=0.057 ms
|
75
|
-
64 bytes from
|
75
|
+
64 bytes from xxx.xxx.xxx.xxx: icmp_seq=3 ttl=64 time=0.055 ms
|
76
|
-
64 bytes from
|
76
|
+
64 bytes from xxx.xxx.xxx.xxx: icmp_seq=4 ttl=64 time=0.057 ms
|
77
|
-
64 bytes from
|
77
|
+
64 bytes from xxx.xxx.xxx.xxx: icmp_seq=5 ttl=64 time=0.065 ms
|
78
|
-
64 bytes from
|
78
|
+
64 bytes from xxx.xxx.xxx.xxx: icmp_seq=6 ttl=64 time=0.072 ms
|
79
79
|
```
|
80
80
|
一応疎通ができていると確認。(ここは問題ではないと判断した。)
|
81
81
|
|
@@ -88,9 +88,9 @@
|
|
88
88
|
|
89
89
|
・telnetで80番にアクセス可能か確認。
|
90
90
|
```
|
91
|
-
telnet
|
91
|
+
telnet xxx.xxx.xxx.xxx 80
|
92
|
-
Trying
|
92
|
+
Trying xxx.xxx.xxx.xxx...
|
93
|
-
telnet: connect to address
|
93
|
+
telnet: connect to address xxx.xxx.xxx.xxx: Connection timed out
|
94
94
|
```
|
95
95
|
タイムアウトになってしまいました…。
|
96
96
|
|
1
telnetを再確認したため、修正。
title
CHANGED
File without changes
|
body
CHANGED
@@ -88,11 +88,11 @@
|
|
88
88
|
|
89
89
|
・telnetで80番にアクセス可能か確認。
|
90
90
|
```
|
91
|
-
telnet 160.16.135.216
|
91
|
+
telnet 160.16.135.216 80
|
92
92
|
Trying 160.16.135.216...
|
93
|
-
telnet: connect to address 160.16.
|
93
|
+
telnet: connect to address 160.16.136.216: Connection timed out
|
94
94
|
```
|
95
|
-
ア
|
95
|
+
タイムアウトになってしまいました…。
|
96
96
|
|
97
97
|
考えられることとしてファイアーウォールかiptablesに問題があると思うのですが、自分の知識ではここから進めることが難しくなってきたので質問させていただきました。
|
98
98
|
|