Build FTP server in Windows 7
STEP STEP BUILD FTP ON WINDOWS 7
Often we transfer files either from the server to the local computer or from the local computer to the server computer or even between servers. If you are familiar with web hosting would be familiar with the name of FTP Server, where to be able to upload and download the files website customers are usually Web hosting providers using this FTP service.
FTP server is a server that runs the application to provide download and upload service files between networks (TCP / IP) that utilize File Tranfers Protocol (FTP). FTP is a standard protocol for exchanging files in a network that runs on the application layer of 7 OSI Network layers (http://id.wikipedia.org/wiki/Model_OSI). In order to access the FTP server it takes a FTP client application such as FileZilla, WS_FTP, Cute_FTP etc. or BrowserFTP server is a server that runs the application to provide download and upload files between networks (TCP / IP) that utilize File Tranfers Protocol ( FTP). FTP is a standard protocol for exchanging files in a network that runs on the application layer of 7 OSI Network layers (http://id.wikipedia.org/wiki/Model_OSI). To be able to access the FTP server requires an FTP Client application such as FileZilla, WS_FTP, Cute_FTP etc. or the simplest by using Browser.
Keep in mind !, FTP is actually not safe to exchange files between networks because of the absence of encryption process first. FTP in transferring data using Clear Text method which user, password and data you send can be easily to dip (sniff) by an application program such as protocol analyzer for example WireShark. However, there are other ways that can be used to make the process of swapping files using FTP to be safe, that is by using SFTP (SSH FTP) that is FTP based SSH or also with FTPS is FTP in wrap with protocol SSL (FTP Over SSL) .
In addition to the use to upload and download the website to a web hosting server, FTP server is also much in enable for the purposes of sharing files or data centers within the companies. In this article the author will discuss how to build FTP server using Windows 7 without requiring additional applications (3rd party).
1. Open Control Panel, from the Start Menu select Control Panel.
2. In the Control Panel window select Progrmas
3. Then select Turn Windows features on off.
4. Appears Windows Feature window, expand Internet Informations Services then check on FTP server, FTP Extensibility and FTP Services then click OK button. Wait until the process is complete, the installation process will take some time
5. Once the FTP server is installed next calls the FTP manager, the FTP manager for the FTP server becomes one with Internet Information Services. To open Internet Information Services manager type IIS on Instant Search then select Internet Information Services (IIS) Manager
6. To make FTP Site right click on Site then select Add FTP site. You can create multiple FTP sites on an FTP server, allowing each user to have one site individually or one site for multiple people as well as one user accessing multiple sites, depending on the permissions you provide.
7. Appears window Information Site, type the site name eg MUGI then select Physical path for root folder eg C: \ FTP-DATA and click Next.
8. Binding and SSL Settings window appears, fill in the IP address in accordance with this computer's IP (FTP server) 10.10.10.10 then specify the port by default using port 21. Do not forget to check Start FTP site automatically so that FTP server run automatically after FTP Site made. Then on SSL select Allow SSL which means can not use SSL or by using SSL, if must use SSL select Required SSL. Maybe for this last option can be discussed in the next article. Then click the Next button.
9. Authentication and Authorization window appears in the Autentication select Basic. Then on the Authorization select Specified user, then in the user field type the user name as an example of Chelsea (Windows User).
All users: permits all users on the computer (not for anonymous users)
Anonymous users: gives permission to all users (anyone)
Specified role or user groups: grant permissions based on roles or by user group.
Specified users: gives permission to certain users.
Next on the permissions, for example select the Read and Write option and click the Finish button.
10. After the Site creation process is completed then we try to access from Client, in this example the author access from Windows XP computer with ip address 10.10.10.8. Open Internet Explorer then type ftp://10.10.10.10 (ip address FTP server) then enter, Log On window appears as input username and password, because at the beginning we give permission to user Chelsea, input UsernameChelsea along with password. Then click on Log On
11. Okay we successfully login, then we can make the download or upload process.
12. The author tries to upload 2 music files and managed successfully, in accordance with the permissions we gave earlier the ranks to Read and Write
13. To further facilitate the process of exchanging data you can use FTP Client applications such as FileZilla, WS_FTP, Cute_FTP etc.
Post a Comment