#
#	This file contains security and configuration information
#	for each user.  The first field is the user's name and
#	can be up to 8 characters in length.  This is followed (on
#	the same line) with the list of authentication requirements
#	for that user.  This can include password, comm server name,
#	comm server port number, protocol type (perhaps set by the "hints"
#	file) and an expiration date of the user's password.
#
#	When an authentication request is received from the comm server,
#	these values are tested. Only the first match is used unless the
#	"Fall-Through" variable is set on the next line.
#
#	A special user named "DEFAULT" matches on all usernames and can
#	be created to specify what to do with users not contained
#	in the user file. In that case it should be the last entry.
#	Multiple DEFAULT entries can be present and only the one that
#	matches the authentication requirements will be used.
#
#	A special password of "UNIX" can be specified to notify the
#	authentication server to use UNIX password (/etc/passwd)
#	authentication for this user.
#
#	Indented (with the tab character) lines following the first
#	line indicate the configuration values to be passed back to
#	the comm server to allow the initiation of a user session.
#	This can include things like the PPP configuration values
#	or the host to log the user onto.
#

#
# This is a complete entry for "steve". Note that there is no Fall-Through
# entry so that no DEFAULT entry will be used.
#
steve	Password = "testing", Expiration = "Dec 24 1992"
	User-Service-Type = Framed-User,
	Framed-Protocol = PPP,
	Framed-Address = 172.16.3.33,
	Framed-Netmask = 255.255.255.0,
	Framed-Routing = Broadcast-Listen,
	Framed-Filter-Id = "std.ppp",
	Framed-MTU = 1500,
	Framed-Compression = Van-Jacobsen-TCP-IP

#
# Another complete entry. After the user "dialbk" has logged in, the
# connection will be broken and the user will be dialed back after which
# he will get a connection to the host "timeshare1".
#
dialbk	Password = "callme"
	User-Service-Type = Login-User,
	Login-Host = timeshare1,
	Login-Service = PortMaster,
	Dialback-No = "9,1-800-555-1212"

#
# user "swilson" will only get a static IP number if he logs in with
# a framed protocol on the terminal server with IP 192.168.1.1. Note
# that by setting "Fall-Through" the rest will be gotten from the
# appropriate DEFAULT entry.
#
swilson	Service-Type = Framed-User, NAS-IP-Address = 192.168.1.1
	Framed-IP-Address = 192.168.1.65,
	Fall-Through = 1

#
# Dial user back and telnet to the default host for that port
#
Deg	Password = "ge55ged"
	User-Service-Type = Dialback-Login-User,
	Login-Host = 0.0.0.0,
	Dialback-No = "9,5551212",
	Login-Service = Telnet,
	Login-TCP-Port = 23

#
# The rest of this file contains the several DEFAULT entries.
# DEFAULT entries match with all login names.
# Note that DEFAULT entries can also Fall-Through (see first entry).
# A name-value pair from a DEFAULT entry will _NEVER_ override
# an already existing name-value pair.
#

#
# First setup all accounts to be checked against the UNIX /etc/passwd.
# (Unless a password was already given earlier in this file).
#
DEFAULT	Password = "UNIX"
	Fall-Through = 1

#
# Defaults for all framed connections.
#
DEFAULT	Service-Type = Framed-User
	Framed-IP-Address = 255.255.255.254,
	Framed-MTU = 576,
	Service-Type = Framed-User,
	Fall-Through = 1

#
# Default for PPP: dynamic IP address, PPP mode, VJ-compression.
#
DEFAULT	Framed-Protocol = PPP
	Framed-Protocol = PPP,
	Framed-Compression = Van-Jacobson-TCP-IP

#
# Default for CSLIP: dynamic IP address, SLIP mode, VJ-compression.
#
DEFAULT	Framed-Protocol=SLIP, Framed-Compression = VJ-TCP-IP
	Framed-Protocol = SLIP,
	Framed-Compression = Van-Jacobson-TCP-IP

#
# Default for SLIP: dynamic IP address, SLIP mode.
#
DEFAULT	Framed-Protocol = SLIP
	Framed-Protocol = SLIP

#
# Last default: shell on the local terminal server.
#
DEFAULT
	User-Service-Type = Shell-User

# #
# # Default: rlogin to our main server.
# #
# DEFAULT	Password = "UNIX"
# 	User-Service-Type = Login-User,
# 	Login-Service = Rlogin,
# 	Login-IP-Host = picard.cistron.nl
# 
