質問編集履歴

3

mdの文法が間違っていたので修正

2023/12/04 07:07

投稿

kosetei
kosetei

スコア64

test CHANGED
File without changes
test CHANGED
@@ -1,167 +1,84 @@
1
1
  ### 前提・実現したいこと
2
-
3
2
  Windows10からraspberry piに公開鍵でSSH接続したい
4
3
 
5
-
6
-
7
4
  ### 発生している問題・エラーメッセージ
8
-
9
5
  のですが、クライアントの.sshフォルダにconfigファイルを作っても
10
-
11
6
  ```
12
-
13
7
  Bad owner or permissions on C:\Users\xxxx/.ssh/config
14
-
15
8
  ```
16
-
17
9
  というエラーが出て読み取ってくれません。
18
-
19
10
  コマンドの段階で
20
-
21
11
  ```
22
-
23
12
  ssh -i .ssh/id_rsa pi@192.168.0.35
24
-
25
13
  ```
26
-
27
14
  と指定すれば接続はできます。
28
-
29
15
  クライアントにはWindows10しかOSはインストールしていないので、謎です。
30
16
 
31
-
32
-
33
17
  ### configの中身
34
-
35
18
  ```
36
-
37
19
  Host raspi
38
-
39
20
  HostName 192.168.0.35
40
-
41
21
  User pi
42
-
43
22
  IdentityFile C:\Users\xxxx.ssh\id_rsa
44
-
45
23
  ```
46
-
47
24
  ### 試したこと
48
-
49
25
  プロパティからいろいろ権限を変えてみましたが特に変わりありませんでした。
50
26
 
51
-
52
-
53
27
  ### 補足情報
54
-
55
28
  WindowsはHomeです。
56
-
57
29
  コマンドプロンプトです。
58
30
 
59
-
60
-
61
31
  SSHコマンドは
62
-
63
32
  設定→アプリと機能→オプション機能→機能の追加
64
-
65
33
  からインストールして使えるようにした、OpenSSHクライアントです。
66
-
67
-
68
34
 
69
35
  OpenSSHがインストしなくても最初から使えた別のPC(win10pro)では問題ありませんでした。
70
36
 
71
-
72
-
73
- #####追記
37
+ #### 追記
74
-
75
38
  where sshの結果は
76
-
77
39
  C:\Windows\System32\OpenSSH\ssh.exe
78
-
79
40
  検索してもここ以外にはssh.exeはありません。
80
41
 
81
-
82
-
83
42
  configの中身を
84
-
85
43
  ```
86
-
87
44
  Host raspi
88
-
89
45
  HostName 192.168.0.35
90
-
91
46
  User pi
92
-
93
47
  IdentityFile "C:\Users\xxxx.ssh\id_rsa"
94
-
95
48
  ```
96
-
97
49
  にしてみましたが、変化ありません。
98
-
99
50
  configを正常に読み込めた先述PCでは元のファイルのまま、利用できています。
100
51
 
101
-
102
-
103
52
  コマンドプロンプトの作業ディレクトリは
104
-
105
53
  C:\Users\xxxx>でも
106
-
107
54
  C:\Users\kose.ssh>でも
108
-
109
55
  変わりありません。
110
56
 
111
-
112
-
113
- #####接続出来たPCで表示されるメッセージ
57
+ ##### 接続出来たPCで表示されるメッセージ
114
-
115
58
  コピペしますので隠したほうがよさげなものがあれば教えてください。
