Networking Forums

Networking Forums > Computer Networking > Linux Networking > Why is command line ftp failing?

Reply
Thread Tools Display Modes

Why is command line ftp failing?

 
 
D. Alvarado
Guest
Posts: n/a

 
      03-05-2004, 05:30 PM
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
 
Reply With Quote
 
 
 
 
Floyd L. Davidson
Guest
Posts: n/a

 
      03-05-2004, 05:54 PM
(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)
 
Reply With Quote
 
jack
Guest
Posts: n/a

 
      03-05-2004, 09:49 PM
Welcome back, Floyd!


Cheers, Jack.

--
----------------------------------------------------------------------
My personal reading of the string "MicroSoft" expands to "NanoWeak"...
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to add an ip to a NIC (from the command line)? gst Windows Networking 1 10-01-2008 02:42 PM
FXP command line client ? Pierre Bru Windows Networking 1 08-28-2006 04:46 PM
VB Installer from command line Newell White Windows Networking 3 06-26-2006 04:12 PM
mailing from the command line Andrew Schulman Linux Networking 1 01-27-2005 10:30 PM
command line Rupert Windows Networking 2 10-20-2003 07:23 PM



1 2 3 4 5 6 7 8 9 10 11