<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; ftp server</title>
	<atom:link href="http://www.ghacks.net/tag/ftp-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 20:14:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add ftp service to your Ubuntu Server</title>
		<link>http://www.ghacks.net/2009/09/06/add-ftp-service-to-your-ubuntu-server/</link>
		<comments>http://www.ghacks.net/2009/09/06/add-ftp-service-to-your-ubuntu-server/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 22:51:55 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anonymous ftp]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[ubuntu server]]></category>
		<category><![CDATA[vsftpd]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=16052</guid>
		<description><![CDATA[So you now have your Ubuntu Server up and running with the help of &#8220;Installing Ubuntu Server 9.04&#8221; and you now have Samba working with the help of &#8220;Set up your new Ubuntu Server as a Samba Server&#8220;. Now it&#8217;s time to add ftp to the mix. Of course many people are of the mind [...]]]></description>
			<content:encoded><![CDATA[<p>So you now have your Ubuntu Server up and running with the help of &#8220;<a title="Installing Ubuntu Server 9.04" href="http://www.ghacks.net/2009/09/03/installing-ubuntu-server-9-04/" target="_blank">Installing Ubuntu Server 9.04</a>&#8221; and you now have Samba working with the help of &#8220;<a title="Samba" href="http://www.ghacks.net/2009/09/04/set-up-your-new-ubuntu-server-as-a-samba-server/" target="_blank">Set up your new Ubuntu Server as a Samba Server</a>&#8220;. Now it&#8217;s time to add ftp to the mix. Of course many people are of the mind set that FTP servers are slowly becoming a thing of the past. I would disagree because of the low cost of hardware, ease of set up, and ease of use. You can&#8217;t beat an FTP server up on your network as a central file repository.</p>
<p>Now that you already have your Ubuntu Server up and running, adding FTP is actually quite easy. There are numerous FTP servers available, but the one I tend to prefer is vsftpd. Not only is it more secure than many other FTP servers, it&#8217;s easy to install and configure, even for anonymous use.</p>
<p>In this article you will see how to get vsftpd installed and configured for both user login and anonymous use.</p>
<p><span id="more-16052"></span></p>
<p><strong>Installing vsftpd</strong></p>
<p>Since the installation for the base server is a GUI-less Ubuntu 9.04, the entire installation and configuration will be done from the command line. Log into your server and then issue the following command:</p>
<p><em>sudo apt-get install vsftpd</em></p>
<p>The above command will install everything needed for your FTP server. What you will find is your configuration file located in the <strong>/etc</strong> directory and the executable located in <strong>/etc/init.d/</strong>. By default vsftpd is installed to allow ONLY anonymous download. The default location for anonymous files is in <strong>/home/ftp</strong>. So by default all you need to do is place files you want to be accessible anonymously in <strong>/home/ftp</strong>, start the vsftp daemon with the command:</p>
<p><em>sudo /etc/init.d/vsftpd start</em></p>
<p>And you can immediately connect anonymously. Any file located within <strong>/home/ftp</strong> will be available to anonymous users. That&#8217;s not a bad setup for an internal LAN. But if you need to control what people use/see, or if you do not want to allow anonymous access, you will have to take care of a little configuration.</p>
<p><strong>Configuring user-authenticated login</strong></p>
<p>Let&#8217;s say you have four users on your system that need access to their own individual accounts. For this you will need to enable user-authenticated login. This is done within the <strong>/etc/vsftpd.conf</strong> file. Open up this file and scroll down to around line 26. Here you will see the entry:</p>
<p><em>#local_enable=YES</em></p>
<p>Notice the &#8220;#&#8221; symbol at the beginning of the line? This means that line is commented out. Remove the &#8220;#&#8221; symbol, save the file, restart vsftpd, and now anyone with an account on your ftp server can log in with their username and password.</p>
<p>But what if the users need to upload as well as download? Simple. Below the <em>local_enable</em> line you will see the line:</p>
<p><em>#write_enable=YES</em></p>
<p>Uncomment out that line and restart vsftpd to enable write access for your users. Remember, you have to restart vsftpd any time you make a change to the configuration file. You can also disable anonymous access by commenting out the line:</p>
<p><em>anonymous_enable=YES</em></p>
<p>This can be handy for departments as well. Say you have an editorial department, a graphics department, and an accounting department. You will have to have those accounts added to the system. You can add those accounts (and their home directories) with these commands:</p>
<p>sudo useradd -m ACCOUNT_NAME</p>
<p>sudo passwd ACCOUNT_NAME</p>
<p>Where ACCOUNT_NAME is the name of the user account to create. The above commands will create the user, the users&#8217; home directory, and give the user a password.</p>
<p>Once these accounts have been created you can log into the FTP server with the username and password.</p>
<p><strong>Final thoughts</strong></p>
<p>Setting up an FTP server couldn&#8217;t be any easier. With the Ubuntu Server already up and running, you can have anonymous ftp set up in about a minute.</p>

	Tags: <a href="http://www.ghacks.net/tag/anonymous-ftp/" title="anonymous ftp" rel="tag">anonymous ftp</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/ubuntu-server/" title="ubuntu server" rel="tag">ubuntu server</a>, <a href="http://www.ghacks.net/tag/vsftpd/" title="vsftpd" rel="tag">vsftpd</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/use-this-iptables-script-for-webmail-server-security/" title="Use this iptables script for Web/Mail server security (October 3, 2009)">Use this iptables script for Web/Mail server security</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/08/08/two-free-file-hosts-with-ftp-access/" title="Two Free File Hosts With FTP Access (August 8, 2009)">Two Free File Hosts With FTP Access</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/04/23/set-up-a-reliable-ftp-server-with-proftpd/" title="Set up a reliable ftp server with proftpd (April 23, 2009)">Set up a reliable ftp server with proftpd</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/03/23/secure-ftp-client-online/" title="Secure FTP Client Online (March 23, 2009)">Secure FTP Client Online</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/09/06/add-ftp-service-to-your-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Two Free File Hosts With FTP Access</title>
		<link>http://www.ghacks.net/2009/08/08/two-free-file-hosts-with-ftp-access/</link>
		<comments>http://www.ghacks.net/2009/08/08/two-free-file-hosts-with-ftp-access/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 13:05:27 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[easy share]]></category>
		<category><![CDATA[file host]]></category>
		<category><![CDATA[file hosts]]></category>
		<category><![CDATA[ftp access]]></category>
		<category><![CDATA[ftp host]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[ftp upload]]></category>
		<category><![CDATA[kiloupload]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15152</guid>
		<description><![CDATA[Not a lot of file hosts are offering ftp access as an alternative method of uploading files to their servers. Even less if you remove the file hosts that offer that feature to premium users only. The following two file hosts offer free of charge ftp access to their users. Uploading data to a ftp [...]]]></description>
			<content:encoded><![CDATA[<p>Not a lot of file hosts are offering ftp access as an alternative method of uploading files to their servers. Even less if you remove the file hosts that offer that feature to premium users only. The following two file hosts offer free of charge ftp access to their users. Uploading data to a ftp server has several advantages over uploading it in a web browser. Some noteworthy ones are that it is usually easier to upload multiple files to an ftp server, that many support the resume command which will continue the upload where it left of if the connection gets interrupted and that some even support ftp to ftp uploads which can increase the upload speed by a factor of ten or more.</p>
<p><span id="more-15152"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/08/easy_share.jpg" alt="easy share" title="easy share" width="312" height="80" class="alignnone size-full wp-image-15153" /></p>
<p>Easy Share is one of the few file hosts that offer ftp access. Users need to create a free account at the file host as the username and password of that account are also used as the username and password of the ftp connection. All they need to do after account creation is to point their ftp client to upload.easy-share.com and upload the files from that client. The ftp server supports resume. Users need to open the Easy Share website before 24 hours have passed to accept the ftp uploads in their account profile. </p>
<p>The file host supports remote uploads as well. This means that users can paste urls that point to files in the Easy Share upload script. The file host will then try to establish a connection to those servers and download the files from there. The maximum file size is set to 200 Megabytes currently.</p>
<p><a href="http://www.easy-share.com/">Easy Share</a></p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/08/kiloupload-499x94.jpg" alt="kiloupload" title="kiloupload" width="499" height="94" class="alignnone size-medium wp-image-15154" /></p>
<p>Kiloupload is different from Easy Share as it does not offer free space on its own servers. It distributes uploaded files to various other free file hosts including <a href="http://www.ghacks.net/2008/01/04/5-rapidshare-search-engines/">Rapidshare</a>, File Factory or MegaUpload. The service can be used from its web interface or by pointing a ftp client to ftp.kiloupload.com. Users need to create an account by providing an email address and password. The email address is the username for the ftp server and will also be used to inform the user once the files have been uploaded to the other file hosts.</p>
<p>The advantage of Kiloupload over Easy Share is that it is possible to upload files to multiple file hosts at once-</p>
<p><a href="http://www.kiloupload.com/">Kiloupload</a></p>
<p>Do you know of other file hosts that support free ftp access? Let us know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/easy-share/" title="easy share" rel="tag">easy share</a>, <a href="http://www.ghacks.net/tag/file-host/" title="file host" rel="tag">file host</a>, <a href="http://www.ghacks.net/tag/file-hosts/" title="file hosts" rel="tag">file hosts</a>, <a href="http://www.ghacks.net/tag/ftp-access/" title="ftp access" rel="tag">ftp access</a>, <a href="http://www.ghacks.net/tag/ftp-host/" title="ftp host" rel="tag">ftp host</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/ftp-upload/" title="ftp upload" rel="tag">ftp upload</a>, <a href="http://www.ghacks.net/tag/kiloupload/" title="kiloupload" rel="tag">kiloupload</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/26/gazup-multiple-file-hosts-uploader/" title="Gazup Multiple File Hosts Uploader (February 26, 2009)">Gazup Multiple File Hosts Uploader</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/08/30/what-is-the-best-way-to-share-large-files/" title="What is the best way to share large files (August 30, 2007)">What is the best way to share large files</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/08/05/upload-files-to-multiple-file-hosts/" title="Upload Files To Multiple File Hosts (August 5, 2008)">Upload Files To Multiple File Hosts</a> (12)</li>
	<li><a href="http://www.ghacks.net/2009/11/23/upload-files-to-multiple-file-hosting-services-with-load2all/" title="Upload Files To Multiple File Hosting Services With Load2All (November 23, 2009)">Upload Files To Multiple File Hosting Services With Load2All</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/05/19/tinyload-upload-to-multiple-sites-at-once/" title="Tinyload Upload to Multiple Sites at Once (May 19, 2008)">Tinyload Upload to Multiple Sites at Once</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/08/two-free-file-hosts-with-ftp-access/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Home FTP Server</title>
		<link>http://www.ghacks.net/2009/03/26/home-ftp-server/</link>
		<comments>http://www.ghacks.net/2009/03/26/home-ftp-server/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 09:54:27 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[ftp server setup]]></category>
		<category><![CDATA[home ftp]]></category>
		<category><![CDATA[home ftp server]]></category>
		<category><![CDATA[secure ftp]]></category>
		<category><![CDATA[server software]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/03/26/home-ftp-server/</guid>
		<description><![CDATA[FTP is one of those protocols that is largely ignored by the majority of today&#8217;s Internet users. Back in the early days of the Internet it was common to download drivers, patches and all sorts of files from ftp servers directly. Home FTP Server is a lightweight application for the Windows operating system that installs [...]]]></description>
			<content:encoded><![CDATA[<p>FTP is one of those protocols that is largely ignored by the majority of today&#8217;s Internet users. Back in the early days of the Internet it was common to download drivers, patches and all sorts of files from ftp servers directly. Home FTP Server is a lightweight application for the Windows operating system that installs a ftp server on the computer system. The question for some readers might be about the use of a ftp server: You can use it to easily share files with friends in a private environment as it can be configured to only allow specific users to access the files on the computer system. </p>
<p>Home FTP Server is just one of many ftp server applications (read <a href="http://www.ghacks.net/2008/10/04/ftp-server-setup/">FTP Server Setup</a>). It does come with a full set of features but it takes only a few clicks to have a basic ftp server up and running. The ftp server program uses a tabbed interface at the bottom for configuration and monitoring of the ftp server. The most important tab setup wise is the FTP Server tab which offers possibilities to add user accounts, specify directories, change settings of the ftp server and activate it in the end.</p>
<p>There are basically two ways users can connect to a ftp server by default. The first is an anonymous connection. This can be used by anyone and security minded administrators should disable that feature. The accessible directories and file rights can be defined for anonymous users in the settings. More important than anonymous users are member accounts. Each member account can be added for a single user or group of users who all share the same starting directory, access rights and restrictions on the ftp server.</p>
<p><span id="more-11476"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/home_ftp_server-500x266.jpg" alt="home ftp server" title="home ftp server" width="500" height="266" class="alignnone size-medium wp-image-11475" /></p>
<p>It is for example possible to only allow the users to download files from the ftp server. The most secure setting is to create one user account for every user that should be able to connect to the ftp server. This can be problematic if you want to install an ftp server for dozens of users.</p>
<p>The settings manage every aspect of the ftp server from server and data port to Open SSL support, domain aliases and a web interface. The options of the Home Ftp Server application are quite extensive. Users can be banned from accessing the ftp server and the tool provides the ftp server administrator with the means to monitor files and users easily.</p>
<p>Home FTP Server is an easy to install and administrate ftp server for private usage. The administrative interface is a bit dusty but that&#8217;s not as important as the amount of options and settings available to the user. The ftp server <a href="http://downstairs.dnsalias.net/homeftpserver.html">application</a> has a size of only 1 Megabyte and uses another two of computer memory while running minimized in the Windows System Tray.</p>

	Tags: <a href="http://www.ghacks.net/tag/ftp/" title="ftp" rel="tag">ftp</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/ftp-server-setup/" title="ftp server setup" rel="tag">ftp server setup</a>, <a href="http://www.ghacks.net/tag/home-ftp/" title="home ftp" rel="tag">home ftp</a>, <a href="http://www.ghacks.net/tag/home-ftp-server/" title="home ftp server" rel="tag">home ftp server</a>, <a href="http://www.ghacks.net/tag/secure-ftp/" title="secure ftp" rel="tag">secure ftp</a>, <a href="http://www.ghacks.net/tag/server-software/" title="server software" rel="tag">server software</a>, <a href="http://www.ghacks.net/tag/sftp/" title="sftp" rel="tag">sftp</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/04/ftp-server-setup/" title="FTP Server Setup (October 4, 2008)">FTP Server Setup</a> (7)</li>
	<li><a href="http://www.ghacks.net/2007/04/09/use-winscp-to-securely-copy-files-between-two-computers/" title="Use WinSCP to securely copy files between two computers (April 9, 2007)">Use WinSCP to securely copy files between two computers</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/03/23/secure-ftp-client-online/" title="Secure FTP Client Online (March 23, 2009)">Secure FTP Client Online</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/" title="Mount Remote FTP And Webdav Servers (January 8, 2009)">Mount Remote FTP And Webdav Servers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/08/05/windows-ssh-server-winsshd/" title="Windows SSH Server WinSSHD (August 5, 2009)">Windows SSH Server WinSSHD</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/26/home-ftp-server/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Secure FTP Client Online</title>
		<link>http://www.ghacks.net/2009/03/23/secure-ftp-client-online/</link>
		<comments>http://www.ghacks.net/2009/03/23/secure-ftp-client-online/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 09:33:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftp client]]></category>
		<category><![CDATA[ftp client online]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[ftp transfer]]></category>
		<category><![CDATA[ftps]]></category>
		<category><![CDATA[secure file transfer]]></category>
		<category><![CDATA[secure ftp client]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[webdav]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/03/23/secure-ftp-client-online/</guid>
		<description><![CDATA[Back in the days when I worked part time for a big financial company and ran Ghacks the rest of the time I sometimes had to access Ghacks while I was at work. The worst case scenario was that the web servers were down but it could also have been because of time critical security [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the days when I worked part time for a big financial company and ran Ghacks the rest of the time I sometimes had to access Ghacks while I was at work. The worst case scenario was that the web servers were down but it could also have been because of time critical security updates or simple maintenance of the website. The problem was that there was no local ftp client installed which meant the only way to access the website was by using a secure ftp client online.</p>
<p>Any Client is one of those secure ftp clients that supports the ftp, sftp, webdav and ftps protocol. It runs remotely using Java and webmasters can use it to connect to their web servers to perform all the operations a ftp client offers them including file transfers and manipulations. The use of protocols that use encryption such as sftp or ftps ensure data safety during transfer. All settings and parameters are stored on the local computer system.</p>
<p>Cautious users might want to consider installing a secure ftp server directly on their web server that can be accessed using a web browser to avoid any security risks or complications that exist while trusting third party websites with your ftp data.</p>
<p><span id="more-11397"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/secure_ftp_client-499x367.jpg" alt="secure ftp client" title="secure ftp client" width="499" height="367" class="alignnone size-medium wp-image-11395" /></p>
<p><a href="http://www.anyclient.com/applet.html">Any Client</a> will load the Java Applet in the web browser and display the contents of the local computer system on the left. A click on the Connect button will open a new smaller window allowing the user to configure and add ftp servers. The ftp client configuration menu contains similar options than local ftp clients offer. Users can add and store multiple ftp servers, select the protocol, add sftp / ssh authentication and specify a starting local and remote directory.</p>
<p>The only difference is the absence of options that configure the ftp client itself, for example the number of simultaneous connections or file transfer limitations.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/03/secure_ftp_client_online-500x411.jpg" alt="secure ftp client online" title="secure ftp client online" width="500" height="411" class="alignnone size-medium wp-image-11396" /></p>
<p>Once the ftp server has been added the ftp client can be used to connect to it. Users can now download, edit, rename or delete files while connected to the ftp server. A feature that is missing is chmod which can be used to configure access rights for files. </p>
<p>Any Client offers a quick and easy way to connect to ftp servers. It provides access to the basic feature set of ftp clients but lacks several advanced features that webmasters might need every now and then. Security sensitive users and those with important data on their servers might want to consider using a self hosted ftp server script instead of a third party service to reduce the security risks.</p>

	Tags: <a href="http://www.ghacks.net/tag/ftp/" title="ftp" rel="tag">ftp</a>, <a href="http://www.ghacks.net/tag/ftp-client/" title="ftp client" rel="tag">ftp client</a>, <a href="http://www.ghacks.net/tag/ftp-client-online/" title="ftp client online" rel="tag">ftp client online</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/ftp-transfer/" title="ftp transfer" rel="tag">ftp transfer</a>, <a href="http://www.ghacks.net/tag/ftps/" title="ftps" rel="tag">ftps</a>, <a href="http://www.ghacks.net/tag/secure-file-transfer/" title="secure file transfer" rel="tag">secure file transfer</a>, <a href="http://www.ghacks.net/tag/secure-ftp-client/" title="secure ftp client" rel="tag">secure ftp client</a>, <a href="http://www.ghacks.net/tag/server/" title="server" rel="tag">server</a>, <a href="http://www.ghacks.net/tag/sftp/" title="sftp" rel="tag">sftp</a>, <a href="http://www.ghacks.net/tag/webdav/" title="webdav" rel="tag">webdav</a>, <a href="http://www.ghacks.net/tag/website/" title="website" rel="tag">website</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/" title="Mount Remote FTP And Webdav Servers (January 8, 2009)">Mount Remote FTP And Webdav Servers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/03/26/home-ftp-server/" title="Home FTP Server (March 26, 2009)">Home FTP Server</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/04/ftp-server-setup/" title="FTP Server Setup (October 4, 2008)">FTP Server Setup</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/05/24/capivara-java-file-manager/" title="Capivara Java File Manager (May 24, 2008)">Capivara Java File Manager</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/08/05/windows-ssh-server-winsshd/" title="Windows SSH Server WinSSHD (August 5, 2009)">Windows SSH Server WinSSHD</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/23/secure-ftp-client-online/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mount Remote FTP And Webdav Servers</title>
		<link>http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/</link>
		<comments>http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 20:34:09 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[mount ftp]]></category>
		<category><![CDATA[mount webdav]]></category>
		<category><![CDATA[netdrive]]></category>
		<category><![CDATA[remote ftp]]></category>
		<category><![CDATA[remote ftp server]]></category>
		<category><![CDATA[webdav]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9737</guid>
		<description><![CDATA[NetDrive is a software to mount remote ftp and webdav servers that somehow has never been mentioned at Ghacks before. That&#8217;s a rare occurrence especially if the software is well designed and free. A large portion of webmasters have to connect to remote ftp servers regularly to update files on the website. There are obviously [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.netdrive.net/home.html">NetDrive</a> is a software to mount remote ftp and webdav servers that somehow has never been mentioned at Ghacks before. That&#8217;s a rare occurrence especially if the software is well designed and free. A large portion of webmasters have to connect to remote ftp servers regularly to update files on the website. There are obviously other ways to update files like an admin interface that allows the direct manipulation of files on the server.</p>
<p>An alternative to connecting to remote ftp servers with ftp programs is to mount the ftp server as a local drive on the computer system. NetDrive provides the means to do that.</p>
<p>The software comes with a clean interface that has several popular ftp servers preinstalled. New servers can be added by providing the IP, port, username, password and drive letter for that connection. There is also a setting to define when the ftp server or webdav server should be added as a drive letter. The options are to do that when the system starts or when NetDrive starts.</p>
<p><span id="more-9737"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/01/remote_ftp-500x353.jpg" alt="remote ftp" title="remote ftp" width="500" height="353" class="alignnone size-medium wp-image-9745" /></p>
<p>Once the remote ftp has been mounted it is possible to access the ftp like any other drive letter in Windows. It essentially means that no ftp software is needed to connect to the ftp server and that programs like Windows Explorer or equivalents can be used instead.</p>

	Tags: <a href="http://www.ghacks.net/tag/ftp/" title="ftp" rel="tag">ftp</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/mount-ftp/" title="mount ftp" rel="tag">mount ftp</a>, <a href="http://www.ghacks.net/tag/mount-webdav/" title="mount webdav" rel="tag">mount webdav</a>, <a href="http://www.ghacks.net/tag/netdrive/" title="netdrive" rel="tag">netdrive</a>, <a href="http://www.ghacks.net/tag/remote-ftp/" title="remote ftp" rel="tag">remote ftp</a>, <a href="http://www.ghacks.net/tag/remote-ftp-server/" title="remote ftp server" rel="tag">remote ftp server</a>, <a href="http://www.ghacks.net/tag/webdav/" title="webdav" rel="tag">webdav</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/23/secure-ftp-client-online/" title="Secure FTP Client Online (March 23, 2009)">Secure FTP Client Online</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/03/26/home-ftp-server/" title="Home FTP Server (March 26, 2009)">Home FTP Server</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/04/ftp-server-setup/" title="FTP Server Setup (October 4, 2008)">FTP Server Setup</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/01/30/windows-vista-drive-icons/" title="Windows Vista Drive Icons (January 30, 2008)">Windows Vista Drive Icons</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/09/05/windows-system-tray-software/" title="Windows System Tray Software (September 5, 2008)">Windows System Tray Software</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>FTP Server Setup</title>
		<link>http://www.ghacks.net/2008/10/04/ftp-server-setup/</link>
		<comments>http://www.ghacks.net/2008/10/04/ftp-server-setup/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 08:58:27 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[filezilla]]></category>
		<category><![CDATA[filezilla server]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[ftp server setup]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7391</guid>
		<description><![CDATA[Being able to activate a ftp server when needed can be an efficient way of providing file access and file upload capabilities to customers, coworkers and friends. Most users shy away from setting up an ftp server fearing that the setup is complicated and that they might overlook an important setting that will give the [...]]]></description>
			<content:encoded><![CDATA[<p>Being able to activate a ftp server when needed can be an efficient way of providing file access and file upload capabilities to customers, coworkers and friends. Most users shy away from setting up an ftp server fearing that the setup is complicated and that they might overlook an important setting that will give the connected users access to their whole system and not on the selected virtual directories.</p>
<p>Setting up an ftp server is actually not complicated at all. The process can be broken down in the following parts: Downloading the ftp server software, installing the software, configuring the ftp server and starting it. The biggest part will be the ftp server configuration where the ftp server admin has to share directories and add user accounts to the system. </p>
<p><a href="http://filezilla-project.org/">Filezilla Server</a> is an Open Source ftp server that can be used to setup a ftp server in Windows. A good advise would be to use the default parameters that are shown during ftp server setup. If you have followed the advice you should see a small window after installation that&#8217;s called Connect To Server. A click on OK should connect to the ftp server interface as an administrator.</p>
<p><span id="more-7391"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/10/ftp_server_connect.jpg" alt="ftp server connect" title="ftp server connect" width="254" height="199" class="alignnone size-medium wp-image-7392" /></p>
<p>FileZilla uses User Accounts and Groups to determine access rights of the ftp server. Groups can be used to configure settings for multiple users which are simply assigned to a group. The only thing that has to be done to get the ftp server up and running is to add at least one user account to the server.</p>
<p>This is done by clicking on Edit > Users in the top menu.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/10/ftp_server_setup-500x357.jpg" alt="ftp server setup" title="ftp server setup" width="500" height="357" class="alignnone size-medium wp-image-7393" /></p>
<p>The first step is to click on the Add button on the right beneath users. Pick any username and leave the group setting as is.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/10/add_user_account.jpg" alt="add user account" title="add user account" width="285" height="193" class="alignnone size-medium wp-image-7394" /></p>
<p>The new user should now appear in the Users pane on the right side. Now check the Password box and enter a password for that user. You cannot leave that box empty unless you set the username to anonymous.</p>
<p>Now that we have created a first user and assigned a password to that user we need to setup the access rights for that user. A click on Shared Folders loads the menu where the ftp server administrator can enable access to local drives for the selected user.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/10/ftp_server_shared_folders-500x357.jpg" alt="ftp server shared folders" title="ftp server shared folders" width="500" height="357" class="alignnone size-medium wp-image-7395" /></p>
<p>A click on the Add button beneath Shared Folders will open the file browser in Windows. The first directory will be the Home directory of the user. The access rights are displayed on the right. The user can by default only download (read) files and list directories. If you want to enable file uploads you should create a specific directory for that purpose and set the access flags accordingly (write and create).</p>
<p>If you want to provide access to different hard drives you need to enable so called aliases. The ftp server will always display the home directory to the connected user with no option to switch to another drive.</p>
<p>The only way to provide access to multiple partitions and drives on the ftp server is to create aliases. They basically tell the ftp server to create an alias directory in the home directory that will point to the other partition or drive.</p>
<p>This can be done by right-clicking a folder that has been added to the shared folder list and selecting Edit Aliases from the menu. Now enter the full path of the alias directory. If your home ftp directory is located in d:\ and you want to add f:\ as another shared folder you need to pick an alias that uses the path d:\aliasfolder, for example d:\fshare. When a user connects to the ftp he will see the contents of drive d and the alias folder fshare in the directory structure that will display the contents of the f drive.</p>
<p>And that&#8217;s it. Congratulations, you setup an ftp server in a few minutes. The settings can be used to change various aspects of the server, including:</p>
<ul>
<li>Banning IP addresses</li>
<li>Enabling logging</li>
<li>Setting global speed limits</li>
<li>Enabling compression</li>
<li>Enabling SSL</li>
<li>Setting a welcome message</li>
</ul>
<p>Setting up a ftp server is not complicated. The most important security aspect is to always update the ftp server to the latest version and only enable the ftp server when needed.</p>

	Tags: <a href="http://www.ghacks.net/tag/filezilla/" title="filezilla" rel="tag">filezilla</a>, <a href="http://www.ghacks.net/tag/filezilla-server/" title="filezilla server" rel="tag">filezilla server</a>, <a href="http://www.ghacks.net/tag/ftp/" title="ftp" rel="tag">ftp</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/ftp-server-setup/" title="ftp server setup" rel="tag">ftp server setup</a>, <a href="http://www.ghacks.net/tag/server/" title="server" rel="tag">server</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/26/home-ftp-server/" title="Home FTP Server (March 26, 2009)">Home FTP Server</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/03/23/secure-ftp-client-online/" title="Secure FTP Client Online (March 23, 2009)">Secure FTP Client Online</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/" title="Mount Remote FTP And Webdav Servers (January 8, 2009)">Mount Remote FTP And Webdav Servers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/08/05/windows-ssh-server-winsshd/" title="Windows SSH Server WinSSHD (August 5, 2009)">Windows SSH Server WinSSHD</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/25/windows-file-server/" title="Windows File Server (October 25, 2009)">Windows File Server</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/10/04/ftp-server-setup/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Howto Setup a Ftp Server in 5 Minutes</title>
		<link>http://www.ghacks.net/2006/05/07/howto-setup-a-ftp-server-in-5-minutes/</link>
		<comments>http://www.ghacks.net/2006/05/07/howto-setup-a-ftp-server-in-5-minutes/#comments</comments>
		<pubDate>Sun, 07 May 2006 07:54:37 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Knowledge]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftp server]]></category>
		<category><![CDATA[ftp tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/05/07/howto-setup-a-ftp-server-in-5-minutes/</guid>
		<description><![CDATA[How do you normally send files to a friend ? By email ? What if the file is rather big but you want to send it anyway ? You could setup a ftp server and give your friend access to it. The speed that your friend can download with depends of course on your upload speed. Still, ftp servers are the number one method to swap large files. The best thing, it´s not complicated to setup your own ftp server, just follow these easy steps:]]></description>
			<content:encoded><![CDATA[<p>How do you normally send files to a friend ? By email ? What if the file is rather big but you want to send it anyway ? You could setup a ftp server and give your friend access to it. The speed that your friend can download with depends of course on your upload speed. Still, ftp servers are the number one method to swap large files. The best thing, it´s not complicated to setup your own ftp server, just follow these easy steps:</p>
<ol>
<li>download <a target="_blank" href="http://filezilla.sourceforge.net/">filezilla server</a>, install and run it.<a target="_blank" href="http://filezilla.sourceforge.net/"><br />
</a></li>
<li>create a folder on your hard drive, e.g. /ftp/</li>
<li>move the files you want to trade into it</li>
<li>you need to setup a user account so your friend may connect to the server, to do so select edit / users</li>
</ol>
<p><span id="more-472"></span></p>
<ul>
<li>click on add, enter a name for the user, click ok</li>
<li>enable password and enter one that your friend will be using</li>
<li>click on shared folders, add and select the folder on your hard drive that you created</li>
<li>default settings allow your friend to read (download) files and list directories and subdirectories.</li>
<li>if you want him to upload files as well you have to give im write permission as well. You could setup a /ftp/upload/ dir for write and delete permission and all others only for read permission</li>
<li>that´s it. To test if it´s working fire up your ftp client and connect using the settings you entered at the ftp server. All you need to do is send your friend the login information and your current IP.</li>
</ul>
<p>You could tighten security by adding your friends IP to the allowed IP addresses and make the connection process more comfortable by using a dynamic dns service which would mean you would not have to broadcast your IP to your friend everytime it changes.</p>

	Tags: <a href="http://www.ghacks.net/tag/ftp/" title="ftp" rel="tag">ftp</a>, <a href="http://www.ghacks.net/tag/ftp-server/" title="ftp server" rel="tag">ftp server</a>, <a href="http://www.ghacks.net/tag/ftp-tips/" title="ftp tips" rel="tag">ftp tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/23/secure-ftp-client-online/" title="Secure FTP Client Online (March 23, 2009)">Secure FTP Client Online</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/08/mount-remote-ftp-and-webdav-servers/" title="Mount Remote FTP And Webdav Servers (January 8, 2009)">Mount Remote FTP And Webdav Servers</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/03/26/home-ftp-server/" title="Home FTP Server (March 26, 2009)">Home FTP Server</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/10/04/ftp-server-setup/" title="FTP Server Setup (October 4, 2008)">FTP Server Setup</a> (7)</li>
	<li><a href="http://www.ghacks.net/2007/04/09/use-winscp-to-securely-copy-files-between-two-computers/" title="Use WinSCP to securely copy files between two computers (April 9, 2007)">Use WinSCP to securely copy files between two computers</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/05/07/howto-setup-a-ftp-server-in-5-minutes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
