• net2bbs help?

    From Shurato@21:2/148 to All on Mon Jul 8 21:13:00 2024
    Mike Ehlert has had life catch up with him and hasn't been able to help with EleBBS and net2bbs. I'm using the following (copied from the net2bbs
    window):

    Debug: Read c:\ele\nf\net2bbs.ini
    Debug: Cmd=c:\ele\elebbs.exe -N*N -H*H -C1 -B115200

    It disconnects immediately upon connection. If I don't specify the baudrate, the bbs tries to initialize the modem until it times out. What could I possibly be doing wrong? I've tried v 1.14a, 1.25 and 1.26b, so it's definitely either not net2bbs or it doesn't work with my bbs. It's the win32 version. I'm willing to supply anything that could help get this working...

    --
    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp,
    ,wss) (Ports 22,23,110,21,119,8080) (ssh login 'bbs' pass 'shsbbs').


    *** THE READER V4.50 [freeware]
    ---
    * Origin: Shurato's Heavenly Sphere telnet://shsbbs.net (21:2/148)
  • From Fzf@21:1/149 to Shurato on Mon Jul 8 23:43:35 2024
    Re: net2bbs help?
    By: Shurato to All on Mon Jul 08 2024 09:13 pm

    Debug: Cmd=c:\ele\elebbs.exe -N*N -H*H -C1 -B115200

    This command line is telling EleBBS to use the socket handle *H on serial port COM1 for a call that's already connected to COM1... The -C and -H options are mutually exclusive.

    If you're trying to use Net2BBS as a replacement telnet server, do not pass any -C parameters at all. You'll use something along the lines of:

    c:\ele\elebbs.exe -N*N -H*H -XT -XC -B115200

    -XT: Use telnet session on provided socket handle
    -XC: Don't close socket at end of session (let Net2BBS do the cleanup)

    You're also going to need to set the startup directory to the proper node directory. I believe Net2BBS can use the *N macro in the directory definition, so something like C:\ele\Node*N\ for the start path. You may need to manually create a directory for each node you're going to allow since you no longer have the Ele telnet server available to do this for you.
    --- SBBSecho 3.14-Win32
    * Origin: The Fool's Quarter, fqbbs.synchro.net (21:1/149)
  • From Shurato@21:2/148 to Fzf on Tue Jul 9 01:49:00 2024

    Re: net2bbs help?
    By: Shurato to All on Mon Jul 08 2024 09:13 pm

    Debug: Cmd=c:\ele\elebbs.exe -N*N -H*H -C1 -B115200

    This command line is telling EleBBS to use the socket handle *H on serial port COM1 for a call that's already connected to COM1... The -C and -H options are mutually exclusive.

    If you're trying to use Net2BBS as a replacement telnet server, do not pass any -C parameters at all. You'll use something along the lines of:

    c:\ele\elebbs.exe -N*N -H*H -XT -XC -B115200

    -XT: Use telnet session on provided socket handle -XC: Don't close
    socket at end of session (let Net2BBS do the cleanup)

    You're also going to need to set the startup directory to the proper node directory. I believe Net2BBS can use the *N macro in the directory definition, so something like C:\ele\Node*N\ for the start path. You may need to manually create a directory for each node you're going to allow since you no longer have the Ele telnet server available to do this for you.


    Thanks, it's working now!

    --
    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp,
    ,wss) (Ports 22,23,110,21,119,8080) (ssh login 'bbs' pass 'shsbbs').


    *** THE READER V4.50 [freeware]
    ---
    * Origin: Shurato's Heavenly Sphere telnet://shsbbs.net (21:2/148)
  • From Nick Mackechnie@21:1/142 to Fzf on Wed Jul 10 10:23:00 2024
    Re: net2bbs help?
    By: Shurato to All on Mon Jul 08 2024 09:13 pm

    Debug: Cmd=c:\ele\elebbs.exe -N*N -H*H -C1 -B115200

    This command line is telling EleBBS to use the socket handle *H on serial
    port COM1 for a call that's already connected to COM1... The -C and -H
    options are mutually exclusive.

    If you're trying to use Net2BBS as a replacement telnet server, do not pass
    any -C parameters at all. You'll use something along the lines of:

    c:\ele\elebbs.exe -N*N -H*H -XT -XC -B115200

    -XT: Use telnet session on provided socket handle
    -XC: Don't close socket at end of session (let Net2BBS do the cleanup)

    You're also going to need to set the startup directory to the proper node
    directory. I believe Net2BBS can use the *N macro in the directory
    definition, so something like C:\elede*N\ for the start path. You may
    need to manually create a directory for each node you're going to allow
    since you no longer have the Ele telnet server available to do this for you.


    My nf.bat
    @echo off
    rem c:\netfoss\ansi.com
    rem c:\netfoss\netfoss.com
    c:\netfoss\netfoss.com %1
    rem ** If running a DOS based BBS, add " %1" to the end of above line **
    if errorlevel 1 goto end
    c:\netfoss\netcom.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
    c:\netfoss\netfoss.com /u
    :end

    extract from nf.ini
    [Settings]
    ; Command=c:\netfoss\nf.bat /n*N /h*H c:\pcb\pcboard.bat *N Command=c:\netfoss\nf.bat /n*N /h*H c:\bbs\batde*N.bat

    Node1.bat
    @echo off
    path=%path%;t:\slbbs
    c:
    set slbbs=t:\slbbs
    set DSZlog=t:\logs\dsz.log

    t:
    cd \slbbs
    slbbs.exe 115200 14400 /C 1
    rem slbbs.exe 115200 14400 /C 1
    :end

    Nick

    --- SLMAIL v5.1 (#SLO409KEDG15G098)
    * Origin: The Trashcan - The BEST Rubbish * bbs.thenet.gen.nz (21:1/142)
  • From Shurato@21:2/148 to Nick Mackechnie on Wed Jul 10 12:34:00 2024

    Re: net2bbs help?
    By: Shurato to All on Mon Jul 08 2024 09:13 pm

    Debug: Cmd=c:\ele\elebbs.exe -N*N -H*H -C1 -B115200

    This command line is telling EleBBS to use the socket handle *H on
    serial
    port COM1 for a call that's already connected to COM1... The -C and -H options are mutually exclusive.

    If you're trying to use Net2BBS as a replacement telnet server, do not
    pass
    any -C parameters at all. You'll use something along the lines of:

    c:\ele\elebbs.exe -N*N -H*H -XT -XC -B115200

    -XT: Use telnet session on provided socket handle -XC: Don't close socket at end of session (let Net2BBS do the cleanup)

    You're also going to need to set the startup directory to the proper
    node
    directory. I believe Net2BBS can use the *N macro in the directory definition, so something like C:\elede*N\ for the start path. You may need to manually create a directory for each node you're going to allow since you no longer have the Ele telnet server available to do this for
    you.


    My nf.bat @echo off rem c:\netfoss\ansi.com rem
    c:\netfoss\netfoss.com c:\netfoss\netfoss.com %1 rem ** If running
    a DOS based BBS, add " %1" to the end of above line ** if errorlevel
    1 goto end c:\netfoss\netcom.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 c:\netfoss\netfoss.com /u :end

    extract from nf.ini [Settings] ; Command=c:\netfoss\nf.bat
    /n*N /h*H c:\pcb\pcboard.bat *N Command=c:\netfoss\nf.bat
    /n*N /h*H c:\bbs\batde*N.bat

    Node1.bat @echo off path=%path%;t:\slbbs c: set slbbs=t:\slbbs set DSZlog=t:\logs\dsz.log

    t: cd \slbbs slbbs.exe 115200 14400 /C 1 rem slbbs.exe 115200 14400
    /C 1 :end

    That won't help me any, my BBS loads netfoss, not net2bbs. It's a win32 BBS, not DOS. Thanks for trying, though!

    --
    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp,
    ,wss) (Ports 22,23,110,21,119,8080) (ssh login 'bbs' pass 'shsbbs').


    *** THE READER V4.50 [freeware]
    ---
    * Origin: Shurato's Heavenly Sphere telnet://shsbbs.net (21:2/148)
  • From Nick Mackechnie@21:1/142 to Shurato on Thu Jul 11 14:27:00 2024
    That won't help me any, my BBS loads netfoss, not net2bbs. It's a win32
    BBS,
    not DOS. Thanks for trying, though!


    Sorry, I should have paid more attention :-)

    --- SLMAIL v5.1 (#SLO409KEDG15G098)
    * Origin: The Trashcan - The BEST Rubbish * bbs.thenet.gen.nz (21:1/142)