initial commit

This commit is contained in:
root
2023-06-12 09:14:09 +02:00
commit b4912f303e
2545 changed files with 209350 additions and 0 deletions

80
mint/tools/mgw/LIESMICH Normal file
View File

@@ -0,0 +1,80 @@
Draconis to MiNT-Net gateway
============================
Feedback, Fehlermeldungen, Vorschl<68>ge und sonstige konstruktive
Kommentare sind sehr erw<72>nscht. Am besten per e-Mail direkt an mich.
Version 0.33b
-------------
- select korrigiert
- Neue "Usage" info
Version 0.32b
-------------
- --disable-system-resolve deaktiviert die MiNT-Interne DNS-Abfrage
in Kombination mit --dns1= ist somit die asynchrone, nicht-blockende
Abfrage von DNS aus DRACONIS-Anwendungen moeglich.
Version 0.21
------------
- gethostbyname hat manchmal nicht funktioniert
Version 0.20
------------
- erste <20>ffentliche Version, beta Status
Features:
---------
- erm<72>glicht das Benutzen von Draconis Clients unter FreeMiNT/MiNT-Net
Vorausetzungen:
---------------
- FreeMiNT mit konfiguriertem MiNT-Net
Installation:
-------------
1. Kopieren von mgw.prg in den MultiTOS oder MiNT Ordner auf dem Bootlaufwerk
3. Hinzuf<75>gen folgendes Eintrags in die MiNT.CNF:
--- cut ---
# start Draconis to MiNT-Net gateway
exec c:\multitos\mgw.prg
echo
--- cut ---
2. Reboot
Bugs:
-----
- keine bekannt
Copying:
--------
Copyright 1999 Frank Naumann <fnaumann@freemint.de>
Copyright 1999 Jens Heitmann
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Frank Naumann
<fnaumann@freemint.de>
Magdeburg, 22.08.1999

80
mint/tools/mgw/README Normal file
View File

@@ -0,0 +1,80 @@
Draconis to MiNT-Net gateway
============================
Feedback, bugreports, suggestions and any other constructive comment
is strongly recommended. Please send it as e-mail to me.
Version 0.33b
-------------
- Updated select
- New Usage info
Version 0.32b
-------------
- --disable-system-resolve disables the MiNT internal DNS query
in combination with --dns1= this enables the asynchronous, non-blocking
query of the DNS by DRACONIS applications.
Version 0.21
------------
- gethostbyname don't worked sometimes
Version 0.20
------------
- first public release, beta version
Features:
---------
- you can use the Draconis Clients under FreeMiNT/MiNT-Net
Vorausetzungen:
---------------
- FreeMiNT with running and configured MiNT-Net
Installation:
-------------
1. Copy mgw.prg to your MultiTOS or MiNT folder on your boot device
3. Add the following lines to your MiNT.CNF:
--- cut ---
# start Draconis to MiNT-Net gateway
exec c:\multitos\mgw.prg
echo
--- cut ---
2. Reboot
Bugs:
-----
- no known
Copying:
--------
Copyright 1999 Frank Naumann <fnaumann@freemint.de>
Copyright 1999 Jens Heitmann
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Frank Naumann
<fnaumann@freemint.de>
Magdeburg, 22.08.1999

View File

@@ -0,0 +1,3 @@
# Secrets for authentication using CHAP
# client server secret IP addresses
"myppp" myppp myppp

View File

@@ -0,0 +1,19 @@
#!/bin/sh
# /etc/ppp/ip-up und ip-down werden von pppd ausgefuehrt.
PATH=/usr/local/bin:/bin:/usr/ucb:/usr/etc
PROG=$0
IFACE=$1
DEVICE=$2
SPEED=$3
LOCALIP=$4
REMOTEIP=$5
# Uhrzeit vom Server abholen.
# rdate $5 > /dev/null
u:/m_tos/mgw.prg --dns1=$DNS1 --dns2=$DNS2 --disable-system-resolve

View File

@@ -0,0 +1,25 @@
/dev/ttyb
38400
crtscts
#require-chap
lock
modem
# debug
defaultroute
#vj
usepeerdns
asyncmap 0
noipdefault
netmask 255.255.255.0
noauth
mru 1500
mtu 1500
user "myppp"
name "myppp"
connect "chat -f u:/etc/ppp/peers/myppp.chat"

View File

@@ -0,0 +1,12 @@
TIMEOUT 40
ABORT 'BUSY'
ABORT 'NO CARRIER'
ABORT 'DELAY'
ABORT 'NO DIALTONE'
ABORT 'ERROR'
'' 'AT'
OK 'ATZ'
OK 'ATM'
OK 'ATX4'
OK 'ATDT01234-567890'
CONNECT

View File

@@ -0,0 +1,4 @@
#
# Dial script
#
pppd call myppp

View File

@@ -0,0 +1,3 @@
# Secrets for authentication using PAP
# client server secret IP addresses
"myppp" myppp myppp

BIN
mint/tools/mgw/mgw.prg Normal file

Binary file not shown.