Sponsored Content
Top Forums UNIX for Dummies Questions & Answers FTP client that meets these requirements? Post 302163188 by vgersh99 on Thursday 31st of January 2008 07:45:52 AM
Old 01-31-2008
...and lftp
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

FTP Client

Is there any ftp CLIENT(either freeware or sharware) can support passive mode else ncftp? Thanks! (2 Replies)
Discussion started by: coolmans
2 Replies

2. UNIX for Advanced & Expert Users

Command line FTP Client

I'm looking for a FTP client that is similar to NCFTP in that I can run a full ftp command in one line without needing to access the client first then typing the ftp commands. Very simple request but I can't find any other tool like that, I have downloaded Kermit thinking I can use it to tranfer... (3 Replies)
Discussion started by: tamkag
3 Replies

3. UNIX and Linux Applications

Secure FTP Client that Logs well

Folks I am on a quest.... I am looking for a lightweight FTP client capable of FTPS and or SFTP that has good audit and logging capabilities without requiring a central server component. My platforms are Linux, Solaris, AIX, and Windows Server. The kicker is I have found things that meet the... (3 Replies)
Discussion started by: ArtF
3 Replies

4. AIX

FTPS - FTP CLIENT- AIX - HELP Please

I'm currently investigating the secure ftp connection from AIX using shell script - It looks openssl is already install and don't know command to be used to connect the secure ftp server. 1. Do I need to install certificate on AIX ?. 2. If any one already design the script to connect secure... (0 Replies)
Discussion started by: dharanir
0 Replies

5. Solaris

A good ftp client

Can anyone please suggest a agood ftp client(GUI) which would support sftp ...on solaris. I badly need it. I keep doing the transfers frequently, and some of them are binary and I am not sure how I change the mode to binary. To avoid this and other hassles, it would help if i have a GUI client. ... (6 Replies)
Discussion started by: Naanu
6 Replies

6. UNIX for Advanced & Expert Users

Dummy FTP Client!

We're just about to start testing a new server build. The application has many FTP/SFTP connections going to different servers. I'd like to temporarily replace the FTP/SFTP binaries with a mock version that will allow us to run all our production code as is, but will prevent the FTPs from actually... (1 Reply)
Discussion started by: JerryHone
1 Replies

7. Red Hat

Implement FTP server on RHEL server without using FTP client

We have RHEL 5.8 in our environment, I had a query whether we can implement an FTP server using vsftpd package and Linux configurations like setsebool without using any external FTP clients like FileZilla etc. I am very confused on this. The FTP functionalities that should be present are download &... (3 Replies)
Discussion started by: RHCE
3 Replies

8. HP-UX

Disable GSSAPI when using an FTP client?

We have two HP-UX machines, both are B.11.31. When I FTP from the HP-UX boxes to a remote IBM server,- HP-UX 1: Connected to xxxx. 220-FTPD1 IBM FTP CS V1R12 at R2, 12:24:39 on 2013-08-30. 220 Connection will close if idle for more than 15 minutes. Name (xxxx:user): HP-UX 2:... (2 Replies)
Discussion started by: CaptNemo
2 Replies

9. Shell Programming and Scripting

AIX FTP client

I am trying to transfer logs from Aix 6.1 to a linux appliance but it is not happening from last one month if i execute the batch command by command i can execute well but if i do it in shell script it is stuck without any error. Any one know how to generate a FTP client trace to know the issue... (10 Replies)
Discussion started by: ra8ul
10 Replies

10. UNIX for Dummies Questions & Answers

Yum not working on client while able to do the ftp

1)check vsftpd service is running service vsftpd status 2)mkdir -p /var/ftp/pub/Packages Packages will contain all rpm packages 3)copy the xml file to Packages folder #cp -arf /mnt/hgfs/share/RHEL_DVD/Packages /var/ftp/pub/Packages 4)install the 3 required rpm rpm --nodeps -ivh... (0 Replies)
Discussion started by: joj123
0 Replies
ct_ftp(3erl)						     Erlang Module Definition						      ct_ftp(3erl)

NAME
ct_ftp - FTP client module (based on the FTP support of the INETS application). DESCRIPTION
FTP client module (based on the FTP support of the INETS application). DATA TYPES
connection() = handle() | target_name() (see module ct) : handle() = handle() (see module ct_gen_conn) : Handle for a specific ftp connection. EXPORTS
cd(Connection, Dir) -> ok | {error, Reason} Types Connection = connection() Dir = string() Change directory on remote host. close(Connection) -> ok | {error, Reason} Types Connection = connection() Close the FTP connection. delete(Connection, File) -> ok | {error, Reason} Types Connection = connection() File = string() Delete a file on remote host get(KeyOrName, RemoteFile, LocalFile) -> ok | {error, Reason} Types KeyOrName = Key | Name Key = atom() Name = target_name() (see module ct) RemoteFile = string() LocalFile = string() Open a ftp connection and fetch a file from the remote host. RemoteFile and LocalFile must be absolute paths. The config file must be as for put/3. See also: put/3 . ls(Connection, Dir) -> {ok, Listing} | {error, Reason} Types Connection = connection() Dir = string() Listing = string() List the directory Dir. open(KeyOrName) -> {ok, Handle} | {error, Reason} Types KeyOrName = Key | Name Key = atom() Name = target_name() (see module ct) Handle = handle() Open an FTP connection to the specified node. You can open one connection for a particular Name and use the same name as reference for all subsequent operations. If you want the connection to be associated with Handle instead (in case you need to open multiple connections to a host for example), simply use Key , the configuration variable name, to specify the target. Note that a connection that has no associated target name can only be closed with the handle value. put(KeyOrName, LocalFile, RemoteFile) -> ok | {error, Reason} Types KeyOrName = Key | Name Key = atom() Name = target_name() (see module ct) LocalFile = string() RemoteFile = string() Open a ftp connection and send a file to the remote host. LocalFile and RemoteFile must be absolute paths. If the target host is a "special" node, the ftp address must be specified in the config file like this: {node,[{ftp,IpAddr}]}. If the target host is something else, e.g. a unix host, the config file must also include the username and password (both strings): {unix,[{ftp,IpAddr}, {username,Username}, {password,Password}]}. recv(Connection, RemoteFile) -> ok | {error, Reason} Fetch a file over FTP. The file will get the same name on the local host. See also: recv/3 . recv(Connection, RemoteFile, LocalFile) -> ok | {error, Reason} Types Connection = connection() RemoteFile = string() LocalFile = string() Fetch a file over FTP. The file will be named LocalFile on the local host. send(Connection, LocalFile) -> ok | {error, Reason} Send a file over FTP. The file will get the same name on the remote host. See also: send/3 . send(Connection, LocalFile, RemoteFile) -> ok | {error, Reason} Types Connection = connection() LocalFile = string() RemoteFile = string() Send a file over FTP. The file will be named RemoteFile on the remote host. type(Connection, Type) -> ok | {error, Reason} Types Connection = connection() Type = ascii | binary Change file transfer type AUTHORS
<> common_test 1.5.3 ct_ftp(3erl)
All times are GMT -4. The time now is 02:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy