Jack Cotter, All:
Here's the line in my aracdial.bat where I use the epppdd.exe from
the dospppd distribution at:
http://www.citilink.com/~kae/faq/connecting/dos/ppp.html
------------------------------------------------------------------------------------
@lh epppdd base 0x2F8 irq 3 pktvec 0x60 57600 asyncmap 0
crtscts -d > output.txt
-----------------------------------------------------------------------------------
(It's all one line, Pegasus E-Mail probably breaks it up)
I have the file output.txt overwritten each time I connect with
Netdial 1.3 - Arachne combo, and this reduces the amount of
output that scrolls down the screen when epppdd is running.
If I want to go look at output.txt, I can, it's in the c:\netdial
directory where epppdd is.
My aracdial.bat file is attached, and so far, it has worked
perfectly with epppdd on this Compaq.
Thanks,
Michael L. Dawley
Pearl, Mississippi
Compaq Deskpro 575 - Pegasus Mail for Windows
@echo off
rem Batch file name aracdial.bat.
rem A version of Bobcat's bcatdial.bat for use with Arachne.
rem This copy goes in c:\netdial directory.
rem Uses Netdial 1.3 - nd130.zip
rem Modified to boot up Arachne after connection made.
rem February 11, 2000.
rem clear the screen and set screen and text color.
cls
setscrn
rem dial up the ISP
:DIAL
echo.
echo Dialing Intop ISP for Arachne 1.60
echo.
echo OFF
NETDIAL COMn 2 BASE 0x2F8 IRQ 3 57600 TRIES 4
IF ERRORLEVEL 1 GOTO :BUSY
IF ERRORLEVEL 200 goto :END
goto :PKTDRVR
:BUSY
cls
setscrn
echo.
echo Unable to reach ISP - will Dial again - Esc to quit.
echo.
Holdit 3 > nul
if errorlevel 2 goto :END
cls
setscrn
goto :DIAL
rem starting epppdd and going to arachne
:PKTDRVR
echo.
echo Connecting to Intop Internet Service Provider.
echo.
echo Arachne 1.60 will start in a moment...
echo.
@lh epppdd base 0x2F8 irq 3 pktvec 0x60 57600 asyncmap 0 crtscts -d > output.txt
call IP-UP.bat
rem set GATEWAY=%REMIP%
echo my_ip=%MYIP% > path.cfg
echo gateway=%remip% >> path.cfg
echo netmask=%netmask% >> path.cfg
echo nameserver=206.156.254.2 >> path.cfg
echo nameserver=206.156.2.0 >> path.cfg
echo Ip address set to %MYIP%
Holdit 4 > nul
if errorlevel 0 goto :ARACHNE
if errorlevel 200 goto :END
rem packet driver loaded, so ready to start Arachne
:ARACHNE
@Echo Off
C:
cd C:\ARACHNE
arachne.bat %1 %2 %3 %4
:END
cls
setscrn
echo.
echo Disconnecting from Intop Internet Service Provider.
echo.
Holdit 4 > nul
rem remove packet driver. hang up the phone. return to menu.
termin 0x60
netdial COMn 2 BASE 0x2F8 IRQ 3 hangup
cls
C:
cd C:\
menu