Ask a Question related to PERL Miscellaneous, Design and Development.

  1. #1

    Default Re: How to do SSL FTP?

    Brian wrote:
    > I am able to use Net::FTP fine. I have new requirements to create
    > secure FTP using SSL. SSH or SCP is not suitable due to FTP server.
    > How do I create SSL FTP?
    >
    > Thanks.
    >
    Net::SFTP

    J. Gleixner Guest

  2. #2

    Default Re: How to do SSL FTP?

    "J. Gleixner" wrote:
    >
    > Brian wrote:
    > > I am able to use Net::FTP fine. I have new requirements to create
    > > secure FTP using SSL. SSH or SCP is not suitable due to FTP server.
    > > How do I create SSL FTP?
    > >
    > > Thanks.
    > >
    > Net::SFTP
    Really?

    Ref: [url]http://search.cpan.org/author/BTROTT/Net-SFTP-0.05/lib/Net/SFTP.pm[/url]

    Net::SFTP is a pure-Perl implementation of the Secure File Transfer Protocol (SFTP)--file transfer built on top of the SSH protocol.
    Net::SFTP uses Net::SSH::Perl to build a secure, encrypted tunnel through which files can be transferred and managed.
    Cat Guest

  3. #3

    Default Re: How to do SSL FTP?

    > How do I create SSL FTP?
    Good question.
    I recommend that you try using the ftp 'passive' mode.
    This was designed to give ftp a modicum of security.



    "J. Gleixner" <glex_nospam@qwest.net> wrote in message
    news:m5%Oa.48$z21.53776@news.uswest.net...
    > Brian wrote:
    > > I am able to use Net::FTP fine. I have new requirements to create
    > > secure FTP using SSL. SSH or SCP is not suitable due to FTP server.
    > > How do I create SSL FTP?
    > >
    > > Thanks.
    > >
    > Net::SFTP
    >

    Michael Pompey Guest

  4. #4

    Default Re: How to do SSL FTP?

    I don't think Net::SFTP uses SSL. I think Net::SFTP is based on SSH,
    which, unfortunately, my requirements do not allow me to use.

    Any other suggestions?

    "J. Gleixner" wrote:
    > Brian wrote:
    > > I am able to use Net::FTP fine. I have new requirements to create
    > > secure FTP using SSL. SSH or SCP is not suitable due to FTP server.
    > > How do I create SSL FTP?
    > >
    > > Thanks.
    > >
    > Net::SFTP
    Brian Guest

  5. #5

    Default Re: How to do SSL FTP?

    Brian wrote:
    > I don't think Net::SFTP uses SSL. I think Net::SFTP is based on SSH,
    > which, unfortunately, my requirements do not allow me to use.
    Right, I thought the ultimate goal was to use a secure/encrypted FTP
    because you can't use scp. Sorry.

    J. Gleixner Guest

  6. #6

    Default Re: How to do SSL FTP?

    Brian wrote:
    >
    > I don't think Net::SFTP uses SSL. I think Net::SFTP is based on SSH,
    > which, unfortunately, my requirements do not allow me to use.
    >
    > Any other suggestions?
    >
    > "J. Gleixner" wrote:

    Mmmm, there's a few of us out here that would like to do ftp over ssl using
    perl, including myself.

    Off topic: you can google for sslftp for some stuff... good luck
    Cat Guest

  7. #7

    Default How to do SSL FTP?

    Quote Originally Posted by Brian View Post
    I don't think Net::SFTP uses SSL. I think Net::SFTP is based on SSH,
    which, unfortunately, my requirements do not allow me to use.

    Any other suggestions?
    Use Net::FTPSSL, which implements the FTP protocol with encryption (aka FTPS), not file transfers over the SSH protocol (SFTP).

    Deven
    Deven Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139