- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- FTP Server
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2003 08:53 PM
11-15-2003 08:53 PM
To this date my (own, personal) FTP server (FTP DAEMON) was running from a windows 98, running behind a linux proxy.
I'm not some kind of a computer hotshot, but I do excellent user manual reading. still, I noticed some unauthorized access to my FTP. I don't carry anything worth protecting (Music, Graphics, ASP code script drafts for my site so my budds can help me ) , but I would like to get those occurances to a minimum anyway.
I figured I'd use the Linux proxy I have as my FTP server. Which program should I use? What precautions should I take?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2003 09:14 PM
11-15-2003 09:14 PM
SolutionAnyway You can install the wu-ftpd but since FTP is not secured (yes you can secure it) unauthorized access still can be found.
to install it - locate the RPMS folder on one of your installation CDs.
Then rpm -Uvh /path/filename
I suggest you to start use the sftp which comes as part of open-sll.
From linux station it's use very simple:
sftp ip_address
and on microsoft machine you need to install third party utility-download it from here:
http://www.softpedia.com/public/cat/10/2/10-2-35.shtml
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2003 09:45 PM
11-15-2003 09:45 PM
Re: FTP Server
Maybe could you explain who you explicitely want to allow and who to deny (not quoting any real IP if you prefer), along with your Linux version, we'll advise you more precisely.
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2003 11:01 PM
11-15-2003 11:01 PM
Re: FTP Server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2003 12:11 AM
11-16-2003 12:11 AM
Re: FTP Server
RH 7 uses wu-ftpd, version which is considered as weak. I suggest you turn to proftpd a far more secure and easy to set up server.
Get it from here :
http://proftpd.linux.co.uk/
As you are good doc reader, here is what you need to do :
1. Set up a public directory, everybody (anonymous) being able to read from ther, nobody writes (this is important, if you don't want this directory to become a big kazaa deposit in a few days !)
2. Set up another directory, which access is reserved to authorized people, with login and password. In there, have one dir in which people can read, not write. Then set upa nother sub-directory where people can write and execute, not read. So they will be able to upload to your server (being authenticated), but not see what's inside, you'll decide what to keep and to remove.
The main issue for you is authentication : read :
http://proftpd.linux.co.uk/docs/faq/linked/faq-ch7.html
Then basic set up :
http://proftpd.linux.co.uk/docs/example-conf.html
You'll get examples here.
Don't hesitate to posts questions anyway if some things are not clear, seting up and ftp server for the first time is not really easy.
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2003 02:05 AM
11-16-2003 02:05 AM
Re: FTP Server
The fastest way to secure wu-ftpd is to install and run Bastille, which helps you do it by answering a series of questions. I've found its easier to secure wu-ftpd than to learn a new server and replace it.
http://www.bastillelinux.org
If you are controlling who accesses the server, then you can think about not using ftp at all. ftp does clear text authentication. openssh http://www.openssh.org uses encrypted authentication.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2003 02:26 AM
11-16-2003 02:26 AM
Re: FTP Server
setup an anonymous account for access to the
image directory and one or more personal accounts for access to the ASP stuff.
Now, given your description it seems you really only want to give read access to your data. In that case my suggestion is to setup a webserver. Secure the area with the ASP stuff and disable scripting on the server. The advantage of this is that by default a webserver only allows read access to your system while a FTP server allows read and write (and will be used that way if you do not secure it otherwise...)