summaryrefslogtreecommitdiffstats
path: root/rules/dropbear.in
blob: aa98e3acd83733235bd285ebbc7dee29137cd8fb (plain)
1
2
3
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
menu	"Dropbear SSH-Server "

config DROPBEAR
	bool
	prompt "Dropbear SSH Server"

config DROPBEAR_DIS_ZLIB
	bool
	prompt "Don't include zlib support"
	depends on DROPBEAR

config DROPBEAR_DIS_OPENPTY
	bool
	prompt "Don't use openpty, use alternative method"
	depends on DROPBEAR

config DROPBEAR_DIS_SYSLOG
	bool
	prompt "Don't include syslog support"
	depends on DROPBEAR

config DROPBEAR_DIS_LASTLOG
	bool
	prompt "disable use of lastlog"
	depends on DROPBEAR

config DROPBEAR_DIS_UTMP
	bool
	prompt "disable use of utmp"
	depends on DROPBEAR

config DROPBEAR_DIS_UTMPX
	bool
	prompt "disable use of utmpx"
	depends on DROPBEAR

config DROPBEAR_DIS_WTMP
	bool
	prompt "disable use of wtmp"
	depends on DROPBEAR

config DROPBEAR_DIS_WTMPX
	bool
	prompt "disable use of wtmpx"
	depends on DROPBEAR

config DROPBEAR_DIS_LIBUTIL
	bool
	prompt "disable use of libutil"
	depends on DROPBEAR

config DROPBEAR_DIS_PUTUTLINE
	bool
	prompt "disable use of pututline"
	depends on DROPBEAR

config DROPBEAR_DIS_PUTUTXLINE
	bool
	prompt "disable use of pututxline"
	depends on DROPBEAR


comment features
	depends on DROPBEAR

config DROPBEAR_DIS_X11
	bool
	prompt "disable X11 Forwarding"
	depends on DROPBEAR

config DROPBEAR_DIS_TCP
	bool
	prompt "disable TCP Fowarding"
	depends on DROPBEAR

config DROPBEAR_DIS_AGENT
	bool
	prompt "disable Authentication Agent Forwarding"
	depends on DROPBEAR


comment "Encryption, at least one required --- RFC Draft requires 3DES"
	depends on DROPBEAR

config DROPBEAR_AES128
	bool
	prompt "AES 128"
	depends on DROPBEAR

config DROPBEAR_BLOWFISH
	bool
	prompt "Blowfish"
	depends on DROPBEAR

config DROPBEAR_TWOFISH128
	bool
	prompt "Twofish128"
	depends on DROPBEAR

config DROPBEAR_3DES
	bool
	prompt "3DES"
	default y
	depends on DROPBEAR


comment "Integrity, at least one required --- RFC Draft requires sha1-hmac"
	depends on DROPBEAR

config DROPBEAR_SHA1
	bool
	prompt "sha1"
	default y
	depends on DROPBEAR

config DROPBEAR_MD5
	bool
	prompt "md5"
	depends on DROPBEAR


comment "Hostkey/public key algorithms, at least one required --- SSH2 RFC Draft requires dss"
	depends on DROPBEAR

config DROPBEAR_RSA
	bool
	prompt "rsa"
	depends on DROPBEAR

config DROPBEAR_DSS
	bool
	prompt "dss"
	default y
	depends on DROPBEAR


comment "Authentication types, at least one required --- RFC Draft requires pubkey auth"
	depends on DROPBEAR

config DROPBEAR_PASSWD
	bool
	prompt "password"
	default y
	depends on DROPBEAR

config DROPBEAR_PUBKEY
	bool
	prompt "pubkey"
	default y
	depends on DROPBEAR


comment "installation options"
	depends on DROPBEAR

config DROPBEAR_DROPBEAR
	bool
	prompt "Install dropbear SSH server"
	default y
	depends on DROPBEAR

config DROPBEAR_DROPBEAR_KEY
	bool
	prompt "Install dropbearkey"
	depends on DROPBEAR
	help
		This programm is used to generate the host key(s).
		Select this, if you want this program on your target platform.

config DROPBEAR_DROPBEAR_CONVERT
	bool
	prompt "Install dropbearconvert"
	depends on DROPBEAR
	help
		With this utility you can convert ssh hostkeys from openssh to dropbear formt.
		Select this, if you want this program on your target platform.

config DROPBEAR_SCP
	bool
	prompt	"Install dropbear's scp"
	depends on DROPBEAR
	help
		This is dropbear's implementation of the scp utility. 

endmenu