2019独角兽企业重金招聘Python工程师标准>>>

OpenSSH(Open Secure Shell)是使用SSH透过计算机网络加密通讯的实现。它是取代由SSH Communications Security所提供的商用版本的开放源代码方案。目前OpenSSH是OpenBSD的子计划。

远程登录工具OpenSSH 6.7发布。2014-10-07 上个版本是2014-03-16的6.6 新特性有sftp支持上传断点续传,支持Unix domain socket转发,新的PermitUserRC参数,支持ED25519类型的SSHFP DNS记录等.

完全改进:

OpenSSH 6.7 has just been released. It will be available from the

mirrors listed at http://www.openssh.com/ shortly.

OpenSSH is a 100% complete SSH protocol version 1.3, 1.5 and 2.0

implementation and includes sftp client and server support.

Once again, we would like to thank the OpenSSH community for their

continued support of the project, especially those who contributed

code or patches, reported bugs, tested snapshots or donated to the

project. More information on donations may be found at:

http://www.openssh.com/donations.html

Changes since OpenSSH 6.6

=========================

Potentially-incompatible changes

* sshd(8): The default set of ciphers and MACs has been altered to

remove unsafe algorithms. In particular, CBC ciphers and arcfour*

are disabled by default.

The full set of algorithms remains available if configured

explicitly via the Ciphers and MACs sshd_config options.

* sshd(8): Support for tcpwrappers/libwrap has been removed.

* OpenSSH 6.5 and 6.6 have a bug that causes ~0.2% of connections

using the curve25519-sha256@libssh.org KEX exchange method to fail

when connecting with something that implements the specification

correctly. OpenSSH 6.7 disables this KEX method when speaking to

one of the affected versions.

New Features

* Major internal refactoring to begin to make part of OpenSSH usable

as a library. So far the wire parsing, key handling and KRL code

has been refactored. Please note that we do not consider the API

stable yet, nor do we offer the library in separable form.

* ssh(1), sshd(8): Add support for Unix domain socket forwarding.

A remote TCP port may be forwarded to a local Unix domain socket

and vice versa or both ends may be a Unix domain socket.

* ssh(1), ssh-keygen(1): Add support for SSHFP DNS records for

ED25519 key types.

* sftp(1): Allow resumption of interrupted uploads.

* ssh(1): When rekeying, skip file/DNS lookups of the hostkey if it

is the same as the one sent during initial key exchange; bz#2154

* sshd(8): Allow explicit ::1 and 127.0.0.1 forwarding bind

addresses when GatewayPorts=no; allows client to choose address

family; bz#2222

* sshd(8): Add a sshd_config PermitUserRC option to control whether

~/.ssh/rc is executed, mirroring the no-user-rc authorized_keys

option; bz#2160

* ssh(1): Add a %C escape sequence for LocalCommand and ControlPath

that expands to a unique identifer based on a hash of the tuple of

(local host, remote user, hostname, port). Helps avoid exceeding

miserly pathname limits for Unix domain sockets in multiplexing

control paths; bz#2220

* sshd(8): Make the "Too many authentication failures" message

include the user, source address, port and protocol in a format

similar to the authentication success / failure messages; bz#2199

* Added unit and fuzz tests for refactored code. These are run

automatically in portable OpenSSH via the "make tests" target.

Bugfixes

* sshd(8): Fix remote forwarding with the same listen port but

different listen address.

* ssh(1): Fix inverted test that caused PKCS#11 keys that were

explicitly listed in ssh_config or on the commandline not to be

preferred.

* ssh-keygen(1): Fix bug in KRL generation: multiple consecutive

revoked certificate serial number ranges could be serialised to an

invalid format. Readers of a broken KRL caused by this bug will

fail closed, so no should-have-been-revoked key will be accepted.

* ssh(1): Reflect stdio-forward ("ssh -W host:port ...") failures in

exit status. Previously we were always returning 0; bz#2255

* ssh(1), ssh-keygen(1): Make Ed25519 keys' title fit properly in the

randomart border; bz#2247

* ssh-agent(1): Only cleanup agent socket in the main agent process

and not in any subprocesses it may have started (e.g. forked

askpass). Fixes agent sockets being zapped when askpass processes

fatal(); bz#2236

* ssh-add(1): Make stdout line-buffered; saves partial output getting

lost when ssh-add fatal()s part-way through (e.g. when listing keys

from an agent that supports key types that ssh-add doesn't);

bz#2234

* ssh-keygen(1): When hashing or removing hosts, don't choke on

@revoked markers and don't remove @cert-authority markers; bz#2241

* ssh(1): Don't fatal when hostname canonicalisation fails and a

ProxyCommand is in use; continue and allow the ProxyCommand to

connect anyway (e.g. to a host with a name outside the DNS behind

a bastion)

* scp(1): When copying local->remote fails during read, don't send

uninitialised heap to the remote end.

* sftp(1): Fix fatal "el_insertstr failed" errors when tab-completing

filenames with  a single quote char somewhere in the string;

bz#2238

* ssh-keyscan(1): Scan for Ed25519 keys by default.

* ssh(1): When using VerifyHostKeyDNS with a DNSSEC resolver, down-

convert any certificate keys to plain keys and attempt SSHFP

resolution.  Prevents a server from skipping SSHFP lookup and

forcing a new-hostkey dialog by offering only certificate keys.

* sshd(8): Avoid crash at exit via NULL pointer reference; bz#2225

* Fix some strict-alignment errors.

Portable OpenSSH

* Portable OpenSSH now supports building against libressl-portable.

* Portable OpenSSH now requires openssl 0.9.8f or greater. Older

versions are no longer supported.

* In the OpenSSL version check, allow fix version upgrades (but not

downgrades. Debian bug #748150.

* sshd(8): On Cygwin, determine privilege separation user at runtime,

since it may need to be a domain account.

* sshd(8): Don't attempt to use vhangup on Linux. It doesn't work for

non-root users, and for them it just messes up the tty settings.

* Use CLOCK_BOOTTIME in preference to CLOCK_MONOTONIC when it is

available. It considers time spent suspended, thereby ensuring

timeouts (e.g. for expiring agent keys) fire correctly.  bz#2228

* Add support for ed25519 to opensshd.init init script.

* sftp-server(8): On platforms that support it, use prctl() to

prevent sftp-server from accessing /proc/self/{mem,maps}

下载:ftp://ftp.openbsd.com/pub/OpenBSD/OpenSSH/portable/openssh-6.7p1.tar.gz

如果想深入体验LINUX系统的新手,也可以先下载一个方德Linux软件中心试用一下。

免费下载地址:http://www.nfs-cloud.cn:81/appCenter/open/softcenter

转载于:https://my.oschina.net/foundation00523wuxi/blog/651144

OpenSSH 6.7 发布 开源ssh服务器软件相关推荐

  1. 开源自动化服务器软件 Jenkins 被曝严重漏洞,可泄露敏感信息

     聚焦源代码安全,网罗国内外最新资讯! 编译:奇安信代码卫士团队 本周一,热门开源自动化服务器软件 Jenkins 发布安全公告称,Jetty web 服务器中存在一个严重漏洞,可导致内存损坏并导致机 ...

  2. SegmentFault 思否发布开源问答社区软件 Answer

    ONES 旗下技术问答社区 SegmentFault 思否(下称"思否")今日宣布,正式对外开源其问答社区软件 Answer. 作为国内领先的新一代技术问答社区,思否始于「聚集体智 ...

  3. 邮件服务器软件EwoMail 1.05 发布

    2019独角兽企业重金招聘Python工程师标准>>> EwoMail 1.05 发布了.EwoMail 是基于 Linux 的开源邮件服务器软件,集成了众多优秀稳定的组件,是一个快 ...

  4. 国产服务器软件 LinWinHttp 重大更新 V1.3 Community Build 2022.10.29 发布,这次的更新有什么内容?

    国产服务器 LinWIn Http LinWIn Http 由萤火科技团队开发,专门用于国产操作系统以及 Linux 操作系统的一种开源 HTTP 服务器软件.具有快速部署.快速反应.便捷安全.上手简 ...

  5. 常用的web服务器软件有哪些

    (1)ApacheApache是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上.Apache源于NCSAhttpd服务器,经过多次修改,成为世界上最流行的Web服务器软 ...

  6. 常用的web服务器软件整理(转载)

    (1)ApacheApache是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上.Apache源于NCSAhttpd服务器,经过多次修改,成为世界上最流行的Web服务器软 ...

  7. 常用的web服务器软件整理

    常用的web服务器软件整理 (1)ApacheApache 是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上.Apache源于NCSAhttpd服务器,经过多次修改,成 ...

  8. Web常用的服务器软件整理(Win+Linux)

    本文编辑:富哥 素材整理:葵芳IDC (1)ApacheApache是世界使用的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上.Apache源于NCSAhttpd服务器,经过多次修改,成 ...

  9. 常见的http服务器软件

    httpd apache http://httpd.apache.org/ Apache是老牌Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的W ...

最新文章

  1. Linux下搭建高效的SVN
  2. 001_python单元测试
  3. 求循环小数的表示以及循环节长度
  4. 互联网+大赛作品_“颂中国力量 绘美好梦想”全市中小学生互联网+书画大赛作品展示(二十六)...
  5. scanf函数与scanf_s函数
  6. 献给老师,我的编程之路
  7. CRMEB系统开发文档
  8. 【Spark】SparkStreaming-加载外部配置文件
  9. 【python基础知识】-引入文件失败问题(同一文件夹和不同文件夹)
  10. 移动硬盘插上电脑卡住_担心移动硬盘一摔资料就没了,试试这个三防户外硬盘盒...
  11. 全息营销话题提纲(2-1)--王甲佳全息营销系列15
  12. tensorflow学习笔记(三十四):Saver(保存与加载模型)
  13. 【交易所相关】网关、席位、交易单元
  14. 清华计算机自主招生试题,清华、北大等高校历年自主招生试题及答案汇总
  15. 如何实现中文汉字进行笔划(笔画)排序?
  16. 计算机应用研究中的文章见刊后,什么时候能在知网中查询到,论文网络首发后会被收录吗...
  17. 后端实践:Nginx日志配置(超详细)
  18. 静态路由,缺省路由和默认网关的区别
  19. 树莓派综合项目2:智能小车(一)四轮驱动
  20. 微信发个原图,居然隐私曝光这么多…可怕

热门文章

  1. MySql 主从模式原理及操作步骤
  2. 十六、定义数据、定义栈
  3. Two sum(给定一个无重复数组和目标值,查找数组中和为目标值的两个数,并输出其下标)...
  4. MFC- OnIdle空闲处理
  5. 在这个智能数字时代,处处拉拢着我们的视线,那么低头一族可还记得儿时上学的45分钟吗?劳逸结合,多动动!...
  6. (转)十分钟搞定你自己的多图片/文件服务器
  7. iframe高度自适应
  8. Python的基础--对象 转
  9. 3.14圆周率节,这5本书带你领略数学的魅力
  10. 从数据角度看,每家公司只有2种角色:看看你更适合哪一种?