You are not logged in.

#1 2004-12-21 01:00:46

oscar
Member
From: Kiruna, Sweden
Registered: 2004-08-13
Posts: 457

AUTH TLS ftp client?

I've made my pure-ftpd work properly (with a virtual user database and ssl/tls), but I haven't been able to find any proper ftp client for the unix platform sad

the most important thing is AUTH TLS support!
a gtk2 interface would be nice, but it's not mandatory...

any tips? smile


To err is human... to really foul up requires the root password.

Offline

#2 2004-12-21 01:20:36

cactus
Taco Eater
From: t͈̫̹ͨa͖͕͎̱͈ͨ͆ć̥̖̝o̫̫̼s͈̭̱̞͍̃!̰
Registered: 2004-05-25
Posts: 4,622
Website

Re: AUTH TLS ftp client?

gftp?
Dunno about auth tls, but I think it works..never tried it.


"Be conservative in what you send; be liberal in what you accept." -- Postel's Law
"tacos" -- Cactus' Law
"t̥͍͎̪̪͗a̴̻̩͈͚ͨc̠o̩̙͈ͫͅs͙͎̙͊ ͔͇̫̜t͎̳̀a̜̞̗ͩc̗͍͚o̲̯̿s̖̣̤̙͌ ̖̜̈ț̰̫͓ạ̪͖̳c̲͎͕̰̯̃̈o͉ͅs̪ͪ ̜̻̖̜͕" -- -̖͚̫̙̓-̺̠͇ͤ̃ ̜̪̜ͯZ͔̗̭̞ͪA̝͈̙͖̩L͉̠̺͓G̙̞̦͖O̳̗͍

Offline

#3 2004-12-21 07:07:46

oscar
Member
From: Kiruna, Sweden
Registered: 2004-08-13
Posts: 457

Re: AUTH TLS ftp client?

cactus wrote:

gftp?
Dunno about auth tls, but I think it works..never tried it.

gftp was my first attempt, but it didn't had what I needed sad


To err is human... to really foul up requires the root password.

Offline

#4 2004-12-21 11:02:53

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: AUTH TLS ftp client?

I'm not using any ftp client with tls currently but let me search...

First this is a list and comparision of ftp clients with support for tls auth for all systems:
http://www.ford-hutchinson.com/~fh-1-pf … tml#client

These look promising:
Kermit http://www.columbia.edu/kermit/ck80.html
Ftp-tls (from Openbsd) http://www.runestig.com/osp.html
Kasablanca (with gui but for kde) http://kasablanca.berlios.de/features.html
Bsdftpd has cli ftps client http://bsdftpd-ssl.sc.ru/
Secureftp (Java gui) http://www.glub.com/products/secureftp/
Lftp (it should automatically recognize tls) http://lftp.yar.ru/
Iglooftp (nice gtk2 gui, commercial? closed source?) http://www.iglooftp.com/unix/download.html
Kftpgrabber (gui, kde) http://kftpgrabber.sourceforge.net/features.php
Pftp + gui clients (ncurses, gtk, qt ?) http://pftp.sourceforge.net/index.html

Tls wrapper (allows any ftp client to use tls) http://tlswrap.sunsite.dk/

BTW it's also good to read pure-ftpd readme first :-)
http://www.pureftpd.org/README.TLS (there is tested clients list)...

Maybe there are more. List of ftp clients for linux:
http://www.usinglinux.org/ftp/
http://www.linuxsoft.cz/en/sw_list.php?id_kategory=9
Maybe some of them support tls too.

Offline

#5 2004-12-21 13:32:22

FUBAR
Member
From: Belgium
Registered: 2004-12-08
Posts: 1,029
Website

Re: AUTH TLS ftp client?

Get lftp. The best graphical FTP-client I've come across so far is IglooFTP PRO. Too bad it's shareware.


A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.

Offline

#6 2004-12-21 14:31:26

oscar
Member
From: Kiruna, Sweden
Registered: 2004-08-13
Posts: 457

Re: AUTH TLS ftp client?

Thanks people! smile

I think I will try pftp, and try to make it work smile


To err is human... to really foul up requires the root password.

Offline

#7 2004-12-21 17:00:03

Winkie
Member
Registered: 2004-09-30
Posts: 59

Re: AUTH TLS ftp client?

oscar wrote:

Thanks people! smile

I think I will try pftp, and try to make it work smile

lftp is a fantastic console FTP client.

Offline

#8 2004-12-21 18:02:55

xerxes2
Member
From: Malmoe, Sweden
Registered: 2004-04-23
Posts: 1,249
Website

Re: AUTH TLS ftp client?

thanks guys for the tip on lftp, i was getting a little tired of gftp crashes,
here is a pkgbuild for it, i just tried it a few minutes but it seems to work,

# lftp
pkgname=lftp
pkgver=3.0.13
pkgrel=1
pkgdesc="lftp is a console ftp client"
url="http://lftp.yar.ru"
#license="GNU GPL"
depends=('readline')
#makedepends=()
source=(ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/lftp-3.0.13.tar.gz)
md5sums=('75f9861c1794a3c9cc0c9d42d3dfc7f0')

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./configure --prefix=/usr
  make || return 1
  make DESTDIR=$startdir/pkg install || return 1
} 

this is a must for all 1337 h4xxors!!!


arch + gentoo + initng + python = enlisy

Offline

#9 2004-12-22 00:47:15

Winkie
Member
Registered: 2004-09-30
Posts: 59

Re: AUTH TLS ftp client?

lftp is already in extra(?)

Offline

#10 2004-12-22 01:46:35

xerxes2
Member
From: Malmoe, Sweden
Registered: 2004-04-23
Posts: 1,249
Website

Re: AUTH TLS ftp client?

aha, i see that now, well, it only took me 2 minutes to make it so no big deal,
it's a great program with the biggest manpage i've ever seen,  big_smile


arch + gentoo + initng + python = enlisy

Offline

Board footer

Powered by FluxBB