- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X.25 over IP
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-14-2003 11:15 PM
04-14-2003 11:15 PM
X.25 over IP
Does J2793B support X.25 over IP ?
I've found nothing about it in documentation (HP X.25/9000 User???s Guide).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 08:30 AM
04-15-2003 08:30 AM
Re: X.25 over IP
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.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 08:41 AM
04-15-2003 08:41 AM
Re: X.25 over IP
IP over x25 = Yes but not the other way around.
Got to buy/acquire card .
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 11:23 AM
04-15-2003 11:23 AM
Re: X.25 over IP
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.
I have sent some pseudo code along.
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.
It is a loop of the basic server. Let's make it a stream socket program (for ease)
#include
#include
int k,s,s1;
sock(s,AF_INET,STREAM_SOCKET);
while {
listen(s,PORT)
accept(k)
if (k!=null)
handled_socket(k);
if (signal()=SIGINT){
shutdown(s);
shutdown(k);
}
}
shutdown(s);
subroutine(int handled_sock)
while(x=1){
recv(handled_sock)
send(handled_sock,"up to MTU characters")
"do your stuff here"
}
shutdown(handled_socket)
You write a client C Program
int got_sock;
socket(got_sock,AF_INET,STREAM_SOCK);
get_host_by_name(*hostent struct,host);
got_sock=connect(hostent,port);
(This is very old going back to DARPA net.)
if (retval=(send(s,"string))!=0)
{
error routine();
close sockets.
exit(1);
}
{error routine)
{
do your stuff here.
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2003 07:13 AM
04-16-2003 07:13 AM
Re: X.25 over IP
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.
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.