- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- telnet / Local Flow Control Off
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
04-27-2004 08:01 PM
04-27-2004 08:01 PM
I try to telnet a HP-UNIX-Client but I get this Error:
Trying...
Escape character is '^]'.
Local flow control off
Connection closed by foreign host.
I am not able to do ftp also.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 08:07 PM
04-27-2004 08:07 PM
Re: telnet / Local Flow Control Off
Check what ports are open and avail.
If you have some connection daemon running there - you can connect,if your only connections are through telnet/ftp/rlogin (meaning inetd) - would need to connect to console and restart inetd (/sbin/init.d/inetd start).
Another issue may be that connection to your IP is closed, IP filter etc.So try to connect from another IP.
Zeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 08:11 PM
04-27-2004 08:11 PM
Re: telnet / Local Flow Control Off
You first login to server thr' console and try following:
# telnet 127.0.0.1
U should see telnet prompt if it doesn't appear then telnetd is not working properly. In that case you have to check inetd.conf file for proper telnetd cofiguration.
Just go thr' and let me know what happens
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 08:44 PM
04-27-2004 08:44 PM
Re: telnet / Local Flow Control Off
inetd service is running & i have restarted the service also its not working
if i go through syslog,
"inetd[4069]: Going down on signal 11" error is logged.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 08:46 PM
04-27-2004 08:46 PM
Re: telnet / Local Flow Control Off
I am able to do telnet & login using loopback address & the same local ipaddress from the console.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 08:58 PM
04-27-2004 08:58 PM
Re: telnet / Local Flow Control Off
That means your telnet daemon is working fine and i doubt about the network related configuration.
Check your gateways address at both cleint and server end, Subnet mask and DNS configuration if you have one.
THis should solve your problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 09:00 PM
04-27-2004 09:00 PM
Solution# define SIGSEGV 11 /* Segmentation violation */
PHCO_28650 should fix ...
See below:
This problem is caused by a corrupt /etc/hosts file. The corruption is
that the last line in the /etc/hosts file is not terminated with a "\n"
newline character.
# xd -bc /etc/hosts
0000240 1 \t \t c 2 0 0 1 \t \n 1 0 . 2 . 1
31 09 09 63 32 30 30 31 09 0a 31 30 2e 32 2e 31
0000250 . 2 \t s r v 2 0 0 2 \t \t c 2 0 0
2e 32 09 73 72 76 32 30 30 32 09 09 63 32 30 30
0000260 2
32
0000262
An indication of this can also be seen when opening the file using vi(1).
"/etc/hosts" [Incomplete last line] 19 lines, 522 characters
The corruption in the /etc/hosts file can be repaired by opening the
file using vi(1) and then re-saving it (:wq) This correctly inserts
the terminating "\n" at the end of the file:
# xd -bc /etc/hosts
0000240 1 \t \t c 2 0 0 1 \t \n 1 0 . 2 . 1
31 09 09 63 32 30 30 31 09 0a 31 30 2e 32 2e 31
0000250 . 2 \t s r v 2 0 0 2 \t \t c 2 0 0
2e 32 09 73 72 76 32 30 30 32 09 09 63 32 30 30
0000260 2 \n
32 0a
0000262
Although the /etc/hosts file is corrupt, it should not cause a
Segmentation Violation. This defect is resolved in the following
GR (General Release) Patch:
[PHCO_28605/PACHRDME/English]
s700_800 11.11 libnss_files cumulative patch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2004 09:23 PM
04-27-2004 09:23 PM
Re: telnet / Local Flow Control Off
Excelent its working fine.
Thanks.