Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
ssh 7 and dsa keys (Was: _ssh: update to 7.0)
- X-seq: zsh-workers 36192
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: zsh workers <zsh-workers@xxxxxxx>
- Subject: ssh 7 and dsa keys (Was: _ssh: update to 7.0)
- Date: Mon, 17 Aug 2015 01:55:05 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=UbIzCRgT84Jcri0esg2/hRAbB6eM95dbJlginxU0nVE=; b=Zyk1kHCKo3tI8blNGUiZOVaJh99UD2y7ScG+Ls+MJCoiU6iVXLyDnnwjXes1vf1S8g lyMjGIhmrVdfbqSs6ErVhWsjHnTOLtgISKdVRY/xMA3oxQCO5cOgHNLmQ0V8zuJRbpCp QmmI+nZcjgjeHAwjVChQC+m5G+exoXC3gBNQpOxhXx42i1vhtBUvotO5r0rTbWl1/+kC Gq+JKvnTmerubrUGiLUPJSJerll97LHdGunRQQYIvQv7OIbBs/1tWPXqHLqRqQ2GlDTC PZ4wQM/ft9q977o8/nSIP97c2Ktg1pT3//vGRfEV1/cnPn1CIOC5+sE1X2IMzjWZQAlr s+qw==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
On Sat, Aug 15, 2015 at 6:56 PM, Mikael Magnusson <mikachu@xxxxxxxxx> wrote:
> @@ -234,7 +244,7 @@ _ssh () {
> (#i)hostname=*)
> _wanted hosts expl 'real host name to log into' _ssh_hosts && ret=0
> ;;
> - (#i)(hostbasedkeytypes|hostkeyalgorithms)=*)
> + (#i)(hostbasedkeytypes|hostkeyalgorithms|pubkeyacceptedkeytypes)=*)
> _values -s , 'key types' \
> 'ecdsa-sha2-nistp256-cert-v01@xxxxxxxxxxx' \
> 'ecdsa-sha2-nistp384-cert-v01@xxxxxxxxxxx' \
> @@ -450,6 +460,7 @@ _ssh () {
> Protocol \
> ProxyCommand \
> ProxyUseFdpass \
> + PubkeyAcceptedKeyTypes \
> PubkeyAuthentication \
> RekeyLimit \
> RemoteForward \
As an aside, if you get a password prompt when you're trying to push
to sf after updating to ssh 7.0, it's because the public key they have
is dsa, and ssh 7.0 disables using them by default. If you want to
ignore this and just keep on living your life, add this to your
~/.ssh/config
Host *.code.sf.net
PubkeyAcceptedKeyTypes +ssh-dss
--
Mikael Magnusson
Messages sorted by:
Reverse Date,
Date,
Thread,
Author