Hello All

I am trying to transfer a file using ftp. I am writing a script and running it.



#!/bin/ksh

ftp<autoftp

and autoftp file contains the following

open 171.186.200.39
username
password
get somefile
bye


But i am getting an error saying that

Please login with USER and PASS.
Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Password:Name (171.186.200.39:nbke6aa):
Login incorrect.
Login failed.


Plz let me know how to turnoff the KERBEROS_V4 Authentication.

Thanks in advance for help