From: Barry Margolin <barmar@alum.mit.edu>
To: help-gnu-emacs@gnu.org
Subject: Re: specifying identity file for scp within tramp
Date: Fri, 19 Dec 2008 20:45:28 -0500 [thread overview]
Message-ID: <barmar-7C601F.20452819122008@mara100-84.onlink.net> (raw)
In-Reply-To: b4647b13-f390-48aa-9373-46192b1bbe8e@b41g2000pra.googlegroups.com
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2035 bytes --]
In article
<b4647b13-f390-48aa-9373-46192b1bbe8e@b41g2000pra.googlegroups.com>,
À¯×°×² <girzel@gmail.com> wrote:
> On Dec 19, 1:38 pm, Barry Margolin <bar...@alum.mit.edu> wrote:
> > In article
> > <97c43290-2786-4b18-aaa8-429005829...@s9g2000prm.googlegroups.com>,
> >
> > À¯×°×² <gir...@gmail.com> wrote:
> > > Can anyone tell me if it's possible to direct tramp to use a
> > > particular set of ssh keys when connecting to a particular server? I'm
> > > trying to use scp with the equivalent of the -i option, what I tried
> > > below just seems to confuse tramp, is there some other way I should be
> > > doing this?
> >
> > > (add-to-list 'tramp-default-method-alist
> > > '("remote_server" "" "scp -i /Users/my_user/.ssh/
> > > my_key"))
> >
> > Why not use the IdentityFile directives in ~/.ssh/config?
> >
>
> I'm already using a set of keys for regular ssh login, and there's a
> passphrase on that set. I was trying to create a second set
> specifically for tramp to use, with no passphrase and restricted
> permissions on the server side. So far as I know, I can only provide a
> single IdentityFile per host in ssh/config -- do you know of any other
> ways to automatically distinguish the proper keys for tramp to use
> with my server?
I think you have to define a new method.
(defvar my-scp-extra-args '("-i" "/Users/my_user/.ssh/my_key"))
(let* ((scp-method (assoc "scp" tramp-methods))
(new-method (copy-tree (cdr scp-method)))
(login-args (assoc 'tramp-login-args new-method))
(copy-args (assoc 'tramp-copy-args new-method)))
(setf (cadr login-args)
`(,@my-scp-extra-args ,@(cadr login-args))
(cadr copy-args)
`(,@my-scp-extra-args ,@(cadr copy-args)))
(push `("myscp" . ,new-method) tramp-methods))
Then set the default method for remote_server to "myscp".
--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
*** PLEASE don't copy me on replies, I'll read them in the group ***
next prev parent reply other threads:[~2008-12-20 1:45 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-19 5:26 specifying identity file for scp within tramp 锁住子
2008-12-19 5:38 ` Barry Margolin
2008-12-19 6:29 ` 锁住子
2008-12-20 1:45 ` Barry Margolin [this message]
2008-12-21 8:56 ` 锁住子
2008-12-21 16:00 ` Barry Margolin
2008-12-22 5:52 ` 锁住子
2008-12-22 18:20 ` Barry Margolin
2008-12-20 18:22 ` Ian Eure
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=barmar-7C601F.20452819122008@mara100-84.onlink.net \
--to=barmar@alum.mit.edu \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.