- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- inetd question
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-10-2002 06:28 PM
03-10-2002 06:28 PM
i cant understand it exactly .
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2002 06:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2002 06:52 PM
03-10-2002 06:52 PM
Re: inetd question
This line of configuration allows you to
'rlogin' from another server. If there is
a '.rhosts' fil ein the users home directory
that can effectively login to your server
without a password. If you wish to secure
your server better, you could comment this
line out of the '/etc/inetd.conf' file.
Service name (login) socket type (stream)
Protocol (tcp) User (root) path to program
The entry of 'root' means that this service
is capable of allowing 'root' to login to
your server without a password if there is
a 'rhosts' file existing in 'root's' home
directory with the correct information
included.
Most, if not all of this information can be
found on the 'inetd.conf' man page.
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2002 10:49 PM
03-10-2002 10:49 PM
Re: inetd question
rlogin is just like a telnet program which allows users to login to their servers ..
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
login stream tcp nowait root /usr/lbin/rlogind rlogind
telnet
rlogin
Software like Exceed uses these types of start method to login to the servers.
If you would want your users to only use telnet to login to their servers you could comment the rlogin line from the /etc/inetd.conf file and do a Kill -HUP
>egrep 'telnet|rlogin' /etc/inetd.conf
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
#login stream tcp nowait root /usr/lbin/rlogind rlogind
>ps -ef|grep inetd
root 772 1 0 Jan 2 ? 1:56 /usr/sbin/inetd
>kill -1 772
This will re-read the inetd.conf file, and now users could use only telnet to login to your server.
The other popular start methods apart from telnet and rlogin are:
rexec
rsh
ssh (needs different setup)
As stated earlier man inetd will give you a lot of information.
Hope this helps !
-Shabu
>Kill -HUP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2002 02:32 AM
03-11-2002 02:32 AM
Re: inetd question
This particular line in /etc/inetd.conf file is responsible for running the rlogin service available at the TCP port number 513 as defined in the /etc/services.
i.e.
Users can do rlogin to your server just because of this line.
-Vijay