Fixed typos.

This commit is contained in:
Fritz Elfert 1996-06-03 20:03:40 +00:00
parent 71e743aa11
commit 81a3c635ef
8 changed files with 40 additions and 21 deletions

View File

@ -106,6 +106,7 @@ README for the ISDN-subsystem
driver may not be selected (see "Automatic
Assignment") however the size of outgoing packets
will be limited correctly.
AT&D0 Ignore DTR
AT&D2 DTR-low-edge: Hang up and return to
command mode (default).
AT&D3 Same as AT&D2 but also resets all registers.
@ -157,10 +158,10 @@ README for the ISDN-subsystem
1 = DCD follows carrier.
Bit 4 0 = CTS follows RTS
1 = Ignore RTS, CTS always on.
Bit 5 0 = Low-edge on DTR: Hang up and
return to command mode.
Bit 5 0 = return to command mode on DTR low.
1 = Same as 0 but also resets all
registers.
See also register 13, bit 2
Bit 6 0 = DSR always on.
1 = DSR only on if channel is available.
Bit 7 0 = Cisco-PPP-flag-hack off (default).
@ -170,6 +171,8 @@ README for the ISDN-subsystem
1 = Direct tty-send.
Bit 1: 0 = T.70 protocol (Only for BTX!) off
1 = T.70 protocol (Only for BTX!) on
Bit 2: 0 = Don't hangup on DTR low.
1 = Hangup on DTR low.
14 0 Layer-2 protocol:
0 = X75/LAPB with I-frames
1 = X75/LAPB with UI-frames
@ -192,7 +195,7 @@ README for the ISDN-subsystem
Layer-2-protocol is automatically
changed to 4 regardless of the setting
of register 14. On outgoing calls,
the most significant 1-bit is choosen to
the most significant 1-bit is chosen to
select the outgoing service octet.
19 0 Service-Octet-2
20 0 Bit coded register (readonly)

View File

@ -8,7 +8,7 @@ Obere Heerbergstr. 17
Tel: +49 931 2877950
Fax: +49 931 2877951
email uhl@think.de
email info@think.de
WWW http:/www.think.de

View File

@ -6,7 +6,7 @@ Q02: error message "this systems lacks PPP support"
Q03: strange information using 'ifconfig'
Q04: MPPP?? What's that and how can I use it ...
Q05: I tried MPPP but it doesn't work
Q06: can I use asynchronous PPP encapuslation with network devices
Q06: can I use asynchronous PPP encapsulation with network devices
Q07: A SunISDN machine can't connect to my i4l system
Q08: I wanna talk to several machines, which need different configs
Q09: Starting the ipppd, I get only error messages from i4l
@ -18,7 +18,7 @@ Q12: How can I reduce login delay?
Q01: pppd,ipppd, syncPPP , asyncPPP .. what is that ?
what should I use?
A: The pppd is for asynchronous PPP .. asynchron means
A: The pppd is for asynchronous PPP .. asynchronous means
here, the framing is character based. (e.g when
using ttyI* or tty* devices)
@ -27,7 +27,7 @@ A: The pppd is for asynchronous PPP .. asynchron means
in isdn4linux pushes all IP packets direct
to the network layer and all PPP protocol
frames to the /dev/ippp* device.
So, the ipppd is a simple externel network
So, the ipppd is a simple external network
protocol handler.
If you login into a remote machine using the
@ -39,7 +39,7 @@ A: The pppd is for asynchronous PPP .. asynchron means
syncPPP machine .. use the network device part
of isdn4linux with the 'syncppp' encapsulation
and make sure, that the ipppd is running and
conneted to at least one /dev/ippp*. Check the
connected to at least one /dev/ippp*. Check the
isdn4linux manual on how to configure a network device.
--
@ -62,7 +62,7 @@ A: Maybe you have compiled the ipppd with another
Q03: when I list the netdevices with ifconfig I see, that
my ISDN interface has a HWaddr and IRQ=0 and Base
address = 0
A: The device is a fake ethernetdevice .. ignore IRQ and baseaddr
A: The device is a fake ethernet device .. ignore IRQ and baseaddr
You need the HWaddr only for ethernet encapsulation.
--
@ -79,12 +79,12 @@ A: MPPP or MP or MPP (Warning: MP is also an
every additional channel. (see the i4l manual
for more)
To use channel bundling you must first activate
the 'master' or inital call. Now you can add
the 'master' or initial call. Now you can add
the slave channels with the command:
isdnctrl addlink <device>
e.g:
isdnctrl addlink ippp0
This is different to other encapsualtions of
This is different from other encapsulations of
isdn4linux! With syncPPP, there is no automatic
activation of slave devices.
@ -100,7 +100,7 @@ A: you forgot to compile MPPP/RFC1717 support into the
--
Q06: can I use asynchronous PPP encapuslation
Q06: can I use asynchronous PPP encapsulation
over the network interface of isdn4linux ..
A: No .. that's not possible .. Use the standard
@ -131,7 +131,7 @@ Q08: A wanna talk to remote machines, which need
A: you must bind a network interface explicitly to
an ippp device, where you can connect a (for this
interface) individualy configured ipppd.
interface) individually configured ipppd.
--
@ -171,7 +171,7 @@ A: You must know, how the ipppd gets the addresses it wanna
tries to negotiate the local host address!
With the option 'noipdefault' it requests an address
from the remote machine. With 'useifip' it gets the
addresses from the net interface. Or you set the addresse
addresses from the net interface. Or you set the address
on the option line with the <a.b.c.d:e.f.g.h> option.
Note: the IP address of the remote machine must be configured
locally or the remote machine must send it in an IPCP request.
@ -205,7 +205,7 @@ A: A good help log is the debug output from the ipppd...
- there are at least a few RECV messages in the log:
-> fine: your card is dialing and your remote machine
tries to talk with you. Maybe only a missing
authentification. Check your ipppd configuration again.
authentication. Check your ipppd configuration again.
- the ipppd exits for some reason:
-> not good ... check /var/adm/syslog and /var/adm/daemon.
Could be a bug in the ipppd.

View File

@ -19,9 +19,13 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Log$
* Revision 1.22 1996/05/17 15:46:41 fritz
* Removed own queue management.
* Changed queue management to use sk_buffs.
*
* Revision 1.21 1996/05/02 04:01:20 fritz
* Bugfix:
* - icn_addcard() evalueated wrong driverId.
* - icn_addcard() evaluated wrong driverId.
*
* Revision 1.20 1996/05/02 00:40:27 fritz
* Major rewrite to support more than one card
@ -269,7 +273,7 @@ static inline int icn_trymaplock_channel(icn_card *card, int channel)
}
/*
* Release currend card/channel lock,
* Release current card/channel lock,
* then map same or other channel without locking.
*/
static inline void icn_maprelease_channel(icn_card *card, int channel)

