Operating System - HP-UX
1845012 Members
2309 Online
110233 Solutions
New Discussion

I'm looking for a easy HPUX config/user setup guide for ProFTPD

 
SOLVED
Go to solution
Paul F. Bennett
Advisor

I'm looking for a easy HPUX config/user setup guide for ProFTPD

I have installed ProFTPD on my hpux 11i box but I'm having a tough time finding a quick and easy admin guide to setup and config the product. Where can I find such a guide?
3 REPLIES 3
Steven E. Protter
Exalted Contributor
Solution

Re: I'm looking for a easy HPUX config/user setup guide for ProFTPD

Shalom,

You may need to use this Linux guide, but the product is supposed to work the same on all platforms.

http://kb.linuxnetworkcare.com/node/8

This mentions hpux and may tell how to make it work with trusted systems

http://hacking.pl/pl/news-1948-ProFTPD_128rc1.html

I'm not sure I'd call either of them easy.

http://archives.neohapsis.com/archives/apps/freshmeat/2001-10/0018.html

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Ivan Krastev
Honored Contributor

Re: I'm looking for a easy HPUX config/user setup guide for ProFTPD

Use "User Guide" - http://www.proftpd.org/localsite/Userguide/linked/userguide.html

and example configs - http://www.proftpd.org/docs/example-conf.html

from proftpd site.

regards,
ivan
Alex Mantelos_1
Occasional Advisor

Re: I'm looking for a easy HPUX config/user setup guide for ProFTPD

Hello,

Here is one real-life example for a large telco I did recently (I just changed login names and directories to protect the customer):

/opt/iexpress/proftpd/etc/proftpd.conf on
HP-UX 11v1 SuperDome vPar.

ServerName "XYZ FTP server"
ServerType inetd
DefaultServer on
ServerAdmin someadmin@blah.dom
DeferWelcome off
Port 21
Umask 022
MaxInstances 30
TimeoutLogin 120
TimeoutIdle 600
TimeoutNoTransfer 900
TimeoutStalled 3600

User ftp
Group ftp

DefaultRoot ~
DefaultTransferMode binary
DeleteAbortedStores on
IdentLookups off

MaxStoreFileSize 20 Mb
MaxRetrieveFileSize 20 Mb
MaxStoreFileSize 50 Kb user anonymous
MaxStoreFileSize 20 Mb user specuser
ServerIdent on "ProFTPD"
UseReverseDNS on

AllowOverwrite on

PathDenyFilter "(\.ftp)|(\.ht)[a-z]+$"
PathDenyFilter "\.ftp[a-z]+$"
PathDenyFilter "(\\.ftpaccess)|(\\.htaccess)$"
DenyFilter "%"


DenyAll



User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin /etc/motd
DisplayChdir .message
# Limit WRITE everywhere in the anonymous chroot

DenyAll




AllowUser user1
AllowUser user2
AllowUser someuser3
AllowUser tlydelta
DenyALL



Umask 002 002
AllowOverwrite on

Order Allow,Deny
AllowUser user1
AllowUser user2
Deny ALL


Order Allow,Deny
AllowUser user1
AllowUser user2
Deny ALL




Umask 002 002
AllowOverwrite on

Order Allow,Deny
AllowUser user3
AllowUser user4
Deny ALL


Order Allow,Deny
AllowUser user3
AllowUser user4
Deny ALL



You can now even use SSL extensions via ProFTPD...

Cheers,

VK2COT