- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rlogin privileges
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
08-27-2001 07:31 AM
08-27-2001 07:31 AM
rlogin privileges
"THIS PROGRAM REQUIRES SUPER USER
PRIVILEGES"
How can I solve this problem?.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 07:38 AM
08-27-2001 07:38 AM
Re: rlogin privileges
Once it issues that message, does it prompt you for the password or does it kick you out of the rlogin session completely?
-Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 08:18 AM
08-27-2001 08:18 AM
Re: rlogin privileges
-r-sr-xr-x 1 root bin 53248 Nov 14 2000 /usr/bin/login
-r-sr-xr-x 1 root bin 36864 Nov 14 2000 /usr/bin/rlogin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 08:28 AM
08-27-2001 08:28 AM
Re: rlogin privileges
I was only thinking from rlogind point of view and i was thinking that maybe the options of -l and -B were used on the server and the banner file was giving that output. But you are right, if the permissions of rlogin are not right then he would get the error
rlogin: This program requires super user privileges
Diego, check the permissions if they are not right you can change them using
chmod 4555 /usr/bin/rlogin
-Regards
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 09:57 AM
08-27-2001 09:57 AM
Re: rlogin privileges
After I try to rlogin into the server and the message appears, It kicks me out of the rlogin session completely.
I checked the permissions of both files and everything is Ok. They are with the correct permissions. But the problem continue... What can I do?.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 10:04 AM
08-27-2001 10:04 AM
Re: rlogin privileges
On the machine you are rlogging into, look for the rlogin entry in /etc/inetd.conf file, you could do something like
grep rlogind /etc/inetd.conf
Is rlogind being called with any arguments?
-Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2001 10:14 AM
08-27-2001 10:14 AM
Re: rlogin privileges
Your /etc/inetd.conf file should have entry like this
login stream tcp nowait root /usr/lbin/rlogind rlogind
and
klogin stream tcp nowait root /usr/lbin/rlogind rlogind -K
If they are commented then uncomment it and reread the configuration
#/usr/sbin/inetd -c
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 09:41 AM
08-28-2001 09:41 AM
Re: rlogin privileges
I checked the /etc/inetd.conf and uncommented the line that start with "klogin..."
After that, I executed the command to reread the modified file, but the problem persist.
Do you have any other possible solution?.
Thanks, Diego
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 09:56 AM
08-28-2001 09:56 AM
Re: rlogin privileges
Check the /etc/services file for klogin
klogin 543/tcp #kerbose rlogin
The above port need to be between 512 - 1023, else rlogin aborts connection.
Check man rlogin.
Thanks.
Prashant Deshpande.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2001 10:36 AM
08-28-2001 10:36 AM
Re: rlogin privileges
Check /etc/services file
login 513/tcp # Remote Login
klogin 543/tcp # Kerberos Rlogin -kfall
Don't forget to reread the configuration
Also check /var/adm/inetd.sec file it is optional security file
Sachin