View File

@ -1,6 +1,9 @@
/* $Id$
*
* $Log$
* Revision 1.6 1996/05/21 11:33:50 keil
* Adding SETUP_ACKNOWLEGDE as answer of a SETUP message.
*
* Revision 1.5 1996/05/18 01:37:16 fritz
* Added spelling corrections and some minor changes
* to stay in sync with kernel.
@ -572,7 +575,7 @@ l3down(struct PStack *st,
break;
if (i == downsllen) {
if (DEBUG_1TR6 > 0) {
printk(KERN_INFO "isdnl3down unhandled E-DSS1 state %d primitiv %x\n", st->l3.state, pr);
printk(KERN_INFO "isdnl3down unhandled E-DSS1 state %d primitive %x\n", st->l3.state, pr);
}
} else
downstatelist[i].rout(st, pr, ibh);

View File

@ -1,11 +1,14 @@
/* $Id$
*
* $Log$
* Revision 1.5 1996/05/31 00:58:47 fritz
* Errata: Reverted change from rev 1.4.
*
* Revision 1.4 1996/05/26 14:59:57 fritz
* Bugfix: maxbufsize had been set without respect to possible X.75 header.
*
* Revision 1.3 1996/05/01 14:19:57 fritz
* Added ISDN_FEADTURE_L2_TRANS
* Added ISDN_FEATURE_L2_TRANS
*
* Revision 1.2 1996/04/29 23:01:46 fritz
* Added driverId and channel to readstatus().

View File

@ -14,6 +14,9 @@
*
*
* $Log$
* Revision 1.4 1996/05/17 03:46:17 fritz
* General cleanup.
*
* Revision 1.3 1996/04/30 22:06:50 isdn4dev
* logging 1TR6 messages correctly Karsten Keil
*
@ -227,7 +230,7 @@ struct MessageType mt_n1[] =
{MT_N1_FAC_CAN, "FACility CANcel"},
{MT_N1_FAC_REG, "FACility REGister"},
{MT_N1_FAC_REJ, "FACility REJect"},
{MT_N1_INFO, "INFOmation"},
{MT_N1_INFO, "INFOrmation"},
{MT_N1_REG_ACK, "REGister ACKnowledge"},
{MT_N1_REG_REJ, "REGister REJect"},
{MT_N1_STAT, "STATus"}

View File

@ -21,6 +21,9 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Log$
* Revision 1.11 1996/05/31 01:37:47 fritz
* Minor changes, due to changes in isdn_tty.c
*
* Revision 1.10 1996/05/18 01:37:18 fritz
* Added spelling corrections and some minor changes
* to stay in sync with kernel.
@ -29,7 +32,7 @@
* Added flags for DLE handling.
*
* Revision 1.8 1996/05/11 21:49:55 fritz
* Removed queue mamagement variables.
* Removed queue management variables.
* Changed queue management to use sk_buffs.
*
* Revision 1.7 1996/05/07 09:10:06 fritz