1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# The character '&' in logfile names are substituted with the console
# name.
#
config * {
}
default full {
rw *;
}
default * {
logfile /var/log/conserver/&.log;
timestamp "";
include full;
}
##
## list of consoles we serve
##
#console tweety {
# master localhost;
# type host;
# host ts1;
# port 2002;
#}
#console bambam {
# master localhost;
# type host;
# host ts1;
# port 2003;
#}
#console shell {
# master localhost;
# logfile /dev/null;
# type exec;
# exec "";
#}
#console telnet {
# master localhost;
# logfile /dev/null;
# type exec;
# exec telnet host;
#}
#console ttya {
# master localhost;
# type device;
# device /dev/ttya;
# baud 9600;
# parity none;
#}
##
## list of clients we allow
##
access * {
# trusted 127.0.0.1;
allowed 127.0.0.1;
}
|