- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FTP server
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
06-25-2004 03:25 PM
06-25-2004 03:25 PM
FTP server
I need to configure an Ftp server.can anuyone help me in doing this.I would life if i get a pdf documentation.
Thanks in advance
mangesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 06:35 PM
06-25-2004 06:35 PM
Re: FTP server
Here's the doc:
http://docs.hp.com/hpux/onlinedocs/B2355-90778/B2355-90778.html
The pdf file can also be downloaded from the same location.
HTH.
Regards,
Sri Ram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 10:28 PM
06-25-2004 10:28 PM
Re: FTP server
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2004 10:51 PM
06-25-2004 10:51 PM
Re: FTP server
FTPD comes by default with HP.
You have to create /etc/ftpusers file if doesn't exist and do the changes as per your plans for authetication. FTPD gets started from inetd.
Thanks & Regards
Sreejith M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2004 09:21 AM
06-26-2004 09:21 AM
Re: FTP server
As said before unless ftp is restricted by /var/adm/inetd.sec or disabled by commenting it out in /etc/inetd.conf, it is available by defalt.
However, you want to configure more restrictive operations for a user, then you will need to use 'ftpaccess' file. You can look at 'man ftpaccess' for the options available. An example file is under /usr/newconfig/etc/ftpd directory which can be copied into /etc/ftpd directory. Add -a flag to ftpd's entry in /etc/inetd.conf and refresh inetd (inetd -c).
However, ftp is insecure as people can create .netrc files and keep their passwords in text mode to ease their jobs. The communication between ftpserver and ftpclient is done in cleartext which is insecured. On production servers, it is a good idea to use secure tools like ssh that provide scp and sftp. You can get ssh from software.hp.com.
-Sri