- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Create user
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
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
03-11-2003 10:06 PM
03-11-2003 10:06 PM
Create user
Does anybody know how to create user who allowed ftp only..?
Thanks 4 ur help.
BR,
Sam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 10:15 PM
03-11-2003 10:15 PM
Re: Create user
We just give the user a shell /usr/bin/false
and a homedirectory of : /ftp/path/./
Which means he can never get a shell and if he ever gets one, the user is chroot'ed (limited) to only use /ftp/path/
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 10:26 PM
03-11-2003 10:26 PM
Re: Create user
We use the following setup.
1. the shell for such users is set as /usr/bin/passwd.
2. /usr/bin/passwd is added to /etc/shells
user can ftp. and in case he needs to change the password, does a telnet to the server. he is prompted to change the password and after that the shell exits.
hth
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 10:32 PM
03-11-2003 10:32 PM
Re: Create user
IF you are using proftpd
you can make a useraccount with
shell /bin/false. Be sure this one is in /etc/shells
In proftpd.conf put this line
RequireValidShell off
Regards,
Erik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 10:32 PM
03-11-2003 10:32 PM
Re: Create user
IF you are using proftpd
you can make a useraccount with
shell /bin/false. Be sure this one is in /etc/shells
In proftpd.conf put this line
RequireValidShell off
Regards,
Erik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 10:33 PM
03-11-2003 10:33 PM
Re: Create user
IF you are using proftpd
you can make a useraccount with
shell /bin/false. Be sure this one is in /etc/shells
In proftpd.conf put this line
RequireValidShell off
Regards,
Erik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2003 10:33 PM
03-11-2003 10:33 PM
Re: Create user
ALso /usr/bin/false should be added in /etc/shells file.
For more controlled access you can utilize the /etc/ftpd/ftpaccess file.
THanks