- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- telnet option impact RF scanning device
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
06-17-2004 03:46 PM
06-17-2004 03:46 PM
We run ux 11.0 op system. We have recently upgraded our wlan nwork to 802.11b. we had to include -TCP_DELAY on telnet in inetd.conf file. All scanners working ok on the 802.11b network. BUT,(as usual!) we have 2 scanners working on a spectrum 1 Spring protocol. these two scanners now unable to login. Msg received is: SVTP;v2 you are at the end. From this point on we are stuck. have to reboot device. Soon as remove -TCP_DELAY from telnet statement able to login properly.
Is there any way I can set these two scanners up with there own telnet statement without the TCP_DELAY?
thanks in advance for any info.
maria
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 09:39 PM
06-17-2004 09:39 PM
Solutionone idea that comes into my mind is to setup another alternative telnet port to be used without TCP_DELAY option configured.
Example:
/etc/services:
telnet 23/tcp # Virtual Terminal Protocol
otelnet 10023/tcp # Virtual Terminal Protocol w/o TCP_DELAY
/etc/inetd.conf:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -TCP_DELAY
otelnet stream tcp nowait root /usr/lbin/telnetd telnetd
The question is if you are able to configure the telnet port to be used by your scanners.
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2004 08:24 PM
06-18-2004 08:24 PM
Re: telnet option impact RF scanning device
That being the case, if setting or unsetting TCP_DELAY causes some of your scanners to fail, it suggests something was already wrong with the code on the scanners. Perhaps something along the lines of broken code that assumed that a 64 byte send at one end was guaranteed to be a single 64 byte receive at the other. Or that a trio of 64 byte sends at one end would be three separate 64 byte receives at the other. Those are assumptions a TCP application may not make.
So, as suggested by another post, you could setup a telnet service on an alternate port, but it really would be a good idea to try to further diagnose what might be wrong with the code in the scanners. That might involve taking packet traces.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 01:16 PM
06-22-2004 01:16 PM
Re: telnet option impact RF scanning device
thank you for your answers. still experiencing some problems though....
I have setup another telnet port as suggested, added a second telnet line in both /etc/services and inetd.conf. I have made sure the telnet port can be used by the scanners. The result now is comms appears to establish, but where I would normally get the login screen, the cursor is flashing at the top left hand corner of a blank screen. Nothing appears to happen from there. Is it possible that there is some other security on the unix system stopping me from attaching to the unix system; or is it that the scanners are not able to comm from their side? Can anyone offer ways to check either of these possiblities?
thanks
Maria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 01:54 PM
06-22-2004 01:54 PM
Re: telnet option impact RF scanning device
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 04:48 PM
06-22-2004 04:48 PM
Re: telnet option impact RF scanning device
telnet 10023/tcp
then edit /etc/inetd.conf and add:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
then run: inetd -c?
Any words of wisdom on this one?
thanks,
Maria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 05:31 PM
06-22-2004 05:31 PM
Re: telnet option impact RF scanning device
cant help much but i can confirm that the procedure to add a new telnet port as described by Dietmar is correct.
I have tested and when done telnet to that port i can get connected
telnet host 10023
And yes you have to just edit /etc/services and /etc/inetd.conf and then run inetd -c for update.
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 04:35 AM
06-23-2004 04:35 AM
Re: telnet option impact RF scanning device
when you say it appears there is "NO LISTENER" does that mean you've looked in a packet trace (tcpdump and libpcap should compile and run on 11.0 - www.tcpdump.org, or it should be in the porting archives) and you've seen the scanner send a SYN segment to the server and get an RST segment in response (perhaps with some interesting text in the RST segment :)
other thoughts - you might take a tusc trace of the inetd and tell it to be verbose, display the pid, and to follow forks and then try connecting from one of the scanners. you could then see what system calls the telnetd is making - perhaps it is checking its port number, perhaps it wants a "priviledged" port number (i can't see the previous stuff while I write this - it may be already priv'd < 1024) tusc -> ftp://ftp.cup.hp.com/dist/networking/tools/
my money is still somewhat on those scanners imp;roperly expecting data to be segmented in a particular way