- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp on hpux
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
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
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
тАО09-06-2005 01:19 AM
тАО09-06-2005 01:19 AM
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 01:21 AM
тАО09-06-2005 01:21 AM
SolutionSuggestiong I will use sftp if you are going across wan (Secure connection).
hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 01:23 AM
тАО09-06-2005 01:23 AM
Re: ftp on hpux
Are you talking of work site behind a firewall?
In which case ftp should work
try from one box to another...
If you are talking of getting up an ftp server, that is something different
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 01:26 AM
тАО09-06-2005 01:26 AM
Re: ftp on hpux
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 01:35 AM
тАО09-06-2005 01:35 AM
Re: ftp on hpux
on your server you need the ftp server ( such as ftpd or wu-ftpd ) and on your client you need only the binary client ftp...
On the server, you can set access policies like hosts allowed, users allowed and how much bytes the fto clients can download or upload...
These links may be useful:
http://docs.hp.com/en/B2355-90778/ch02.html
http://docs.hp.com/en/B9901-90018/ch05s02.html
Regards,
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 07:05 AM
тАО09-06-2005 07:05 AM
Re: ftp on hpux
in HP-UX ftpd, telnet etc are not a seperate deamon, but a part of inetd. The configuration is done in /etc/inetd.conf.Should have the following line.
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -la /etc/ftpd/ftpaccess
your /etc/services file should have the following line.
ftp 21/tcp
The ftp access control is done through the following files.
1.
/etc/ftpd/ftpaccess
Would contain following lines.
class all real,anonymous,guest *
banner /etc/issue
2.
/etc/ftpd/ftpusers.
make sure that who ever need ftpaccess is NOT listed in this file. Those who are listed in this file cant use ftp.root is added in tis file by default because of security reasons. You may remove the same if you use root account for ftp.
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 08:36 PM
тАО09-06-2005 08:36 PM
Re: ftp on hpux
1. ftp service is enabled by default in hp-ux unless it has been disabled.
2. /etc/services provides status on this service
3. ftp operates at port 21, so if remote user wants to transfer the files, make sure this port is open
Regards
Mahesh