Author Topic: How to host FTP server?  (Read 393 times)

Offline Animal

  • Parolee
  • Platinum Member
  • ******
  • Posts: 5027
How to host FTP server?
« on: March 14, 2002, 12:36:16 AM »
I wanted to make an FTP server so a friend can download a few files, but I have no idea how.
I tried a few software, Serv-U and WS-FTP Server, but I have no idea what to do with them.

I am on DSL, and my IP address is dynamic, it changes daily. I usually check it by going to http://www.whatsmyipaddress.com

Offline Staga

  • Parolee
  • Platinum Member
  • ******
  • Posts: 5334
      • http://www.nohomersclub.com/
How to host FTP server?
« Reply #1 on: March 14, 2002, 03:52:07 AM »
RTFM

Offline Staga

  • Parolee
  • Platinum Member
  • ******
  • Posts: 5334
      • http://www.nohomersclub.com/
How to host FTP server?
« Reply #2 on: March 14, 2002, 04:02:02 AM »
Try Savant web-server; It's easy to set up even if you don't know how to read manuals.
Because firewall at my work refuses to connect to FTP sites I'm using it to transfer files from my home computer to my work.
For checking IP-number I use java applet in http://www.dslreports.com/whois or I set up a telnet connection to my ISP's mailserver.

Offline Lephturn

  • Silver Member
  • ****
  • Posts: 1200
      • http://lephturn.webhop.net
How to host FTP server?
« Reply #3 on: March 14, 2002, 07:55:47 AM »
You may be able to host FTP if you use a service like http://www.dyndns.org to map a DNS host name to your dynamic IP address.  Check it out... dyndns is free.  I use it for a static one for my own use.

They also have a cool web redirect.  That's how I get my personal web space at my ISP to work from this:  http://lephturn.webhop.net

Offline Animal

  • Parolee
  • Platinum Member
  • ******
  • Posts: 5027
How to host FTP server?
« Reply #4 on: March 14, 2002, 03:28:34 PM »
Quote
Originally posted by Staga
RTFM


Nigga please. The manuals in these programs are all but useless. They assume everyone is on a dial up connection, or on a DSL or cable with static IP and no firewall.

Anyways I'm gonna try that Leph, thanks.

Offline Skuzzy

  • Support Member
  • Administrator
  • *****
  • Posts: 31462
      • HiTech Creations Home Page
How to host FTP server?
« Reply #5 on: March 14, 2002, 03:51:21 PM »
Hey Animal,..if you have an old computer laying around, you could just slap Linux on it for a FTP server.  Easy to do as it is already setup for that when you install the OS.

Just a suggestion.
Roy "Skuzzy" Neese
support@hitechcreations.com

Offline Staga

  • Parolee
  • Platinum Member
  • ******
  • Posts: 5334
      • http://www.nohomersclub.com/
How to host FTP server?
« Reply #6 on: March 14, 2002, 05:14:09 PM »
:D

Offline Animal

  • Parolee
  • Platinum Member
  • ******
  • Posts: 5027
How to host FTP server?
« Reply #7 on: March 15, 2002, 11:31:53 AM »
Quote
Originally posted by Skuzzy
Hey Animal,..if you have an old computer laying around, you could just slap Linux on it for a FTP server.  Easy to do as it is already setup for that when you install the OS.

Just a suggestion.



Ahaa.. now I know!
The AH servers are running on an old Cyrix 233Mhz and 32mb EDO RAM!!!


;)

Thanks for the suggestion Skuzz, but I'd rather do that with my personal computer, since I barely use it and its always on running Cancer or Seti, I might as well let people access some files.

Offline Sancho

  • Silver Member
  • ****
  • Posts: 1043
      • http://www.56thfightergroup.com
How to host FTP server?
« Reply #8 on: March 20, 2002, 10:16:31 AM »
it's pretty easy to add an ftp server in win2k professional.  go to add remove programs control panel.  click on "add/remove windows components".  in the list that comes up, choose IIS "internet information service".

after it installs, right click on my computer, select manage.  under "services and applications", click on services.  you'll should see "FTP Publishing Service" listed.  Start it up if necessary with the "play" button.  IIS also installs a webserver and smtp server, so you probably want to stop those services and prevent their starting automatically when the pc boots up by going into properties and changing their startup type to "disabled."  also, you probably want to firewall the box and only allow access to your friend's IP.

Then in the same window, on the left side, expand "internet information services".  you'll see "default ftp site".  right click on it, and select properties.  in the window that comes up, you can tweak the ftp server settings if necessary.  don't set the root directory to anything like C:\ unless you want the world to be able to see your whole hard drive--the default location should be somewhere isolated like c:\inetpub\ftproot.  you'll have to add a user to your computer for your friend (using users control panel) which he will use to log in to the ftp service.

dunno about xp if you're using that, but it's probably very similar.

Personally, I never use FTP to transfer files since it transmits usernames and passwords in plain text.  Using SSH service under cygwin allows for encrypted logins and file transfers, but it is far more complex to set up and use.