<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: telnet option impact RF scanning device in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308711#M567752</link>
    <description>indeed the steps would be add a services line with your port, add an entry in inetd.conf and then inetd -c.  you could do a netetst -an | grep LISTEN | grep &lt;PORTNUMBER&gt; to make sure that it "took"&lt;BR /&gt;&lt;BR /&gt;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 - &lt;A href="http://www.tcpdump.org," target="_blank"&gt;www.tcpdump.org,&lt;/A&gt; 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 :)&lt;BR /&gt;&lt;BR /&gt;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 &amp;lt; 1024)  tusc -&amp;gt;  &lt;A href="ftp://ftp.cup.hp.com/dist/networking/tools/" target="_blank"&gt;ftp://ftp.cup.hp.com/dist/networking/tools/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;my money is still somewhat on those scanners imp;roperly expecting data to be segmented in a particular way&lt;/PORTNUMBER&gt;</description>
    <pubDate>Wed, 23 Jun 2004 11:35:19 GMT</pubDate>
    <dc:creator>rick jones</dc:creator>
    <dc:date>2004-06-23T11:35:19Z</dc:date>
    <item>
      <title>telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308704#M567745</link>
      <description>Hi,&lt;BR /&gt;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. &lt;BR /&gt;Is there any way I can set these two scanners up with there own telnet statement without the TCP_DELAY?&lt;BR /&gt;&lt;BR /&gt;thanks in advance for any info.&lt;BR /&gt;maria</description>
      <pubDate>Thu, 17 Jun 2004 22:46:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308704#M567745</guid>
      <dc:creator>Peter Gillis</dc:creator>
      <dc:date>2004-06-17T22:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308705#M567746</link>
      <description>Maria,&lt;BR /&gt; &lt;BR /&gt;one idea that comes into my mind is to setup another alternative telnet port to be used without TCP_DELAY option configured.&lt;BR /&gt; &lt;BR /&gt;Example:&lt;BR /&gt; &lt;BR /&gt;/etc/services:&lt;BR /&gt;&lt;BR /&gt;telnet        23/tcp                 # Virtual Terminal Protocol&lt;BR /&gt;otelnet        10023/tcp                 # Virtual Terminal Protocol w/o TCP_DELAY&lt;BR /&gt; &lt;BR /&gt;/etc/inetd.conf:&lt;BR /&gt; &lt;BR /&gt;telnet  stream tcp nowait root /usr/lbin/telnetd  telnetd -TCP_DELAY&lt;BR /&gt;otelnet  stream tcp nowait root /usr/lbin/telnetd  telnetd&lt;BR /&gt; &lt;BR /&gt;The question is if you are able to configure the telnet port to be used by your scanners.&lt;BR /&gt; &lt;BR /&gt;Best regards...&lt;BR /&gt;Dietmar.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jun 2004 04:39:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308705#M567746</guid>
      <dc:creator>Dietmar Konermann</dc:creator>
      <dc:date>2004-06-18T04:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308706#M567747</link>
      <description>Setting or not setting TCP_DELAY in telnet will only alter how data sent to the scanner is segmented (packetized) by TCP.  It will not change the data itself.&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;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.</description>
      <pubDate>Sat, 19 Jun 2004 03:24:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308706#M567747</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2004-06-19T03:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308707#M567748</link>
      <description>hi again,&lt;BR /&gt;thank you for your answers. still experiencing some problems though....&lt;BR /&gt;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?&lt;BR /&gt;&lt;BR /&gt;thanks &lt;BR /&gt;Maria</description>
      <pubDate>Tue, 22 Jun 2004 20:16:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308707#M567748</guid>
      <dc:creator>Peter Gillis</dc:creator>
      <dc:date>2004-06-22T20:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308708#M567749</link>
      <description>The best way to troubleshoot this problem is to use a packet trace so you can see the exact message handshake. The scanners likely have very terse code and cannot provide any useful diagnostics. Even so, the scanner probably can't be fixed with new code from the manufacturer, and for that, you'd likely have to provide a document showing the improper handshake. Get a copy of Ethereal (now available for HP_UX 11.11) so you can trace the handshake. Since you know that IP address for the scanner, you can limit the trace to just that IP. Ethereal is available for PCs (along with WinPcap which listens to the pactkets). See &lt;A href="http://www.ethereal.com" target="_blank"&gt;http://www.ethereal.com&lt;/A&gt; for details and the recently announced Internet Express from HP: &lt;A href="http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=HPUXIEXP1111" target="_blank"&gt;http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=HPUXIEXP1111&lt;/A&gt;</description>
      <pubDate>Tue, 22 Jun 2004 20:54:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308708#M567749</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2004-06-22T20:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308709#M567750</link>
      <description>Bill, thanks for advice.  I am running ux11.00. Have been able to run a trace on our network and found that there is NO LISTENER.   Now, wonderding if all I needed to setup a new telnet port was edit /etc/services and add:  &lt;BR /&gt;telnet  10023/tcp&lt;BR /&gt;then edit /etc/inetd.conf and add:&lt;BR /&gt;telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd -b /etc/issue&lt;BR /&gt;then run: inetd -c?&lt;BR /&gt;Any words of wisdom on this one?&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;Maria</description>
      <pubDate>Tue, 22 Jun 2004 23:48:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308709#M567750</guid>
      <dc:creator>Peter Gillis</dc:creator>
      <dc:date>2004-06-22T23:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308710#M567751</link>
      <description>Hi Maria,&lt;BR /&gt;&lt;BR /&gt;cant help much but i can confirm that the procedure to add  a new telnet port as described by Dietmar is correct.&lt;BR /&gt;I have tested and when done telnet to that port i can get connected&lt;BR /&gt;&lt;BR /&gt;telnet host 10023&lt;BR /&gt;And yes you have to just edit /etc/services and /etc/inetd.conf and then run inetd -c for update.&lt;BR /&gt;&lt;BR /&gt;Rajeev</description>
      <pubDate>Wed, 23 Jun 2004 00:31:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308710#M567751</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2004-06-23T00:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: telnet option impact RF scanning device</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308711#M567752</link>
      <description>indeed the steps would be add a services line with your port, add an entry in inetd.conf and then inetd -c.  you could do a netetst -an | grep LISTEN | grep &lt;PORTNUMBER&gt; to make sure that it "took"&lt;BR /&gt;&lt;BR /&gt;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 - &lt;A href="http://www.tcpdump.org," target="_blank"&gt;www.tcpdump.org,&lt;/A&gt; 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 :)&lt;BR /&gt;&lt;BR /&gt;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 &amp;lt; 1024)  tusc -&amp;gt;  &lt;A href="ftp://ftp.cup.hp.com/dist/networking/tools/" target="_blank"&gt;ftp://ftp.cup.hp.com/dist/networking/tools/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;my money is still somewhat on those scanners imp;roperly expecting data to be segmented in a particular way&lt;/PORTNUMBER&gt;</description>
      <pubDate>Wed, 23 Jun 2004 11:35:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/telnet-option-impact-rf-scanning-device/m-p/3308711#M567752</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2004-06-23T11:35:19Z</dc:date>
    </item>
  </channel>
</rss>

