Ask a Question related to Mac Applications & Software, Design and Development.

  1. #1

    Default ftp server problems

    Hi,

    I'm trying to set up a server on my G4, OS X 10.2.6 and I'm having
    trouble doing so... :-(

    I'm using CrushFtp and sitting in a small network with a D-link router
    connecting us. So, I have problem when trying to connect to my server.
    If I look in CrushFtp everything seems ok and it says someone is
    connected, and I get a welcome message when using fetch:

    220-Welcome to CrushFTP!
    220 CrushFTP Server Ready.

    230-Valkommen till Per Kareheds ftp-server! (welcome to...)
    230 Password OK. Connected.

    But still, i don't get a listing of files in fetch and sometimes (not
    always) after a while Fetch says something like "are you behind a
    firewall bla bla bla.. use passive mode"

    I've opened port 21 in my firewall and tried connecting with both
    passive mode and non-passive. Also tried opening port 20, but with
    same result.

    If anybody has had the same problem and know what to do about it I
    would really be grateful for help.

    Thanks!
    Per Kårehed Guest

  2. Similar Questions and Discussions

    1. MX 7 Search Server Problems
      Is there some bug with the verity merge utility and MX 7 Search Server? We recently upgraded to MX 7 and ever since then the Search Server has...
    2. Problems! WinNT Client -> WinXP Web Server -> Win2000 File Server
      Hi everyone, I have an WinXP Server and an ASP.NET application that access files in a third machine, Win2000 Server. I am using Windows...
    3. problems on server
      hi I´ve a extern linked w3d file with an animation. i pause the animation on prepareMovie and control it with script at runtime. in Addition I´ve...
    4. SQL Server SP3 problems
      Hi Which version of SQL Server are you trying to update? Only apply the files needed. a.. Sql2ksp3.exe. Updates for database components. b.....
    5. Real problems in compiling Apache Web Server with Open Server 5.0.6
      Since a few days i've trialed to compile the Apache Web-Server 1.3.27 with SCO Open Server 5.0.6. Unfortunately with almost no success. 1.) I...
  3. #2

    Default Re: ftp server problems

    >But still, i don't get a listing of files in fetch and sometimes (not
    >always) after a while Fetch says something like "are you behind a
    >firewall bla bla bla.. use passive mode"
    You need to open SEVERAL ports on an FTP server. Generally speaking, on the
    server side, ports 20 and 21 and all ports greater than 1024 should be opened.

    See:

    [url]http://slacksite.com/other/ftp.html[/url]

    --
    Rude T-shirts for a rude age: [url]http://www.villaintees.com[/url]
    Art, literature, shareware, polyamory, kink, and more:
    [url]http://www.xeromag.com/franklin.html[/url]

    Tacit Guest

  4. #3

    Default FTP server problems

    I'm trying to set up a FTP server using vsftpd. Everything works fine as long as I connect via localhost, but external hosts can't seem to connect to my server. Connecting using the internal IP (192.168.0.3) from another system connected to the same router works.

    My router (NETGEAR DG834) is set up to forward ports 20 and 21, plus 3000-3050 for PASV. My vsftpd.conf looks as follows:


    listen=YES

    anonymous_enable=NO
    dirmessage_enable=YES

    connect_from_port_20=YES

    nopriv_user=vsftpnpu

    local_enable=YES
    userlist_enable=YES
    userlist_deny=NO
    userlist_file=/root/vsftpd.user_list
    chroot_local_user=YES

    pasv_min_port=3000
    pasv_max_port=3050

    xferlog_enable=YES
    log_ftp_protocol=YES


    Any ideas?

    Ulf Magnusson Guest

  5. #4

    Default Re: FTP server problems

    On Wed, 23 Feb 2005 22:35:25 +0100
    Ulf Magnusson <ulfma629@student.liu.se> wrote:
    > I'm trying to set up a FTP server using vsftpd. Everything works fine
    > as long as I connect via localhost, but external hosts can't seem to
    > connect to my server. Connecting using the internal IP (192.168.0.3)
    > from another system connected to the same router works.
    >
    > My router (NETGEAR DG834) is set up to forward ports 20 and 21, plus
    > 3000-3050 for PASV. My vsftpd.conf looks as follows:
    >
    my vsftpd-setup works fine, see below the differences in the
    config-file, (and are you running ipfw or pf or ipfilter on the
    ftp-server itself ?), HTH
    >
    > listen=YES
    >
    listen=YES
    listen_address=192.168.2.16
    > pasv_min_port=3000
    > pasv_max_port=3050
    pasv_enable=YES
    pasv_min_port=49152
    pasv_max_port=65534
    pasv_address=192.168.2.16
    pasv_promiscuous=YES

    albi@scii.nl 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