• Home
  • The Song
  • The Avatar
  • The Cat
  • Contact the Cat

Gyp the Cat dot Com

Anonymous FTP on Ubuntu 12.04 Server with VSFTPD
Computers, internet

Anonymous FTP on Ubuntu 12.04 Server with VSFTPD

I know that basic FTP is not ideal and not secure.  But it is widely supported and used, and sometimes if we’re moving around large files across a network it comes in incredibly useful.

This tutorial will go through setting up an FTP server on Ubuntu 12.04 Server which is allowing anonymous connections.  I wouldn’t recommend you try this on an internet facing host, and would recommend when not in use you turn VSFTP off even on your internal network.

apt-get install vsftpd

Since we’ll be making changes lets stop the services:

service vsftpd stop

An account called FTP will be added automatically to your server, so lets create an appropriate directory:

mkdir /var/ftp

Give the appropriate permissions:

chown -hR ftp:ftp /var/ftp
chmod 777 /var/ftp

Now to enable our anonymous access we have to make some changes to the config to reflect all the FTP details we made above:

mv /etc/vsftpd.conf /etc/vsftp_conf_original

Create a new files:

nano /etc/vsftpd.conf

Paste the following in, or if you’ve made any changes above make sure you put in your changes into the appropriate places:

#
# Anonymous FTP Access
# Use at your own risk…
listen=YES
local_enable=NO
anonymous_enable=YES
write_enable=NO
anon_root=/var/ftp

[ctrl]+O to save, and [ctrl]+X to exit.

Now lets start up VSFTP:

service vsftpd start

Open up your favorite FTP client and connect away.

Related

Written by gyp - March 9, 2013 - 3196 Views
Tags | ftp, internet, vsftp

You Might Also Like

Strongswan IPSec (Including Cryptomap) to Microsoft Azure Virtual Network Gateway

March 15, 2019

How to Block Ads on iPhone and iPad Jailbreak Free

April 17, 2012

Easy(ish) IPSec VPN with Shared ECDSA Certificates for Host to Host Connections

October 22, 2015

No Comment

Please Post Your Comments & Reviews
Cancel reply

Your email address will not be published. Required fields are marked *

Previous Post
Next Post

Latest Posts

  • How to Convert CSV to Parquet Easily with Python on Linux Shell
  • Kusto Geolocation IP Lookup
  • Monitoring Tor Usage in Azure Sentinel, ASC, MDATP and ALA
  • HTTP to HTTPS Redirect on Azure CDN
  • Strongswan IPSec (Including Cryptomap) to Microsoft Azure Virtual Network Gateway
  • Black Ops 3 NAT Type Strict & PS4 NAT Type 3 with pfSense Fixed!
  • Sorry for the lack of posts
  • How to Block Internet Access with Group Policy (GPO)
  • Enforcing Microsoft Office 365 and Azure Tennancy with McAfee Web Gateway (MWG)
  • Scanning Subnet for Issuing Certificate Authority with OpenSSL

Top Posts & Pages

  • How to Block Internet Access with Group Policy (GPO)
    How to Block Internet Access with Group Policy (GPO)
  • How to Configure Windows 2012 NPS for Radius Authentication with Ubiquiti Unifi
    How to Configure Windows 2012 NPS for Radius Authentication with Ubiquiti Unifi
  • Kusto Geolocation IP Lookup
    Kusto Geolocation IP Lookup
  • Tinyproxy A Quick and Easy Proxy Server on Ubuntu
    Tinyproxy A Quick and Easy Proxy Server on Ubuntu
  • Monitoring Tor Usage in Azure Sentinel, ASC, MDATP and ALA
    Monitoring Tor Usage in Azure Sentinel, ASC, MDATP and ALA
  • How to DNSPerf on Ubuntu 14.04 with Installation and Quick Start
    How to DNSPerf on Ubuntu 14.04 with Installation and Quick Start
  • How to Add Different Disclaimers using alterMIME and Postfix based on Domain
    How to Add Different Disclaimers using alterMIME and Postfix based on Domain
  • Blocking Countries on Nginx without the GeoIP Module
    Blocking Countries on Nginx without the GeoIP Module
  • How to Enable Squid Anonymous Stealth Mode
    How to Enable Squid Anonymous Stealth Mode
  • Configuring Suite B, VPN-A and VPN-B in IPSec with Strongswan
    Configuring Suite B, VPN-A and VPN-B in IPSec with Strongswan

Tags

apache2 azure azure log analytics blops business centos cheating cissp cloudflare cryptography dns game google gyp internet iphone ipsec isc linux mac marketing microsoft mw2 mx mysql nginx pfsense postfix proxy ps3 qualification radius revision security seo smtp socks squid ssh strongswan tinyproxy ubuntu windows 2012 wordpress xdecrypt.com
Gyp the Cat dot Com

Some rights retained Gyp the Cat Dot Com