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
|
config ADK_COMPILE_OPENSSH
prompt "openssh........................... OpenSSH software"
bool
default n
config ADK_COMPILE_OPENSSH_WITH_KERBEROS
prompt "Enable Kerberos support"
bool
depends on ADK_COMPILE_OPENSSH
choice
prompt "Kerberos implementation"
depends on ADK_COMPILE_OPENSSH_WITH_KERBEROS
config ADK_COMPILE_OPENSSH_WITH_KRB5
prompt "MIT"
bool
select ADK_PACKAGE_KRB5_LIBS
help
Use MIT kerberos libraries.
config ADK_COMPILE_OPENSSH_WITH_HEIMDAL
prompt "Heimdal"
bool
select ADK_COMPILE_HEIMDAL
select ADK_PACKAGE_HEIMDAL_LIBS
help
Use heimdal kerberos libraries.
endchoice
config ADK_PACKAGE_OPENSSH_CLIENT
prompt "openssh-client.................... OpenSSH clients"
tristate
default n
select ADK_PACKAGE_LIBOPENSSL
select ADK_PACKAGE_ZLIB
depends on ADK_COMPILE_OPENSSH
help
OpenSSH is a FREE version of the SSH protocol suite of network
connectivity tools that increasing numbers of people on the Internet
are coming to rely on. Many users of telnet, rlogin, ftp, and other
such programs might not realize that their password is transmitted
across the Internet unencrypted, but it is. OpenSSH encrypts all
traffic (including passwords) to effectively eliminate eavesdropping,
connection hijacking, and other network-level attacks. Additionally,
OpenSSH provides a myriad of secure tunneling capabilities, as well
as a variety of authentication methods.
This package contains the ssh(1) client and the scp(1) client/server.
http://www.openssh.com/
config ADK_PACKAGE_OPENSSH_CLIENT_UTILS
prompt "openssh-client-utils............ OpenSSH client utilities"
tristate
default n
depends on ADK_PACKAGE_OPENSSH_CLIENT
depends on ADK_COMPILE_OPENSSH
help
OpenSSH is a FREE version of the SSH protocol suite of network
connectivity tools that increasing numbers of people on the Internet
are coming to rely on. Many users of telnet, rlogin, ftp, and other
such programs might not realize that their password is transmitted
across the Internet unencrypted, but it is. OpenSSH encrypts all
traffic (including passwords) to effectively eliminate eavesdropping,
connection hijacking, and other network-level attacks. Additionally,
OpenSSH provides a myriad of secure tunneling capabilities, as well
as a variety of authentication methods.
This package contains ssh-agent and ssh-add as well as ssh-keyscan.
http://www.openssh.com/
config ADK_PACKAGE_OPENSSH_SERVER
prompt "openssh-server.................... OpenSSH server"
tristate
default n
select ADK_PACKAGE_LIBOPENSSL
select ADK_PACKAGE_ZLIB
depends on ADK_COMPILE_OPENSSH
help
OpenSSH is a FREE version of the SSH protocol suite of network
connectivity tools that increasing numbers of people on the Internet
are coming to rely on. Many users of telnet, rlogin, ftp, and other
such programs might not realize that their password is transmitted
across the Internet unencrypted, but it is. OpenSSH encrypts all
traffic (including passwords) to effectively eliminate eavesdropping,
connection hijacking, and other network-level attacks. Additionally,
OpenSSH provides a myriad of secure tunneling capabilities, as well
as a variety of authentication methods.
This package contains sshd(8) and ssh-keygen(8), but not scp(1),
which is needed for SCP server support.
http://www.openssh.com/
config ADK_PACKAGE_OPENSSH_SFTP_CLIENT
prompt "openssh-sftp-client............... OpenSSH SFTP client"
tristate
default n
select ADK_PACKAGE_LIBOPENSSL
select ADK_PACKAGE_ZLIB
depends on ADK_COMPILE_OPENSSH
help
OpenSSH is a FREE version of the SSH protocol suite of network
connectivity tools that increasing numbers of people on the Internet
are coming to rely on. Many users of telnet, rlogin, ftp, and other
such programs might not realize that their password is transmitted
across the Internet unencrypted, but it is. OpenSSH encrypts all
traffic (including passwords) to effectively eliminate eavesdropping,
connection hijacking, and other network-level attacks. Additionally,
OpenSSH provides a myriad of secure tunneling capabilities, as well
as a variety of authentication methods.
This package contains the /usr/bin/sftp client utility.
http://www.openssh.com/
config ADK_PACKAGE_OPENSSH_SFTP_SERVER
prompt "openssh-sftp-server............... OpenSSH SFTP server"
tristate
default n
select ADK_PACKAGE_LIBOPENSSL
select ADK_PACKAGE_ZLIB
depends on ADK_COMPILE_OPENSSH
help
OpenSSH is a FREE version of the SSH protocol suite of network
connectivity tools that increasing numbers of people on the Internet
are coming to rely on. Many users of telnet, rlogin, ftp, and other
such programs might not realize that their password is transmitted
across the Internet unencrypted, but it is. OpenSSH encrypts all
traffic (including passwords) to effectively eliminate eavesdropping,
connection hijacking, and other network-level attacks. Additionally,
OpenSSH provides a myriad of secure tunneling capabilities, as well
as a variety of authentication methods.
This package contains the SFTP server helper programme.
http://www.openssh.com/
|