Hi again Paul ... :-)

> In the previous system I ran 2.0.35, I use to change the values in
> /proc/sys/net/ax25/interface_name/various timer param files with a
> script file. (as reported many times over the past year or so)
> Values I load in to t1_timer 70, t2_timer 10, t3_timer 18000

In 2.2.x kernels these values are expressed as 1/100th second values (or
actually as the kernel native jiffies) instead of 1/10th second.

Among others I have these lines in my startup scripts:

        case $(uname -r) in
                2.0.*)
                        echo 60    > /proc/sys/net/ax25/ax0/t1_timeout
                        echo 20    > /proc/sys/net/ax25/ax0/t2_timeout
                        echo 1800  > /proc/sys/net/ax25/ax0/t3_timeout
                        ;;
                2.[12].*)
                        echo 600   > /proc/sys/net/ax25/ax0/t1_timeout
                        echo 200   > /proc/sys/net/ax25/ax0/t2_timeout
                        echo 18000 > /proc/sys/net/ax25/ax0/t3_timeout
                        ;;
        esac

I hope this one hits the nail too... :-)

Oh, and BTW, Merry Christmas to everyone!

-- 
Tomi Manninen           Internet:  [EMAIL PROTECTED]
OH2BNS                  AX.25:     [EMAIL PROTECTED]
KP20ME04                Amprnet:   [EMAIL PROTECTED]

Reply via email to