- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- I wan to set up FTP service on HPUX system
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
05-01-2007 01:13 AM
05-01-2007 01:13 AM
1- How can I check if FTP service was installed?
2- If it was installed, which user has access permission?
3- If it wasn't installed how can install, start, stop..?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 01:23 AM
05-01-2007 01:23 AM
Solutionftp is installed by default, but can be removed.
swlist -l product | grep -i ftpd
This should show:
wu-ftpd
Washington University ftpd server.
I have not checked what ftpd server 11.31 uses.
1.) Answered above.
2.) Any user has permission unless the ftpaccess file is configured to block access. Normal shops block root ftp access because its a huge security hazard as ftp authenticates in clear text (transmitting root password unencrypted in any network is a BAD idea).
3.) If it was not installed its available from http://software.hp.com Its started and stopped by the inetd daemon, configuration is in /etc/inetd.conf
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 01:25 AM
05-01-2007 01:25 AM
Re: I wan to set up FTP service on HPUX system
By default, the software is installed.
The 'inetd' daemon handles its running. Hence, examine your '/etc/inetd.conf' file for a service 'ftp'. You may need to enable (uncomment) the service. Changes to '/etc/inetd.conf' are sensed by doing :
# inetd -c
The configuration and control of your FTP is governed not only by '/stc/inetd.conf' but by the '/etc/ftpd/ftpaccess' and '/etc/ftpd/ftpusers' files. The manpages for 'ftpd(1M)' 'ftpaccess(4)' and 'ftpusers(4)' offer considerable information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 01:25 AM
05-01-2007 01:25 AM
Re: I wan to set up FTP service on HPUX system
http://docs.hp.com/en/B2355-91058/ch02.html?btnNext=next%A0%BB
NM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 01:26 AM
05-01-2007 01:26 AM
Re: I wan to set up FTP service on HPUX system
2. "man ftpd".
3. If it's installed, the start-stop stuff
should be there already.
> [...] FTP service [...]
Normal FTP (for users with accounts), or
anonymous FTP (for anyone)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 01:39 AM
05-01-2007 01:39 AM
Re: I wan to set up FTP service on HPUX system
thanks for advice using man ftpd.
man ftpd is very crowd. Takes lots of time to pick necessary iformation from there.
I need quick quideness.
Now,
1- how can I learn home directory of ftp?
2- how can I set anonymus access
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 01:40 AM
05-01-2007 01:40 AM
Re: I wan to set up FTP service on HPUX system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 05:40 PM
05-01-2007 05:40 PM
Re: I wan to set up FTP service on HPUX system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2007 11:48 PM
05-01-2007 11:48 PM
Re: I wan to set up FTP service on HPUX system
> thanks for advice using man ftpd.
man ftpd is very crowd. Takes lots of time to pick necessary iformation from there. I need quick quideness.
Who said learning comes without effort? The manpages contain a wealth of information and are always worth consulting. At the very least, if you have achieved your objective, go back and read the pages now!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2007 12:44 AM
05-02-2007 12:44 AM
Re: I wan to set up FTP service on HPUX system
For example if I want to define users to be chroot I just create file with their names, If I want to define users that are not allowed to use FTP - I create file with their names, also, vsftpd easily joins with tcp_wrappers(I tested it) and SSL(not tested yet). And so on - try it, you'll never regret.