<?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: X.25 over IP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951271#M577553</link>
    <description>J2793B does not support X.25 over tcp/ip. &lt;BR /&gt;&lt;BR /&gt;I have assisted customers with connecting their HP-PB PSI card to a cisco router that then encapsulates the X.25 traffic over IP, but the HP has no knowledge of the IP side in that case. &lt;BR /&gt;&lt;BR /&gt;The latest X.25 versions do have support for X.25 over LLC (enables X.25 over ethernet, but this does NOT use IP protocol). It is unlikely that your existing network also supports this, that would be your only hope short of buying a PSI card.</description>
    <pubDate>Wed, 16 Apr 2003 14:13:34 GMT</pubDate>
    <dc:creator>Jim Keeble</dc:creator>
    <dc:date>2003-04-16T14:13:34Z</dc:date>
    <item>
      <title>X.25 over IP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951267#M577549</link>
      <description>I need to integrate my server (HP9000 K360) to a X.25 network. But unfortunately there are no X.25 card in my server. So I want to try using X.25 over IP. I have software J2793B (High Performance X.25 Link software for HP 9000). &lt;BR /&gt;&lt;BR /&gt;Does J2793B support X.25 over IP ?&lt;BR /&gt;I've found nothing about it in documentation (HP X.25/9000 User???s Guide).</description>
      <pubDate>Tue, 15 Apr 2003 06:15:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951267#M577549</guid>
      <dc:creator>Alexander Kefeli</dc:creator>
      <dc:date>2003-04-15T06:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: X.25 over IP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951268#M577550</link>
      <description>Don't think it would work for you even if they did.  Say it works.  You still have only an IP connection whose output would need to be routed to another device which had both an IP connection and an X.25 connection.  The new device would need to strip off the IP headers and transparently pass the packets onto the X.25 network.&lt;BR /&gt;&lt;BR /&gt;Easier to get a router and let it connect to the x.25 network then talk to it with IP or bite the bullet and buy an X.25 card.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Tue, 15 Apr 2003 15:30:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951268#M577550</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2003-04-15T15:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: X.25 over IP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951269#M577551</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;IP over x25 = Yes but not the other way around.&lt;BR /&gt;&lt;BR /&gt;Got to buy/acquire card .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Paula</description>
      <pubDate>Tue, 15 Apr 2003 15:41:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951269#M577551</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2003-04-15T15:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: X.25 over IP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951270#M577552</link>
      <description>Actually, I have done this before, but not on HPUX... &lt;BR /&gt;&lt;BR /&gt;First you write a C socket program for the server that handles any size data you want less than MTU which is usually 1500 , and then reassemble on the server side.&lt;BR /&gt;&lt;BR /&gt;I have sent some pseudo code along.&lt;BR /&gt;&lt;BR /&gt;The flavor is ancient, and this is stream of consciousness used to use close, now it is shutdown. the read is now a recv. the write is now a send. so I hope if I give you just a start is it enough. I have tried to use more current terminology.  I think in C so here goes.&lt;BR /&gt;&lt;BR /&gt;It is a loop of the basic server. Let's make it a stream socket program (for ease)&lt;BR /&gt;&lt;BR /&gt;#include &lt;SYS&gt;&lt;BR /&gt;#include &lt;SYS&gt;&lt;BR /&gt;&lt;BR /&gt;int k,s,s1;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;sock(s,AF_INET,STREAM_SOCKET);&lt;BR /&gt;&lt;BR /&gt;while {&lt;BR /&gt;listen(s,PORT)&lt;BR /&gt;accept(k)&lt;BR /&gt; if (k!=null)&lt;BR /&gt;     handled_socket(k);&lt;BR /&gt;  if (signal()=SIGINT){&lt;BR /&gt;   shutdown(s);&lt;BR /&gt;   shutdown(k);&lt;BR /&gt;   }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;shutdown(s);&lt;BR /&gt;subroutine(int handled_sock)&lt;BR /&gt;&lt;BR /&gt;while(x=1){&lt;BR /&gt;recv(handled_sock)&lt;BR /&gt;send(handled_sock,"up to MTU characters")&lt;BR /&gt;"do your stuff here"&lt;BR /&gt;}&lt;BR /&gt;shutdown(handled_socket)&lt;BR /&gt;&lt;BR /&gt;You write a client C Program&lt;BR /&gt;&lt;BR /&gt;int got_sock;&lt;BR /&gt;socket(got_sock,AF_INET,STREAM_SOCK);&lt;BR /&gt;get_host_by_name(*hostent struct,host);&lt;BR /&gt;got_sock=connect(hostent,port);&lt;BR /&gt;(This is very old going back to DARPA net.)&lt;BR /&gt;&lt;BR /&gt;if (retval=(send(s,"string))!=0)&lt;BR /&gt;{&lt;BR /&gt;error routine();&lt;BR /&gt;close sockets.&lt;BR /&gt;exit(1);&lt;BR /&gt;}&lt;BR /&gt;{error routine)&lt;BR /&gt;{&lt;BR /&gt;do your stuff here.&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SYS&gt;&lt;/SYS&gt;</description>
      <pubDate>Tue, 15 Apr 2003 18:23:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951270#M577552</guid>
      <dc:creator>Tim Sanko</dc:creator>
      <dc:date>2003-04-15T18:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: X.25 over IP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951271#M577553</link>
      <description>J2793B does not support X.25 over tcp/ip. &lt;BR /&gt;&lt;BR /&gt;I have assisted customers with connecting their HP-PB PSI card to a cisco router that then encapsulates the X.25 traffic over IP, but the HP has no knowledge of the IP side in that case. &lt;BR /&gt;&lt;BR /&gt;The latest X.25 versions do have support for X.25 over LLC (enables X.25 over ethernet, but this does NOT use IP protocol). It is unlikely that your existing network also supports this, that would be your only hope short of buying a PSI card.</description>
      <pubDate>Wed, 16 Apr 2003 14:13:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/x-25-over-ip/m-p/2951271#M577553</guid>
      <dc:creator>Jim Keeble</dc:creator>
      <dc:date>2003-04-16T14:13:34Z</dc:date>
    </item>
  </channel>
</rss>