116
-
117
59
  ```
118
-
119
60
  C:\Users\xxxx>ssh raspi
120
-
121
61
  Linux raspberrypi 4.19.57-v7+ #1244 SMP Thu Jul 4 18:45:25 BST 2019 armv7l
122
62
 
63
+ The programs included with the Debian GNU/Linux system are free software;
64
+ the exact distribution terms for each program are described in the
65
+ individual files in /usr/share/doc/*/copyright.
123
66
 
67
+ Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
68
+ permitted by applicable law.
69
+ Last login: Tue Jul 9 20:50:48 2019
70
+ Linux raspberrypi 4.19.57-v7+ #1244 SMP Thu Jul 4 18:45:25 BST 2019 armv7l
124
71
 
125
72
  The programs included with the Debian GNU/Linux system are free software;
126
-
127
73
  the exact distribution terms for each program are described in the
128
-
129
74
  individual files in /usr/share/doc/*/copyright.
130
75
 
131
-
132
-
133
76
  Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
134
-
135
77
  permitted by applicable law.
136
-
137
78
  Last login: Tue Jul 9 20:50:48 2019
138
79
 
139
- Linux raspberrypi 4.19.57-v7+ #1244 SMP Thu Jul 4 18:45:25 BST 2019 armv7l
140
-
141
-
142
-
143
- The programs included with the Debian GNU/Linux system are free software;
144
-
145
- the exact distribution terms for each program are described in the
146
-
147
- individual files in /usr/share/doc/*/copyright.
148
-
149
-
150
-
151
- Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
152
-
153
- permitted by applicable law.
154
-
155
- Last login: Tue Jul 9 20:50:48 2019
156
-
157
-
158
-
159
80
  Wi-Fi is currently blocked by rfkill.
160
-
161
81
  Use raspi-config to set the country before use.
162
82
 
163
-
164
-
165
83
  pi@raspberrypi:~ $
166
-
167
84
  ```

2

正常な場合のメッセージの追記

2019/07/09 12:06

投稿

kosetei
kosetei

スコア64

test CHANGED
File without changes
test CHANGED
@@ -70,7 +70,7 @@
70
70
 
71
71
 
72
72
 
73
- ####追記
73
+ #####追記
74
74
 
75
75
  where sshの結果は
76
76
 
@@ -107,3 +107,61 @@
107
107
  C:\Users\kose.ssh>でも
108
108
 
109
109
  変わりありません。
110
+
111
+
112
+
113
+ #####接続出来たPCで表示されるメッセージ
114
+
115
+ コピペしますので隠したほうがよさげなものがあれば教えてください。
116
+
117
+ ```
118
+
119
+ C:\Users\xxxx>ssh raspi
120
+
121
+ Linux raspberrypi 4.19.57-v7+ #1244 SMP Thu Jul 4 18:45:25 BST 2019 armv7l
122
+
123
+
124
+
125
+ The programs included with the Debian GNU/Linux system are free software;
126
+
127
+ the exact distribution terms for each program are described in the
128
+
129
+ individual files in /usr/share/doc/*/copyright.
130
+
131
+
132
+
133
+ Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
134
+
135
+ permitted by applicable law.
136
+
137
+ Last login: Tue Jul 9 20:50:48 2019
138
+
139
+ Linux raspberrypi 4.19.57-v7+ #1244 SMP Thu Jul 4 18:45:25 BST 2019 armv7l
140
+
141
+
142
+
143
+ The programs included with the Debian GNU/Linux system are free software;
144
+
145
+ the exact distribution terms for each program are described in the
146
+
147
+ individual files in /usr/share/doc/*/copyright.
148
+
149
+
150
+
151
+ Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
152
+
153
+ permitted by applicable law.
154
+
155
+ Last login: Tue Jul 9 20:50:48 2019
156
+
157
+
158
+
159
+ Wi-Fi is currently blocked by rfkill.
160
+
161
+ Use raspi-config to set the country before use.
162
+
163
+
164
+
165
+ pi@raspberrypi:~ $
166
+
167
+ ```

1

追記依頼の結果を追記

2019/07/09 12:06

投稿

kosetei
kosetei

スコア64

test CHANGED
File without changes
test CHANGED
@@ -67,3 +67,43 @@
67
67
 
68
68
 
69
69
  OpenSSHがインストしなくても最初から使えた別のPC(win10pro)では問題ありませんでした。
70
+
71
+
72
+
73
+ ####追記
74
+
75
+ where sshの結果は
76
+
77
+ C:\Windows\System32\OpenSSH\ssh.exe
78
+
79
+ 検索してもここ以外にはssh.exeはありません。
80
+
81
+
82
+
83
+ configの中身を
84
+
85
+ ```
86
+
87
+ Host raspi
88
+
89
+ HostName 192.168.0.35
90
+
91
+ User pi
92
+
93
+ IdentityFile "C:\Users\xxxx.ssh\id_rsa"
94
+
95
+ ```
96
+
97
+ にしてみましたが、変化ありません。
98
+
99
+ configを正常に読み込めた先述PCでは元のファイルのまま、利用できています。
100
+
101
+
102
+
103
+ コマンドプロンプトの作業ディレクトリは
104
+
105
+ C:\Users\xxxx>でも
106
+
107
+ C:\Users\kose.ssh>でも
108
+
109
+ 変わりありません。