- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to start Internet Services - 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
12-04-2007 01:08 AM
12-04-2007 01:08 AM
I am unable to start the internet services on my 11.23 box. here is the error I see,
# /sbin/init.d/inetd start
inetd: Unknown option: -1
Usage: inetd [-a] [-p proc_limit] [-r count [interval]] [-l | -s]
inetd [-c]
inetd [-k]
EXIT CODE: 1
Unable to start Internet Services
FTP, ssh are working but telnet is not working on the server.
The last change I made on this server was installing a patch - PHNE_36065 for ftp upgrade.
Thanks in Advance,
Vijayan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2007 01:19 AM
12-04-2007 01:19 AM
Re: Unable to start Internet Services - Telnet
Edit file /etc/inetd.conf and check the following entry is exist or not
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
if the entry is not there your telnet will not work
add this line there and restart the service
inetd -c
Enjoy!!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2007 01:30 AM
12-04-2007 01:30 AM
Re: Unable to start Internet Services - Telnet
That entry is very much there....
more /etc/inetd.conf |grep -i telnet
telnet stream tcp6 nowait root /usr/lbin/telnetd telnetd -b /etc/issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2007 01:49 AM
12-04-2007 01:49 AM
Re: Unable to start Internet Services - Telnet
Please comment out that line in your inetd.conf and put my entry there
it's not tcpv6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2007 01:49 AM
12-04-2007 01:49 AM
SolutionThe most likely source for the wrong option is the /etc/rc.config.d/netdaemons configuration file, more specifically the INETD_ARGS variable in that file.
My guess is that someone has confused number one and lower-case L when editing that file, maybe a long time ago. Was this a first re-start in a long time?
Before editing /etc/rc.config.d/netdaemons, examine the modification time of that file.
The intended setting is:
INETD_ARGS="-l"
i.e. lower-case L.
With some fonts, the difference is *very* hard to detect.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2007 01:54 AM
12-04-2007 01:54 AM
Re: Unable to start Internet Services - Telnet
Recommend this:
Two windows open to the system.
1) tail -f /var/adm/syslog/syslog.log
2) Follow the previously posted procedures and restart inetd.
Post any error output back to the thread.
Sometimes the diagnosis is the hard part, not fixing the problem.
BTW, as a note, you should try not to use telnet at all. It authenticates in clear text and is a beig security risk.
You might want to take inetd.conf from a working system. Check permissions against that system as well.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2007 02:03 AM
12-04-2007 02:03 AM
Re: Unable to start Internet Services - Telnet
It worked, someone had changed the arguement to "1" instead of l
Great help,
Thanks much MK