- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ftp access
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
08-02-2001 10:34 AM
08-02-2001 10:34 AM
ftp access
I am trying to setup restricted ftp access on 11.0.
Have already setup the passwd entry (with /./), ftp access file etc. But when I try to ftp for that particular user I cannot use ls, pwd or see any data.
I need to know exactly what directories and files need to be copied to the user home dir and with what permissions.
Thx,
SK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 10:50 AM
08-02-2001 10:50 AM
Re: ftp access
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 11:31 AM
08-02-2001 11:31 AM
Re: ftp access
http://www.proftpd.net/.
It's easy to install, & configure.
Here's an example of a user config
User oracle
Group users
AnonRequirePassword on
AllowAll
DenyAll
Oracle can only see /oracle and nothing else. You clan limit everything you want.
Just a suggustion.
Good luck,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 12:45 PM
08-02-2001 12:45 PM
Re: ftp access
Nora
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2001 05:22 PM
08-02-2001 05:22 PM
Re: ftp access
mkdir -p usr/bin
cp /sbin/ls usr/bin
cp /bin/pwd usr/bin
mkdir etc
cp /etc/passwd etc #remove unnecessary line in the passwd file.
cp /etc/group etc
Change the permission to 555.