- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- disable telnet
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
05-16-2005 09:53 AM
05-16-2005 09:53 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 11:06 AM
05-16-2005 11:06 AM
Re: disable telnet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 01:31 PM
05-16-2005 01:31 PM
Solutionstopping telnet daemon is an option. u may do in /etc/inetd.conf:
# vi /etc/inetd.conf
-> comment off telnet line
# inetd -c
Also, u may like to do something about the assignment of points, 10 out of 156 shows a lack of appreciation to those who have help answer your queries.
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 01:50 PM
05-16-2005 01:50 PM
Re: disable telnet
Just rem this line in the /etc/inetd.conf:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
Then do:
#inetd -c
Regard,
Hoang Chi Cong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 03:27 PM
05-16-2005 03:27 PM
Re: disable telnet
if you vi this and # out any service you do not wish to run ie telnet is here and other services.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 03:28 PM
05-16-2005 03:28 PM
Re: disable telnet
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 05:14 PM
05-16-2005 05:14 PM
Re: disable telnet
#vi /etc/services
#rem telnet service
#telnet 23/tcp # Virtual Terminal Protocol
SAVE AND EXIT BY ISSUE:wq!
Reconfig inetd service
#inetd -c
That all
HTH
tienna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 05:47 PM
05-16-2005 05:47 PM
Re: disable telnet
You can also use /etc/profile file as,
ps|grep -q 'telnet'
if [[ $? -eq 0 ]]
then
echo "Plz use secure shell for usage"
sleep 2
exit 1
fi
It will also work.
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2005 06:03 PM
05-16-2005 06:03 PM
Re: disable telnet
grtz. Mark