- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- controlling FTP usage on workstation
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
03-23-2006 06:50 PM
03-23-2006 06:50 PM
Best regards
Henry
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 06:56 PM
03-23-2006 06:56 PM
Re: controlling FTP usage on workstation
man ftpusers for details.
For telnet, to deny direct root, login, prepare /etc/securetty file put "console" in it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:03 PM
03-23-2006 07:03 PM
Re: controlling FTP usage on workstation
You can do it with the help of /etc/ftpd/ftpusers file. It is called "security file for ftpd". You can find more information by doing a man ftpusers.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:10 PM
03-23-2006 07:10 PM
Re: controlling FTP usage on workstation
I dun seem to help that folder "ftpd" or file ftpusers on my system. I am currently using 10.20b - will this be a problem?
Best regards
henry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:12 PM
03-23-2006 07:12 PM
SolutionTo control telnet based access then,
edit /etc/profile:
if [[ ${LOGNAME} != "su" ]]
then
ps | grep -q 'telnet'
if [[ ${?} -eq 0 ]]
then
echo "Telnet access with ${LOGNAME} is denited in this machine"
sleep 2
exit 1
fi
fi
will do it.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2006 07:16 PM
03-23-2006 07:16 PM
Re: controlling FTP usage on workstation
I dun seem to help that folder "ftpd" or file ftpusers on my system. I am currently using 10.20b - will this be a problem?
Did you try "man ftpusers". You need to create that file. It doesnt exists by default.
-Arun