- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSH A.03.71.000 Lock Up 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
07-13-2004 11:28 AM
07-13-2004 11:28 AM
Can't seem to find in the documentation how to lock up server so we can only telnet the secure method (SSH).
Thanks,
George M.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2004 11:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2004 11:32 AM
07-13-2004 11:32 AM
Re: SSH A.03.71.000 Lock Up Telnet
telnet listens on port 23 and SSH on 22. You need to disable inetd from spawning telnetd.
vi /etc/inetd.conf
telnet
to
#telnet
comment out the line that begins with "telnet".Save inetd.conf and send HUP signal to inetd.
# inetd -c
Now you will only be able to SSH and cannot telnet to the system
- Sundar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2004 11:34 AM
07-13-2004 11:34 AM
Re: SSH A.03.71.000 Lock Up Telnet
COmment out the line that looks like this:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
Save the file and then run this:
# inetd -c
(if your using ssh, you might also consider doing the same for ftp, same procedure)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2004 04:34 PM
07-28-2004 04:34 PM
Re: SSH A.03.71.000 Lock Up Telnet
Here is a fine document on disabling some common services in HP-UX.
http://www.cites.uiuc.edu/wsg/resources/security/hpux.html
You can employ ssh port forwarding mechanism for securing telnet port too.
refer for more information
http://www.ssh.com/support/documentation/online/ssh/adminguide/32/Port_Forwarding.html
--
M