开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Re: Linux and X.25


 

开云体育

I have made a bunch of progress which might be helpful:

1. Created a standalone X.25 module for Raspbian based off Kernel??5.15.32-v7+ (this was on a Raspberry Pi 2)
a. The recipe for this is pretty easy, and really just a case of downloading the kernel source, and doing:
cd /usr/src/linux/net/x25
CONFIG_X25=m make -C /lib/modules/$(uname -r)/build/ M=$(pwd)

2. Compiled jh-xotd ()
a. There is something wrong with the getopt in line 232. ?However if you change -1 to 255 it works
b. You need a script file as:

#!/bin/sh -e
echo "Setting up $1" > /dev/console
ip link set $1 up
route --x25 add 0/0 $1

c. And a config as:

tun0?10.0.0.2 /home/dave/jh-xotd/xotd-setup 256

This is somewhat difficult as it needs you to specify the remote destination, so that needs some work, as honestly we want this “Dynamic”. ?However it will work for testing. ?Here 10.0.0.2 is my Cisco. ?The tun0 is important for the moment, for Pad_srv. ?However it kinda makes sense when you think that probably most links where Point to Point. ? Worst case I think you can use the Cisco as a border XOT router to this.

3. Compiled pad_svr ()
a. Modify Makefile to put -lrt at the end pad_svr gcc line not at the start. ?Else you will get complaints about timer_X (e.g. timer_create)
b. Modify "open_x25.c” look for a line as 'strcpy(subscription.device, “X”)’. ?Change the X to be the device you configured in the jh-xotd config
c. Create a pad_svr config as:

#This is config file for pad_svr program.
#
local_x121_address 1111
log_level 5
log_path /var/log/pad_svr.log
? Watchdog_timeout 10
Winsize_in 2
Pacsize_in 128
Forward_idle_timeout 1
x29_profile 1:0,2:0,3:0,4:1,13:4,15:0 Buffer_size 32000

Change the x121 address to be the address of this instance (i.e. whatever your put in the x29 route on the Cisco)
4. From a Cisco configure XOT route to point at IP of Linux box, with the address

pad X <- Address from pad_svr

If it all works you should be prompted to login. ?Ok you now having comms...

If you tcpdump of tun0 you will be able to see the raw X.25 frames. ?Now that I can do all that I think it might be possible to make this work with RSX11M, if I can make a DEC synchronous interface join “tunX”. ?


On Jun 27, 2022, at 3:18 PM, Grant Taylor via <gtaylor@...> wrote:

On 6/27/22 12:28 PM, Harald Welte wrote:
That paragraph alone shows you how mature that implementation is. Rebuilding the kernel for switching DTE/DCE role ;)

I agree with the logic. ?However I think that it's extremely important to keep in mind when the documentation was written. ?A lot may have changed since then.

There is also the fact that documentation tends to get out of sync with the kernel / application capability as the latter slowly moves forward.



--
Grant. . . .
unix || die






Join [email protected] to automatically receive all group messages.