(E-Mail Removed) (D. Alvarado) wrote:
>Hello,
> I am running Mandrake 8.2 for i586. I am trying to connect to a
>remote server (also running on Linus, but I'm not sure) and the
>connection perpetually fails. Here's what happens:
>
>[dave@localhost tmp]$ ftp project-neko.com
>Connected to project-neko.com.
>220 ProFTPD 1.2.9 Server (System447) [system447.com]
>500 AUTH not understood
>504 AUTH GSSAPI unsupported
>KERBEROS_V4 rejected as an authentication type
>Name (project-neko.com:dave): mylogin
>500 AUTH not understood
>Login failed.
>ftp>
>
>I never get the chance to enter my password! Is there something I can
>configure on my end to establish the connection? Note, I can connect
>fine using gFTP. Thanks for any answers anyone can provide - Dave
It appears you have something in ~/.netrc which is triggering an
attempt at automatically logging in, and that it is failing on
that particular server.
Note that you do have the opportunity to login! At the final
prompt, ftp>, you can enter "user xxxx", and login will proceed
as usual.
But most likely what you would prefer is to skip all of that,
and that means editing your ~/.netrc file to provide the
correct commands initially. You'll need an entry something
like one of the following,
# This will attempt to login as user "anonymous" and will
# automatically provide what it thinks is your email address
# as the password
machine project-neko.com
# This will attempt to login as user "dave", and will
# prompt you for a password.
machine project-neko.com login dave
# This will attempt to login as user "dave", prompt
# you for a password, and then perform each of the
# commands defined by the macro named "init".
machine project-neko.com login dave
macdef init
binary # binary mode transfers
prompt off # don't prompt
verbose off # don't be verbose
cd /private/dave # set remote cwd
lcd /home/dave/project-neko # set local cwd
--
Floyd L. Davidson <http://web.newsguy.com/floyd_davidson>
Ukpeagvik (Barrow, Alaska)
(E-Mail Removed)