- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Telnet for a particular user on 11.23-urgent help ...
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
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
10-05-2008 06:40 PM
10-05-2008 06:40 PM
Telnet for a particular user on 11.23-urgent help required
i have 11.23 ia 64 machine,many users are configured.now one ftp user "test" requires telnet access also.how to grant/configure telnet access for users ??is it possible to configure telnet for user basis ??.this user should be able from anywhere from the network (not host specific).
rgds
skr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2008 07:46 PM
10-05-2008 07:46 PM
Re: Telnet for a particular user on 11.23-urgent help required
Check the above thread, you will get the solution.
Thanks
SKR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2008 07:53 PM
10-05-2008 07:53 PM
Re: Telnet for a particular user on 11.23-urgent help required
After that you can restrict users per hosts/networks via /var/adm/inetd.sec file.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2008 09:43 PM
10-05-2008 09:43 PM
Re: Telnet for a particular user on 11.23-urgent help required
suxde900 # cat /etc/inetd.conf|grep -i telnet
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
sandchau as root@suxde900 [/root]
suxde900 #
check shell entry for ftp user. As per practise it is /bin/false . change it to normal shell like csh, ksh or sh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2008 12:19 AM
10-12-2008 12:19 AM
Re: Telnet for a particular user on 11.23-urgent help required
My requirement is i have a user called "test: which is using the /bin/false having only ftp access.now i want to give telnet access for this user from any machine within the network.telnet is enable in inetd.conf .how to grant telnet access to this ftp user ?if i change the shell /bin/false to someother shell like /sbin/sh etc ?/
reghards
sureshkumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2008 05:10 AM
10-12-2008 05:10 AM
Re: Telnet for a particular user on 11.23-urgent help required
It seems that your test user was configured to disallow shell usage - thus using /bin/false.
Now if you need to allow test to telnet, then you need to modify the shell for the user to /usr/bin/ksh or /usr/bin/csh whichever shell you want to use for the user.
You can use SAM or use command line
usermod -s /usr/bin/ksh test
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2008 12:32 AM
10-13-2008 12:32 AM
Re: Telnet for a particular user on 11.23-urgent help required
rsh, rksh. whith those shell, a user can't use cd , and can only execute commands which are in its path, which it can't redefine of course.
Then you will be able to make a restricted env with only the command you need.
- ls for instance if you want that ftpd be able to run ls.