- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- restrict 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
07-12-2002 06:53 AM
07-12-2002 06:53 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 06:56 AM
07-12-2002 06:56 AM
Re: restrict ftp-access
Take a look at your /var/adm/inetd.sec file
This is where the ftp security would be defined.
Note - If you alter it you should run
inetd -c
to put the changes in effect.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 07:01 AM
07-12-2002 07:01 AM
Re: restrict ftp-access
You can also add all the users you DON'T want to grant access to in the /etc/ftpd/ftpusers file (assuming you dont have a lot).
Just a thought.
Hope this helps
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 07:04 AM
07-12-2002 07:04 AM
Re: restrict ftp-access
put all entries for whom u don't want ftp access in /etc/ftpd/ftpusers.
regds
ravi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 07:05 AM
07-12-2002 07:05 AM
Re: restrict ftp-access
Put the user names in /etc/ftpusers to prevent ftp access to them. or /etc/ftpd/ftpusers
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 07:08 AM
07-12-2002 07:08 AM
Re: restrict ftp-access
But you want to allow only one user. If the user is in outside the firewall, you can restrict the ftp access(block the port 20&21 in the firewall. Allow only one user to access through the ports)to rest other people other than one user. It's easy to setup too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 08:00 AM
07-12-2002 08:00 AM
Solutionyou can try to setup ftpaccess for this user.
http://support2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=500000000092476
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 08:01 AM
07-12-2002 08:01 AM
Re: restrict ftp-access
grep -v ^ACCOUNT: /etc/passwd | awk -F: '{print $1}' > /etc/ftpusers
The ACCOUNT is the account you want to allow access.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2002 07:27 AM
07-15-2002 07:27 AM
Re: restrict ftp-access
The ideal szenario for me would have been that the file ftpusers supports "allow" and "deny" lines, as just deny-lines are hard to maintain if you add users.