質問編集履歴

1

各コンピュータのIPアドレスを設定して情報を付け足しました。

2020/12/12 06:40

投稿

komgiko
komgiko

スコア1

test CHANGED
File without changes
test CHANGED
@@ -18,27 +18,53 @@
18
18
 
19
19
  A: ubuntu 18.04
20
20
 
21
+ この3つのIPアドレスをそれぞれ
22
+
23
+ xxx.xxx.xxx.xxx
24
+
25
+ bbb.bbb.bbb.bbb
26
+
27
+ aaa.aaa.aaa.aaa
28
+
29
+ と表記することにします。
30
+
21
31
 
22
32
 
23
33
  ### 発生している問題・エラーメッセージ
24
34
 
25
35
 
26
36
 
27
- 普段は接続が成功すですが、時間が経つと
37
+ 私が普段やっていこととして、最初にBにsshいったん入りま
28
38
 
29
39
  ```
30
40
 
41
+ ssh B
42
+
43
+ ```
44
+
45
+ その後にAに入るため、
46
+
47
+ ```
48
+
49
+ ssh username@aaa.aaa.aaa.aaa
50
+
51
+ ```
52
+
53
+ と打ち込むと普段は接続が成功するのですが、時間が経つと
54
+
55
+ ```
56
+
31
- Connection to xxx.xxx.xxx.xxx closed by remote host.
57
+ Connection to aaa.aaa.aaa.aaa closed by remote host.
32
58
 
33
59
  ```
34
60
 
35
61
  と表示されて接続が切られてしまいます。
36
62
 
37
- いったんこうなると時間がしばらく経つまで再接続しようとしても
63
+ いったんこうなると時間がしばらく経つまで再接続しようとしても
38
64
 
39
65
  ```
40
66
 
41
- ssh: connect to host xxx.xxx.xxx.xxx port 22: Connection refused
67
+ ssh: connect to host aaa.aaa.aaa.aaa port 22: Connection refused
42
68
 
43
69
  ```
44
70
 
@@ -46,35 +72,33 @@
46
72
 
47
73
 
48
74
 
49
- ### 該当のソースコード
50
-
51
-
52
-
53
- ```ここに言語名を入力
54
-
55
- ssh username@xxx.xxx.xxx.xxx
56
-
57
- ```
58
-
59
-
60
-
61
75
  ### 試したこと
62
76
 
63
77
 
64
78
 
65
- pingコマンドを使て接続できているかを確かめましが、
79
+ った
66
80
 
67
81
  ```
68
82
 
83
+ ssh B
84
+
85
+ ```
86
+
87
+ でBに入り、
88
+
89
+ pingコマンドを使ってAに接続できているかを確かめましたが、
90
+
91
+ ```
92
+
69
- ❯ ping xxx.xxx.xxx.xxx
93
+ ❯ ping aaa.aaa.aaa
70
94
 
71
95
  PING xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx): 56 data bytes
72
96
 
73
- 64 bytes from xxx.xxx.xxx.xxx: icmp_seq=0 ttl=64 time=11.583 ms
97
+ 64 bytes from aaa.aaa.aaa.aaa: icmp_seq=0 ttl=64 time=11.583 ms
74
98
 
75
- 64 bytes from xxx.xxx.xxx.xxx: icmp_seq=1 ttl=64 time=9.863 ms
99
+ 64 bytes from aaa.aaa.aaa.aaa: icmp_seq=1 ttl=64 time=9.863 ms
76
100
 
77
- 64 bytes from xxx.xxx.xxx.xxx: icmp_seq=2 ttl=64 time=9.064 ms
101
+ 64 bytes from aaa.aaa.aaa.aaa: icmp_seq=2 ttl=64 time=9.064 ms
78
102
 
79
103
  ```
80
104