質問編集履歴

1

Install方法、Configを記載いたしました。

2016/04/01 01:43

投稿

Hon11
Hon11

スコア7

test CHANGED
File without changes
test CHANGED
@@ -27,3 +27,53 @@
27
27
 
28
28
 
29
29
  ご意見、アドバイス頂けると大変助かります。
30
+
31
+
32
+
33
+ 追記-----------------
34
+
35
+ Openssh5.6p1 は以下サイトを参考にrpmパッケージを作成しInstallいたしました。
36
+
37
+ [参考先Blog](http://takuya-1st.hatenablog.jp/entry/20110903/1315014371)
38
+
39
+
40
+
41
+ sshd_conf は以下通りです。
42
+
43
+
44
+
45
+ ```sshd_conf
46
+
47
+ Protocol 2
48
+
49
+ PermitRootLogin yes
50
+
51
+ PasswordAuthentication yes
52
+
53
+ ChallengeResponseAuthentication no
54
+
55
+ UsePAM yes
56
+
57
+
58
+
59
+ X11Forwarding no
60
+
61
+ Subsystem sftp internal-sftp
62
+
63
+
64
+
65
+ Match User 対象User名
66
+
67
+ ChrootDirectory /home/%u
68
+
69
+ X11Forwarding no
70
+
71
+ AllowTcpForwarding no
72
+
73
+ AllowAgentForwarding no
74
+
75
+ ForceCommand internal-sftp
76
+
77
+
78
+
79
+ ```