From: "Jack Saba" <nospam@nospam.com>
Subject: Q: Configuring Tramp on WinNT
Date: Mon, 10 Nov 2003 16:30:55 -0500 [thread overview]
Message-ID: <bop0a4$ib5$1@skates.gsfc.nasa.gov> (raw)
I am trying to configure tramp to be able to connect from the Win NT machine on
my desk to our Unix machines, but have not been able to get it to work. Any
suggestions would be appreciated. Much of what I have working is because of the
documents put together by T Roche, but his web page does not seem to be
available currently.
plink is set up. I can use plink from a shell window to connect, and I can
connect in an Emacs shell buffer using plink-ssh after typing in a password.
However, although it does work, the following shows up in the Emacs plink
connection buffer:
"The server's host key is not cached in the registry. You
have no guarantee that the server is the computer you
think it is.
The server's key fingerprint is:
1024 <STRING OF NUMBERS AND COLONS>
If you trust this host, enter "y" to add the key to
PuTTY's cache and carry on connecting."
Unfortunately, plink continues on without giving me a chance to answer y or n.
Since I am connecting with putty outside of Emacs, our sysadmin says the keys
are set up correctly.
When I try to use tramp, it asks for a password but then seems to go into a
loop. I am not running through cygwin. The tramp debug buffer shows the following --
# Opening connection at MYMACHINE using nil...
# Waiting for prompts from remote shell
# Waiting 60s for prompt from remote shell
# Looking for regexp "^.*\([pP]assword\|passphrase.*\):^@ *"
from remote shell
# Looking for regexp ".*ogin: *" from remote shell
# Looking for regexp "^[^#$%
]*[#$%] *" from remote shell
# Looking for regexp "^[^#$%
]*[#$%] *\(^[\[[0-9;]*[a-zA-Z] *\)*" from remote shell
# Looking for regexp "^.*\(Connection \(?:\(?:clo\|refu\)sed\)\|Host key
verification failed\.\|Login \(?:[Ii]ncorrect\)\|Name or service not
known\|\(?:Permission denied\|Sorry, try again\)\.\).*\|^.*\(Received signal
[0-9]+\).*" from remote shell
and repeat forever, or at least until I hit ^G
In the .emacs file, I have:
;;;; PLINK/PUTTY
;;; plink setup for tramp
;;; SSH to host.
(setq plink-program "plink")
(defun plink-ssh (host)
"Open a ssh (secure shell) connection. See `plink'."
(interactive "sOpen ssh connection (user@host): ")
(plink host "-ssh"))
;; Telnet to host.
(defun plink (host &optional ssh-string)
"Open a telnet connection to host named HOST (a string).
Communication with HOST is recorded in a buffer `*plink-HOST*'.
Normally input is edited in Emacs and sent a line at a time."
(interactive "sOpen telnet connection (user@host): ")
(require 'shell)
(let ((name (concat "plink-" host))
(password (comint-read-noecho "password: " t))
(opt-string (if (eq ssh-string nil) "" ssh-string)))
(pop-to-buffer
(make-comint name plink-program nil opt-string host "-pw" password))
(set-process-filter (get-process name) 'telnet-initial-filter)
(telnet-mode)
(accept-process-output (get-buffer-process (current-buffer)))
(send-string (get-buffer-process (current-buffer))
"stty echo\n")
(setq telnet-count -16)))
;
(require 'tramp)
(setq tramp-verbose 10)
(setq tramp-debug-buffer t)
I tried including
(add-to-list 'tramp-methods...
in the .emacs file, but was not able to come up with a combination of parameters
that worked.
Jack Saba
jack . saba @ gsfc . nasa . gov
next reply other threads:[~2003-11-10 21:30 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-11-10 21:30 Jack Saba [this message]
2003-11-11 6:05 ` Q: Configuring Tramp on WinNT Eli Zaretskii
2003-11-11 16:11 ` Peter Lee
2003-12-03 22:33 ` Kai Grossjohann
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='bop0a4$ib5$1@skates.gsfc.nasa.gov' \
--to=nospam@nospam.com \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).