Ulf Bertilsson wrote in a Mail about "[genesis] Re: Socks":

>> AmiTCP/IP docs (preferably v4.3). Also, NetBSD docs should be
>> almost 100% relevant,
>> since AmiTCP/IP was basically just a port of that.

This is a very good advice, btw. GENESiS really is only (well, a bit  more
than that, to be accurate) a graphical frontend to AmiTCP.

What will be really usefull for anyone who wants to do more with
AmiTCP-GENESiS than just simple PPP dial-ins, is the AmiTCP documentation
(and supposedly any BSD compatible TCP-stack documentation).
The AmiTCP stack has a powerful ARexx port, in addition to the ARexx  port
of GENESiS ! GENESiS provides a simple command-set for logging in/out  and
dialing/connecting interfaces. AmiTCP offers  commands  dealing  with  the
deeps of AmiTCP and allows lots of control over network internas.

You will find such documentation in the AmiTCP demo archive on Aminet.

> Basicly I'm looking for docs about the arexx port.
> Hard to get info it seems, i'll dig into the amitcp old version and have
> a look.

Here is the reference for the GENESiS ARexx command set. Note, that
commands delivered by any MUI application have been stripped to save
space.

Command      Template
-------      --------
user         NAME,PW=PASSWORD/K
online       IF=IFACENAMES/M,ALL/S
offline      IF=IFACENAMES/M,ALL/S
isonline     IF=IFACENAME,ANY/S
window       OPEN/S,CLOSE/S

This part of the  command  set  is  compatible  with  the  same  functions
of MIAMI, by the way.

As with any MUI application you can get the template of the ARexx commands
it supports by the little script I have attached below.

>> After using Genesis for 18 months, and beginning to get a smattering
>> of  what  TCP/IP  is  all  about, I have got into the habit of editing
>> databases and config directly instead of via Genesis prefs.

That is the best way, IMO. It also seems to me that GENESiS clutters some
of the prefs files (try creating long host and alias lines)

> Useful learing, come handy when dealing with pingvin boxes :)

Sure :-) But then....you will whish yourself back to GENESiS ;-)

Good bye,
-- 
Andreas 
<[EMAIL PROTECTED]>
Data, I though you were dead!"    "I rebooted, Captain."


-- Attached file included as plaintext by Listar --
-- File: MApHH.rexx
-- Desc: ARexx script to query the AREXX command set of any


/* MUIAppHostHelp.rexx
   (w) 2001 Andreas Mixich - public domain, freeware,
                             no guarantees, use at own risk

   Retreive ARexx port command-set from MUI applications, optionally
   copy it to desired path.

   INVOCATION: rx MUIAppHostHelp.rexx PORTNAME
   EXAMPLE   : rx MUIAppHostHelp.rexx GENESIS
*/

PARSE ARG portname              /* call the script by issuing the
                                   portname of the program you want
                                   to query */

ADDRESS Value(portname)

'HELP "ram:'||portname||'_cmdtemplate.txt"'

ADDRESS COMMAND 'c:type ram:'||portname||'_cmdtemplate.txt'

SAY "";SAY "Do you want to save this file ? (y/N)"

PULL answer

IF Upper(answer) = "Y" THEN DO
    SAY "";SAY "Where do you want to save that file to ? (enter pathname)"
    PULL pathname
    IF pathname = "" | pathname = "PATHNAME" THEN DO
        SAY "Aborted.";EXIT;END
    ELSE ADDRESS COMMAND 'copy ram:'||portname||'_cmdtemplate.txt '||pathname
END

EXIT


____________________________________________________________
Genesis Mailing List - Info & Archive: http://www.vapor.com/
For Listserver Help: <[EMAIL PROTECTED]>, "HELP"
To Unsubscribe: <[EMAIL PROTECTED]>, "UNSUBSCRIBE"

Reply via email to