* [gentoo-user] FTPs - Is there such a thing?
@ 2006-07-13 5:50 Ow Mun Heng
2006-07-13 5:58 ` Donnie Berkholz
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Ow Mun Heng @ 2006-07-13 5:50 UTC (permalink / raw
To: gentoo
What I meant is "secure" ftp.
sort of like httpS as an alternative to http.
short of wrapping/tunneling ftp traffic through SSH. (That's simple)
--
Ow Mun Heng <Ow.Mun.Heng@wdc.com>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 5:50 [gentoo-user] FTPs - Is there such a thing? Ow Mun Heng
@ 2006-07-13 5:58 ` Donnie Berkholz
2006-07-13 6:31 ` Ow Mun Heng
[not found] ` <9514579.1152772754066.JavaMail.root@sniper30>
2006-07-13 6:14 ` Alexander Skwar
[not found] ` <3551272.1152770373655.JavaMail.root@sniper25>
2 siblings, 2 replies; 14+ messages in thread
From: Donnie Berkholz @ 2006-07-13 5:58 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 414 bytes --]
Ow Mun Heng wrote:
> What I meant is "secure" ftp.
> sort of like httpS as an alternative to http.
>
> short of wrapping/tunneling ftp traffic through SSH. (That's simple)
It's called sftp, and openssh does it with this in /etc/ssh/sshd_config:
# override default of no subsystems
Subsystem sftp /usr/lib/misc/sftp-server
Most SSH clients will do it, FTP clients may not.
Thanks,
Donnie
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 5:58 ` Donnie Berkholz
@ 2006-07-13 6:31 ` Ow Mun Heng
[not found] ` <9514579.1152772754066.JavaMail.root@sniper30>
1 sibling, 0 replies; 14+ messages in thread
From: Ow Mun Heng @ 2006-07-13 6:31 UTC (permalink / raw
To: gentoo-user
On Wed, 2006-07-12 at 22:58 -0700, Donnie Berkholz wrote:
> Ow Mun Heng wrote:
> > What I meant is "secure" ftp.
> > sort of like httpS as an alternative to http.
> >
> > short of wrapping/tunneling ftp traffic through SSH. (That's simple)
>
> It's called sftp, and openssh does it with this in /etc/ssh/sshd_config:
Sorry, I should have mentioned that I know about that as well.
Most other users are Windows users and they then to just like to click a
link eg:
ftp://1.2.3.4
and it'll open up in explorer. (users, they don't care, as long as it
works)
> # override default of no subsystems
> Subsystem sftp /usr/lib/misc/sftp-server
>
> Most SSH clients will do it, FTP clients may not.
And I sincerely doubt windows explorer can do it. (Which is the problem)
Thanks
--
Ow Mun Heng <Ow.Mun.Heng@wdc.com>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
[parent not found: <9514579.1152772754066.JavaMail.root@sniper30>]
* Re: [gentoo-user] FTPs - Is there such a thing?
[not found] ` <9514579.1152772754066.JavaMail.root@sniper30>
@ 2006-07-13 12:25 ` Justin Krejci
2006-07-13 12:40 ` Catalin Grigoroscuta
2006-07-13 12:48 ` Janusz Bossy
0 siblings, 2 replies; 14+ messages in thread
From: Justin Krejci @ 2006-07-13 12:25 UTC (permalink / raw
To: gentoo-user; +Cc: Ow Mun Heng
On Thursday 13 July 2006 01:31 am, Ow Mun Heng wrote:
> On Wed, 2006-07-12 at 22:58 -0700, Donnie Berkholz wrote:
> > Ow Mun Heng wrote:
> > > What I meant is "secure" ftp.
> > > sort of like httpS as an alternative to http.
> > >
> > > short of wrapping/tunneling ftp traffic through SSH. (That's simple)
> >
> > It's called sftp, and openssh does it with this in /etc/ssh/sshd_config:
>
> Sorry, I should have mentioned that I know about that as well.
> Most other users are Windows users and they then to just like to click a
> link eg:
>
> ftp://1.2.3.4
>
> and it'll open up in explorer. (users, they don't care, as long as it
> works)
>
> > # override default of no subsystems
> > Subsystem sftp /usr/lib/misc/sftp-server
> >
> > Most SSH clients will do it, FTP clients may not.
>
> And I sincerely doubt windows explorer can do it. (Which is the problem)
Assuming you mean Microsoft Internet Explorer, you should check into a
microsoft windows mailing list if this has nothing to Gentoo or even Linux at
all. There are nice sftp/scp apps for windows - winscp works great.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 12:25 ` Justin Krejci
@ 2006-07-13 12:40 ` Catalin Grigoroscuta
2006-07-13 12:48 ` Janusz Bossy
1 sibling, 0 replies; 14+ messages in thread
From: Catalin Grigoroscuta @ 2006-07-13 12:40 UTC (permalink / raw
To: gentoo-user
ftps and sftp are different things.
sftp is a service offered by ssh; ftps is ftp over ssl, similar to https.
See http://en.wikipedia.org/wiki/FTPS
Justin Krejci wrote:
> On Thursday 13 July 2006 01:31 am, Ow Mun Heng wrote:
>
>> On Wed, 2006-07-12 at 22:58 -0700, Donnie Berkholz wrote:
>>
>>> Ow Mun Heng wrote:
>>>
>>>> What I meant is "secure" ftp.
>>>> sort of like httpS as an alternative to http.
>>>>
>>>> short of wrapping/tunneling ftp traffic through SSH. (That's simple)
>>>>
>>> It's called sftp, and openssh does it with this in /etc/ssh/sshd_config:
>>>
>> Sorry, I should have mentioned that I know about that as well.
>> Most other users are Windows users and they then to just like to click a
>> link eg:
>>
>> ftp://1.2.3.4
>>
>> and it'll open up in explorer. (users, they don't care, as long as it
>> works)
>>
>>
>>> # override default of no subsystems
>>> Subsystem sftp /usr/lib/misc/sftp-server
>>>
>>> Most SSH clients will do it, FTP clients may not.
>>>
>> And I sincerely doubt windows explorer can do it. (Which is the problem)
>>
>
> Assuming you mean Microsoft Internet Explorer, you should check into a
> microsoft windows mailing list if this has nothing to Gentoo or even Linux at
> all. There are nice sftp/scp apps for windows - winscp works great.
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 12:25 ` Justin Krejci
2006-07-13 12:40 ` Catalin Grigoroscuta
@ 2006-07-13 12:48 ` Janusz Bossy
2006-07-13 13:19 ` Daniel Iliev
1 sibling, 1 reply; 14+ messages in thread
From: Janusz Bossy @ 2006-07-13 12:48 UTC (permalink / raw
To: gentoo-user
On 7/13/06, Justin Krejci <jus@krytosvirus.com> wrote:
> Assuming you mean Microsoft Internet Explorer, you should check into a
> microsoft windows mailing list if this has nothing to Gentoo or even Linux at
> all. There are nice sftp/scp apps for windows - winscp works great.
This is no Internet Explorer thing and this is exactly the place he
should ask. The problem isn't that IE doesn't support sftp but we are
looking for something on Gentoo that IE supports (possibly ftps or
similar).
I haven't heard about anything like that, but on the other side I was
never looking for it :)
--
Pozdrawiam
Janusz YANOUSHek Bossy
gg# 791964
tlen yanoushek@tlen.pl
jabber yanoushek@chrome.pl
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 12:48 ` Janusz Bossy
@ 2006-07-13 13:19 ` Daniel Iliev
2006-07-13 21:33 ` Ow Mun Heng
0 siblings, 1 reply; 14+ messages in thread
From: Daniel Iliev @ 2006-07-13 13:19 UTC (permalink / raw
To: gentoo-user
Janusz Bossy wrote:
> This is no Internet Explorer thing and this is exactly the place he
> should ask. The problem isn't that IE doesn't support sftp but we are
> looking for something on Gentoo that IE supports (possibly ftps or
> similar).
>
> I haven't heard about anything like that, but on the other side I was
> never looking for it :)
>
Well, if FTPS is supported by MS-IE, then there is a solution in the
portage. It is called *vsftpd*
====
USE="ssl" emerge net-ftp/vsftpd
====
--
Best regards,
Daniel
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 13:19 ` Daniel Iliev
@ 2006-07-13 21:33 ` Ow Mun Heng
2006-07-13 22:16 ` Ow Mun Heng
0 siblings, 1 reply; 14+ messages in thread
From: Ow Mun Heng @ 2006-07-13 21:33 UTC (permalink / raw
To: gentoo-user
On Thu, 2006-07-13 at 16:19 +0300, Daniel Iliev wrote:
> Janusz Bossy wrote:
> > This is no Internet Explorer thing and this is exactly the place he
> > should ask. The problem isn't that IE doesn't support sftp but we are
> > looking for something on Gentoo that IE supports (possibly ftps or
> > similar).
Exactly
>
> Well, if FTPS is supported by MS-IE, then there is a solution in the
> portage. It is called *vsftpd*
>
> ====
> USE="ssl" emerge net-ftp/vsftpd
> ====
I do have vsftpd installed and it's what I'm using as the ftp server on
a Gentoo Box.
I'll go dig and see how to set it up.
Thanks
--
Ow Mun Heng <Ow.Mun.Heng@wdc.com>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 21:33 ` Ow Mun Heng
@ 2006-07-13 22:16 ` Ow Mun Heng
0 siblings, 0 replies; 14+ messages in thread
From: Ow Mun Heng @ 2006-07-13 22:16 UTC (permalink / raw
To: gentoo-user
On Thu, 2006-07-13 at 14:33 -0700, Ow Mun Heng wrote:
> I do have vsftpd installed and it's what I'm using as the ftp server on
> a Gentoo Box.
> I'll go dig and see how to set it up.
>
Found it on the wiki. Now, After it's set up, how do I test it? I don't
see any additional ports being opened for SSL. (like in apache)
I'm not too sure if there is / should be a difference.
I tried using lftp (which supports ftps) and traced the connection using
tcpdump/ethereal.
Nothing happens, looking at the dumps, I see reset packets being sent
back to the server and lftp keeps telling me [Delaying Xsecs before
reconnect]
--
Ow Mun Heng <Ow.Mun.Heng@wdc.com>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 5:50 [gentoo-user] FTPs - Is there such a thing? Ow Mun Heng
2006-07-13 5:58 ` Donnie Berkholz
@ 2006-07-13 6:14 ` Alexander Skwar
2006-07-13 21:29 ` Ow Mun Heng
[not found] ` <3551272.1152770373655.JavaMail.root@sniper25>
2 siblings, 1 reply; 14+ messages in thread
From: Alexander Skwar @ 2006-07-13 6:14 UTC (permalink / raw
To: gentoo-user
Ow Mun Heng schrieb:
> What I meant is "secure" ftp.
> sort of like httpS as an alternative to http.
>
> short of wrapping/tunneling ftp traffic through SSH. (That's simple)
What do you mean? FTP through SSH? Or like the https? Those
are two very different approachs!
The first is called sftp, SSH File Transfer Protocol or Secure File
Transfer Protocol, which are different protocols.
The latter is called ftps, FTP over SSL.
Alexander Skwar
--
It's is not, it isn't ain't, and it's it's, not its, if you mean it
is. If you don't, it's its. Then too, it's hers. It isn't her's. It
isn't our's either. It's ours, and likewise yours and theirs.
-- Oxford University Press, Edpress News
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 6:14 ` Alexander Skwar
@ 2006-07-13 21:29 ` Ow Mun Heng
2006-07-14 6:06 ` Alexander Skwar
0 siblings, 1 reply; 14+ messages in thread
From: Ow Mun Heng @ 2006-07-13 21:29 UTC (permalink / raw
To: gentoo-user
On Thu, 2006-07-13 at 08:14 +0200, Alexander Skwar wrote:
> Ow Mun Heng schrieb:
> > What I meant is "secure" ftp.
> > sort of like httpS as an alternative to http.
> >
> > short of wrapping/tunneling ftp traffic through SSH. (That's simple)
>
> What do you mean? FTP through SSH? Or like the https? Those
> are two very different approachs!
>
> The first is called sftp, SSH File Transfer Protocol or Secure File
> Transfer Protocol, which are different protocols.
> The latter is called ftps, FTP over SSL.
Yes. I want FTP over SSl or FTPs. If there exists such a protocol.
>
> Alexander Skwar
> --
> It's is not, it isn't ain't, and it's it's, not its, if you mean it
> is. If you don't, it's its. Then too, it's hers. It isn't her's. It
> isn't our's either. It's ours, and likewise yours and theirs.
> -- Oxford University Press, Edpress News
--
Ow Mun Heng <Ow.Mun.Heng@wdc.com>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 21:29 ` Ow Mun Heng
@ 2006-07-14 6:06 ` Alexander Skwar
0 siblings, 0 replies; 14+ messages in thread
From: Alexander Skwar @ 2006-07-14 6:06 UTC (permalink / raw
To: gentoo-user
Ow Mun Heng schrieb:
> On Thu, 2006-07-13 at 08:14 +0200, Alexander Skwar wrote:
>> The first is called sftp, SSH File Transfer Protocol or Secure File
>> Transfer Protocol, which are different protocols.
>> The latter is called ftps, FTP over SSL.
>
> Yes. I want FTP over SSl or FTPs.
Okay.
> If there exists such a protocol.
It exists. My fav. FTP Daemon, proftpd, also supports this. Just
read the documentation.
Alexander Skwar
--
Mike: "The Fourth Dimension is a shambles?"
Bernie: "Nobody ever empties the ashtrays. People are SO inconsiderate."
-- Gary Trudeau, "Doonesbury"
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
[parent not found: <3551272.1152770373655.JavaMail.root@sniper25>]
* Re: [gentoo-user] FTPs - Is there such a thing?
[not found] ` <3551272.1152770373655.JavaMail.root@sniper25>
@ 2006-07-13 6:26 ` Justin Krejci
2006-07-13 6:26 ` Justin Krejci
0 siblings, 1 reply; 14+ messages in thread
From: Justin Krejci @ 2006-07-13 6:26 UTC (permalink / raw
To: gentoo-user; +Cc: Donnie Berkholz, gentoo-user
On Thursday 13 July 2006 12:58 am, Donnie Berkholz wrote:
> Ow Mun Heng wrote:
> > What I meant is "secure" ftp.
> > sort of like httpS as an alternative to http.
> >
> > short of wrapping/tunneling ftp traffic through SSH. (That's simple)
>
> It's called sftp, and openssh does it with this in /etc/ssh/sshd_config:
>
> # override default of no subsystems
> Subsystem sftp /usr/lib/misc/sftp-server
>
> Most SSH clients will do it, FTP clients may not.
>
there is scp (part of openssh) and also sshfs which allows you to mount an
sftp connection as a local directory.
If you don't want to mess with ssh (why? it is really easy stuff) read this
http://www.ford-hutchinson.com/~fh-1-pfh/ftps-ext.html
With this ftps I am not sure if just logins are encrypted or if data tranfers
are encrypted as well.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [gentoo-user] FTPs - Is there such a thing?
2006-07-13 6:26 ` Justin Krejci
@ 2006-07-13 6:26 ` Justin Krejci
0 siblings, 0 replies; 14+ messages in thread
From: Justin Krejci @ 2006-07-13 6:26 UTC (permalink / raw
To: gentoo-user; +Cc: Donnie Berkholz, gentoo-user
On Thursday 13 July 2006 12:58 am, Donnie Berkholz wrote:
> Ow Mun Heng wrote:
> > What I meant is "secure" ftp.
> > sort of like httpS as an alternative to http.
> >
> > short of wrapping/tunneling ftp traffic through SSH. (That's simple)
>
> It's called sftp, and openssh does it with this in /etc/ssh/sshd_config:
>
> # override default of no subsystems
> Subsystem sftp /usr/lib/misc/sftp-server
>
> Most SSH clients will do it, FTP clients may not.
>
there is scp (part of openssh) and also sshfs which allows you to mount an
sftp connection as a local directory.
If you don't want to mess with ssh (why? it is really easy stuff) read this
http://www.ford-hutchinson.com/~fh-1-pfh/ftps-ext.html
With this ftps I am not sure if just logins are encrypted or if data tranfers
are encrypted as well.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2006-07-14 6:17 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-13 5:50 [gentoo-user] FTPs - Is there such a thing? Ow Mun Heng
2006-07-13 5:58 ` Donnie Berkholz
2006-07-13 6:31 ` Ow Mun Heng
[not found] ` <9514579.1152772754066.JavaMail.root@sniper30>
2006-07-13 12:25 ` Justin Krejci
2006-07-13 12:40 ` Catalin Grigoroscuta
2006-07-13 12:48 ` Janusz Bossy
2006-07-13 13:19 ` Daniel Iliev
2006-07-13 21:33 ` Ow Mun Heng
2006-07-13 22:16 ` Ow Mun Heng
2006-07-13 6:14 ` Alexander Skwar
2006-07-13 21:29 ` Ow Mun Heng
2006-07-14 6:06 ` Alexander Skwar
[not found] ` <3551272.1152770373655.JavaMail.root@sniper25>
2006-07-13 6:26 ` Justin Krejci
2006-07-13 6:26 ` Justin Krejci
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox