2005-06-09 00:31:46 +03:00
|
|
|
menu "openssh - A free implementation of the Secure Shell protocol"
|
|
|
|
|
2005-06-07 10:04:44 +03:00
|
|
|
config BR2_PACKAGE_OPENSSH
|
2005-06-09 00:31:46 +03:00
|
|
|
bool "OpenSSH - A free implementation of the Secure Shell protocol"
|
|
|
|
default y if CONFIG_DEVEL
|
2005-06-07 10:04:44 +03:00
|
|
|
help
|
2005-06-09 00:31:46 +03:00
|
|
|
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.
|
2005-06-07 10:04:44 +03:00
|
|
|
|
|
|
|
http://www.openssh.com/
|
|
|
|
|
|
|
|
Depends: openssl
|
2005-06-09 00:31:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENSSH_CLIENT
|
|
|
|
tristate "openssh-client - OpenSSH client"
|
|
|
|
default m if CONFIG_DEVEL
|
|
|
|
depends BR2_PACKAGE_OPENSSH
|
|
|
|
select BR2_PACKAGE_LIBOPENSSL
|
2005-07-12 14:33:01 +03:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2005-06-09 00:31:46 +03:00
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENSSH_CLIENT_UTILS
|
|
|
|
tristate "openssh-client-utils - OpenSSH client utilities"
|
|
|
|
default m if CONFIG_DEVEL
|
|
|
|
depends BR2_PACKAGE_OPENSSH_CLIENT
|
2005-07-12 14:33:01 +03:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2005-06-09 00:31:46 +03:00
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENSSH_SERVER
|
|
|
|
tristate "openssh-server - OpenSSH server"
|
|
|
|
default m if CONFIG_DEVEL
|
|
|
|
depends BR2_PACKAGE_OPENSSH
|
|
|
|
select BR2_PACKAGE_LIBOPENSSL
|
2005-07-12 14:33:01 +03:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2005-06-09 00:31:46 +03:00
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENSSH_SFTP_CLIENT
|
|
|
|
tristate "openssh-sftp-client - OpenSSH SFTP client"
|
|
|
|
default m if CONFIG_DEVEL
|
|
|
|
depends BR2_PACKAGE_OPENSSH
|
|
|
|
select BR2_PACKAGE_LIBOPENSSL
|
2005-07-12 14:33:01 +03:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2005-06-09 00:31:46 +03:00
|
|
|
|
|
|
|
config BR2_PACKAGE_OPENSSH_SFTP_SERVER
|
|
|
|
tristate "openssh-sftp-server - OpenSSH SFTP server"
|
|
|
|
default m if CONFIG_DEVEL
|
|
|
|
depends BR2_PACKAGE_OPENSSH
|
|
|
|
select BR2_PACKAGE_LIBOPENSSL
|
2005-07-12 14:33:01 +03:00
|
|
|
select BR2_PACKAGE_ZLIB
|
2005-06-09 00:31:46 +03:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|