Hi,
X25 is a rather old network protocol, and is a digital protocol to communicate over public lines (the phone company), like you would with ISDN or ADSL, although X.25 covers more ISO layers
There are multiple possible implementations:
1. Talk direct X.25 protocols with the other side.
2. Emulate TCP/IP over X.25.
In the second case, you can just use the perl network
libraries to communicate.
In the iron ages, I used to setup X.25 on IBM/AIX, but
I don't remember a lot of this, only that there were
many parameters to configure.
If you really need a deeper insight in the protocol, you should go to a netwerk newsgroup.
---------------------------
Dr. Mark Ceulemans
Senior Consultant
IT Masters, Belgium
| [reply] |
Well I don't need all the protocol details right now, I just really need to now how it works phisically. IE: I have a standard PC server, linux on it. It's in a datacenter somewhere. Now, what is needed in order to connect to the X25 network ? I know I have to use a PAD, but do I need to connect to special lines ?? I'm quite in a fog right now .
BTW thanks a lot for this reply eventhough it is not perl related.
| [reply] |
It should be fairly transparent to you except when you
make your socket connection. Check out this usenix
article. The article concerns network connections with perl4 which is pretty old but then again so is X.25. Basically wherever you use AF_INET and PF_INET in your code, you would
need to change to AF_X25 and PF_X25. I'm sure other caveats apply.
As for info on X.25, just google.
-derby | [reply] |