date : 2009-06-05 start time : 12.58.56 stop time : 12.59.04 runtime : 8 layout-version : 1.9.24 hostname : dfbsd221 domain : local.nl nodename : dfbsd221.local.nl model-id : i386 serial number : GENERIC cpu_cnt : 1 cpu-type : :Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz OS-name : DragonFly license : OS-release : 2.2.1-RELEASE OS-version-level : DragonFly 2.2.1-RELEASE #1: Mon Apr 27 04:19:39 GMT 2009 root@test29.backplane.com:/usr/obj/usr/src/sys/GENERIC timezone : date:GMT run level : superuser password : 11a337355a66f830e8fb640fece513ee memory pagesize : 4096 uptime : 42 mins
10.58.57: 0 : 0 :start of run 10.58.57: 0 : 0 :scc_0000_s_general start of module 10.58.57: 0 : 0 :scc_0000_s_general end of module 10.58.57: 0 : 0 :scc_0100_s_boot start of module 10.58.57: 0 : 0 :scc_0100_s_boot end of module 10.58.57: 0 : 0 :scc_0200_s_hardware start of module 10.58.57: 0 : 0 : scc_0200_s_hardware: end of disk 10.58.57: 0 : 0 :scc_0200_s_hardware end of module 10.58.57: 0 : 0 :scc_0300_s_kernel start of module 10.58.58: 1 : 1 :scc_0300_s_kernel end of module 10.58.58: 0 : 1 :scc_0400_s_vol_mngt start of module 10.58.58: 0 : 1 : scc_0400_s_vol_mngt: end of file systems 10.58.58: 0 : 1 :scc_0400_s_vol_mngt end of module 10.58.58: 0 : 1 :scc_0500_s_network start of module 10.58.59: 1 : 2 :scc_0500_s_network end of module 10.58.59: 0 : 2 :scc_0500_u_named start of module 10.58.59: 0 : 2 :scc_0500_u_named end of module 10.58.59: 0 : 2 :scc_0600_s_software start of module 10.59.03: 4 : 6 :scc_0600_s_software end of module 10.59.03: 0 : 6 :scc_0610_s_oracle_sapr3 start of module 10.59.03: 0 : 6 :scc_0610_s_oracle_sapr3 end of module 10.59.03: 0 : 6 :scc_0620_s_websphere start of module 10.59.03: 0 : 6 :scc_0620_s_websphere end of module 10.59.03: 0 : 6 :scc_0700_s_hp_ov start of module 10.59.03: 0 : 6 :scc_0700_s_hp_ov end of module 10.59.03: 0 : 6 :scc_0700_u_hp_ovou_srv start of module 10.59.03: 0 : 6 :scc_0700_u_hp_ovou_srv end of module 10.59.03: 0 : 6 :scc_0800_s_oracle start of module 10.59.03: 0 : 6 :scc_0800_s_oracle end of module 10.59.03: 0 : 6 :scc_0900_s_system start of module 10.59.04: 1 : 7 :scc_0900_s_system end of module 10.59.04: 0 : 7 :scc_1000_s_users start of module 10.59.04: 0 : 7 :scc_1000_s_users end of module 10.59.04: 7 : 7 :end of run
\ Loader.rc \ $FreeBSD: src/sys/boot/i386/loader/loader.rc,v 1.1 2003/05/31 05:25:18 scottl Exp $ \ $DragonFly: src/sys/boot/pc32/loader/loader.rc,v 1.2 2008/09/02 17:21:18 dillon Exp $ \ \ Includes additional commands include loader.4th \ Reads and processes loader.rc start \ Tests for password -- executes autoboot first if a password was defined check-password \ Load in the boot menu include beastie.4th \ Do the normal initialization and startup initialize drop \ Start the boot menu beastie-start
hostname="dfbsd221.local.nl" ifconfig_lnc0="DHCP" ifconfig_lp0="DHCP"
if [ "X$_file" = "X" ]; then
_file=$0
fi
provide_list=`rcorder -p $_file`
SYSCTL="/sbin/sysctl"
SYSCTL_N="${SYSCTL} -n"
CMD_OSTYPE="${SYSCTL_N} kern.ostype"
OSTYPE=`${CMD_OSTYPE}`
RC_RUNNING=0
RC_FAILED=1
RC_DISABLED=2
RC_IRRELEVANT=3
RC_CONFIGURED=4
RC_STOPPED=5
SYSCTL_W="${SYSCTL}"
set_rcvar()
{
if [ -z "$1" ]; then
base_var=${name}
else
base_var="$1"
fi
echo ${base_var}
}
set_provide_list()
{
for i in $provide_list; do
case $1$2 in
start$RC_RUNNING|restart$RC_RUNNING)
varsym -s rcng_$i=running
;;
start$RC_FAILED|restart$RC_FAILED)
varsym -s rcng_$i=failed
;;
start$RC_DISABLED|restart$RC_DISABLED|reload$RC_DISABLED)
varsym -s rcng_$i=disabled
;;
start$RC_IRRELEVANT|restart$RC_IRRELEVANT|reload$RC_IRRELEVANT)
varsym -s rcng_$i=irrelevant
;;
start$RC_CONFIGURED|restart$RC_CONFIGURED)
varsym -s rcng_$i=configured
;;
stop$RC_DISABLED)
varsym -s rcng_$i=disabled
;;
stop$RC_IRRELEVANT)
varsym -s rcng_$i=irrelevant
;;
stop*)
varsym -s rcng_$i=stopped
;;
*)
;;
esac
done
}
check_early_term()
{
case $2 in
$RC_RUNNING)
return 0
;;
$RC_FAILED)
set_provide_list $1 $2
[ -z "$3" ] || return 0
return 2
;;
$RC_DISABLED)
set_provide_list $1 $2
[ -z "$3" ] || return 0
return 1
;;
$RC_IRRELEVANT)
set_provide_list $1 $2
[ -z "$3" ] || return 0
return 1
;;
$RC_CONFIGURED)
return 0
;;
$RC_STOPPED)
return 0
;;
esac
set_provide_list $1 $2
[ -z "$3" ] || return 0
return 2
}
adjust_return_code()
{
if [ $1 = $RC_FAILED ]; then
return 1
fi
return 0
}
force_depend()
{
_depend="$1"
info "${name} depends on ${_depend}, which will be forced to start."
if ! /etc/rc.d/${_depend} forcestart ; then
warn "Unable to force ${_depend}. It may already be running."
return 1
fi
return 0
}
checkyesno()
{
eval _value=\$${1%_enable}
if [ -z $_value ]
then
eval _value=\$${1%_enable}_enable;
fi
debug "checkyesno: $1 is set to $_value."
case $_value in
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
return 0
;;
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
return 1
;;
*)
warn "\$${1} is not set properly - see rc.conf(5)."
return 1
;;
esac
}
reverse_list()
{
_revlist=
for _revfile in $*; do
_revlist="$_revfile $_revlist"
done
echo $_revlist
}
mount_critical_filesystems()
{
eval _fslist=\$critical_filesystems_${1}
for _fs in $_fslist; do
mount | (
_ismounted=no
while read what _on on _type type; do
if [ $on = $_fs ]; then
_ismounted=yes
fi
done
if [ $_ismounted = no ]; then
mount $_fs >/dev/null 2>&1
fi
)
done
}
check_pidfile()
{
_pidfile=$1
_procname=$2
_interpreter=$3
if [ -z "$_pidfile" -o -z "$_procname" ]; then
err 3 'USAGE: check_pidfile pidfile procname [interpreter]'
fi
if [ ! -f $_pidfile ]; then
debug "pid file {$_pidfile): not readable."
return
fi
read _pid _junk < $_pidfile
if [ -z "$_pid" ]; then
debug "pid file {$_pidfile): no pid in file."
return
fi
_find_processes $_procname ${_interpreter:-.} '-p '"$_pid"
}
check_process()
{
_procname=$1
_interpreter=$2
if [ -z "$_procname" ]; then
err 3 'USAGE: check_process procname [interpreter]'
fi
_find_processes $_procname ${_interpreter:-.} '-ax'
}
_find_processes()
{
if [ $# -ne 3 ]; then
err 3 'USAGE: _find_processes procname interpreter psargs'
fi
_procname=$1
_interpreter=$2
_psargs=$3
_pref=
if [ $_interpreter != "." ]; then # an interpreted script
read _interp < $_procname # read interpreter name
_interp=${_interp#\#!} # strip #!
set -- $_interp
if [ $_interpreter != $1 ]; then
warn "\$command_interpreter $_interpreter != $1"
fi
_interp="$* $_procname" # cleanup spaces, add _procname
_fp_args='_argv'
_fp_match='case "$_argv" in
${_interp}|"${_interp} "*)'
else # a normal daemon
_procnamebn=${_procname##*/}
_fp_args='_arg0 _argv'
_fp_match='case "$_arg0" in
$_procname|$_procnamebn|${_procnamebn}:|"(${_procnamebn})")'
fi
_proccheck='
ps -o "pid,command" '"$_psargs"' |
while read _npid '"$_fp_args"'; do
case "$_npid" in
PID)
continue ;;
esac ; '"$_fp_match"'
echo -n "$_pref$_npid" ;
_pref=" "
;;
esac
done'
eval $_proccheck
}
wait_for_pids()
{
_list=$*
if [ -z "$_list" ]; then
return
fi
_prefix=
while true; do
_nlist="";
for _j in $_list; do
if kill -0 $_j 2>/dev/null; then
_nlist="${_nlist}${_nlist:+ }$_j"
fi
done
if [ -z "$_nlist" ]; then
break
fi
_list=$_nlist
echo -n ${_prefix:-"Waiting for PIDS: "}$_list
_prefix=", "
sleep 2
done
if [ -n "$_prefix" ]; then
echo "."
fi
}
dummy_rc_command()
{
rc_arg=$1
case "$rc_arg" in
fast*) # "fast" prefix; don't check pid
rc_arg=${rc_arg#fast}
;;
force*) # "force prefix; always start
rc_arg=${rc_arg#force}
;;
esac
set_provide_list $rc_arg $RC_CONFIGURED
return 0
}
run_rc_command()
{
_return=0
rc_arg=$1
if [ -z "$name" ]; then
err 3 'run_rc_command: $name is not set.'
fi
case "$rc_arg" in
fast*) # "fast" prefix; don't check pid
rc_arg=${rc_arg#fast}
rc_fast=yes
;;
force*) # "force prefix; always start
rc_arg=${rc_arg#force}
rc_force=yes
if [ -n "${rcvar}" ]; then
eval ${rcvar}=YES
fi
;;
esac
eval _override_command=\$${name}_program
if [ -n "$_override_command" ]; then
command=$_override_command
fi
_keywords="start stop restart rcvar $extra_commands"
rc_pid=
_pidcmd=
_procname=${procname:-${command}}
if [ -z "$rc_fast" -a -n "$_procname" ]; then
if [ -n "$pidfile" ]; then
_pidcmd='rc_pid=$(check_pidfile '"$pidfile $_procname $command_interpreter"')'
else
_pidcmd='rc_pid=$(check_process '"$_procname $command_interpreter"')'
fi
if [ -n "$_pidcmd" ]; then
_keywords="${_keywords} status poll"
fi
fi
if [ -z "$rc_arg" ]; then
rc_usage "$_keywords"
fi
if [ -n "$flags" ]; then # allow override from environment
rc_flags=$flags
else
eval rc_flags=\$${name}_flags
fi
eval _chdir=\$${name}_chdir _chroot=\$${name}_chroot \
_nice=\$${name}_nice _user=\$${name}_user \
_group=\$${name}_group _groups=\$${name}_groups
if [ -n "$_user" ]; then # unset $_user if running as that user
if [ "$_user" = "$(id -un)" ]; then
unset _user
fi
fi
if [ -n "${rcvar}" -a "$rc_arg" != "rcvar" ]; then
if ! checkyesno ${rcvar}; then
set_provide_list $rc_arg $RC_DISABLED
return 0
fi
fi
eval $_pidcmd # determine the pid if necessary
for _elem in $_keywords; do
if [ "$_elem" != "$rc_arg" ]; then
continue
fi
eval _cmd=\$${rc_arg}_cmd _precmd=\$${rc_arg}_precmd \
_postcmd=\$${rc_arg}_postcmd
if [ -n "$_cmd" ]; then
if [ -n "$_precmd" ]; then
debug "run_rc_command: evaluating ${_precmd}()."
eval $_precmd
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
fi
if [ -n "$_cmd" ]; then
debug "run_rc_command: evaluating ${_cmd}()."
eval $_cmd
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
fi
if [ -n "$_postcmd" ]; then
debug "run_rc_command: evaluating ${_postcmd}()."
eval $_postcmd
_return=$?
check_early_term $rc_arg $_return "" || return $(($?-1))
fi
set_provide_list $rc_arg $_return
adjust_return_code $_return
return $?
fi
case "$rc_arg" in # default operations...
status)
if [ -n "$rc_pid" ]; then
echo "${name} is running as pid $rc_pid."
else
echo "${name} is not running."
return 1
fi
;;
start)
if [ -n "$rc_pid" ]; then
echo "${name} already running? (pid=$rc_pid)."
exit 1
fi
if [ ! -x $command ]; then
info "run_rc_command: cannot run ($command)."
set_provide_list $rc_arg $RC_FAILED
adjust_return_code $RC_FAILED
return $?
fi
for _f in $required_vars; do
if ! checkyesno $_f; then
warn "\$${_f} is not set."
if [ -z "$rc_force" ]; then
set_provide_list $rc_arg $RC_FAILED
adjust_return_code $RC_FAILED
return $?
fi
fi
done
for _f in $required_dirs; do
if [ ! -d "${_f}/." ]; then
warn "${_f} is not a directory."
if [ -z "$rc_force" ]; then
set_provide_list $rc_arg $RC_FAILED
adjust_return_code $RC_FAILED
return $?
fi
fi
done
for _f in $required_files; do
if [ ! -r "${_f}" ]; then
warn "${_f} is not readable."
if [ -z "$rc_force" ]; then
set_provide_list $rc_arg $RC_FAILED
adjust_return_code $RC_FAILED
return $?
fi
fi
done
if [ -n "${_precmd}" ]; then
debug "run_rc_command: evaluating ${_precmd}()."
eval $_precmd
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
fi
echo "Starting ${name}."
if [ -n "$_chroot" ]; then
_doit="\
${_nice:+nice -n $_nice }\
chroot ${_user:+-u $_user }${_group:+-g $_group }${_groups:+-G $_groups }\
$_chroot $command $rc_flags $command_args"
else
_doit="\
${_chdir:+cd $_chdir; }\
${_nice:+nice -n $_nice }\
$command $rc_flags $command_args"
if [ -n "$_user" ]; then
_doit="su -m $_user -c 'sh -c \"$_doit\"'"
fi
fi
debug "run_rc_command: _doit: $_doit"
eval $_doit
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
if [ -n "${_postcmd}" ]; then
debug "run_rc_command: evaluating ${_postcmd}()."
eval $_postcmd
fi
;;
stop)
if [ -z "$rc_pid" ]; then
if [ -n "$pidfile" ]; then
echo \
"${name} not running? (check $pidfile)."
else
echo "${name} not running?"
fi
set_provide_list $rc_arg $RC_STOPPED
exit 1
fi
if [ -n $_precmd ]; then
eval $_precmd
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
fi
echo "Stopping ${name}."
_doit="kill -${sig_stop:-TERM} $rc_pid"
if [ -n "$_user" ]; then
_doit="su -m $_user -c 'sh -c \"$_doit\"'"
fi
eval $_doit
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
sleep 0.1
wait_for_pids $rc_pid
if [ -n "$_postcmd" ]; then
eval $_postcmd
_return=$?
fi
;;
reload)
if [ -z "$rc_pid" ]; then
if [ -n "$pidfile" ]; then
echo \
"${name} not running? (check $pidfile)."
else
echo "${name} not running?"
fi
set_provide_list $rc_arg $RC_FAILED
exit 1
fi
echo "Reloading ${name} config files."
if [ -n "$_precmd" ]; then
eval $_precmd
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
fi
_doit="kill -${sig_reload:-HUP} $rc_pid"
if [ -n "$_user" ]; then
_doit="su -m $_user -c 'sh -c \"$_doit\"'"
fi
eval $_doit
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
if [ -n "$_postcmd" ]; then
eval $_postcmd
_return=$?
fi
;;
restart)
if [ -n "$_precmd" ]; then
eval $_precmd
_return=$?
check_early_term $rc_arg $_return "$rc_force" || return $(($?-1))
fi
if [ -n "$_rc_restart_done" ]; then
return 0
fi
_rc_restart_done=YES
( $0 ${rc_force:+force}stop )
$0 ${rc_force:+force}start
_return=$?
if [ -n "$_postcmd" ]; then
eval $_postcmd
adjust_return_code $?
_return=$?
fi
return $_return
;;
poll)
if [ -n "$rc_pid" ]; then
wait_for_pids $rc_pid
fi
;;
rcvar)
echo "# $name"
if [ -n "$rcvar" ]; then
if checkyesno ${rcvar}; then
echo "\$${rcvar}=YES"
else
echo "\$${rcvar}=NO"
fi
fi
;;
*)
rc_usage "$_keywords"
;;
esac
set_provide_list $rc_arg $_return
adjust_return_code $_return
return $?
done
echo 1>&2 "$0: unknown directive '$rc_arg'."
rc_usage "$_keywords"
exit 1
}
run_rc_script()
{
_file=$1
_arg=$2
if [ -z "$_file" -o -z "$_arg" ]; then
err 3 'USAGE: run_rc_script file arg'
fi
trap "echo 'Reboot interrupted'; exit 1" 3
unset name command command_args command_interpreter \
extra_commands pidfile procname \
rcvar required_dirs required_files required_vars
eval unset ${_arg}_cmd ${_arg}_precmd ${_arg}_postcmd
case "$_file" in
*.sh) # run in current shell
set $_arg ; . $_file
;;
*[~#]|*.OLD|*.orig) # scratch file; skip
warn "Ignoring scratch file $_file"
;;
*) # run in subshell
if [ -x $_file ]; then
if [ -n "$rc_fast_and_loose" ]; then
set $_arg ; . $_file
else
( trap "echo 'Reboot interrupted'; exit 1" 3
set $_arg ; . $_file )
fi
fi
;;
esac
}
load_rc_config()
{
_command=$1
if [ -z "$_command" ]; then
err 3 'USAGE: load_rc_config command'
fi
if [ -z "$_rc_conf_loaded" ]; then
if [ -r /etc/defaults/rc.conf ]; then
debug "Sourcing /etc/defaults/rc.conf"
. /etc/defaults/rc.conf
source_rc_confs
elif [ -r /etc/rc.conf ]; then
debug "Sourcing /etc/rc.conf (/etc/defaults/rc.conf doesn't exist)."
. /etc/rc.conf
fi
_rc_conf_loaded=YES
fi
if [ -f /etc/rc.conf.d/"$_command" ]; then
debug "Sourcing /etc/rc.conf.d/${_command}"
. /etc/rc.conf.d/"$_command"
fi
[ -n "$portmap_enable" ] && rpcbind_enable="$portmap_enable"
[ -n "$portmap_program" ] && rpcbind_program="$portmap_program"
[ -n "$portmap_flags" ] && rpcbind_flags="$portmap_flags"
[ -n "$single_mountd_enable" ] && mountd_enable="$single_mountd_enable"
[ -n "$dhcp_program" ] && dhclient_program="$dhcp_program"
[ -n "$dhcp_flags" ] && dhclient_flags="$dhcp_flags"
}
rc_usage()
{
echo -n 1>&2 "Usage: $0 [fast|force]("
_sep=
for _elem in $*; do
echo -n 1>&2 "$_sep$_elem"
_sep="|"
done
echo 1>&2 ")"
exit 1
}
err()
{
exitval=$1
shift
if [ -x /usr/bin/logger ]; then
logger "$0: ERROR: $*"
fi
echo 1>&2 "$0: ERROR: $*"
exit $exitval
}
warn()
{
if [ -x /usr/bin/logger ]; then
logger "$0: WARNING: $*"
fi
echo 1>&2 "$0: WARNING: $*"
}
info()
{
case ${rc_info} in
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
if [ -x /usr/bin/logger ]; then
logger "$0: INFO: $*"
fi
echo "$0: INFO: $*"
;;
esac
}
debug()
{
case ${rc_debug} in
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
if [ -x /usr/bin/logger ]; then
logger "$0: INFO: $*"
fi
echo 1>&2 "$0: DEBUG: $*"
;;
esac
}
backup_file()
{
_action=$1
_cpfile=$2
_cur=$3
_back=$4
if checkyesno backup_uses_rcs; then
_msg0="backup archive"
_msg1="update"
if [ -f $_cur,v ]; then
rcs -q -u -U -M $_cur
fi
if [ -f $_cur ]; then
if [ ! -f $_cur,v -o $_cur -nt $_cur,v ]; then
ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
rcs -q -kb -U $_cur
co -q -f -u $_cur
fi
fi
case $_action in
add|update)
cp -p $_cpfile $_cur
ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
rcs -q -kb -U $_cur
co -q -f -u $_cur
chown root:wheel $_cur $_cur,v
;;
remove)
cp /dev/null $_cur
ci -q -f -u -t-"$_msg0" -m"$_msg1" $_cur
rcs -q -kb -U $_cur
chown root:wheel $_cur $_cur,v
rm $_cur
;;
esac
else
case $_action in
add|update)
if [ -f $_cur ]; then
cp -p $_cur $_back
fi
cp -p $_cpfile $_cur
chown root:wheel $_cur
;;
remove)
mv -f $_cur $_back
;;
esac
fi
}
#!/bin/sh
stty status '^T'
trap : 2
trap : 3 # shouldn't be needed
HOME=/
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/pkg/sbin:/usr/local/sbin
export HOME PATH
. /etc/rc.subr
load_rc_config 'XXX'
reverse_list()
{
_revlist=
for _revfile in $*; do
_revlist="$_revfile${script_name_sep}$_revlist"
done
echo $_revlist
}
_rcshutdown_watchdog=
if [ -n "$rcshutdown_timeout" ]; then
debug "Initiating watchdog timer."
sleep $rcshutdown_timeout && (
_msg="$rcshutdown_timeout second watchdog" \
" timeout expired. Shutdown terminated."
logger -t rc.shutdown "$_msg"
echo "$_msg"
date
kill -KILL $$ >/dev/null 2>&1
) &
_rcshutdown_watchdog=$!
fi
files=`rcorder -k shutdown /etc/rc.d/* 2>/dev/null`
for _rc_elem in `reverse_list $files`; do
debug "run_rc_script $_rc_elem stop"
run_rc_script $_rc_elem stop
done
if [ -n "$_rcshutdown_watchdog" ]; then
kill -TERM $_rcshutdown_watchdog >/dev/null 2>&1
fi
echo '.'
exit 0
Copyright (c) 2003-2009 The DragonFly Project. Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. DragonFly 2.2.1-RELEASE #1: Mon Apr 27 04:19:39 GMT 2009 root@test29.backplane.com:/usr/obj/usr/src/sys/GENERIC TSC clock: 2260607258 Hz, i8254 clock: 1193008 Hz CPU: Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz (2260.34-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x10676 Stepping = 6 Features=0xfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS> Features2=0x80080201<SSE3,SSSE3,SSE4.1,<b31>> real memory = 268435456 (262144K bytes) avail memory = 247263232 (241468K bytes) Preloaded elf kernel "/boot/kernel" at 0xc07c5000. Preloaded elf module "/boot/modules/acpi.ko" at 0xc07c52e0. Pentium Pro MTRR support enabled md0: Malloc disk pcibios: BIOS version 2.10 Using $PIR table, 20 entries at 0xc00fde80 ACPI: RSDP @ 0x0xf6a30/0x0024 (v 2 PTLTD ) ACPI: XSDT @ 0x0xfef0780/0x004C (v 1 INTEL 440BX 0x06040000 VMW 0x01324272) ACPI: FACP @ 0x0xfefee98/0x00F4 (v 4 INTEL 440BX 0x06040000 PTL 0x000F4240) ACPI: DSDT @ 0x0xfef0938/0xE560 (v 1 PTLTD Custom 0x06040000 MSFT 0x03000001) ACPI: FACS @ 0x0xfefffc0/0x0040 ACPI: BOOT @ 0x0xfef0910/0x0028 (v 1 PTLTD $SBFTBL$ 0x06040000 LTP 0x00000001) ACPI: APIC @ 0x0xfef08c0/0x0050 (v 1 PTLTD APIC 0x06040000 LTP 0x00000000) ACPI: MCFG @ 0x0xfef0884/0x003C (v 1 PTLTD $PCITBL$ 0x06040000 LTP 0x00000001) ACPI: SRAT @ 0x0xfef0804/0x0080 (v 2 VMWARE MEMPLUG 0x06040000 VMW 0x00000001) npx0: <math processor> on motherboard npx0: INT 16 interface Using XMM optimized bcopy/copyin/copyout acpi0: <INTEL 440BX> on motherboard acpi0: Power Button (fixed) Warning: ACPI is disabling APM's device. You can't run both unknown: memory range not supported unknown: memory range not supported acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_acad0: <AC Adapter> on acpi0 acpi_button0: <Sleep Button> on acpi0 cpu0: <ACPI CPU> on acpi0 isab0: <ACPI Generic ISA bridge> on acpi0 atkbdc0: <Keyboard controller (i8042)> port 0x64,0x60 irq 1 on acpi0 atkbd0: <AT Keyboard> flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: failed to get data. psm0: <PS/2 Mouse> irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 ppc0 port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: <Parallel port bus> on ppc0 plip0: <PLIP network interface> on ppbus0 lpt0: <Printer> on ppbus0 lpt0: Interrupt-driven port ppi0: <Parallel I/O> on ppbus0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A fdc0: <Intel 82077 or clone> port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 legacypci0 on motherboard pcib0: <Intel 82443BX (440 BX) host to PCI bridge> on legacypci0 pci0: <PCI bus> on pcib0 pcib1: <Intel 82443BX (440 BX) PCI-PCI (AGP) bridge> at device 1.0 on pci0 pci1: <PCI bus> on pcib1 isab1: <Intel 82371AB PCI to ISA bridge> at device 7.0 on pci0 isa0: <ISA bus> on isab1 atapci0: <Intel PIIX4 UDMA33 controller> port 0x10c0-0x10cf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 7.1 on pci0 ata0: <ATA channel 0> on atapci0 ata1: <ATA channel 1> on atapci0 acd0: CDROM <VMware Virtual IDE CDROM Drive/00000001> at ata1-master UDMA33 pci0: <Intel 82371AB Power management controller> at 7.3 pci0: <unknown card> (vendor=0x15ad, dev=0x0740) at 7.7 irq 9 pci0: <VGA-compatible display device> at 15.0 irq 9 mpt0: <LSILogic 1030 Ultra4 Adapter> port 0x1400-0x14ff mem 0xd8800000-0xd881ffff,0xd8820000-0xd883ffff irq 11 at device 16.0 on pci0 pcib2: <PCI to PCI bridge (vendor=15ad device=0790)> at device 17.0 on pci0 pci2: <PCI bus> on pcib2 lnc0: <AMD PCnet-PCI> port 0x2000-0x207f irq 10 at device 0.0 on pci2 lnc0: 16 receive buffers, 4 transmit buffers lnc0: MAC address: 00:0c:29:4f:95:a4 pcib3: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.0 on pci0 pci3: <PCI bus> on pcib3 pcib4: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.1 on pci0 pci4: <PCI bus> on pcib4 pcib5: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.2 on pci0 pci5: <PCI bus> on pcib5 pcib6: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.3 on pci0 pci6: <PCI bus> on pcib6 pcib7: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.4 on pci0 pci7: <PCI bus> on pcib7 pcib8: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.5 on pci0 pci8: <PCI bus> on pcib8 pcib9: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.6 on pci0 pci9: <PCI bus> on pcib9 pcib10: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.7 on pci0 pci10: <PCI bus> on pcib10 pcib11: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.0 on pci0 pci11: <PCI bus> on pcib11 pcib12: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.1 on pci0 pci12: <PCI bus> on pcib12 pcib13: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.2 on pci0 pci13: <PCI bus> on pcib13 pcib14: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.3 on pci0 pci14: <PCI bus> on pcib14 pcib15: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.4 on pci0 pci15: <PCI bus> on pcib15 pcib16: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.5 on pci0 pci16: <PCI bus> on pcib16 pcib17: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.6 on pci0 pci17: <PCI bus> on pcib17 pcib18: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.7 on pci0 pci18: <PCI bus> on pcib18 pcib19: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.0 on pci0 pci19: <PCI bus> on pcib19 pcib20: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.1 on pci0 pci20: <PCI bus> on pcib20 pcib21: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.2 on pci0 pci21: <PCI bus> on pcib21 pcib22: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.3 on pci0 pci22: <PCI bus> on pcib22 pcib23: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.4 on pci0 pci23: <PCI bus> on pcib23 pcib24: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.5 on pci0 pci24: <PCI bus> on pcib24 pcib25: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.6 on pci0 pci25: <PCI bus> on pcib25 pcib26: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.7 on pci0 pci26: <PCI bus> on pcib26 pcib27: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.0 on pci0 pci27: <PCI bus> on pcib27 pcib28: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.1 on pci0 pci28: <PCI bus> on pcib28 pcib29: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.2 on pci0 pci29: <PCI bus> on pcib29 pcib30: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.3 on pci0 pci30: <PCI bus> on pcib30 pcib31: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.4 on pci0 pci31: <PCI bus> on pcib31 pcib32: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.5 on pci0 pci32: <PCI bus> on pcib32 pcib33: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.6 on pci0 pci33: <PCI bus> on pcib33 pcib34: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.7 on pci0 pci34: <PCI bus> on pcib34 orm0: <Option ROMs> at iomem 0xc0000-0xc7fff,0xca000-0xcafff,0xdc000-0xdffff,0xe4000-0xe7fff on isa0 pmtimer0 on isa0 fdc1: cannot reserve I/O port range vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: <System console> at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> ppc1: cannot reserve I/O port range Waiting 5 seconds for SCSI devices to settle da0 at mpt0 bus 0 target 0 lun 0 da0: <VMware, VMware Virtual S 1.0> Fixed Direct Access SCSI-2 device da0: 3.300MB/s transfers (3.300MHz DT, offset -928659128) da0: 8192MB (16777216 512 byte sectors: 255H 63S/T 1044C) cd0 at ata1 bus 0 target 0 lun 0 cd0: <NECVMWar VMware IDE CDR10 1.00> Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Mounting root from hammer:/dev/da0s1a
BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \ -Wcast-qual -Wchar-subscripts -Winline \ -Wmissing-prototypes -Wnested-externs -Wpointer-arith \ -Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings THREAD_LIB?= thread_xu
#!/bin/sh
periodic_conf_files="/etc/periodic.conf /etc/periodic.conf.local"
local_periodic="/usr/local/etc/periodic /usr/pkg/xorg/etc/periodic /usr/X11R6/etc/periodic"
daily_output="root" # user or /file
daily_show_success="YES" # scripts returning 0
daily_show_info="YES" # scripts returning 1
daily_show_badconfig="NO" # scripts returning 2
daily_clean_disks_enable="NO" # Delete files daily
daily_clean_disks_files="[#,]* .#* a.out *.core *.CKP .emacs_[0-9]*"
daily_clean_disks_days=3 # If older than this
daily_clean_disks_verbose="YES" # Mention files deleted
daily_clean_tmps_enable="NO" # Delete stuff daily
daily_clean_tmps_dirs="/tmp" # Delete under here
daily_clean_tmps_days="3" # If not accessed for
daily_clean_tmps_ignore=".X*-lock .X11-unix .ICE-unix .font-unix .XIM-unix"
daily_clean_tmps_ignore="$daily_clean_tmps_ignore quota.user quota.group"
daily_clean_tmps_verbose="YES" # Mention files deleted
daily_clean_preserve_enable="YES" # Delete files daily
daily_clean_preserve_days=7 # If not modified for
daily_clean_preserve_verbose="YES" # Mention files deleted
daily_clean_msgs_enable="YES" # Delete msgs daily
daily_clean_msgs_days= # If not modified for
daily_clean_rwho_enable="YES" # Delete rwho daily
daily_clean_rwho_days=7 # If not modified for
daily_clean_rwho_verbose="YES" # Mention files deleted
daily_clean_hoststat_enable="YES" # Delete .hoststat daily
daily_clean_hammer_enable="YES" # HAMMER maintenance
daily_clean_hammer_verbose="NO" # Be verbose
daily_backup_passwd_enable="YES" # Backup passwd & group
daily_backup_aliases_enable="YES" # Backup mail aliases
daily_backup_distfile_enable="YES" # Backup /etc/Distfile
daily_calendar_enable="NO" # Run calendar -a
daily_accounting_enable="YES" # Rotate acct files
daily_accounting_compress="NO" # Gzip rotated files
daily_accounting_flags=-q # Flags to /usr/sbin/sa
daily_accounting_save=3 # How many files to save
daily_distfile_enable="YES" # Run rdist daily
daily_news_expire_enable="YES" # Run news.expire
daily_status_disks_enable="YES" # Check disk status
daily_status_disks_df_flags="-k -l -h" # df(1) flags for check
daily_status_security_logincheck_enable="YES"
daily_status_network_enable="YES" # Check network status
daily_status_network_usedns="YES" # DNS lookups are ok
daily_status_rwho_enable="YES" # Check system status
daily_status_mailq_enable="YES" # Check mail status
daily_status_mailq_shorten="NO" # Shorten output
daily_status_include_submit_mailq="YES" # Also submit queue
daily_status_security_enable="YES" # Security check
daily_status_mail_rejects_enable="YES" # Check mail rejects
daily_status_mail_rejects_logs=3 # How many logs to check
daily_status_named_enable="YES"
daily_status_named_usedns="YES" # DNS lookups are ok
daily_queuerun_enable="YES" # Run mail queue
daily_submit_queuerun="YES" # Also submit queue
daily_local="/etc/daily.local" # Local scripts
daily_status_security_inline="NO" # Run inline ?
daily_status_security_output="root" # user or /file
daily_status_security_noamd="NO" # Don't check amd mounts
daily_status_security_nomfs="NO" # Don't check mfs mounts
daily_status_security_logdir="/var/log" # Directory for logs
daily_status_security_diff_flags="-b" # flags for diff output
daily_status_security_chksetuid_enable="YES"
daily_status_security_chkmounts_enable="YES"
daily_status_security_chkuid0_enable="YES"
daily_status_security_passwdless_enable="YES"
daily_status_security_ipfwdenied_enable="YES"
daily_status_security_ipfdenied_enable="YES"
daily_status_security_pfdenied_enable="YES"
daily_status_security_ipfwlimit_enable="YES"
daily_status_security_ip6fwdenied_enable="YES"
daily_status_security_ip6fwlimit_enable="YES"
daily_status_security_kernelmsg_enable="YES"
daily_status_security_loginfail_enable="YES"
daily_status_security_tcpwrap_enable="YES"
weekly_output="root" # user or /file
weekly_show_success="YES" # scripts returning 0
weekly_show_info="YES" # scripts returning 1
weekly_show_badconfig="NO" # scripts returning 2
weekly_clean_kvmdb_enable="YES" # Clean kvmdb weekly
weekly_clean_kvmdb_days=7 # If not accessed for
weekly_clean_kvmdb_verbose="YES" # Mention files deleted
weekly_locate_enable="YES" # Update locate weekly
weekly_whatis_enable="YES" # Update whatis weekly
weekly_catman_enable="NO" # Preformat man pages
weekly_noid_enable="NO" # Find unowned files
weekly_noid_dirs="/" # Look here
weekly_local="/etc/weekly.local" # Local scripts
monthly_output="root" # user or /file
monthly_show_success="YES" # scripts returning 0
monthly_show_info="YES" # scripts returning 1
monthly_show_badconfig="NO" # scripts returning 2
monthly_accounting_enable="YES" # Login accounting
monthly_local="/etc/monthly.local" # Local scripts
if [ -z "${source_periodic_confs_defined}" ]; then
source_periodic_confs_defined=yes
source_periodic_confs () {
local i sourced_files
for i in ${periodic_conf_files}; do
case ${sourced_files} in
*:$i:*)
;;
*)
sourced_files="${sourced_files}:$i:"
[ -r $i ] && . $i
;;
esac
done
}
fi
#!/bin/sh
rc_debug="NO" # Set to YES to enable debugging output from rc.d
rc_info="YES" # Enables display of informational messages at boot.
rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).
apmd_enable="NO" # Run apmd to handle APM event from userland.
apmd_flags="" # Flags to apmd (if enabled).
battd_enable="NO" # Set to YES to have battd alert on 10% battery power remaining.
battd_flags="" # Flags to battd (if enabled).
sensorsd_enable="NO" # Run sensorsd to monitor and log sensor state changes.
sensorsd_flags="" # additional flags for sensorsd(8).
pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO).
pccard_ether_delay="5" # Delay before trying to start dhclient in pccard_ether
removable_interfaces="" # Removable network interfaces for /etc/pccard_ether.
local_startup="/usr/pkg/etc/rc.d /usr/local/etc/rc.d /usr/pkg/xorg/etc/rc.d /usr/X11R6/etc/rc.d"
script_name_sep=" " # Change if your startup scripts' names contain spaces
rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
fsck_y_enable="NO" # Set to YES to do fsck -y if the initial preen fails.
netfs_types="nfs:NFS smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
extra_netfs_types="NO" # List of network extra filesystem types for delayed
hostname="" # Set this!
nisdomainname="NO" # Set to NIS domain if using NIS (or NO).
dhclient_program="/sbin/dhclient" # Path to dhcp client program.
dhclient_flags="" # Additional flags to pass to dhcp client.
firewall_enable="NO" # Set to YES to enable firewall functionality
firewall_script="/etc/rc.firewall" # Which script to run to set up the firewall
firewall_type="UNKNOWN" # Firewall type (see /etc/rc.firewall)
firewall_trusted_nets="192.168.0.0/16" # list of trusted nets
firewall_trusted_interfaces="" # list of trusted interfaces e.g. "rl0 xl0"
firewall_allowed_icmp_types="0 3 8 11 12 13 14"
firewall_open_tcp_ports="22 25 53 80 113 443"
firewall_open_udp_ports="53"
firewall_quiet="NO" # Set to YES to suppress rule display
firewall_logging="NO" # Set to YES to enable events logging
firewall_flags="" # Flags passed to ipfw when type is a file
ip_portrange_first="NO" # Set first dynamically allocated port
ip_portrange_last="NO" # Set last dynamically allocated port
ipsec_enable="NO" # Set to YES to run setkey on ipsec_file
ipsec_file="/etc/ipsec.conf" # Name of config file for setkey
natd_program="/sbin/natd" # path to natd, if you want a different one.
natd_enable="NO" # Enable natd (if firewall_enable == YES).
natd_interface="" # Public interface or IPaddress to use.
natd_flags="" # Additional flags for natd.
ipfilter_enable="NO" # Set to YES to enable ipfilter functionality
ipfilter_program="/sbin/ipf" # where the ipfilter program lives
ipfilter_rules="/etc/ipf.rules" # rules definition file for ipfilter, see
ipfilter_flags="" # additional flags for ipfilter
ipnat_enable="NO" # Set to YES to enable ipnat functionality
ipnat_program="/sbin/ipnat" # where the ipnat program lives
ipnat_rules="/etc/ipnat.rules" # rules definition file for ipnat
ipnat_flags="" # additional flags for ipnat
ipmon_enable="NO" # Set to YES for ipmon; needs ipfilter or ipnat
ipmon_program="/sbin/ipmon" # where the ipfilter monitor program lives
ipmon_flags="-Ds" # typically "-Ds" or "-D /var/log/ipflog"
ipfs_enable="NO" # Set to YES to enable saving and restoring
ipfs_program="/sbin/ipfs" # where the ipfs program lives
ipfs_flags="" # additional flags for ipfs
pf_enable="NO" # Set to YES to enable packet filter (pf)
pf_rules="/etc/pf.conf" # rules definition file for pf
pf_program="/usr/sbin/pfctl" # where the pfctl program lives
pf_flags="" # additional flags for pfctl
pflog_enable="NO" # Set to YES to enable packet filter logging
pflog_logfile="/var/log/pflog" # where pflogd should store the logfile
pflog_program="/usr/sbin/pflogd" # where the pflogd program lives
pflog_flags="" # additional flags for pflogd
tcp_extensions="YES" # Set to NO to turn off RFC1323 extensions.
log_in_vain="0" # >=1 to log connects to ports w/o listeners.
tcp_keepalive="YES" # Enable stale TCP connection timeout (or NO).
tcp_drop_synfin="NO" # Set to YES to drop TCP packets with SYN+FIN
icmp_drop_redirect="NO" # Set to YES to ignore ICMP REDIRECT packets
icmp_log_redirect="NO" # Set to YES to log ICMP REDIRECT packets
network_interfaces="auto" # List of network interfaces (or "auto").
cloned_interfaces="" # List of cloned network interfaces to create.
ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
sppp_interfaces="" # List of sppp interfaces.
gif_interfaces="NO" # List of GIF tunnels (or "NO").
ppp_enable="NO" # Start user-ppp (or NO).
ppp_mode="auto" # Choice of "auto", "ddial", "direct" or "dedicated".
ppp_nat="YES" # Use PPP's internal network address translation or NO.
ppp_profile="papchap" # Which profile to use from /etc/ppp/ppp.conf.
ppp_user="root" # Which user to run ppp as
hostapd_enable="NO" # Run hostap daemon.
syslogd_enable="YES" # Run syslog daemon (or NO).
syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one.
syslogd_flags="-ss" # Syslogd flags to not bind an inet socket
inetd_enable="NO" # Run the network daemon dispatcher (YES/NO).
inetd_program="/usr/sbin/inetd" # path to inetd, if you want a different one.
inetd_flags="-wW" # Optional flags to inetd
named_enable="NO" # Run named, the DNS server (or NO).
named_program="/usr/sbin/named" # path to named, if you want a different one.
named_pidfile="/var/run/named.pid" # Pid file
named_chrootdir="/etc/namedb" # Chroot directory (or "" not to auto-chroot it)
kerberos5_server_enable="NO" # Run a kerberos 5 master server (or NO).
kerberos5_server_program="/usr/libexec/kdc" # path to kerberos 5 KDC
kadmind5_server_enable="NO" # Run kadmind (or NO)
kadmind5_server_program="/usr/libexec/kadmind" # path to kerberos 5 admin daemon
kpasswdd_server_enable="NO" # Run kpasswdd (or NO)
kpasswdd_server_program="/usr/libexec/kpasswdd" # path to kerberos 5 passwd daemon
rwhod_enable="NO" # Run the rwho daemon (or NO).
rwhod_flags="" # Flags for rwhod
rarpd_enable="NO" # Run rarpd (or NO).
rarpd_flags="" # Flags to rarpd.
bootparamd_enable="NO" # Run bootparamd (or NO).
bootparamd_flags="" # Flags to bootparamd
pppoed_enable="NO" # Run the PPP over Ethernet daemon.
pppoed_provider="*" # Provider and ppp(8) config file entry.
pppoed_flags="-P /var/run/pppoed.pid" # Flags to pppoed (if enabled).
pppoed_interface="fxp0" # The interface that pppoed runs on.
sshd_enable="YES" # Enable sshd
sshd_program="/usr/sbin/sshd" # path to sshd, if you want a different one.
sshd_flags="" # Additional flags for sshd.
ftpd_enable="NO" # Run stand-alone ftp daemon (or NO).
ftpd_flags="" # Flags for ftpd, -D added implicitly.
amd_enable="NO" # Run amd service with $amd_flags (or NO).
amd_flags="-a /.amd_mnt -l syslog /host /etc/amd.map /net /etc/amd.map"
amd_map_program="NO" # Can be set to "ypcat -k amd.master"
nfs_client_enable="NO" # This host is an NFS client (or NO).
nfs_client_flags="-n 4" # Flags to nfsiod (if enabled).
nfs_access_cache="5" # Client attribute cache timeout in seconds
nfs_server_enable="NO" # This host is an NFS server (or NO).
nfs_server_flags="-u -t -n 4" # Flags to nfsd (if enabled).
mountd_enable="NO" # Run mountd (or NO).
mountd_flags="-r" # Flags to mountd (if NFS server enabled).
weak_mountd_authentication="NO" # Allow non-root mount requests to be served.
nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO).
nfs_bufpackets="" # bufspace (in packets) for client
rpc_lockd_enable="NO" # Run NFS rpc.lockd needed for client/server.
rpc_lockd_flags="" # Flags to rpc.lockd (if enabled).
rpc_statd_enable="NO" # Run NFS rpc.statd needed for client/server.
rpc_statd_flags="" # Flags to rpc.statd (if enabled).
rpc_umntall_enable="YES" # Run NFS rpc.umntall on boot and shutdown
rpcbind_enable="NO" # Run the portmapper service (YES/NO).
rpcbind_program="/usr/sbin/rpcbind" # path to rpcbind, if you want a different one.
rpcbind_flags="" # Flags to rpcbind (if enabled).
rpc_ypupdated_enable="NO" # Run if NIS master and SecureRPC (or NO).
keyserv_enable="NO" # Run the SecureRPC keyserver (or NO).
keyserv_flags="" # Flags to keyserv (if enabled).
timed_enable="NO" # Run the time daemon (or NO).
timed_flags="" # Flags to timed (if enabled).
dntpd_enable="NO" # Run dntpd Network Time Protocol (or NO).
dntpd_program="/usr/sbin/dntpd" # path to dntpd, if you want a different one.
dntpd_flags="" # Flags to dntpd (if enabled) also server name(s)
btconfig_enable="NO" # Configure Bluetooth devices (or NO).
btconfig_devices="" # List of Bluetooth devices (or empty for all).
btconfig_args="" # Parameters to pass to all devices.
sdpd_enable="NO" # Run the Service Discovery Profile daemon (or NO).
sdpd_flags="" # Flags to sdpd (if enabled).
bthcid_enable="NO" # Run the Bluetooth Link Key/PIN Code Manager (or NO).
bthcid_flags="" # Flags to bthcid (if enabled).
nis_client_enable="NO" # We're an NIS client (or NO).
nis_client_flags="" # Flags to ypbind (if enabled).
nis_ypset_enable="NO" # Run ypset at boot time (or NO).
nis_ypset_flags="" # Flags to ypset (if enabled).
nis_server_enable="NO" # We're an NIS server (or NO).
nis_server_flags="" # Flags to ypserv (if enabled).
nis_ypxfrd_enable="NO" # Run rpc.ypxfrd at boot time (or NO).
nis_ypxfrd_flags="" # Flags to rpc.ypxfrd (if enabled).
nis_yppasswdd_enable="NO" # Run rpc.yppasswdd at boot time (or NO).
nis_yppasswdd_flags="" # Flags to rpc.yppasswdd (if enabled).
defaultrouter="NO" # Set to default gateway (or NO).
static_routes="" # Set to static route list (or leave empty).
gateway_enable="NO" # Set to YES if this host will be a gateway.
router_enable="NO" # Set to YES to enable a routing daemon.
router_program="/sbin/routed" # Name of routing daemon to use if enabled.
router_flags="-q" # Flags for routing daemon.
mrouted_enable="NO" # Do multicast routing (see /etc/mrouted.conf).
mrouted_flags="" # Flags for multicast routing daemon.
ipxgateway_enable="NO" # Set to YES to enable IPX routing.
ipxrouted_enable="NO" # Set to YES to run the IPX routing daemon.
ipxrouted_flags="" # Flags for IPX routing daemon.
arpproxy_all="NO" # replaces obsolete kernel option ARP_PROXYALL.
forward_sourceroute="NO" # do source routing (only if gateway_enable is set to "YES")
accept_sourceroute="NO" # accept source routed packets to us
atm_enable="NO" # Configure ATM interfaces (or NO).
atm_arps="" # Set to permanent ARP list (or leave empty).
isdn_enable="NO" # Enable the ISDN subsystem (or NO).
isdn_fsdev="NO" # Output device for fullscreen mode (or NO for daemon mode).
isdn_flags="-dn -d0x1f9" # Flags for isdnd
isdn_ttype="cons25" # terminal type for fullscreen mode
isdn_screenflags="NO" # screenflags for ${isdn_fsdev}
isdn_trace="NO" # Enable the ISDN trace subsystem (or NO).
isdn_traceflags="-f /var/tmp/isdntrace0" # Flags for isdntrace
icmp_bmcastecho="NO" # respond to broadcast ping packets
ipv6_enable="NO" # Set to YES to set up for IPv6.
ipv6_network_interfaces="auto" # List of network interfaces (or "auto").
ipv6_defaultrouter="NO" # Set to IPv6 default gateway (or NO).
ipv6_static_routes="" # Set to static route list (or leave empty).
ipv6_gateway_enable="NO" # Set to YES if this host will be a gateway.
ipv6_router_enable="NO" # Set to YES to enable an IPv6 routing daemon.
ipv6_router_program="/usr/sbin/route6d" # Name of IPv6 routing daemon.
ipv6_router_flags="" # Flags to IPv6 routing daemon.
ipv6_default_interface="NO" # Default output interface for scoped addrs.
rtadvd_enable="NO" # Set to YES to enable an IPv6 router
rtadvd_interfaces="" # Interfaces rtadvd sends RA packets.
rtsold_enable="NO" # Set to YES to enable an IPv6 routing
rtsold_flags="-a" # Do autoprobing of outgoing interface.
mroute6d_enable="NO" # Do IPv6 multicast routing.
mroute6d_program="/usr/local/sbin/pim6dd" # Name of IPv6 multicast
mroute6d_flags="" # Flags to IPv6 multicast routing daemon.
stf_interface_ipv4addr="" # Local IPv4 addr for 6to4 IPv6 over IPv4
stf_interface_ipv4plen="0" # Prefix length for 6to4 IPv4 addr,
stf_interface_ipv6_ifid="0:0:0:1" # IPv6 interface id for stf0.
stf_interface_ipv6_slaid="0000" # IPv6 Site Level Aggregator for stf0
ipv6_faith_prefix="NO" # Set faith prefix to enable a FAITH
ipv6_ipv4mapping="NO" # Set to "YES" to enable IPv4 mapped IPv6 addr
ipv6_firewall_enable="NO" # Set to YES to enable IPv6 firewall
ipv6_firewall_script="/etc/rc.firewall6" # Which script to run to set up the IPv6 firewall
ipv6_firewall_type="UNKNOWN" # IPv6 Firewall type (see /etc/rc.firewall6)
ipv6_firewall_quiet="NO" # Set to YES to suppress rule display
ipv6_firewall_logging="NO" # Set to YES to enable events logging
ipv6_firewall_flags="" # Flags passed to ip6fw when type is a file
ipv6_ipfilter_rules="/etc/ipf6.rules" # rules definition file for ipfilter,
keymap="NO" # keymap in /usr/share/syscons/keymaps/* (or NO).
keyrate="NO" # keyboard rate to: slow, normal, fast (or NO).
keybell="NO" # See kbdcontrol(1) for options. Use "off" to disable.
keychange="NO" # function keys default values (or NO).
cursor="NO" # cursor type {normal|blink|destructive} (or NO).
scrnmap="NO" # screen map in /usr/share/syscons/scrnmaps/* (or NO).
font8x16="NO" # font 8x16 from /usr/share/syscons/fonts/* (or NO).
font8x14="NO" # font 8x14 from /usr/share/syscons/fonts/* (or NO).
font8x8="NO" # font 8x8 from /usr/share/syscons/fonts/* (or NO).
blanktime="300" # blank time (in seconds) or "NO" to turn it off.
saver="NO" # screen saver: Uses /modules/${saver}_saver.ko
moused_enable="NO" # Run the mouse daemon.
moused_type="auto" # See man page for rc.conf(5) for available settings.
moused_port="/dev/psm0" # Set to your mouse port.
moused_flags="" # Any additional flags to moused.
mousechar_start="NO" # if 0xd0-0xd3 default range is occupied in your
vidhistory="" # Set video history buffer size
allscreens_flags="" # Set this vidcontrol mode for all virtual screens
allscreens_kbdflags="" # Set this kbdcontrol mode for all virtual screens
mta_start_script="/etc/rc.sendmail"
sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO).
sendmail_flags="-L sm-mta -bd -q30m" # Flags to sendmail (as a server)
sendmail_submit_enable="YES" # Start a localhost-only MTA for mail submission
sendmail_submit_flags="-L sm-mta -bd -q30m -ODaemonPortOptions=Addr=localhost"
sendmail_outbound_enable="YES" # Dequeue stuck mail (YES/NO).
sendmail_outbound_flags="-L sm-queue -q30m" # Flags to sendmail (outbound only)
sendmail_msp_queue_enable="YES" # Dequeue stuck clientmqueue mail (YES/NO).
sendmail_msp_queue_flags="-L sm-msp-queue -Ac -q30m"
mixer_enable="NO" # Manage mixer settings across reboots
cron_enable="YES" # Run the periodic job daemon.
cron_program="/usr/sbin/cron" # Which cron executable to run (if enabled).
cron_flags="" # Which options to pass to the cron daemon.
lpd_enable="NO" # Run the line printer daemon.
lpd_program="/usr/sbin/lpd" # path to lpd, if you want a different one.
lpd_flags="" # Flags to lpd (if enabled).
nscd_enable="NO" # Run the nsswitch caching daemon.
usbd_enable="NO" # Run the usbd daemon.
usbd_flags="" # Flags to usbd (if enabled).
devd_enable="NO" # Rund devd(8) daemon.
devd_flags="" # Flags to devd(8) (if enabled).
dumpdev="NO" # Device name to crashdump to (or NO).
dumpdir="/var/crash" # Directory where crash dumps are to be stored
savecore_flags="" # Used if dumpdev is enabled above, and present.
enable_quotas="NO" # turn on quotas on startup (or NO).
check_quotas="YES" # Check quotas on startup (or NO).
accounting_enable="NO" # Turn on process accounting (or NO).
sysvipc_enable="NO" # Load System V IPC primitives at startup (or NO).
linux_enable="NO" # Linux binary compatibility loaded at startup (or NO).
clear_tmp_enable="NO" # Clear /tmp at startup.
ldconfig_insecure="NO" # Set to YES to disable ldconfig security checks
ldconfig_paths="/usr/lib /usr/lib/gcc* /usr/lib/compat /usr/pkg/lib /usr/pkg/xorg/lib /usr/local/lib"
kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure
update_motd="YES" # update version info in /etc/motd (or NO)
start_vinum="NO" # set to YES to start vinum
rand_irqs="NO" # Stir the entropy pool (like "5 11" or NO).
dmesg_enable="YES" # Save dmesg(8) to /var/run/dmesg.boot
newsyslog_enable="NO" # Run newsyslog at startup.
newsyslog_flags="" # Flags to newsyslog (if enabled).
resident_enable="NO" # Process /etc/resident.conf
varsym_enable="NO" # Process /etc/varsym.conf
watchdogd_enable="NO" # Start the software watchdog daemon
jail_enable="NO" # Set to NO to disable starting of any jails
jail_list="" # Space separated list of names of jails
jail_set_hostname_allow="YES" # Allow root user in a jail to change its hostname
jail_socket_unixiproute_only="YES" # Route only TCP/IP within a jail
jail_sysvipc_allow="NO" # Allow SystemV IPC use from within a jail
if [ -z "${source_rc_confs_defined}" ]; then
source_rc_confs_defined=yes
source_rc_confs () {
local i sourced_files
for i in ${rc_conf_files}; do
case ${sourced_files} in
*:$i:*)
;;
*)
sourced_files="${sourced_files}:$i:"
if [ -r $i ]; then
. $i
fi
;;
esac
done
}
fi
00000000-0000-0000-0000-000000000000 "Unused" c12a7328-f81f-11d2-ba4b-00a0c93ec93b "EFI System" 024dee41-33e7-11d3-9d69-0008c781f39f "MBR" 9d087404-1ca5-11dc-8817-01301bb8a9f5 "DragonFly Label32" 9d58fdbd-1ca5-11dc-8817-01301bb8a9f5 "DragonFly Swap" 9d94ce7c-1ca5-11dc-8817-01301bb8a9f5 "DragonFly UFS1" 9dd4478f-1ca5-11dc-8817-01301bb8a9f5 "DragonFly Vinum" dbd5211b-1ca5-11dc-8817-01301bb8a9f5 "DragonFly CCD" 3d48ce54-1d16-11dc-8696-01301bb8a9f5 "DragonFly Label64" bd215ab2-1d16-11dc-8696-01301bb8a9f5 "DragonFly Legacy" 61dc63ac-6e38-11dc-8513-01301bb8a9f5 "DragonFly HAMMER" 516e7cb4-6ecf-11d6-8ff8-00022d09712b "FreeBSD Legacy" 516e7cb5-6ecf-11d6-8ff8-00022d09712b "FreeBSD Swap" 516e7cb6-6ecf-11d6-8ff8-00022d09712b "FreeBSD UFS/UFS2" 516e7cb8-6ecf-11d6-8ff8-00022d09712b "FreeBSD Vinum" e3c9e316-0b5c-4db8-817d-f92df00215ae "MS Reserved" ebd0a0a2-b9e5-4433-87c0-68b6b72699c7 "MS/Linux Basic Data" 5808c8aa-7e8f-42e0-85d2-e1e90434cfb3 "MS LDM Metadata" af9b60a0-1431-4f62-bc68-3311714a69ad "MS LDM Data" a19d880f-05fc-4d3b-a006-743f0f84911e "Linux Raid" 0657fd6d-a4ab-43c4-84e5-0933c84b4f4f "Linux Swap" e6d6d379-f507-44c2-a23c-238f2a3df928 "Linux LVM" 48465300-0000-11aa-aa11-00306543ecac "Apple HFS"
ATA channel 0:
Master: no device present
Slave: no device present
ATA channel 1:
Master: acd0 <VMware Virtual IDE CDROM Drive/00000001> ATA/ATAPI revision 4
Slave: no device present
CS_MACHINE_SERIAL: CLK_TCK: 128 CPU_CHIP_TYPE: HW_CPU_SUPP_BITS: HW_32_64_CAPABLE: KERNEL_BITS:
hostb0@pci0:0:0: class=0x060000 card=0x197615ad chip=0x71908086 rev=0x01 hdr=0x00
vendor = 'Intel Corporation'
device = '82443BX/ZX 440BX/ZX CPU to PCI Bridge (AGP Implemented)'
class = bridge
subclass = HOST-PCI
pcib1@pci0:1:0: class=0x060400 card=0x00000000 chip=0x71918086 rev=0x01 hdr=0x01
vendor = 'Intel Corporation'
device = '82443BX/ZX 440BX/ZX AGPset PCI-to-PCI bridge'
class = bridge
subclass = PCI-PCI
isab1@pci0:7:0: class=0x060100 card=0x197615ad chip=0x71108086 rev=0x08 hdr=0x00
vendor = 'Intel Corporation'
device = '82371AB/EB/MB PIIX4/4E/4M ISBridgeA'
class = bridge
subclass = PCI-ISA
atapci0@pci0:7:1: class=0x01018a card=0x197615ad chip=0x71118086 rev=0x01 hdr=0x00
vendor = 'Intel Corporation'
device = '82371AB/EB/MB PIIX4/4E/4M IDE Controller'
class = mass storage
subclass = ATA
none0@pci0:7:3: class=0x068000 card=0x197615ad chip=0x71138086 rev=0x08 hdr=0x00
vendor = 'Intel Corporation'
device = '82371AB/EB/MB PIIX4/4E/4M Power Management Controller'
class = bridge
subclass = PCI-unknown
none1@pci0:7:7: class=0x088000 card=0x074015ad chip=0x074015ad rev=0x10 hdr=0x00
vendor = 'VMware Inc.'
device = 'Virtual Machine Communication Interface'
class = base peripheral
none2@pci0:15:0: class=0x030000 card=0x040515ad chip=0x040515ad rev=0x00 hdr=0x00
vendor = 'VMware Inc.'
device = '9500MGS NVIDIA'
class = display
subclass = VGA
mpt0@pci0:16:0: class=0x010000 card=0x197615ad chip=0x00301000 rev=0x01 hdr=0x00
vendor = 'LSI Logic (Was: Symbios Logic, NCR)'
device = 'LSI53C1020/1030 PCI-X to Ultra320 SCSI Controller'
class = mass storage
subclass = SCSI
pcib2@pci0:17:0: class=0x060401 card=0x00000040 chip=0x079015ad rev=0x02 hdr=0x01
vendor = 'VMware Inc.'
device = 'PCI bridge'
class = bridge
subclass = PCI-PCI
pcib3@pci0:21:0: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib4@pci0:21:1: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib5@pci0:21:2: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib6@pci0:21:3: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib7@pci0:21:4: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib8@pci0:21:5: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib9@pci0:21:6: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib10@pci0:21:7: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib11@pci0:22:0: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib12@pci0:22:1: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib13@pci0:22:2: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib14@pci0:22:3: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib15@pci0:22:4: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib16@pci0:22:5: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib17@pci0:22:6: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib18@pci0:22:7: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib19@pci0:23:0: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib20@pci0:23:1: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib21@pci0:23:2: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib22@pci0:23:3: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib23@pci0:23:4: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib24@pci0:23:5: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib25@pci0:23:6: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib26@pci0:23:7: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib27@pci0:24:0: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib28@pci0:24:1: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib29@pci0:24:2: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib30@pci0:24:3: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib31@pci0:24:4: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib32@pci0:24:5: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib33@pci0:24:6: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
pcib34@pci0:24:7: class=0x060400 card=0x00000040 chip=0x07a015ad rev=0x01 hdr=0x01
vendor = 'VMware Inc.'
class = bridge
subclass = PCI-PCI
lnc0@pci2:0:0: class=0x020000 card=0x20001022 chip=0x20001022 rev=0x10 hdr=0x00
vendor = 'Advanced Micro Devices (AMD)'
device = 'Am79C970/1/2/3/5/6 PCnet LANCE PCI Ethernet Controller'
class = network
subclass = ethernet
usbdevs: no USB controllers found
Filesystem 1K-blocks Used Avail Capacity Mounted on ROOT 7700480 524288 7176192 7% / /pfs/@@0xffffffffffffffff:00001 7700480 524288 7176192 7% /var /pfs/@@0xffffffffffffffff:00002 7700480 524288 7176192 7% /tmp /pfs/@@0xffffffffffffffff:00003 7700480 524288 7176192 7% /usr /pfs/@@0xffffffffffffffff:00004 7700480 524288 7176192 7% /home /pfs/@@0xffffffffffffffff:00005 7700480 524288 7176192 7% /usr/obj /pfs/@@0xffffffffffffffff:00006 7700480 524288 7176192 7% /var/crash /pfs/@@0xffffffffffffffff:00007 7700480 524288 7176192 7% /var/tmp procfs 4 4 0 100% /proc
/pfs/@@0xffffffffffffffff:00001 on /var (null, local) /pfs/@@0xffffffffffffffff:00002 on /tmp (null, local) /pfs/@@0xffffffffffffffff:00003 on /usr (null, local) /pfs/@@0xffffffffffffffff:00004 on /home (null, local) /pfs/@@0xffffffffffffffff:00005 on /usr/obj (null, local) /pfs/@@0xffffffffffffffff:00006 on /var/crash (null, local) /pfs/@@0xffffffffffffffff:00007 on /var/tmp (null, local) ROOT on / (hammer, local) procfs on /proc (procfs, local)
/dev/da0s1a / hammer rw 1 1 /dev/da0s1b none swap sw 0 0 /pfs/home /home null rw 0 0 /pfs/tmp /tmp null rw 0 0 /pfs/usr /usr null rw 0 0 /pfs/usr.obj /usr/obj null rw 0 0 /pfs/var /var null rw 0 0 /pfs/var.crash /var/crash null rw 0 0 /pfs/var.tmp /var/tmp null rw 0 0 proc /proc procfs rw 0 0
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: / PFS #0 {
hammer pfs-status: shared-uuid=ccaf8ba0-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=ccaf8ba0-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label="ROOT"
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /home PFS #4 {
hammer pfs-status: shared-uuid=d016b148-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d016b1aa-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /tmp PFS #2 {
hammer pfs-status: shared-uuid=d012f3e0-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d012f445-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /usr PFS #3 {
hammer pfs-status: shared-uuid=d014d6e5-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d014d74a-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /usr/obj PFS #5 {
hammer pfs-status: shared-uuid=d0188c04-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d0188c6e-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /var PFS #1 {
hammer pfs-status: shared-uuid=d00da391-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d00da3f8-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /var/crash PFS #6 {
hammer pfs-status: shared-uuid=d01aef88-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d01aefef-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
hammer version: min=1 wip=2 max=2 current=1 description="2.0 - First HAMMER release"
hammer pfs-status: /var/tmp PFS #7 {
hammer pfs-status: shared-uuid=d01d3d6b-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: unique-uuid=d01d3dcf-46ef-11de-b5d5-010c294f95a4
hammer pfs-status: label=""
hammer pfs-status: operating as a MASTER
hammer pfs-status: snapshots dir for master defaults to <fs>/snapshots
hammer pfs-status: }
status: inactive
hosts dns
::1 localhost localhost.my.domain 127.0.0.1 localhost localhost.my.domain
udp6 tpi_clts v inet6 udp - - tcp6 tpi_cots_ord v inet6 tcp - - udp tpi_clts v inet udp - - tcp tpi_cots_ord v inet tcp - - rawip tpi_raw - inet - - - local tpi_cots_ord - loopback - - -
your-net 127 # your comment your-netmask 255.255.255 # subnet mask for your-net subnet1 127.0.1 alias1 # comment 1 subnet2 127.0.2 alias2 # comment 2
group: compat group_compat: nis hosts: files dns networks: files passwd: compat passwd_compat: nis shells: files services: compat services_compat: nis protocols: files rpc: files
enable-cache passwd yes enable-cache group yes enable-cache hosts yes enable-cache services yes enable-cache protocols yes enable-cache rpc yes enable-cache networks yes
ip 0 IP # internet protocol, pseudo protocol number icmp 1 ICMP # internet control message protocol igmp 2 IGMP # internet group management protocol ggp 3 GGP # gateway-gateway protocol ipencap 4 IP-ENCAP # IP encapsulated in IP (officially ``IP'') st2 5 ST2 # ST2 datagram mode (RFC 1819) (officially ``ST'') tcp 6 TCP # transmission control protocol cbt 7 CBT # CBT, Tony Ballardie <A.Ballardie@cs.ucl.ac.uk> egp 8 EGP # exterior gateway protocol igp 9 IGP # any private interior gateway (Cisco: for IGRP) bbn-rcc 10 BBN-RCC-MON # BBN RCC Monitoring nvp 11 NVP-II # Network Voice Protocol pup 12 PUP # PARC universal packet protocol argus 13 ARGUS # ARGUS emcon 14 EMCON # EMCON xnet 15 XNET # Cross Net Debugger chaos 16 CHAOS # Chaos udp 17 UDP # user datagram protocol mux 18 MUX # Multiplexing protocol dcn 19 DCN-MEAS # DCN Measurement Subsystems hmp 20 HMP # host monitoring protocol prm 21 PRM # packet radio measurement protocol xns-idp 22 XNS-IDP # Xerox NS IDP trunk-1 23 TRUNK-1 # Trunk-1 trunk-2 24 TRUNK-2 # Trunk-2 leaf-1 25 LEAF-1 # Leaf-1 leaf-2 26 LEAF-2 # Leaf-2 rdp 27 RDP # "reliable datagram" protocol irtp 28 IRTP # Internet Reliable Transaction Protocol iso-tp4 29 ISO-TP4 # ISO Transport Protocol Class 4 netblt 30 NETBLT # Bulk Data Transfer Protocol mfe-nsp 31 MFE-NSP # MFE Network Services Protocol merit-inp 32 MERIT-INP # MERIT Internodal Protocol dccp 33 DCCP # Datagram Congestion Control Protocol 3pc 34 3PC # Third Party Connect Protocol idpr 35 IDPR # Inter-Domain Policy Routing Protocol xtp 36 XTP # Xpress Transfer Protocol ddp 37 DDP # Datagram Delivery Protocol idpr-cmtp 38 IDPR-CMTP # IDPR Control Message Transport Proto tp++ 39 TP++ # TP++ Transport Protocol il 40 IL # IL Transport Protocol ipv6 41 IPV6 # ipv6 sdrp 42 SDRP # Source Demand Routing Protocol ipv6-route 43 IPV6-ROUTE # routing header for ipv6 ipv6-frag 44 IPV6-FRAG # fragment header for ipv6 idrp 45 IDRP # Inter-Domain Routing Protocol rsvp 46 RSVP # Resource ReSerVation Protocol gre 47 GRE # Generic Routing Encapsulation dsr 48 DSR # Dynamic Source Routing Protocol bna 49 BNA # BNA esp 50 ESP # encapsulating security payload ah 51 AH # authentication header i-nlsp 52 I-NLSP # Integrated Net Layer Security TUBA swipe 53 SWIPE # IP with Encryption narp 54 NARP # NBMA Address Resolution Protocol mobile 55 MOBILE # IP Mobility tlsp 56 TLSP # Transport Layer Security Protocol skip 57 SKIP # SKIP ipv6-icmp 58 IPV6-ICMP icmp6 # ICMP for IPv6 ipv6-nonxt 59 IPV6-NONXT # no next header for ipv6 ipv6-opts 60 IPV6-OPTS # destination options for ipv6 cftp 62 CFTP # CFTP sat-expak 64 SAT-EXPAK # SATNET and Backroom EXPAK kryptolan 65 KRYPTOLAN # Kryptolan rvd 66 RVD # MIT Remote Virtual Disk Protocol ippc 67 IPPC # Internet Pluribus Packet Core sat-mon 69 SAT-MON # SATNET Monitoring visa 70 VISA # VISA Protocol ipcv 71 IPCV # Internet Packet Core Utility cpnx 72 CPNX # Computer Protocol Network Executive cphb 73 CPHB # Computer Protocol Heart Beat wsn 74 WSN # Wang Span Network pvp 75 PVP # Packet Video Protocol br-sat-mon 76 BR-SAT-MON # Backroom SATNET Monitoring sun-nd 77 SUN-ND # SUN ND PROTOCOL-Temporary wb-mon 78 WB-MON # WIDEBAND Monitoring wb-expak 79 WB-EXPAK # WIDEBAND EXPAK iso-ip 80 ISO-IP # ISO Internet Protocol vmtp 81 VMTP # Versatile Message Transport secure-vmtp 82 SECURE-VMTP # SECURE-VMTP vines 83 VINES # VINES ttp 84 TTP # TTP nsfnet-igp 85 NSFNET-IGP # NSFNET-IGP dgp 86 DGP # Dissimilar Gateway Protocol tcf 87 TCF # TCF eigrp 88 EIGRP # Enhanced Interior Routing Protocol (Cisco) ospf 89 OSPFIGP # Open Shortest Path First IGP sprite-rpc 90 Sprite-RPC # Sprite RPC Protocol larp 91 LARP # Locus Address Resolution Protocol mtp 92 MTP # Multicast Transport Protocol ax.25 93 AX.25 # AX.25 Frames ipip 94 IPIP # Yet Another IP encapsulation micp 95 MICP # Mobile Internetworking Control Pro. scc-sp 96 SCC-SP # Semaphore Communications Sec. Pro. etherip 97 ETHERIP # Ethernet-within-IP Encapsulation encap 98 ENCAP # Yet Another IP encapsulation gmtp 100 GMTP # GMTP ifmp 101 IFMP # Ipsilon Flow Management Protocol pnni 102 PNNI # PNNI over IP pim 103 PIM # Protocol Independent Multicast aris 104 ARIS # ARIS scps 105 SCPS # SCPS qnx 106 QNX # QNX a/n 107 A/N # Active Networks ipcomp 108 IPComp # IP Payload Compression Protocol snp 109 SNP # Sitara Networks Protocol compaq-peer 110 Compaq-Peer # Compaq Peer Protocol ipx-in-ip 111 IPX-in-IP # IPX in IP carp 112 CARP vrrp # Common Address Redundancy Protocol pgm 113 PGM # PGM Reliable Transport Protocol l2tp 115 L2TP # Layer Two Tunneling Protocol ddx 116 DDX # D-II Data Exchange iatp 117 IATP # Interactive Agent Transfer Protocol stp 118 STP # Schedule Transfer Protocol srp 119 SRP # SpectraLink Radio Protocol uti 120 UTI # UTI smp 121 SMP # Simple Message Protocol sm 122 SM # SM ptp 123 PTP # Performance Transparency Protocol isis 124 ISIS # ISIS over IPv4 fire 125 FIRE crtp 126 CRTP # Combat Radio Transport Protocol crudp 127 CRUDP # Combat Radio User Datagram sscopmce 128 SSCOPMCE iplt 129 IPLT sps 130 SPS # Secure Packet Shield pipe 131 PIPE # Private IP Encapsulation within IP sctp 132 SCTP # Stream Control Transmission Protocol fc 133 FC # Fibre Channel rsvp-e2e-ignore 134 RSVP-E2E-IGNORE # Aggregation of RSVP for IP Reservations mobility-header 135 Mobility-Header # Mobility support in IPv6 udplite 136 UDPLite # The UDP-Lite Protocol mpls-in-ip 137 MPLS-IN-IP # Encapsulating MPLS in IP testing 253 TESTING # Use for experimentation and testing [RFC3692] divert 254 DIVERT # Divert pseudo-protocol [non IANA]
rpcbind 100000 portmap sunrpc rpcbind rstatd 100001 rstat rstat_svc rup perfmeter rusersd 100002 rusers nfs 100003 nfsprog ypserv 100004 ypprog mountd 100005 mount showmount ypbind 100007 walld 100008 rwall shutdown yppasswdd 100009 yppasswd etherstatd 100010 etherstat rquotad 100011 rquotaprog quota rquota sprayd 100012 spray 3270_mapper 100013 rje_mapper 100014 selection_svc 100015 selnsvc database_svc 100016 rexd 100017 rex alis 100018 sched 100019 llockmgr 100020 nlockmgr 100021 x25.inr 100022 statmon 100023 status 100024 bootparamd 100026 bootparam ypupdated 100028 ypupdate keyserv 100029 keyserver sunlink_mapper 100033 tfsd 100037 nsed 100038 nsemntd 100039 showfhd 100043 showfh ioadmd 100055 rpc.ioadmd NETlicense 100062 sunisamd 100065 debug_svc 100066 dbsrv cmsd 100068 bugtraqd 100071 kerbd 100078 ttdbserver 100083 tooltalk event 100101 na.event # SunNet Manager logger 100102 na.logger # SunNet Manager sync 100104 na.sync hostperf 100107 na.hostperf activity 100109 na.activity # SunNet Manager hostmem 100112 na.hostmem sample 100113 na.sample x25 100114 na.x25 ping 100115 na.ping rpcnfs 100116 na.rpcnfs hostif 100117 na.hostif etherif 100118 na.etherif iproutes 100120 na.iproutes layers 100121 na.layers snmp 100122 na.snmp snmp-cmc snmp-synoptics snmp-unisys snmp-utk traffic 100123 na.traffic nfs_acl 100227 sadmind 100232 nisd 100300 rpc.nisd nispasswd 100303 rpc.nispasswdd ufsd 100233 pcnfsd 150001 pcnfs amd 300019 sgi_fam 391002 # file alteration monitor
rtmp 1/ddp #Routing Table Maintenance Protocol tcpmux 1/tcp #TCP Port Service Multiplexer tcpmux 1/udp #TCP Port Service Multiplexer compressnet 2/tcp #Management Utility compressnet 2/udp #Management Utility nbp 2/ddp #Name Binding Protocol compressnet 3/tcp #Compression Process compressnet 3/udp #Compression Process echo 4/ddp #AppleTalk Echo Protocol rje 5/tcp #Remote Job Entry rje 5/udp #Remote Job Entry zip 6/ddp #Zone Information Protocol echo 7/tcp echo 7/udp discard 9/tcp sink null discard 9/udp sink null systat 11/tcp users #Active Users systat 11/udp users #Active Users daytime 13/tcp daytime 13/udp qotd 17/tcp quote #Quote of the Day qotd 17/udp quote #Quote of the Day msp 18/tcp #Message Send Protocol msp 18/udp #Message Send Protocol chargen 19/tcp ttytst source #Character Generator chargen 19/udp ttytst source #Character Generator ftp-data 20/tcp #File Transfer [Default Data] ftp-data 20/udp #File Transfer [Default Data] ftp 21/tcp #File Transfer [Control] ftp 21/udp #File Transfer [Control] ssh 22/tcp #Secure Shell Login ssh 22/udp #Secure Shell Login telnet 23/tcp telnet 23/udp smtp 25/tcp mail #Simple Mail Transfer smtp 25/udp mail #Simple Mail Transfer nsw-fe 27/tcp #NSW User System FE nsw-fe 27/udp #NSW User System FE msg-icp 29/tcp #MSG ICP msg-icp 29/udp #MSG ICP msg-auth 31/tcp #MSG Authentication msg-auth 31/udp #MSG Authentication dsp 33/tcp #Display Support Protocol dsp 33/udp #Display Support Protocol time 37/tcp timserver time 37/udp timserver rap 38/tcp #Route Access Protocol rap 38/udp #Route Access Protocol rlp 39/tcp resource #Resource Location Protocol rlp 39/udp resource #Resource Location Protocol graphics 41/tcp graphics 41/udp nameserver 42/tcp name #Host Name Server nameserver 42/udp name #Host Name Server nicname 43/tcp whois nicname 43/udp whois mpm-flags 44/tcp #MPM FLAGS Protocol mpm-flags 44/udp #MPM FLAGS Protocol mpm 45/tcp #Message Processing Module [recv] mpm 45/udp #Message Processing Module [recv] mpm-snd 46/tcp #MPM [default send] mpm-snd 46/udp #MPM [default send] ni-ftp 47/tcp #NI FTP ni-ftp 47/udp #NI FTP auditd 48/tcp #Digital Audit Daemon auditd 48/udp #Digital Audit Daemon tacacs 49/tcp #Login Host Protocol (TACACS) tacacs 49/udp #Login Host Protocol (TACACS) re-mail-ck 50/tcp #Remote Mail Checking Protocol re-mail-ck 50/udp #Remote Mail Checking Protocol la-maint 51/tcp #IMP Logical Address Maintenance la-maint 51/udp #IMP Logical Address Maintenance xns-time 52/tcp #XNS Time Protocol xns-time 52/udp #XNS Time Protocol domain 53/tcp #Domain Name Server domain 53/udp #Domain Name Server xns-ch 54/tcp #XNS Clearinghouse xns-ch 54/udp #XNS Clearinghouse isi-gl 55/tcp #ISI Graphics Language isi-gl 55/udp #ISI Graphics Language xns-auth 56/tcp #XNS Authentication xns-auth 56/udp #XNS Authentication xns-mail 58/tcp #XNS Mail xns-mail 58/udp #XNS Mail ni-mail 61/tcp #NI MAIL ni-mail 61/udp #NI MAIL acas 62/tcp #ACA Services acas 62/udp #ACA Services whois++ 63/tcp whois++ 63/udp covia 64/tcp #Communications Integrator (CI) covia 64/udp #Communications Integrator (CI) tacacs-ds 65/tcp #TACACS-Database Service tacacs-ds 65/udp #TACACS-Database Service sql*net 66/tcp #Oracle SQL*NET sql*net 66/udp #Oracle SQL*NET bootps 67/tcp dhcps #Bootstrap Protocol Server bootps 67/udp dhcps #Bootstrap Protocol Server bootpc 68/tcp dhcpc #Bootstrap Protocol Client bootpc 68/udp dhcpc #Bootstrap Protocol Client tftp 69/tcp #Trivial File Transfer tftp 69/udp #Trivial File Transfer gopher 70/tcp gopher 70/udp netrjs-1 71/tcp #Remote Job Service netrjs-1 71/udp #Remote Job Service netrjs-2 72/tcp #Remote Job Service netrjs-2 72/udp #Remote Job Service netrjs-3 73/tcp #Remote Job Service netrjs-3 73/udp #Remote Job Service netrjs-4 74/tcp #Remote Job Service netrjs-4 74/udp #Remote Job Service deos 76/tcp #Distributed External Object Store deos 76/udp #Distributed External Object Store vettcp 78/tcp vettcp 78/udp finger 79/tcp finger 79/udp http 80/tcp www www-http #World Wide Web HTTP http 80/udp www www-http #World Wide Web HTTP hosts2-ns 81/tcp #HOSTS2 Name Server hosts2-ns 81/udp #HOSTS2 Name Server xfer 82/tcp #XFER Utility xfer 82/udp #XFER Utility mit-ml-dev 83/tcp #MIT ML Device mit-ml-dev 83/udp #MIT ML Device ctf 84/tcp #Common Trace Facility ctf 84/udp #Common Trace Facility mit-ml-dev 85/tcp #MIT ML Device mit-ml-dev 85/udp #MIT ML Device mfcobol 86/tcp #Micro Focus Cobol mfcobol 86/udp #Micro Focus Cobol kerberos-sec 88/tcp kerberos # krb5 # Kerberos (v5) kerberos-sec 88/udp kerberos # krb5 # Kerberos (v5) su-mit-tg 89/tcp #SU/MIT Telnet Gateway su-mit-tg 89/udp #SU/MIT Telnet Gateway dnsix 90/tcp #DNSIX Securit Attribute Token Map dnsix 90/udp #DNSIX Securit Attribute Token Map mit-dov 91/tcp #MIT Dover Spooler mit-dov 91/udp #MIT Dover Spooler npp 92/tcp #Network Printing Protocol npp 92/udp #Network Printing Protocol dcp 93/tcp #Device Control Protocol dcp 93/udp #Device Control Protocol objcall 94/tcp #Tivoli Object Dispatcher objcall 94/udp #Tivoli Object Dispatcher supdup 95/tcp supdup 95/udp dixie 96/tcp #DIXIE Protocol Specification dixie 96/udp #DIXIE Protocol Specification swift-rvf 97/tcp #Swift Remote Virtural File Protocol swift-rvf 97/udp #Swift Remote Virtural File Protocol tacnews 98/tcp #TAC News, Unofficial: Red Hat linuxconf tacnews 98/udp #TAC News, Unofficial: Red Hat linuxconf metagram 99/tcp #Metagram Relay metagram 99/udp #Metagram Relay newacct 100/tcp #[unauthorized use] hostname 101/tcp hostnames #NIC Host Name Server hostname 101/udp hostnames #NIC Host Name Server iso-tsap 102/tcp tsap #ISO-TSAP Class 0 iso-tsap 102/udp tsap #ISO-TSAP Class 0 gppitnp 103/tcp #Genesis Point-to-Point Trans Net gppitnp 103/udp #Genesis Point-to-Point Trans Net acr-nema 104/tcp #ACR-NEMA Digital Imag. & Comm. 300 acr-nema 104/udp #ACR-NEMA Digital Imag. & Comm. 300 csnet-ns 105/tcp cso-ns cso #Mailbox Name Nameserver csnet-ns 105/udp cso-ns cso #Mailbox Name Nameserver 3com-tsmux 106/udp pop3pw 106/tcp 3com-tsmux #Eudora compatible PW changer rtelnet 107/tcp #Remote Telnet Service rtelnet 107/udp #Remote Telnet Service snagas 108/tcp #SNA Gateway Access Server snagas 108/udp #SNA Gateway Access Server pop2 109/tcp postoffice #Post Office Protocol - Version 2 pop2 109/udp postoffice #Post Office Protocol - Version 2 pop3 110/tcp #Post Office Protocol - Version 3 pop3 110/udp #Post Office Protocol - Version 3 sunrpc 111/tcp rpcbind #SUN Remote Procedure Call sunrpc 111/udp rpcbind #SUN Remote Procedure Call mcidas 112/tcp #McIDAS Data Transmission Protocol mcidas 112/udp #McIDAS Data Transmission Protocol auth 113/tcp ident tap #Authentication Service auth 113/udp ident tap #Authentication Service sftp 115/tcp #Simple File Transfer Protocol sftp 115/udp #Simple File Transfer Protocol ansanotify 116/tcp #ANSA REX Notify ansanotify 116/udp #ANSA REX Notify uucp-path 117/tcp #UUCP Path Service uucp-path 117/udp #UUCP Path Service sqlserv 118/tcp #SQL Services sqlserv 118/udp #SQL Services nntp 119/tcp usenet #Network News Transfer Protocol nntp 119/udp usenet #Network News Transfer Protocol cfdptkt 120/tcp cfdptkt 120/udp erpc 121/tcp #Encore Expedited Remote Pro.Call erpc 121/udp #Encore Expedited Remote Pro.Call smakynet 122/tcp smakynet 122/udp ntp 123/tcp #Network Time Protocol ntp 123/udp #Network Time Protocol ansatrader 124/tcp #ANSA REX Trader ansatrader 124/udp #ANSA REX Trader locus-map 125/tcp #Locus PC-Interface Net Map Ser locus-map 125/udp #Locus PC-Interface Net Map Ser unitary 126/tcp #Unisys Unitary Login unitary 126/udp #Unisys Unitary Login locus-con 127/tcp #Locus PC-Interface Conn Server locus-con 127/udp #Locus PC-Interface Conn Server gss-xlicen 128/tcp #GSS X License Verification gss-xlicen 128/udp #GSS X License Verification pwdgen 129/tcp #Password Generator Protocol pwdgen 129/udp #Password Generator Protocol cisco-fna 130/tcp #cisco FNATIVE cisco-fna 130/udp #cisco FNATIVE cisco-tna 131/tcp #cisco TNATIVE cisco-tna 131/udp #cisco TNATIVE cisco-sys 132/tcp #cisco SYSMAINT cisco-sys 132/udp #cisco SYSMAINT statsrv 133/tcp #Statistics Service statsrv 133/udp #Statistics Service ingres-net 134/tcp #INGRES-NET Service ingres-net 134/udp #INGRES-NET Service loc-srv 135/tcp epmap #Location Service loc-srv 135/udp epmap #Location Service profile 136/tcp #PROFILE Naming System profile 136/udp #PROFILE Naming System netbios-ns 137/tcp #NETBIOS Name Service netbios-ns 137/udp #NETBIOS Name Service netbios-dgm 138/tcp #NETBIOS Datagram Service netbios-dgm 138/udp #NETBIOS Datagram Service netbios-ssn 139/tcp #NETBIOS Session Service netbios-ssn 139/udp #NETBIOS Session Service emfis-data 140/tcp #EMFIS Data Service emfis-data 140/udp #EMFIS Data Service emfis-cntl 141/tcp #EMFIS Control Service emfis-cntl 141/udp #EMFIS Control Service bl-idm 142/tcp #Britton-Lee IDM bl-idm 142/udp #Britton-Lee IDM imap 143/tcp imap2 imap4 #Interim Mail Access Protocol v2 imap 143/udp imap2 imap4 #Interim Mail Access Protocol v2 NeWS 144/tcp # Window System NeWS 144/udp # Window System uaac 145/tcp #UAAC Protocol uaac 145/udp #UAAC Protocol iso-tp0 146/tcp iso-tp0 146/udp iso-ip 147/tcp iso-ip 147/udp cronus 148/tcp jargon #CRONUS-SUPPORT cronus 148/udp jargon #CRONUS-SUPPORT aed-512 149/tcp #AED 512 Emulation Service aed-512 149/udp #AED 512 Emulation Service sql-net 150/tcp sql-net 150/udp hems 151/tcp hems 151/udp bftp 152/tcp #Background File Transfer Program bftp 152/udp #Background File Transfer Program sgmp 153/tcp sgmp 153/udp netsc-prod 154/tcp netsc-prod 154/udp netsc-dev 155/tcp netsc-dev 155/udp sqlsrv 156/tcp #SQL Service sqlsrv 156/udp #SQL Service knet-cmp 157/tcp #KNET/VM Command/Message Protocol knet-cmp 157/udp #KNET/VM Command/Message Protocol pcmail-srv 158/tcp #PCMail Server pcmail-srv 158/udp #PCMail Server nss-routing 159/tcp nss-routing 159/udp sgmp-traps 160/tcp sgmp-traps 160/udp snmp 161/tcp snmp 161/udp snmptrap 162/tcp snmp-trap snmptrap 162/udp snmp-trap cmip-man 163/tcp #CMIP/TCP Manager cmip-man 163/udp #CMIP/TCP Manager cmip-agent 164/tcp #CMIP/TCP Agent smip-agent 164/udp #CMIP/TCP Agent xns-courier 165/tcp #Xerox xns-courier 165/udp #Xerox s-net 166/tcp #Sirius Systems s-net 166/udp #Sirius Systems namp 167/tcp namp 167/udp rsvd 168/tcp rsvd 168/udp send 169/tcp send 169/udp print-srv 170/tcp #Network PostScript print-srv 170/udp #Network PostScript multiplex 171/tcp #Network Innovations Multiplex multiplex 171/udp #Network Innovations Multiplex cl/1 172/tcp #Network Innovations CL/1 cl/1 172/udp #Network Innovations CL/1 xyplex-mux 173/tcp xyplex-mux 173/udp mailq 174/tcp mailq 174/udp vmnet 175/tcp vmnet 175/udp genrad-mux 176/tcp genrad-mux 176/udp xdmcp 177/tcp #X Display Manager Control Protocol xdmcp 177/udp #X Display Manager Control Protocol NextStep 178/tcp nextstep NeXTStep #NextStep Window Server NextStep 178/udp nextstep NeXTStep #NextStep Window Server bgp 179/tcp #Border Gateway Protocol bgp 179/udp #Border Gateway Protocol ris 180/tcp #Intergraph ris 180/udp #Intergraph unify 181/tcp unify 181/udp audit 182/tcp #Unisys Audit SITP audit 182/udp #Unisys Audit SITP ocbinder 183/tcp ocbinder 183/udp ocserver 184/tcp ocserver 184/udp remote-kis 185/tcp remote-kis 185/udp kis 186/tcp #KIS Protocol kis 186/udp #KIS Protocol aci 187/tcp #Application Communication Interface aci 187/udp #Application Communication Interface mumps 188/tcp #Plus Five's MUMPS mumps 188/udp #Plus Five's MUMPS qft 189/tcp #Queued File Transport qft 189/udp #Queued File Transport gacp 190/tcp #Gateway Access Control Protocol gacp 190/udp cacp #Gateway Access Control Protocol prospero 191/tcp #Prospero Directory Service prospero 191/udp #Prospero Directory Service osu-nms 192/tcp #OSU Network Monitoring System osu-nms 192/udp #OSU Network Monitoring System srmp 193/tcp #Spider Remote Monitoring Protocol srmp 193/udp #Spider Remote Monitoring Protocol irc 194/tcp #Internet Relay Chat Protocol irc 194/udp #Internet Relay Chat Protocol dn6-nlm-aud 195/tcp #DNSIX Network Level Module Audit dn6-nlm-aud 195/udp #DNSIX Network Level Module Audit dn6-smm-red 196/tcp #DNSIX Session Mgt Module Audit Redir dn6-smm-red 196/udp #DNSIX Session Mgt Module Audit Redir dls 197/tcp #Directory Location Service dls 197/udp #Directory Location Service dls-mon 198/tcp #Directory Location Service Monitor dls-mon 198/udp #Directory Location Service Monitor smux 199/tcp smux 199/udp src 200/tcp #IBM System Resource Controller src 200/udp #IBM System Resource Controller at-rtmp 201/tcp #AppleTalk Routing Maintenance at-rtmp 201/udp #AppleTalk Routing Maintenance at-nbp 202/tcp #AppleTalk Name Binding at-nbp 202/udp #AppleTalk Name Binding at-3 203/tcp #AppleTalk Unused at-3 203/udp #AppleTalk Unused at-echo 204/tcp #AppleTalk Echo at-echo 204/udp #AppleTalk Echo at-5 205/tcp #AppleTalk Unused at-5 205/udp #AppleTalk Unused at-zis 206/tcp #AppleTalk Zone Information at-zis 206/udp #AppleTalk Zone Information at-7 207/tcp #AppleTalk Unused at-7 207/udp #AppleTalk Unused at-8 208/tcp #AppleTalk Unused at-8 208/udp #AppleTalk Unused qmtp 209/tcp #The Quick Mail Transfer Protocol qmtp 209/udp #The Quick Mail Transfer Protocol z39.50 210/tcp wais #ANSI Z39.50 z39.50 210/udp wais #ANSI Z39.50 914c/g 211/tcp #Texas Instruments 914C/G Terminal 914c/g 211/udp #Texas Instruments 914C/G Terminal anet 212/tcp #ATEXSSTR anet 212/udp #ATEXSSTR ipx 213/tcp ipx 213/udp vmpwscs 214/tcp vmpwscs 214/udp softpc 215/tcp #Insignia Solutions softpc 215/udp #Insignia Solutions CAIlic 216/tcp atls #Computer Associates Int'l License Server CAIlic 216/udp atls #Computer Associates Int'l License Server dbase 217/tcp #dBASE Unix dbase 217/udp #dBASE Unix mpp 218/tcp #Netix Message Posting Protocol mpp 218/udp #Netix Message Posting Protocol uarps 219/tcp #Unisys ARPs uarps 219/udp #Unisys ARPs imap3 220/tcp #Interactive Mail Access Protocol v3 imap3 220/udp #Interactive Mail Access Protocol v3 fln-spx 221/tcp #Berkeley rlogind with SPX auth fln-spx 221/udp #Berkeley rlogind with SPX auth rsh-spx 222/tcp #Berkeley rshd with SPX auth rsh-spx 222/udp #Berkeley rshd with SPX auth cdc 223/tcp #Certificate Distribution Center cdc 223/udp #Certificate Distribution Center masqdialer 224/tcp masqdialer 224/udp direct 242/tcp direct 242/udp sur-meas 243/tcp #Survey Measurement sur-meas 243/udp #Survey Measurement dayna 244/tcp dayna 244/udp link 245/tcp link 245/udp dsp3270 246/tcp #Display Systems Protocol dsp3270 246/udp #Display Systems Protocol subntbcst_tftp 247/tcp #subntbcst_tftp subntbcst_tftp 247/udp #subntbcst_tftp bhfhs 248/tcp bhfhs 248/udp rap 256/tcp rap 256/udp set 257/tcp #secure electronic transaction set 257/udp #secure electronic transaction esro-gen 259/tcp #efficient short remote operations esro-gen 259/udp #efficient short remote operations openport 260/tcp openport 260/udp nsiiops 261/tcp #iiop name service over tls/ssl nsiiops 261/udp #iiop name service over tls/ssl arcisdms 262/tcp arcisdms 262/udp hdap 263/tcp hdap 263/udp bgmp 264/tcp bgmp 264/udp x-bone-ctl 265/tcp #X-Bone CTL x-bone-ctl 265/udp #X-Bone CTL sst 266/tcp #SCSI on ST sst 266/udp #SCSI on ST td-service 267/tcp #Tobit David Service Layer td-service 267/udp #Tobit David Service Layer td-replica 268/tcp #Tobit David Replica td-replica 268/udp #Tobit David Replica http-mgmt 280/tcp http-mgmt 280/udp personal-link 281/tcp personal-link 281/udp cableport-ax 282/tcp #cable port a/x cableport-ax 282/udp #cable port a/x rescap 283/tcp rescap 283/udp corerjd 284/tcp corerjd 284/udp fxp 286/tcp fxp 286/udp k-block 287/tcp k-block 287/udp novastorbakcup 308/tcp #novastor backup novastorbakcup 308/udp #novastor backup entrusttime 309/tcp entrusttime 309/udp bhmds 310/tcp bhmds 310/udp asip-webadmin 311/tcp #appleshare ip webadmin asip-webadmin 311/udp #appleshare ip webadmin vslmp 312/tcp vslmp 312/udp magenta-logic 313/tcp magenta-logic 313/udp opalis-robot 314/tcp opalis-robot 314/udp dpsi 315/tcp dpsi 315/udp decauth 316/tcp decauth 316/udp zannet 317/tcp zannet 317/udp pkix-timestamp 318/tcp #PKIX TimeStamp pkix-timestamp 318/udp #PKIX TimeStamp ptp-event 319/tcp #PTP Event ptp-event 319/udp #PTP Event ptp-general 320/tcp #PTP General ptp-general 320/udp #PTP General pip 321/tcp pip 321/udp rtsps 322/tcp rtsps 322/udp texar 333/tcp #Texar Security Port texar 333/udp #Texar Security Port pdap 344/tcp #Prospero Data Access Protocol pdap 344/udp #Prospero Data Access Protocol pawserv 345/tcp #Perf Analysis Workbench pawserv 345/udp #Perf Analysis Workbench zserv 346/tcp #Zebra server zserv 346/udp #Zebra server fatserv 347/tcp #Fatmen Server fatserv 347/udp #Fatmen Server csi-sgwp 348/tcp #Cabletron Management Protocol csi-sgwp 348/udp #Cabletron Management Protocol mftp 349/tcp mftp 349/udp matip-type-a 350/tcp #MATIP Type A matip-type-a 350/udp bhoetty 351/tcp #unassigned but widespread use bhoetty 351/udp #unassigned but widespread use matip-type-b 351/tcp #MATIP Type B matip-type-b 351/udp bhoedap4 352/tcp #unassigned but widespread use bhoedap4 352/udp #unassigned but widespread use dtag-ste-sb 352/tcp #DTAG dtag-ste-sb 352/udp #DTAG ndsauth 353/tcp ndsauth 353/udp bh611 354/tcp bh611 354/udp datex-asn 355/tcp datex-asn 355/udp cloanto-net-1 356/tcp #Cloanto Net 1 cloanto-net-1 356/udp bhevent 357/tcp bhevent 357/udp shrinkwrap 358/tcp shrinkwrap 358/udp tenebris_nts 359/tcp #Tenebris Network Trace Service tenebris_nts 359/udp #Tenebris Network Trace Service scoi2odialog 360/tcp scoi2odialog 360/udp semantix 361/tcp semantix 361/udp srssend 362/tcp #SRS Send srssend 362/udp #SRS Send rsvp_tunnel 363/tcp rsvp_tunnel 363/udp aurora-cmgr 364/tcp aurora-cmgr 364/udp dtk 365/tcp #Deception Tool Kit - Fred Cohen <fc@all.net> dtk 365/udp #Deception Tool Kit - Fred Cohen <fc@all.net> odmr 366/tcp odmr 366/udp mortgageware 367/tcp mortgageware 367/udp qbikgdp 368/tcp #QbikGDP qbikgdp 368/udp rpc2portmap 369/tcp rpc2portmap 369/udp codaauth2 370/tcp codaauth2 370/udp clearcase 371/tcp clearcase 371/udp ulistserv 372/tcp ulistproc #Unix Listserv ulistserv 372/udp ulistproc #Unix Listserv legent-1 373/tcp #Legent Corporation (now Computer Associates Intl.) legent-1 373/udp #Legent Corporation (now Computer Associates Intl.) legent-2 374/tcp #Legent Corporation (now Computer Associates Intl.) legent-2 374/udp #Legent Corporation (now Computer Associates Intl.) hassle 375/tcp hassle 375/udp nip 376/tcp #Amiga Envoy Network Inquiry Proto nip 376/udp #Amiga Envoy Network Inquiry Proto tnETOS 377/tcp #NEC Corporation tnETOS 377/udp #NEC Corporation dsETOS 378/tcp #NEC Corporation dsETOS 378/udp #NEC Corporation is99c 379/tcp #TIA/EIA/IS-99 modem client is99c 379/udp #TIA/EIA/IS-99 modem client is99s 380/tcp #TIA/EIA/IS-99 modem server is99s 380/udp #TIA/EIA/IS-99 modem server hp-collector 381/tcp #hp performance data collector hp-collector 381/udp #hp performance data collector hp-managed-node 382/tcp #hp performance data managed node hp-managed-node 382/udp #hp performance data managed node hp-alarm-mgr 383/tcp #hp performance data alarm manager hp-alarm-mgr 383/udp #hp performance data alarm manager arns 384/tcp #A Remote Network Server System arns 384/udp #A Remote Network Server System ibm-app 385/tcp #IBM Application ibm-app 385/udp #IBM Application asa 386/tcp #ASA Message Router Object Def. asa 386/udp #ASA Message Router Object Def. aurp 387/tcp #Appletalk Update-Based Routing Pro. aurp 387/udp #Appletalk Update-Based Routing Pro. unidata-ldm 388/tcp #Unidata LDM Version 4 unidata-ldm 388/udp #Unidata LDM Version 4 ldap 389/tcp #Lightweight Directory Access Protocol ldap 389/udp #Lightweight Directory Access Protocol uis 390/tcp uis 390/udp synotics-relay 391/tcp #SynOptics SNMP Relay Port synotics-relay 391/udp #SynOptics SNMP Relay Port synotics-broker 392/tcp #SynOptics Port Broker Port synotics-broker 392/udp #SynOptics Port Broker Port dis 393/tcp #Data Interpretation System dis 393/udp #Data Interpretation System embl-ndt 394/tcp #EMBL Nucleic Data Transfer embl-ndt 394/udp #EMBL Nucleic Data Transfer netcp 395/tcp #NETscout Control Protocol netcp 395/udp #NETscout Control Protocol netware-ip 396/tcp #Novell Netware over IP netware-ip 396/udp #Novell Netware over IP mptn 397/tcp #Multi Protocol Trans. Net. mptn 397/udp #Multi Protocol Trans. Net. kryptolan 398/tcp kryptolan 398/udp iso-tsap-c2 399/tcp #ISO-TSAP Class 2 iso-tsap-c2 399/udp #ISO-TSAP Class 2 work-sol 400/tcp #Workstation Solutions work-sol 400/udp #Workstation Solutions ups 401/tcp #Uninterruptible Power Supply ups 401/udp #Uninterruptible Power Supply genie 402/tcp #Genie Protocol genie 402/udp #Genie Protocol decap 403/tcp decap 403/udp nced 404/tcp nced 404/udp ncld 405/tcp ncld 405/udp imsp 406/tcp #Interactive Mail Support Protocol imsp 406/udp #Interactive Mail Support Protocol timbuktu 407/tcp timbuktu 407/udp prm-sm 408/tcp #Prospero Resource Manager Sys. Man. prm-sm 408/udp #Prospero Resource Manager Sys. Man. prm-nm 409/tcp #Prospero Resource Manager Node Man. prm-nm 409/udp #Prospero Resource Manager Node Man. decladebug 410/tcp #DECLadebug Remote Debug Protocol decladebug 410/udp #DECLadebug Remote Debug Protocol rmt 411/tcp #Remote MT Protocol rmt 411/udp #Remote MT Protocol synoptics-trap 412/tcp #Trap Convention Port synoptics-trap 412/udp #Trap Convention Port smsp 413/tcp smsp 413/udp infoseek 414/tcp infoseek 414/udp bnet 415/tcp bnet 415/udp silverplatter 416/tcp silverplatter 416/udp onmux 417/tcp onmux 417/udp hyper-g 418/tcp hyper-g 418/udp ariel1 419/tcp ariel1 419/udp smpte 420/tcp smpte 420/udp ariel2 421/tcp ariel2 421/udp ariel3 422/tcp ariel3 422/udp opc-job-start 423/tcp #IBM Operations Planning and Control Start opc-job-start 423/udp #IBM Operations Planning and Control Start opc-job-track 424/tcp #IBM Operations Planning and Control Track opc-job-track 424/udp #IBM Operations Planning and Control Track icad-el 425/tcp icad-el 425/udp smartsdp 426/tcp smartsdp 426/udp svrloc 427/tcp #Server Location svrloc 427/udp #Server Location ocs_cmu 428/tcp ocs_cmu 428/udp ocs_amu 429/tcp ocs_amu 429/udp utmpsd 430/tcp utmpsd 430/udp utmpcd 431/tcp utmpcd 431/udp iasd 432/tcp iasd 432/udp nnsp 433/tcp nnsp 433/udp mobileip-agent 434/tcp mobileip-agent 434/udp mobilip-mn 435/tcp mobilip-mn 435/udp dna-cml 436/tcp dna-cml 436/udp comscm 437/tcp comscm 437/udp dsfgw 438/tcp dsfgw 438/udp dasp 439/tcp dasp 439/udp sgcp 440/tcp sgcp 440/udp decvms-sysmgt 441/tcp decvms-sysmgt 441/udp cvc_hostd 442/tcp cvc_hostd 442/udp https 443/tcp https 443/udp snpp 444/tcp #Simple Network Paging Protocol snpp 444/udp #Simple Network Paging Protocol microsoft-ds 445/tcp microsoft-ds 445/udp ddm-rdb 446/tcp ddm-rdb 446/udp ddm-dfm 447/tcp ddm-dfm 447/udp ddm-ssl 448/tcp ddm-byte ddm-ssl 448/udp ddm-byte as-servermap 449/tcp #AS Server Mapper as-servermap 449/udp #AS Server Mapper tserver 450/tcp tserver 450/udp sfs-smp-net 451/tcp #Cray Network Semaphore server sfs-smp-net 451/udp #Cray Network Semaphore server sfs-config 452/tcp #Cray SFS config server sfs-config 452/udp #Cray SFS config server creativeserver 453/tcp #CreativeServer creativeserver 453/udp #CreativeServer contentserver 454/tcp #ContentServer contentserver 454/udp #ContentServer creativepartnr 455/tcp #CreativePartnr creativepartnr 455/udp #CreativePartnr macon-tcp 456/tcp macon-udp 456/udp scohelp 457/tcp scohelp 457/udp appleqtc 458/tcp #apple quick time appleqtc 458/udp #apple quick time ampr-rcmd 459/tcp ampr-rcmd 459/udp skronk 460/tcp skronk 460/udp datasurfsrv 461/tcp datasurfsrv 461/udp datasurfsrvsec 462/tcp datasurfsrvsec 462/udp alpes 463/tcp alpes 463/udp kpasswd5 464/tcp # Kerberos (v5) kpasswd5 464/udp # Kerberos (v5) smtps 465/tcp #smtp protocol over TLS/SSL (was ssmtp) smtps 465/udp #smtp protocol over TLS/SSL (was ssmtp) digital-vrc 466/tcp digital-vrc 466/udp mylex-mapd 467/tcp mylex-mapd 467/udp photuris 468/tcp photuris 468/udp rcp 469/tcp #Radio Control Protocol rcp 469/udp #Radio Control Protocol scx-proxy 470/tcp scx-proxy 470/udp mondex 471/tcp mondex 471/udp ljk-login 472/tcp ljk-login 472/udp hybrid-pop 473/tcp hybrid-pop 473/udp tn-tl-w1 474/tcp tn-tl-w2 474/udp tcpnethaspsrv 475/tcp tcpnethaspsrv 475/udp tn-tl-fd1 476/tcp tn-tl-fd1 476/udp ss7ns 477/tcp ss7ns 477/udp spsc 478/tcp spsc 478/udp iafserver 479/tcp iafserver 479/udp iafdbase 480/tcp iafdbase 480/udp ph 481/tcp ph 481/udp bgs-nsi 482/tcp bgs-nsi 482/udp ulpnet 483/tcp ulpnet 483/udp integra-sme 484/tcp #Integra Software Management Environment integra-sme 484/udp #Integra Software Management Environment powerburst 485/tcp #Air Soft Power Burst powerburst 485/udp #Air Soft Power Burst avian 486/tcp avian 486/udp saft 487/tcp #saft Simple Asynchronous File Transfer saft 487/udp #saft Simple Asynchronous File Transfer gss-http 488/tcp gss-http 488/udp nest-protocol 489/tcp nest-protocol 489/udp micom-pfs 490/tcp micom-pfs 490/udp go-login 491/tcp go-login 491/udp ticf-1 492/tcp #Transport Independent Convergence for FNA ticf-1 492/udp #Transport Independent Convergence for FNA ticf-2 493/tcp #Transport Independent Convergence for FNA ticf-2 493/udp #Transport Independent Convergence for FNA pov-ray 494/tcp pov-ray 494/udp intecourier 495/tcp intecourier 495/udp pim-rp-disc 496/tcp pim-rp-disc 496/udp dantz 497/tcp dantz 497/udp siam 498/tcp siam 498/udp iso-ill 499/tcp #ISO ILL Protocol iso-ill 499/udp #ISO ILL Protocol isakmp 500/tcp isakmp 500/udp stmf 501/tcp stmf 501/udp asa-appl-proto 502/tcp asa-appl-proto 502/udp intrinsa 503/tcp intrinsa 503/udp citadel 504/tcp citadel 504/udp mailbox-lm 505/tcp mailbox-lm 505/udp ohimsrv 506/tcp ohimsrv 506/udp crs 507/tcp crs 507/udp xvttp 508/tcp xvttp 508/udp snare 509/tcp snare 509/udp fcp 510/tcp #FirstClass Protocol fcp 510/udp #FirstClass Protocol passgo 511/tcp passgo 511/udp biff 512/udp comsat #used by mail system to notify users exec 512/tcp #remote process execution; login 513/tcp #remote login a la telnet; who 513/udp whod #maintains data bases showing who's shell 514/tcp cmd #like exec, but automatic syslog 514/udp printer 515/tcp spooler printer 515/udp spooler videotex 516/tcp videotex 516/udp talk 517/tcp #like tenex link, but across talk 517/udp #like tenex link, but across ntalk 518/tcp ntalk 518/udp utime 519/tcp unixtime utime 519/udp unixtime efs 520/tcp #extended file name server router 520/udp route routed #local routing process (on site); ripng 521/tcp ripng 521/udp ulp 522/tcp ulp 522/udp ibm-db2 523/tcp ibm-db2 523/udp ncp 524/tcp ncp 524/udp timed 525/tcp timeserver timed 525/udp timeserver tempo 526/tcp newdate tempo 526/udp newdate stx 527/tcp #Stock IXChange stx 527/udp #Stock IXChange custix 528/tcp #Customer IXChange custix 528/udp #Customer IXChange irc-serv 529/tcp irc-serv 529/udp courier 530/tcp rpc courier 530/udp rpc conference 531/tcp chat conference 531/udp chat netnews 532/tcp readnews netnews 532/udp readnews netwall 533/tcp #for emergency broadcasts netwall 533/udp #for emergency broadcasts mm-admin 534/tcp #MegaMedia Admin mm-admin 534/udp #MegaMedia Admin iiop 535/tcp iiop 535/udp opalis-rdv 536/tcp opalis-rdv 536/udp nmsp 537/tcp #Networked Media Streaming Protocol nmsp 537/udp #Networked Media Streaming Protocol gdomap 538/tcp gdomap 538/udp apertus-ldp 539/tcp #Apertus Technologies Load Determination apertus-ldp 539/udp #Apertus Technologies Load Determination uucp 540/tcp uucpd uucp 540/udp uucpd uucp-rlogin 541/tcp uucp-rlogin 541/udp commerce 542/tcp commerce 542/udp klogin 543/tcp # Kerberos (v4/v5) klogin 543/udp # Kerberos (v4/v5) kshell 544/tcp krcmd # Kerberos (v4/v5) kshell 544/udp krcmd # Kerberos (v4/v5) appleqtcsrvr 545/tcp appleqtcsrvr 545/udp dhcpv6-client 546/tcp #DHCPv6 Client dhcpv6-client 546/udp #DHCPv6 Client dhcpv6-server 547/tcp #DHCPv6 Server dhcpv6-server 547/udp #DHCPv6 Server afpovertcp 548/tcp #AFP over TCP afpovertcp 548/udp #AFP over TCP idfp 549/tcp idfp 549/udp new-rwho 550/tcp new-who new-rwho 550/udp new-who cybercash 551/tcp cybercash 551/udp deviceshare 552/tcp deviceshare 552/udp pirp 553/tcp pirp 553/udp rtsp 554/tcp #Real Time Stream Control Protocol rtsp 554/udp #Real Time Stream Control Protocol dsf 555/tcp dsf 555/udp remotefs 556/tcp rfs rfs_server # Brunhoff remote filesystem remotefs 556/udp rfs rfs_server # Brunhoff remote filesystem openvms-sysipc 557/tcp openvms-sysipc 557/udp sdnskmp 558/tcp sdnskmp 558/udp teedtap 559/tcp teedtap 559/udp rmonitor 560/tcp rmonitord rmonitor 560/udp rmonitord monitor 561/tcp monitor 561/udp chshell 562/tcp chcmd chshell 562/udp chcmd nntps 563/tcp snntp #nntp protocol over TLS/SSL nntps 563/udp snntp #nntp protocol over TLS/SSL 9pfs 564/tcp #plan 9 file service 9pfs 564/udp #plan 9 file service whoami 565/tcp whoami 565/udp streettalk 566/tcp streettalk 566/udp banyan-rpc 567/tcp banyan-rpc 567/udp ms-shuttle 568/tcp #Microsoft shuttle ms-shuttle 568/udp #Microsoft shuttle ms-rome 569/tcp #Microsoft rome ms-rome 569/udp #Microsoft rome meter 570/tcp #demon meter 570/udp #demon umeter 571/tcp #udemon umeter 571/udp #udemon sonar 572/tcp sonar 572/udp banyan-vip 573/tcp banyan-vip 573/udp ftp-agent 574/tcp #FTP Software Agent System ftp-agent 574/udp #FTP Software Agent System vemmi 575/tcp vemmi 575/udp ipcd 576/tcp ipcd 576/udp vnas 577/tcp vnas 577/udp ipdd 578/tcp ipdd 578/udp decbsrv 579/tcp decbsrv 579/udp sntp-heartbeat 580/tcp sntp-heartbeat 580/udp bdp 581/tcp #Bundle Discovery Protocol bdp 581/udp #Bundle Discovery Protocol scc-security 582/tcp scc-security 582/udp philips-vc 583/tcp #Philips Video-Conferencing philips-vc 583/udp #Philips Video-Conferencing keyserver 584/tcp keyserver 584/udp password-chg 586/tcp password-chg 586/udp submission 587/tcp submission 587/udp cal 588/tcp cal 588/udp eyelink 589/tcp eyelink 589/udp tns-cml 590/tcp tns-cml 590/udp http-alt 591/tcp #FileMaker, Inc. - HTTP Alternate (see Port 80) http-alt 591/udp #FileMaker, Inc. - HTTP Alternate (see Port 80) eudora-set 592/tcp eudora-set 592/udp http-rpc-epmap 593/tcp #HTTP RPC Ep Map http-rpc-epmap 593/udp #HTTP RPC Ep Map tpip 594/tcp tpip 594/udp cab-protocol 595/tcp cab-protocol 595/udp smsd 596/tcp smsd 596/udp ptcnameservice 597/tcp #PTC Name Service ptcnameservice 597/udp #PTC Name Service sco-websrvrmg3 598/tcp #SCO Web Server Manager 3 sco-websrvrmg3 598/udp #SCO Web Server Manager 3 acp 599/tcp #Aeolon Core Protocol acp 599/udp #Aeolon Core Protocol ipcserver 600/tcp #Sun IPC server ipcserver 600/udp #Sun IPC server syslog-conn 601/tcp #Reliable Syslog Service syslog-conn 601/udp #Reliable Syslog Service xmlrpc-beep 602/tcp #XML-RPC over BEEP xmlrpc-beep 602/udp #XML-RPC over BEEP idxp 603/tcp idxp 603/udp tunnel 604/tcp tunnel 604/udp soap-beep 605/tcp #SOAP over BEEP soap-beep 605/udp #SOAP over BEEP urm 606/tcp #Cray Unified Resource Manager urm 606/udp #Cray Unified Resource Manager nqs 607/tcp nqs 607/udp sift-uft 608/tcp #Sender-Initiated/Unsolicited File Transfer sift-uft 608/udp #Sender-Initiated/Unsolicited File Transfer npmp-trap 609/tcp npmp-trap 609/udp npmp-local 610/tcp npmp-local 610/udp npmp-gui 611/tcp npmp-gui 611/udp hmmp-ind 612/tcp #HMMP Indication hmmp-ind 612/udp #HMMP Indication hmmp-op 613/tcp #HMMP Operation hmmp-op 613/udp #HMMP Operation sshell 614/tcp #SSLshell sshell 614/udp sco-inetmgr 615/tcp #Internet Configuration Manager sco-inetmgr 615/udp #Internet Configuration Manager sco-sysmgr 616/tcp #SCO System Administration Server sco-sysmgr 616/udp #SCO System Administration Server sco-dtmgr 617/tcp #SCO Desktop Administration Server sco-dtmgr 617/udp #SCO Desktop Administration Server dei-icda 618/tcp dei-icda 618/udp compaq-evm 619/tcp #Compaq EVM compaq-evm 619/udp #Compaq EVM sco-websrvrmgr 620/tcp #SCO WebServer Manager sco-websrvrmgr 620/udp #SCO WebServer Manager escp-ip 621/tcp #ESCP escp-ip 621/udp #ESCP collaborator 622/tcp collaborator 622/udp asf-rmcp 623/tcp #ASF Remote Management and Control Protocol asf-rmcp 623/udp #ASF Remote Management and Control Protocol cryptoadmin 624/tcp #Crypto Admin cryptoadmin 624/udp #Crypto Admin dec_dlm 625/tcp #DEC DLM dec_dlm 625/udp #DEC DLM asia 626/tcp asia 626/udp passgo-tivoli 627/tcp #PassGo Tivoli passgo-tivoli 627/udp #PassGo Tivoli qmqp 628/tcp qmqp 628/udp 3com-amp3 629/tcp #3Com AMP3 3com-amp3 629/udp #3Com AMP3 rda 630/tcp rda 630/udp ipp 631/tcp #IPP (Internet Printing Protocol) ipp 631/udp #IPP (Internet Printing Protocol) bmpp 632/tcp bmpp 632/udp servstat 633/tcp #Service Status update (Sterling Software) servstat 633/udp #Service Status update (Sterling Software) ginad 634/tcp ginad 634/udp rlzdbase 635/tcp #RLZ DBase rlzdbase 635/udp #RLZ DBase ldaps 636/tcp sldap #ldap protocol over TLS/SSL ldaps 636/udp sldap lanserver 637/tcp lanserver 637/udp mcns-sec 638/tcp mcns-sec 638/udp msdp 639/tcp msdp 639/udp entrust-sps 640/tcp entrust-sps 640/udp repcmd 641/tcp repcmd 641/udp esro-emsdp 642/tcp #ESRO-EMSDP V1.3 esro-emsdp 642/udp #ESRO-EMSDP V1.3 sanity 643/tcp #SANity sanity 643/udp #SANity dwr 644/tcp dwr 644/udp pssc 645/tcp pssc 645/udp ldp 646/tcp ldp 646/udp dhcp-failover 647/tcp #DHCP Failover dhcp-failover 647/udp #DHCP Failover rrp 648/tcp #Registry Registrar Protocol (RRP) rrp 648/udp #Registry Registrar Protocol (RRP) cadview-3d 649/tcp #Cadview-3d - streaming 3d models over the internet cadview-3d 649/udp #Cadview-3d - streaming 3d models over the internet obex 650/tcp obex 650/udp ieee-mms 651/tcp #IEEE MMS ieee-mms 651/udp #IEEE MMS hello-port 652/tcp hello-port 652/udp repscmd 653/tcp repscmd 653/udp aodv 654/tcp #Ad-Hoc On-Demand Distance Vector Routing Protocol aodv 654/udp #Ad-Hoc On-Demand Distance Vector Routing Protocol tinc 655/tcp tinc 655/udp spmp 656/tcp spmp 656/udp rmc 657/tcp rmc 657/udp tenfold 658/tcp tenfold 658/udp mac-srvr-admin 660/tcp #MacOS Server Admin mac-srvr-admin 660/udp #MacOS Server Admin hap 661/tcp hap 661/udp pftp 662/tcp pftp 662/udp purenoise 663/tcp #PureNoise purenoise 663/udp #PureNoise asf-secure-rmcp 664/tcp #ASF Secure Remote Management and Control Protocol asf-secure-rmcp 664/udp #ASF Secure Remote Management and Control Protocol sun-dr 665/tcp #Sun DR sun-dr 665/udp #Sun DR doom 666/tcp #doom Id Software doom 666/udp #doom Id Software mdqs 666/tcp mdqs 666/udp disclose 667/tcp #campaign contribution disclosures - SDR Technologies disclose 667/udp #campaign contribution disclosures - SDR Technologies mecomm 668/tcp mecomm 668/udp meregister 669/tcp meregister 669/udp vacdsm-sws 670/tcp vacdsm-sws 670/udp vacdsm-app 671/tcp vacdsm-app 671/udp vpps-qua 672/tcp vpps-qua 672/udp cimplex 673/tcp cimplex 673/udp acap 674/tcp #Application Configuration Access Protocol acap 674/udp #Application Configuration Access Protocol dctp 675/tcp dctp 675/udp vpps-via 676/tcp #VPPS Via vpps-via 676/udp #VPPS Via vpp 677/tcp #Virtual Presence Protocol vpp 677/udp #Virtual Presence Protocol ggf-ncp 678/tcp #GNU Generation Foundation NCP ggf-ncp 678/udp #GNU Generation Foundation NCP mrm 679/tcp mrm 679/udp entrust-aaas 680/tcp entrust-aaas 680/udp entrust-aams 681/tcp entrust-aams 681/udp xfr 682/tcp xfr 682/udp corba-iiop 683/tcp #CORBA IIOP corba-iiop 683/udp #CORBA IIOP corba-iiop-ssl 684/tcp #CORBA IIOP SSL corba-iiop-ssl 684/udp #CORBA IIOP SSL mdc-portmapper 685/tcp #MDC Port Mapper mdc-portmapper 685/udp #MDC Port Mapper hcp-wismar 686/tcp #Hardware Control Protocol Wismar hcp-wismar 686/udp #Hardware Control Protocol Wismar asipregistry 687/tcp asipregistry 687/udp realm-rusd 688/tcp #ApplianceWare managment protocol realm-rusd 688/udp #ApplianceWare managment protocol nmap 689/tcp nmap 689/udp vatp 690/tcp #Velazquez Application Transfer Protocol vatp 690/udp #Velazquez Application Transfer Protocol msexch-routing 691/tcp #MS Exchange Routing msexch-routing 691/udp #MS Exchange Routing hyperwave-isp 692/tcp #Hyperwave-ISP hyperwave-isp 692/udp #Hyperwave-ISP connendp 693/tcp connendp 693/udp ha-cluster 694/tcp ha-cluster 694/udp ieee-mms-ssl 695/tcp ieee-mms-ssl 695/udp rushd 696/tcp rushd 696/udp uuidgen 697/tcp uuidgen 697/udp olsr 698/tcp olsr 698/udp accessnetwork 699/tcp #Access Network accessnetwork 699/udp #Access Network epp 700/tcp #Extensible Provisioning Protocol epp 700/udp #Extensible Provisioning Protocol lmp 701/tcp #Link Management Protocol (LMP) lmp 701/udp #Link Management Protocol (LMP) iris-beep 702/tcp #IRIS over BEEP iris-beep 702/udp #IRIS over BEEP elcsd 704/tcp #errlog copy/server daemon elcsd 704/udp #errlog copy/server daemon agentx 705/tcp #AgentX agentx 705/udp #AgentX silc 706/tcp silc 706/udp borland-dsj 707/tcp #Borland DSJ borland-dsj 707/udp #Borland DSJ entrustmanager 709/tcp #EntrustManager entrustmanager 709/udp #EntrustManager entrust-ash 710/tcp #Entrust Administration Service Handler entrust-ash 710/udp #Entrust Administration Service Handler cisco-tdp 711/tcp #Cisco TDP cisco-tdp 711/udp #Cisco TDP tbrpf 712/tcp tbrpf 712/udp iris-xpc 713/tcp #IRIS over XPC iris-xpc 713/udp #IRIS over XPC iris-xpcs 714/tcp #IRIS over XPCS iris-xpcs 714/udp #IRIS over XPCS iris-lwz 715/tcp iris-lwz 715/udp netviewdm1 729/tcp #IBM NetView DM/6000 Server/Client netviewdm1 729/udp #IBM NetView DM/6000 Server/Client netviewdm2 730/tcp #IBM NetView DM/6000 send/tcp netviewdm2 730/udp #IBM NetView DM/6000 send/tcp netviewdm3 731/tcp #IBM NetView DM/6000 receive/tcp netviewdm3 731/udp #IBM NetView DM/6000 receive/tcp netgw 741/tcp netgw 741/udp netrcs 742/tcp #Network based Rev. Cont. Sys. netrcs 742/udp #Network based Rev. Cont. Sys. flexlm 744/tcp #Flexible License Manager flexlm 744/udp #Flexible License Manager fujitsu-dev 747/tcp #Fujitsu Device Control fujitsu-dev 747/udp #Fujitsu Device Control ris-cm 748/tcp #Russell Info Sci Calendar Manager ris-cm 748/udp #Russell Info Sci Calendar Manager kerberos-adm 749/tcp #Kerberos administration (v5) kerberos-adm 749/udp #Kerberos administration (v5) kerberos-iv 750/tcp kdc # Kerberos (v4) kerberos-iv 750/udp kdc # Kerberos (v4) kerberos_master 751/tcp # Kerberos `kadmin' (v4) kerberos_master 751/udp # Kerberos `kadmin' (v4) pump 751/tcp pump 751/udp qrh 752/tcp qrh 752/udp rrh 753/tcp rrh 753/udp krb_prop 754/tcp krb5_prop # kerberos/v5 server propagation tell 754/tcp #send tell 754/udp #send nlogin 758/tcp nlogin 758/udp con 759/tcp con 759/udp krbupdate 760/tcp kreg # Kerberos (v4) registration ns 760/tcp ns 760/udp kpasswd 761/tcp kpwd # Kerberos (v4) "passwd" rxe 761/tcp rxe 761/udp quotad 762/tcp quotad 762/udp cycleserv 763/tcp cycleserv 763/udp omserv 764/tcp omserv 764/udp webster 765/tcp webster 765/udp phonebook 767/tcp #phone phonebook 767/udp #phone vid 769/tcp vid 769/udp cadlock 770/tcp cadlock 770/udp rtip 771/tcp rtip 771/udp cycleserv2 772/tcp cycleserv2 772/udp notify 773/udp submit 773/tcp acmaint_dbd 774/udp rpasswd 774/tcp acmaint_transd 775/udp entomb 775/tcp wpages 776/tcp wpages 776/udp multiling-http 777/tcp #Multiling HTTP multiling-http 777/udp #Multiling HTTP wpgs 780/tcp wpgs 780/udp mdbs_daemon 800/tcp mdbs_daemon 800/udp device 801/tcp device 801/udp fcp-udp 810/tcp #FCP fcp-udp 810/udp #FCP Datagram itm-mcell-s 828/tcp itm-mcell-s 828/udp pkix-3-ca-ra 829/tcp #PKIX-3 CA/RA pkix-3-ca-ra 829/udp #PKIX-3 CA/RA netconf-ssh 830/tcp #NETCONF over SSH netconf-ssh 830/udp #NETCONF over SSH netconf-beep 831/tcp #NETCONF over BEEP netconf-beep 831/udp #NETCONF over BEEP netconfsoaphttp 832/tcp #NETCONF for SOAP over HTTPS netconfsoaphttp 832/udp #NETCONF for SOAP over HTTPS netconfsoapbeep 833/tcp #NETCONF for SOAP over BEEP netconfsoapbeep 833/udp #NETCONF for SOAP over BEEP dhcp-failover2 847/tcp #dhcp-failover 2 dhcp-failover2 847/udp #dhcp-failover 2 gdoi 848/tcp gdoi 848/udp iscsi 860/tcp iscsi 860/udp owamp-control 861/tcp owamp-control 861/udp supfilesrv 871/tcp # for SUP rsync 873/tcp rsync 873/udp iclcnet-locate 886/tcp #ICL coNETion locate server iclcnet-locate 886/udp #ICL coNETion locate server iclcnet_svinfo 887/tcp #ICL coNETion server info iclcnet_svinfo 887/udp #ICL coNETion server info accessbuilder 888/tcp accessbuilder 888/udp omginitialrefs 900/tcp #OMG Initial Refs omginitialrefs 900/udp #OMG Initial Refs smpnameres 901/tcp smpnameres 901/udp swat 901/tcp # samba web configuration tool ideafarm-chat 902/tcp ideafarm-chat 902/udp ideafarm-catch 903/tcp ideafarm-catch 903/udp kink 910/tcp #Kerberized Internet Negotiation of Keys (KINK) kink 910/udp #Kerberized Internet Negotiation of Keys (KINK) xact-backup 911/tcp xact-backup 911/udp apex-mesh 912/tcp #APEX relay-relay service apex-mesh 912/udp #APEX relay-relay service apex-edge 913/tcp #APEX endpoint-relay service apex-edge 913/udp #APEX endpoint-relay service rndc 953/tcp # named's rndc control socket ftps-data 989/tcp # ftp protocol, data, over TLS/SSL ftps-data 989/udp ftps 990/tcp # ftp protocol, control, over TLS/SSL ftps 990/udp nas 991/tcp #Netnews Administration System nas 991/udp #Netnews Administration System telnets 992/tcp # telnet protocol over TLS/SSL telnets 992/udp imaps 993/tcp # imap4 protocol over TLS/SSL imaps 993/udp ircs 994/tcp # irc protocol over TLS/SSL ircs 994/udp pop3s 995/tcp spop3 # pop3 protocol over TLS/SSL pop3s 995/udp spop3 vsinet 996/tcp vsinet 996/udp maitrd 997/tcp maitrd 997/udp busboy 998/tcp puparp 998/udp applix 999/udp #Applix ac garcon 999/tcp puprouter 999/tcp puprouter 999/udp cadlock2 1000/tcp cadlock2 1000/udp surf 1010/tcp surf 1010/udp exp1 1021/tcp #RFC3692-style Experiment 1 (*) [RFC4727] exp1 1021/udp #RFC3692-style Experiment 1 (*) [RFC4727] exp2 1022/tcp #RFC3692-style Experiment 2 (*) [RFC4727] exp2 1022/udp #RFC3692-style Experiment 2 (*) [RFC4727] blackjack 1025/tcp #network blackjack blackjack 1025/udp #network blackjack iad1 1030/tcp #BBN IAD iad1 1030/udp #BBN IAD iad2 1031/tcp #BBN IAD iad2 1031/udp #BBN IAD iad3 1032/tcp #BBN IAD iad3 1032/udp #BBN IAD nim 1058/tcp nim 1058/udp nimreg 1059/tcp nimreg 1059/udp instl_boots 1067/tcp #Installation Bootstrap Proto. Serv. instl_boots 1067/udp #Installation Bootstrap Proto. Serv. instl_bootc 1068/tcp #Installation Bootstrap Proto. Cli. instl_bootc 1068/udp #Installation Bootstrap Proto. Cli. socks 1080/tcp socks 1080/udp ansoft-lm-1 1083/tcp #Anasoft License Manager ansoft-lm-1 1083/udp #Anasoft License Manager ansoft-lm-2 1084/tcp #Anasoft License Manager ansoft-lm-2 1084/udp #Anasoft License Manager webobjects 1085/tcp #Web Objects webobjects 1085/udp #Web Objects kpop 1109/tcp #Unofficial kpop 1109/udp #Unofficial nfsd-keepalive 1110/udp #Client status info nfsd-status 1110/tcp #Cluster status info supfiledbg 1127/tcp # for SUP nfa 1155/tcp #Network File Access nfa 1155/udp #Network File Access phone 1167/udp #conference calling skkserv 1178/tcp #SKK (kanji input) lupa 1212/tcp lupa 1212/udp nerv 1222/tcp #SNI R&D network nerv 1222/udp #SNI R&D network hermes 1248/tcp hermes 1248/udp healthd 1281/tcp #healthd healthd 1281/udp #healthd alta-ana-lm 1346/tcp #Alta Analytics License Manager alta-ana-lm 1346/udp #Alta Analytics License Manager bbn-mmc 1347/tcp #multi media conferencing bbn-mmc 1347/udp #multi media conferencing bbn-mmx 1348/tcp #multi media conferencing bbn-mmx 1348/udp #multi media conferencing sbook 1349/tcp #Registration Network Protocol sbook 1349/udp #Registration Network Protocol editbench 1350/tcp #Registration Network Protocol editbench 1350/udp #Registration Network Protocol equationbuilder 1351/tcp #Digital Tool Works (MIT) equationbuilder 1351/udp #Digital Tool Works (MIT) lotusnote 1352/tcp #Lotus Note lotusnote 1352/udp #Lotus Note relief 1353/tcp #Relief Consulting relief 1353/udp #Relief Consulting rightbrain 1354/tcp #RightBrain Software rightbrain 1354/udp #RightBrain Software intuitive-edge 1355/tcp #Intuitive Edge intuitive-edge 1355/udp #Intuitive Edge cuillamartin 1356/tcp #CuillaMartin Company cuillamartin 1356/udp #CuillaMartin Company pegboard 1357/tcp #Electronic PegBoard pegboard 1357/udp #Electronic PegBoard connlcli 1358/tcp connlcli 1358/udp ftsrv 1359/tcp ftsrv 1359/udp mimer 1360/tcp mimer 1360/udp linx 1361/tcp linx 1361/udp timeflies 1362/tcp timeflies 1362/udp ndm-requester 1363/tcp #Network DataMover Requester ndm-requester 1363/udp #Network DataMover Requester ndm-server 1364/tcp #Network DataMover Server ndm-server 1364/udp #Network DataMover Server adapt-sna 1365/tcp #Network Software Associates adapt-sna 1365/udp #Network Software Associates netware-csp 1366/tcp #Novell NetWare Comm Service Platform netware-csp 1366/udp #Novell NetWare Comm Service Platform dcs 1367/tcp dcs 1367/udp screencast 1368/tcp screencast 1368/udp gv-us 1369/tcp #GlobalView to Unix Shell gv-us 1369/udp #GlobalView to Unix Shell us-gv 1370/tcp #Unix Shell to GlobalView us-gv 1370/udp #Unix Shell to GlobalView fc-cli 1371/tcp #Fujitsu Config Protocol fc-cli 1371/udp #Fujitsu Config Protocol fc-ser 1372/tcp #Fujitsu Config Protocol fc-ser 1372/udp #Fujitsu Config Protocol chromagrafx 1373/tcp chromagrafx 1373/udp molly 1374/tcp #EPI Software Systems molly 1374/udp #EPI Software Systems bytex 1375/tcp bytex 1375/udp ibm-pps 1376/tcp #IBM Person to Person Software ibm-pps 1376/udp #IBM Person to Person Software cichlid 1377/tcp #Cichlid License Manager cichlid 1377/udp #Cichlid License Manager elan 1378/tcp #Elan License Manager elan 1378/udp #Elan License Manager dbreporter 1379/tcp #Integrity Solutions dbreporter 1379/udp #Integrity Solutions telesis-licman 1380/tcp #Telesis Network License Manager telesis-licman 1380/udp #Telesis Network License Manager apple-licman 1381/tcp #Apple Network License Manager apple-licman 1381/udp #Apple Network License Manager gwha 1383/tcp #GW Hannaway Network License Manager gwha 1383/udp #GW Hannaway Network License Manager os-licman 1384/tcp #Objective Solutions License Manager os-licman 1384/udp #Objective Solutions License Manager atex_elmd 1385/tcp #Atex Publishing License Manager atex_elmd 1385/udp #Atex Publishing License Manager checksum 1386/tcp #CheckSum License Manager checksum 1386/udp #CheckSum License Manager cadsi-lm 1387/tcp #Computer Aided Design Software Inc LM cadsi-lm 1387/udp #Computer Aided Design Software Inc LM objective-dbc 1388/tcp #Objective Solutions DataBase Cache objective-dbc 1388/udp #Objective Solutions DataBase Cache iclpv-dm 1389/tcp #Document Manager iclpv-dm 1389/udp #Document Manager iclpv-sc 1390/tcp #Storage Controller iclpv-sc 1390/udp #Storage Controller iclpv-sas 1391/tcp #Storage Access Server iclpv-sas 1391/udp #Storage Access Server iclpv-pm 1392/tcp #Print Manager iclpv-pm 1392/udp #Print Manager iclpv-nls 1393/tcp #Network Log Server iclpv-nls 1393/udp #Network Log Server iclpv-nlc 1394/tcp #Network Log Client iclpv-nlc 1394/udp #Network Log Client iclpv-wsm 1395/tcp #PC Workstation Manager software iclpv-wsm 1395/udp #PC Workstation Manager software dvl-activemail 1396/tcp #DVL Active Mail dvl-activemail 1396/udp #DVL Active Mail audio-activmail 1397/tcp #Audio Active Mail audio-activmail 1397/udp #Audio Active Mail video-activmail 1398/tcp #Video Active Mail video-activmail 1398/udp #Video Active Mail cadkey-licman 1399/tcp #Cadkey License Manager cadkey-licman 1399/udp #Cadkey License Manager cadkey-tablet 1400/tcp #Cadkey Tablet Daemon cadkey-tablet 1400/udp #Cadkey Tablet Daemon goldleaf-licman 1401/tcp #Goldleaf License Manager goldleaf-licman 1401/udp #Goldleaf License Manager prm-sm-np 1402/tcp #Prospero Resource Manager prm-sm-np 1402/udp #Prospero Resource Manager prm-nm-np 1403/tcp #Prospero Resource Manager prm-nm-np 1403/udp #Prospero Resource Manager igi-lm 1404/tcp #Infinite Graphics License Manager igi-lm 1404/udp #Infinite Graphics License Manager ibm-res 1405/tcp #IBM Remote Execution Starter ibm-res 1405/udp #IBM Remote Execution Starter netlabs-lm 1406/tcp #NetLabs License Manager netlabs-lm 1406/udp #NetLabs License Manager dbsa-lm 1407/tcp #DBSA License Manager dbsa-lm 1407/udp #DBSA License Manager sophia-lm 1408/tcp #Sophia License Manager sophia-lm 1408/udp #Sophia License Manager here-lm 1409/tcp #Here License Manager here-lm 1409/udp #Here License Manager hiq 1410/tcp #HiQ License Manager hiq 1410/udp #HiQ License Manager af 1411/tcp #AudioFile af 1411/udp #AudioFile innosys 1412/tcp innosys 1412/udp innosys-acl 1413/tcp innosys-acl 1413/udp ibm-mqseries 1414/tcp #IBM MQSeries ibm-mqseries 1414/udp #IBM MQSeries dbstar 1415/tcp dbstar 1415/udp novell-lu6.2 1416/tcp #Novell LU6.2 novell-lu6.2 1416/udp #Novell LU6.2 timbuktu-srv1 1417/tcp #Timbuktu Service 1 Port timbuktu-srv1 1417/udp #Timbuktu Service 1 Port timbuktu-srv2 1418/tcp #Timbuktu Service 2 Port timbuktu-srv2 1418/udp #Timbuktu Service 2 Port timbuktu-srv3 1419/tcp #Timbuktu Service 3 Port timbuktu-srv3 1419/udp #Timbuktu Service 3 Port timbuktu-srv4 1420/tcp #Timbuktu Service 4 Port timbuktu-srv4 1420/udp #Timbuktu Service 4 Port gandalf-lm 1421/tcp #Gandalf License Manager gandalf-lm 1421/udp #Gandalf License Manager autodesk-lm 1422/tcp #Autodesk License Manager autodesk-lm 1422/udp #Autodesk License Manager essbase 1423/tcp #Essbase Arbor Software essbase 1423/udp #Essbase Arbor Software hybrid 1424/tcp #Hybrid Encryption Protocol hybrid 1424/udp #Hybrid Encryption Protocol zion-lm 1425/tcp #Zion Software License Manager zion-lm 1425/udp #Zion Software License Manager sas-1 1426/tcp #Satellite-data Acquisition System 1 sas-1 1426/udp #Satellite-data Acquisition System 1 mloadd 1427/tcp #mloadd monitoring tool mloadd 1427/udp #mloadd monitoring tool informatik-lm 1428/tcp #Informatik License Manager informatik-lm 1428/udp #Informatik License Manager nms 1429/tcp #Hypercom NMS nms 1429/udp #Hypercom NMS tpdu 1430/tcp #Hypercom TPDU tpdu 1430/udp #Hypercom TPDU rgtp 1431/tcp #Reverse Gossip Transport rgtp 1431/udp #Reverse Gossip Transport blueberry-lm 1432/tcp #Blueberry Software License Manager blueberry-lm 1432/udp #Blueberry Software License Manager ms-sql-s 1433/tcp #Microsoft-SQL-Server ms-sql-s 1433/udp #Microsoft-SQL-Server ms-sql-m 1434/tcp #Microsoft-SQL-Monitor ms-sql-m 1434/udp #Microsoft-SQL-Monitor ibm-cics 1435/tcp ibm-cics 1435/udp sas-2 1436/tcp #Satellite-data Acquisition System 2 sas-2 1436/udp #Satellite-data Acquisition System 2 tabula 1437/tcp tabula 1437/udp eicon-server 1438/tcp #Eicon Security Agent/Server eicon-server 1438/udp #Eicon Security Agent/Server eicon-x25 1439/tcp #Eicon X25/SNA Gateway eicon-x25 1439/udp #Eicon X25/SNA Gateway eicon-slp 1440/tcp #Eicon Service Location Protocol eicon-slp 1440/udp #Eicon Service Location Protocol cadis-1 1441/tcp #Cadis License Management cadis-1 1441/udp #Cadis License Management cadis-2 1442/tcp #Cadis License Management cadis-2 1442/udp #Cadis License Management ies-lm 1443/tcp #Integrated Engineering Software ies-lm 1443/udp #Integrated Engineering Software marcam-lm 1444/tcp #Marcam License Management marcam-lm 1444/udp #Marcam License Management proxima-lm 1445/tcp #Proxima License Manager proxima-lm 1445/udp #Proxima License Manager ora-lm 1446/tcp #Optical Research Associates License Manager ora-lm 1446/udp #Optical Research Associates License Manager apri-lm 1447/tcp #Applied Parallel Research LM apri-lm 1447/udp #Applied Parallel Research LM oc-lm 1448/tcp #OpenConnect License Manager oc-lm 1448/udp #OpenConnect License Manager peport 1449/tcp peport 1449/udp dwf 1450/tcp #Tandem Distributed Workbench Facility dwf 1450/udp #Tandem Distributed Workbench Facility infoman 1451/tcp #IBM Information Management infoman 1451/udp #IBM Information Management gtegsc-lm 1452/tcp #GTE Government Systems License Man gtegsc-lm 1452/udp #GTE Government Systems License Man genie-lm 1453/tcp #Genie License Manager genie-lm 1453/udp #Genie License Manager interhdl_elmd 1454/tcp #interHDL License Manager interhdl_elmd 1454/udp #interHDL License Manager esl-lm 1455/tcp #ESL License Manager esl-lm 1455/udp #ESL License Manager dca 1456/tcp dca 1456/udp valisys-lm 1457/tcp #Valisys License Manager valisys-lm 1457/udp #Valisys License Manager nrcabq-lm 1458/tcp #Nichols Research Corp. nrcabq-lm 1458/udp #Nichols Research Corp. proshare1 1459/tcp #Proshare Notebook Application proshare1 1459/udp #Proshare Notebook Application proshare2 1460/tcp #Proshare Notebook Application proshare2 1460/udp #Proshare Notebook Application ibm_wrless_lan 1461/tcp #IBM Wireless LAN ibm_wrless_lan 1461/udp #IBM Wireless LAN world-lm 1462/tcp #World License Manager world-lm 1462/udp #World License Manager nucleus 1463/tcp nucleus 1463/udp msl_lmd 1464/tcp #MSL License Manager msl_lmd 1464/udp #MSL License Manager pipes 1465/tcp #Pipes Platform pipes 1465/udp #Pipes Platform mfarlin@peerlogic.com oceansoft-lm 1466/tcp #Ocean Software License Manager oceansoft-lm 1466/udp #Ocean Software License Manager csdmbase 1467/tcp csdmbase 1467/udp csdm 1468/tcp csdm 1468/udp aal-lm 1469/tcp #Active Analysis Limited License Manager aal-lm 1469/udp #Active Analysis Limited License Manager uaiact 1470/tcp #Universal Analytics uaiact 1470/udp #Universal Analytics csdmbase 1471/tcp csdmbase 1471/udp csdm 1472/tcp csdm 1472/udp openmath 1473/tcp openmath 1473/udp telefinder 1474/tcp telefinder 1474/udp taligent-lm 1475/tcp #Taligent License Manager taligent-lm 1475/udp #Taligent License Manager clvm-cfg 1476/tcp clvm-cfg 1476/udp ms-sna-server 1477/tcp ms-sna-server 1477/udp ms-sna-base 1478/tcp ms-sna-base 1478/udp dberegister 1479/tcp dberegister 1479/udp pacerforum 1480/tcp pacerforum 1480/udp airs 1481/tcp airs 1481/udp miteksys-lm 1482/tcp #Miteksys License Manager miteksys-lm 1482/udp #Miteksys License Manager afs 1483/tcp #AFS License Manager afs 1483/udp #AFS License Manager confluent 1484/tcp #Confluent License Manager confluent 1484/udp #Confluent License Manager lansource 1485/tcp lansource 1485/udp nms_topo_serv 1486/tcp nms_topo_serv 1486/udp localinfosrvr 1487/tcp localinfosrvr 1487/udp docstor 1488/tcp docstor 1488/udp dmdocbroker 1489/tcp dmdocbroker 1489/udp insitu-conf 1490/tcp insitu-conf 1490/udp anynetgateway 1491/tcp anynetgateway 1491/udp stone-design-1 1492/tcp stone-design-1 1492/udp netmap_lm 1493/tcp netmap_lm 1493/udp ica 1494/tcp ica 1494/udp cvc 1495/tcp cvc 1495/udp liberty-lm 1496/tcp liberty-lm 1496/udp rfx-lm 1497/tcp rfx-lm 1497/udp watcom-sql 1498/tcp watcom-sql 1498/udp fhc 1499/tcp #Federico Heinz Consultora fhc 1499/udp #Federico Heinz Consultora vlsi-lm 1500/tcp #VLSI License Manager vlsi-lm 1500/udp #VLSI License Manager sas-3 1501/tcp #Satellite-data Acquisition System 3 sas-3 1501/udp #Satellite-data Acquisition System 3 shivadiscovery 1502/tcp #Shiva shivadiscovery 1502/udp #Shiva imtc-mcs 1503/tcp #Databeam imtc-mcs 1503/udp #Databeam evb-elm 1504/tcp #EVB Software Engineering License Manager evb-elm 1504/udp #EVB Software Engineering License Manager funkproxy 1505/tcp #Funk Software, Inc. funkproxy 1505/udp #Funk Software, Inc. utcd 1506/tcp #Universal Time daemon (utcd) utcd 1506/udp #Universal Time daemon (utcd) symplex 1507/tcp symplex 1507/udp diagmond 1508/tcp diagmond 1508/udp robcad-lm 1509/tcp #Robcad, Ltd. License Manager robcad-lm 1509/udp #Robcad, Ltd. License Manager mvx-lm 1510/tcp #Midland Valley Exploration Ltd. Lic. Man. mvx-lm 1510/udp #Midland Valley Exploration Ltd. Lic. Man. 3l-l1 1511/tcp 3l-l1 1511/udp wins 1512/tcp #Microsoft's Windows Internet Name Service wins 1512/udp #Microsoft's Windows Internet Name Service fujitsu-dtc 1513/tcp #Fujitsu Systems Business of America, Inc fujitsu-dtc 1513/udp #Fujitsu Systems Business of America, Inc fujitsu-dtcns 1514/tcp #Fujitsu Systems Business of America, Inc fujitsu-dtcns 1514/udp #Fujitsu Systems Business of America, Inc ifor-protocol 1515/tcp ifor-protocol 1515/udp vpad 1516/tcp #Virtual Places Audio data vpad 1516/udp #Virtual Places Audio data vpac 1517/tcp #Virtual Places Audio control vpac 1517/udp #Virtual Places Audio control vpvd 1518/tcp #Virtual Places Video data vpvd 1518/udp #Virtual Places Video data vpvc 1519/tcp #Virtual Places Video control vpvc 1519/udp #Virtual Places Video control atm-zip-office 1520/tcp #atm zip office atm-zip-office 1520/udp #atm zip office ncube-lm 1521/tcp #nCube License Manager ncube-lm 1521/udp #nCube License Manager rna-lm 1522/tcp #Ricardo North America License Manager rna-lm 1522/udp #Ricardo North America License Manager cichild-lm 1523/tcp cichild-lm 1523/udp ingreslock 1524/tcp #ingres ingreslock 1524/udp #ingres orasrv 1525/tcp #oracle orasrv 1525/udp #oracle prospero-np 1525/tcp #Prospero Directory Service non-priv prospero-np 1525/udp #Prospero Directory Service non-priv pdap-np 1526/tcp #Prospero Data Access Prot non-priv pdap-np 1526/udp #Prospero Data Access Prot non-priv tlisrv 1527/tcp #oracle tlisrv 1527/udp #oracle mciautoreg 1528/tcp mciautoreg 1528/udp coauthor 1529/tcp #oracle coauthor 1529/udp #oracle support 1529/tcp prmsd gnatsd # cygnus bug tracker rap-service 1530/tcp rap-service 1530/udp rap-listen 1531/tcp rap-listen 1531/udp miroconnect 1532/tcp miroconnect 1532/udp virtual-places 1533/tcp #Virtual Places Software virtual-places 1533/udp #Virtual Places Software micromuse-lm 1534/tcp micromuse-lm 1534/udp ampr-info 1535/tcp ampr-info 1535/udp ampr-inter 1536/tcp ampr-inter 1536/udp sdsc-lm 1537/tcp sdsc-lm 1537/udp 3ds-lm 1538/tcp 3ds-lm 1538/udp intellistor-lm 1539/tcp #Intellistor License Manager intellistor-lm 1539/udp #Intellistor License Manager rds 1540/tcp rds 1540/udp rds2 1541/tcp rds2 1541/udp gridgen-elmd 1542/tcp gridgen-elmd 1542/udp simba-cs 1543/tcp simba-cs 1543/udp aspeclmd 1544/tcp aspeclmd 1544/udp vistium-share 1545/tcp vistium-share 1545/udp abbaccuray 1546/tcp abbaccuray 1546/udp laplink 1547/tcp laplink 1547/udp axon-lm 1548/tcp #Axon License Manager axon-lm 1548/udp #Axon License Manager shivahose 1549/tcp #Shiva Hose shivasound 1549/udp #Shiva Sound 3m-image-lm 1550/tcp #Image Storage license manager 3M Company 3m-image-lm 1550/udp #Image Storage license manager 3M Company hecmtl-db 1551/tcp hecmtl-db 1551/udp pciarray 1552/tcp pciarray 1552/udp issd 1600/tcp issd 1600/udp nkd 1650/tcp nkd 1650/udp shiva_confsrvr 1651/tcp shiva_confsrvr 1651/udp xnmp 1652/tcp xnmp 1652/udp netview-aix-1 1661/tcp netview-aix-1 1661/udp netview-aix-2 1662/tcp netview-aix-2 1662/udp netview-aix-3 1663/tcp netview-aix-3 1663/udp netview-aix-4 1664/tcp netview-aix-4 1664/udp netview-aix-5 1665/tcp netview-aix-5 1665/udp netview-aix-6 1666/tcp netview-aix-6 1666/udp netview-aix-7 1667/tcp netview-aix-7 1667/udp netview-aix-8 1668/tcp netview-aix-8 1668/udp netview-aix-9 1669/tcp netview-aix-9 1669/udp netview-aix-10 1670/tcp netview-aix-10 1670/udp netview-aix-11 1671/tcp netview-aix-11 1671/udp netview-aix-12 1672/tcp netview-aix-12 1672/udp l2f 1701/tcp #l2f l2f 1701/udp #l2f l2tp 1701/tcp #Layer 2 Tunnelling Protocol l2tp 1701/udp #Layer 2 Tunnelling Protocol pptp 1723/tcp #Point-to-point tunnelling protocol radius 1812/udp #RADIUS authentication protocol (IANA sanctioned) radacct 1813/udp #RADIUS accounting protocol (IANA sanctioned) licensedaemon 1986/tcp #cisco license management licensedaemon 1986/udp #cisco license management tr-rsrb-p1 1987/tcp #cisco RSRB Priority 1 port tr-rsrb-p1 1987/udp #cisco RSRB Priority 1 port tr-rsrb-p2 1988/tcp #cisco RSRB Priority 2 port tr-rsrb-p2 1988/udp #cisco RSRB Priority 2 port mshnet 1989/tcp #MHSnet system mshnet 1989/udp #MHSnet system tr-rsrb-p3 1989/tcp #cisco RSRB Priority 3 port tr-rsrb-p3 1989/udp #cisco RSRB Priority 3 port stun-p1 1990/tcp #cisco STUN Priority 1 port stun-p1 1990/udp #cisco STUN Priority 1 port stun-p2 1991/tcp #cisco STUN Priority 2 port stun-p2 1991/udp #cisco STUN Priority 2 port ipsendmsg 1992/tcp ipsendmsg 1992/udp stun-p3 1992/tcp #cisco STUN Priority 3 port stun-p3 1992/udp #cisco STUN Priority 3 port snmp-tcp-port 1993/tcp #cisco SNMP TCP port snmp-tcp-port 1993/udp #cisco SNMP TCP port stun-port 1994/tcp #cisco serial tunnel port stun-port 1994/udp #cisco serial tunnel port perf-port 1995/tcp #cisco perf port perf-port 1995/udp #cisco perf port tr-rsrb-port 1996/tcp #cisco Remote SRB port tr-rsrb-port 1996/udp #cisco Remote SRB port gdp-port 1997/tcp #cisco Gateway Discovery Protocol gdp-port 1997/udp #cisco Gateway Discovery Protocol x25-svc-port 1998/tcp #cisco X.25 service (XOT) x25-svc-port 1998/udp #cisco X.25 service (XOT) tcp-id-port 1999/tcp #cisco identification port tcp-id-port 1999/udp #cisco identification port callbook 2000/tcp callbook 2000/udp dc 2001/tcp wizard 2001/udp #curry globe 2002/tcp globe 2002/udp cfingerd 2003/tcp #GNU finger emce 2004/udp #CCWS mm conf mailbox 2004/tcp berknet 2005/tcp oracle 2005/udp invokator 2006/tcp raid-cc 2006/udp #raid dectalk 2007/tcp raid-am 2007/udp conf 2008/tcp terminaldb 2008/udp news 2009/tcp whosockami 2009/udp pipe_server 2010/udp search 2010/tcp raid-cc 2011/tcp #raid servserv 2011/udp raid-ac 2012/udp ttyinfo 2012/tcp raid-am 2013/tcp raid-cd 2013/udp raid-sf 2014/udp troff 2014/tcp cypress 2015/tcp raid-cs 2015/udp bootserver 2016/tcp bootserver 2016/udp bootclient 2017/udp cypress-stat 2017/tcp rellpack 2018/udp terminaldb 2018/tcp about 2019/udp whosockami 2019/tcp xinupageserver 2020/tcp xinupageserver 2020/udp servexec 2021/tcp xinuexpansion1 2021/udp down 2022/tcp xinuexpansion2 2022/udp xinuexpansion3 2023/tcp xinuexpansion3 2023/udp xinuexpansion4 2024/tcp xinuexpansion4 2024/udp ellpack 2025/tcp xribs 2025/udp scrabble 2026/tcp scrabble 2026/udp shadowserver 2027/tcp shadowserver 2027/udp submitserver 2028/tcp submitserver 2028/udp device2 2030/tcp device2 2030/udp blackboard 2032/tcp blackboard 2032/udp glogger 2033/tcp glogger 2033/udp scoremgr 2034/tcp scoremgr 2034/udp imsldoc 2035/tcp imsldoc 2035/udp objectmanager 2038/tcp objectmanager 2038/udp lam 2040/tcp lam 2040/udp interbase 2041/tcp interbase 2041/udp isis 2042/tcp isis 2042/udp isis-bcast 2043/tcp isis-bcast 2043/udp rimsl 2044/tcp rimsl 2044/udp cdfunc 2045/tcp cdfunc 2045/udp sdfunc 2046/tcp sdfunc 2046/udp dls-monitor 2048/tcp dls-monitor 2048/udp nfsd 2049/tcp nfs # NFS server daemon nfsd 2049/udp nfs # NFS server daemon dlsrpn 2065/tcp #Data Link Switch Read Port Number dlsrpn 2065/udp #Data Link Switch Read Port Number dlswpn 2067/tcp #Data Link Switch Write Port Number dlswpn 2067/udp #Data Link Switch Write Port Number zephyr-clt 2103/udp #Zephyr serv-hm connection zephyr-hm 2104/udp #Zephyr hostmanager eklogin 2105/tcp #Kerberos (v4) encrypted rlogin eklogin 2105/udp #Kerberos (v4) encrypted rlogin ekshell 2106/tcp #Kerberos (v4) encrypted rshell ekshell 2106/udp #Kerberos (v4) encrypted rshell rkinit 2108/tcp #Kerberos (v4) remote initialization rkinit 2108/udp #Kerberos (v4) remote initialization ats 2201/tcp #Advanced Training System Program ats 2201/udp #Advanced Training System Program hpssd 2207/tcp #HP Status and Services hpssd 2207/udp #HP Status and Services hpiod 2208/tcp #HP I/O Backend hpiod 2208/udp #HP I/O Backend ivs-video 2232/tcp #IVS Video default ivs-video 2232/udp #IVS Video default ivsd 2241/tcp #IVS Daemon ivsd 2241/udp #IVS Daemon pehelp 2307/tcp pehelp 2307/udp cvspserver 2401/tcp #CVS network server cvspserver 2401/udp #CVS network server venus 2430/tcp #venus venus 2430/udp #venus venus-se 2431/tcp #venus-se venus-se 2431/udp #venus-se codasrv 2432/tcp #codasrv codasrv 2432/udp #codasrv codasrv-se 2433/tcp #codasrv-se codasrv-se 2433/udp #codasrv-se rtsserv 2500/tcp #Resource Tracking system server rtsserv 2500/udp #Resource Tracking system server rtsclient 2501/tcp #Resource Tracking system client rtsclient 2501/udp #Resource Tracking system client hp-3000-telnet 2564/tcp #HP 3000 NS/VT block mode telnet zebrasrv 2600/tcp #zebra service zebra 2601/tcp #zebra vty ripd 2602/tcp #RIPd vty ripngd 2603/tcp #RIPngd vty ospfd 2604/tcp #OSPFd vty bgpd 2605/tcp #BGPd vty ospf6d 2606/tcp #OSPF6d vty dict 2628/tcp #RFC 2229 dict 2628/udp #RFC 2229 listen 2766/tcp #System V listener port www-dev 2784/tcp #world wide web - development www-dev 2784/udp #world wide web - development eppc 3031/tcp #Remote AppleEvents/PPC Toolbox eppc 3031/udp #Remote AppleEvents/PPC Toolbox NSWS 3049/tcp NSWS 3049/udp gds_db 3050/tcp #InterBase Database Remote Protocol gds_db 3050/udp #InterBase Database Remote Protocol sj3 3086/tcp #SJ3 (kanji input) vmodem 3141/tcp vmodem 3141/udp iscsi-target 3260/tcp # iSCSI port iscsi-target 3260/udp # iSCSI port ccmail 3264/tcp #cc:mail/lotus ccmail 3264/udp #cc:mail/lotus dec-notes 3333/tcp #DEC Notes dec-notes 3333/udp #DEC Notes rdp 3389/tcp #Microsoft Remote Desktop Protocol bmap 3421/tcp #Bull Apprise portmapper bmap 3421/udp #Bull Apprise portmapper prsvp 3455/tcp #RSVP Port prsvp 3455/udp rsvp-encap #RSVP Port vat 3456/tcp #VAT default data vat 3456/udp #VAT default data vat-control 3457/tcp #VAT default control vat-control 3457/udp #VAT default control nut 3493/tcp #Network UPS Tools nut 3493/udp #Network UPS Tools tsp 3653/tcp #Tunnel Setup Protocol tsp 3653/udp #Tunnel Setup Protocol svn 3690/tcp #Subversion svn 3690/udp #Subversion udt_os 3900/tcp #Unidata UDT OS udt_os 3900/udp #Unidata UDT OS mapper-nodemgr 3984/tcp #MAPPER network node manager mapper-nodemgr 3984/udp #MAPPER network node manager mapper-mapethd 3985/tcp #MAPPER TCP/IP server mapper-mapethd 3985/udp #MAPPER TCP/IP server mapper-ws_ethd 3986/tcp #MAPPER workstation server mapper-ws_ethd 3986/udp #MAPPER workstation server netcheque 4008/tcp #NetCheque accounting netcheque 4008/udp #NetCheque accounting lockd 4045/tcp lockd 4045/udp # NFS lock daemon/manager nuts_dem 4132/tcp #NUTS Daemon nuts_dem 4132/udp #NUTS Daemon nuts_bootp 4133/tcp #NUTS Bootp Server nuts_bootp 4133/udp #NUTS Bootp Server rwhois 4321/tcp #Remote Who Is rwhois 4321/udp #Remote Who Is unicall 4343/tcp unicall 4343/udp krb524 4444/tcp krb524 4444/udp nv-video 4444/tcp #NV Video default nv-video 4444/udp #NV Video default sae-urn 4500/tcp sae-urn 4500/udp fax 4557/tcp #FAX transmission service hylafax 4559/tcp #HylaFAX client-server protocol rfa 4672/tcp #remote file access server rfa 4672/udp #remote file access server commplex-main 5000/tcp commplex-main 5000/udp commplex-link 5001/tcp commplex-link 5001/udp rfe 5002/tcp #radio free ethernet rfe 5002/udp #radio free ethernet telelpathstart 5010/tcp telelpathstart 5010/udp telelpathattack 5011/tcp telelpathattack 5011/udp mmcc 5050/tcp #multimedia conference control tool mmcc 5050/udp #multimedia conference control tool sds 5059/tcp #SIP Directory Services sds 5059/udp #SIP Directory Services sip 5060/tcp #Session Initialization Protocol (VoIP) sip 5060/udp #Session Initialization Protocol (VoIP) sip-tls 5061/tcp #SIP over TLS sip-tls 5061/udp #SIP over TLS rmonitor_secure 5145/tcp rmonitor_secure 5145/udp aol 5190/tcp #America-Online aol 5190/udp #America-Online aol-1 5191/tcp #AmericaOnline1 aol-1 5191/udp #AmericaOnline1 aol-2 5192/tcp #AmericaOnline2 aol-2 5192/udp #AmericaOnline2 aol-3 5193/tcp #AmericaOnline3 aol-3 5193/udp #AmericaOnline3 xmpp-client 5222/tcp #XMPP Client Connection xmpp-client 5222/udp #XMPP Client Connection padl2sim 5236/tcp padl2sim 5236/udp xmpp-server 5269/tcp #XMPP Server Connection xmpp-server 5269/udp #XMPP Server Connection hacl-hb 5300/tcp # HA cluster heartbeat hacl-hb 5300/udp # HA cluster heartbeat hacl-gs 5301/tcp # HA cluster general services hacl-gs 5301/udp # HA cluster general services hacl-cfg 5302/tcp # HA cluster configuration hacl-cfg 5302/udp # HA cluster configuration hacl-probe 5303/tcp # HA cluster probing hacl-probe 5303/udp # HA cluster probing hacl-local 5304/tcp hacl-local 5304/udp hacl-test 5305/tcp hacl-test 5305/udp cfengine 5308/tcp cfengine 5308/udp mdns 5353/tcp #Multicast DNS mdns 5353/udp #Multicast DNS postgresql 5432/tcp #PostgreSQL Database postgresql 5432/udp #PostgreSQL Database rplay 5555/udp canna 5680/tcp #Canna (Japanese Input) proshareaudio 5713/tcp #proshare conf audio proshareaudio 5713/udp #proshare conf audio prosharevideo 5714/tcp #proshare conf video prosharevideo 5714/udp #proshare conf video prosharedata 5715/tcp #proshare conf data prosharedata 5715/udp #proshare conf data prosharerequest 5716/tcp #proshare conf request prosharerequest 5716/udp #proshare conf request prosharenotify 5717/tcp #proshare conf notify prosharenotify 5717/udp #proshare conf notify cvsup 5999/tcp #CVSup file transfer/John Polstra/FreeBSD x11 6000/tcp #6000-6063 are assigned to X Window System x11 6000/udp x11-ssh 6010/tcp #Unofficial name, for convenience x11-ssh 6010/udp softcm 6110/tcp #HP SoftBench CM softcm 6110/udp #HP SoftBench CM spc 6111/tcp #HP SoftBench Sub-Process Control spc 6111/udp #HP SoftBench Sub-Process Control meta-corp 6141/tcp #Meta Corporation License Manager meta-corp 6141/udp #Meta Corporation License Manager aspentec-lm 6142/tcp #Aspen Technology License Manager aspentec-lm 6142/udp #Aspen Technology License Manager watershed-lm 6143/tcp #Watershed License Manager watershed-lm 6143/udp #Watershed License Manager statsci1-lm 6144/tcp #StatSci License Manager - 1 statsci1-lm 6144/udp #StatSci License Manager - 1 statsci2-lm 6145/tcp #StatSci License Manager - 2 statsci2-lm 6145/udp #StatSci License Manager - 2 lonewolf-lm 6146/tcp #Lone Wolf Systems License Manager lonewolf-lm 6146/udp #Lone Wolf Systems License Manager montage-lm 6147/tcp #Montage License Manager montage-lm 6147/udp #Montage License Manager ricardo-lm 6148/tcp #Ricardo North America License Manager ricardo-lm 6148/udp #Ricardo North America License Manager sge_qmaster 6444/tcp #Grid Engine Qmaster Service sge_qmaster 6444/udp #Grid Engine Qmaster Service sge_execd 6445/tcp #Grid Engine Execution Service sge_execd 6445/udp #Grid Engine Execution Service xdsxdm 6558/tcp xdsxdm 6558/udp ircd 6667/tcp #Internet Relay Chat (unoffical) acmsoda 6969/tcp acmsoda 6969/udp afs3-fileserver 7000/tcp #file server itself afs3-fileserver 7000/udp #file server itself afs3-callback 7001/tcp #callbacks to cache managers afs3-callback 7001/udp #callbacks to cache managers afs3-prserver 7002/tcp #users & groups database afs3-prserver 7002/udp #users & groups database afs3-vlserver 7003/tcp #volume location database afs3-vlserver 7003/udp #volume location database afs3-kaserver 7004/tcp #AFS/Kerberos authentication service afs3-kaserver 7004/udp #AFS/Kerberos authentication service afs3-volser 7005/tcp #volume management server afs3-volser 7005/udp #volume management server afs3-errors 7006/tcp #error interpretation service afs3-errors 7006/udp #error interpretation service afs3-bos 7007/tcp #basic overseer process afs3-bos 7007/udp #basic overseer process afs3-update 7008/tcp #server-to-server updater afs3-update 7008/udp #server-to-server updater afs3-rmtsys 7009/tcp #remote cache manager service afs3-rmtsys 7009/udp #remote cache manager service afs3-resserver 7010/tcp #MR-AFS residence server afs3-resserver 7010/udp #MR-AFS residence server ups-onlinet 7010/tcp #onlinet uninterruptable power supplies ups-onlinet 7010/udp #onlinet uninterruptable power supplies afs3-remio 7011/tcp #MR-AFS remote IO server afs3-remio 7011/udp #MR-AFS remote IO server font-service 7100/tcp #X Font Service font-service 7100/udp #X Font Service fodms 7200/tcp #FODMS FLIP fodms 7200/udp #FODMS FLIP dlip 7201/tcp dlip 7201/udp ftp-proxy 8021/tcp # FTP proxy natd 8668/divert # Network Address Translation jetdirect 9100/tcp #HP JetDirect card git 9418/tcp #git pack transfer service git 9418/udp #git pack transfer service man 9535/tcp man 9535/udp sd 9876/tcp #Session Director sd 9876/udp #Session Director amanda 10080/tcp #Dump server control amanda 10080/udp #Dump server control amandaidx 10082/tcp #Amanda indexing amidxtape 10083/tcp #Amanda tape indexing bpcd 13782/tcp #Veritas NetBackup bpcd 13782/udp #Veritas NetBackup isode-dua 17007/tcp isode-dua 17007/udp biimenu 18000/tcp #Beckman Instruments, Inc. biimenu 18000/udp #Beckman Instruments, Inc. wnn4 22273/tcp wnn6 #Wnn4 (Japanese input) wnn4_Cn 22289/tcp wnn6_Cn #Wnn4 (Chinese input) wnn4_Kr 22305/tcp wnn6_Kr #Wnn4 (Korean input) wnn4_Tw 22321/tcp wnn6_Tw #Wnn4 (Taiwanse input) wnn6_DS 26208/tcp #Wnn6 (Dserver) dbbrowse 47557/tcp #Databeam Corporation dbbrowse 47557/udp #Databeam Corporation
root toor installer daemon operator bin tty kmem games news man sshd bind proxy _dhcp _pflogd _sdpd uucp xten pop www nobody mailnull smmsp
0 0
ssh 22
shared-memory: Shared Memory: shared-memory: T ID KEY MODE OWNER GROUP message-queue: Message Queues: message-queue: T ID KEY MODE OWNER GROUP semaphores: Semaphores: semaphores: T ID KEY MODE OWNER GROUP
nslookup: Server: 10.0.0.138 nslookup: Address: 10.0.0.138#53 nslookup: *** Can't find dfbsd221.local.nl: No answer
domain: binding: is-master-server: 0 is-slave-server: 0 is-client: 0
"passwd" is an alias for "passwd.byname" "master.passwd" is an alias for "master.passwd.byname" "group" is an alias for "group.byname" "networks" is an alias for "networks.byaddr" "hosts" is an alias for "hosts.byaddr" "protocols" is an alias for "protocols.bynumber" "services" is an alias for "services.byname" "aliases" is an alias for "mail.aliases" "ethers" is an alias for "ethers.byname"
status: inactive version: /usr/sbin/named:
0001: search local.nl 0002: nameserver 10.0.0.138
lp0: flags=8851<UP,POINTOPOINT,RUNNING,SIMPLEX,MULTICAST> mtu 1500
lnc0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500 options=8<VLAN_MTU> inet6 fe80::20c:29ff:fe4f:95a4%lnc0 prefixlen 64 scopeid 0x2 inet 10.0.0.158 netmask 0xffffff00 broadcast 10.0.0.255 ether 00:0c:29:4f:95:a4 media: Ethernet autoselect status: active
faith0: flags=8002<BROADCAST,MULTICAST> mtu 1500
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384 options=3<RXCSUM,TXCSUM> inet 127.0.0.1 netmask 0xff000000 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4
ppp0: flags=8010<POINTOPOINT,MULTICAST> mtu 1500
sl0: flags=c010<POINTOPOINT,LINK2,MULTICAST> mtu 552
net.inet.accf.unloadable: 0 net.inet.icmp.bmcastecho: 0 net.inet.icmp.drop_redirect: 0 net.inet.icmp.icmplim: 200 net.inet.icmp.icmplim_output: 1 net.inet.icmp.log_redirect: 0 net.inet.icmp.maskrepl: 0 net.inet.ip.accept_sourceroute: 0 net.inet.ip.check_interface: 0 net.inet.ip.dummynet.cpu: 0 net.inet.ip.fastforwarding: 0 net.inet.ip.forwarding: 0 net.inet.ip.gifttl: 30 net.inet.ip.ipflow.inuse0: 0 net.inet.ip.keepfaith: 0 net.inet.ip.maxfragpackets: 78 net.inet.ip.maxfragsperpacket: 16 net.inet.ip.portrange.first: 1024 net.inet.ip.portrange.hifirst: 49152 net.inet.ip.portrange.hilast: 65535 net.inet.ip.portrange.last: 5000 net.inet.ip.portrange.lowfirst: 1023 net.inet.ip.portrange.lowlast: 600 net.inet.ip.random_id: 1 net.inet.ip.redirect: 1 net.inet.ip.rtexpire: 3600 net.inet.ip.rtmaxcache: 128 net.inet.ip.rtminexpire: 10 net.inet.ip.sendsourcequench: 0 net.inet.ip.sourceroute: 0 net.inet.ip.subnets_are_local: 0 net.inet.ip.ttl: 64 net.inet.raw.maxdgram: 8192 net.inet.raw.recvspace: 8192 net.inet.tcp.abc: 1 net.inet.tcp.aggregate_acks: 1 net.inet.tcp.always_keepalive: 1 net.inet.tcp.avoid_pure_win_update: 1 net.inet.tcp.blackhole: 0 net.inet.tcp.delacktime: 100 net.inet.tcp.delayed_ack: 1 net.inet.tcp.do_tcpdrain: 1 net.inet.tcp.earlyretransmit: 1 net.inet.tcp.eifel: 1 net.inet.tcp.icmp_may_rst: 1 net.inet.tcp.inflight_debug: 0 net.inet.tcp.inflight_enable: 0 net.inet.tcp.inflight_max: 1073725440 net.inet.tcp.inflight_min: 6144 net.inet.tcp.inflight_stab: 20 net.inet.tcp.isn_reseed_interval: 0 net.inet.tcp.keepidle: 7200000 net.inet.tcp.keepinit: 75000 net.inet.tcp.keepintvl: 75000 net.inet.tcp.limitedtransmit: 1 net.inet.tcp.log_in_vain: 0 net.inet.tcp.mpsafe_thread: 0 net.inet.tcp.msl: 30000 net.inet.tcp.mssdflt: 1460 net.inet.tcp.path_mtu_discovery: 0 net.inet.tcp.reass.cursegments: 0 net.inet.tcp.reass.maxsegments: 156 net.inet.tcp.reass.overflows: 0 net.inet.tcp.recvspace: 57344 net.inet.tcp.rexmit_min: 1000 net.inet.tcp.rexmit_slop: 200 net.inet.tcp.rfc1323: 1 net.inet.tcp.rfc1644: 0 net.inet.tcp.rfc3390: 1 net.inet.tcp.sack: 1 net.inet.tcp.sendspace: 57344 net.inet.tcp.smartsack: 1 net.inet.tcp.syncache.bucketlimit: 30 net.inet.tcp.syncache.cachelimit: 15359 net.inet.tcp.syncache.hashsize: 512 net.inet.tcp.syncache.rexmtlimit: 3 net.inet.tcp.syncookies: 1 net.inet.tcp.tcbhashsize: 512 net.inet.tcp.v6mssdflt: 1024 net.inet.udp.blackhole: 0 net.inet.udp.checksum: 1 net.inet.udp.log_in_vain: 0 net.inet.udp.maxdgram: 9216 net.inet.udp.mpsafe_thread: 0 net.inet.udp.recvspace: 42080 net.inet.udp.strict_mcast_mship: 1 net.inet6.icmp6.errppslimit: 100 net.inet6.icmp6.nd6_debug: 0 net.inet6.icmp6.nd6_delay: 5 net.inet6.icmp6.nd6_maxnudhint: 0 net.inet6.icmp6.nd6_mmaxtries: 3 net.inet6.icmp6.nd6_prune: 1 net.inet6.icmp6.nd6_umaxtries: 3 net.inet6.icmp6.nd6_useloopback: 1 net.inet6.icmp6.nodeinfo: 3 net.inet6.icmp6.rediraccept: 1 net.inet6.icmp6.redirtimeout: 600 net.inet6.ip6.accept_rtadv: 0 net.inet6.ip6.auto_flowlabel: 1 net.inet6.ip6.auto_linklocal: 1 net.inet6.ip6.dad_count: 1 net.inet6.ip6.defmcasthlim: 1 net.inet6.ip6.forwarding: 0 net.inet6.ip6.gifhlim: 30 net.inet6.ip6.hdrnestlimit: 50 net.inet6.ip6.hlim: 64 net.inet6.ip6.kame_version: 20010528/FreeBSD net.inet6.ip6.keepfaith: 0 net.inet6.ip6.log_interval: 5 net.inet6.ip6.maxfragpackets: 624 net.inet6.ip6.redirect: 1 net.inet6.ip6.rr_prune: 5 net.inet6.ip6.rtexpire: 3600 net.inet6.ip6.rtmaxcache: 128 net.inet6.ip6.rtminexpire: 10 net.inet6.ip6.temppltime: 86400 net.inet6.ip6.tempvltime: 604800 net.inet6.ip6.use_deprecated: 1 net.inet6.ip6.use_tempaddr: 0 net.inet6.ip6.v6only: 1 net.link.ether.inet.host_down_time: 20 net.link.ether.inet.log_arp_wrong_iface: 1 net.link.ether.inet.max_age: 1200 net.link.ether.inet.maxtries: 5 net.link.ether.inet.proxyall: 0 net.link.ether.inet.prune_intvl: 300 net.link.ether.inet.useloopback: 1 net.link.ether.ipfw: 0 net.link.ether.prepend_hdr: 0 net.link.generic.if_devstart_schednochk: 0 net.link.generic.if_devstart_schedonly: 0 net.link.generic.ifq_dispatch_schednochk: 0 net.link.generic.ifq_dispatch_schedonly: 0 net.link.generic.system.ifcount: 6 net.link.gif.max_nesting: 1 net.link.gif.parallel_tunnels: 0 net.local.dgram.maxdgram: 2048 net.local.dgram.recvspace: 4096 net.local.inflight: 0 net.local.stream.recvspace: 57344 net.local.stream.sendspace: 57344 net.netisr.mpsafe_thread: 0 net.route.assert_owner_access: 0 net.wlan.debug: 0
routing tables internet: destination:gateway:flags:mtu:netif default:speedtouch:ugsc:lnc0: 10.0.0/24:link#2:uc:lnc0: speedtouch:00:90:d0:db:bd:81:uhlw:lnc0:1072 10.0.0.157:08:00:27:23:0a:05:uhlw:lnc0:1072 10.0.0.158:localhost:ughs:16384:lo0 localhost:localhost:uh:16384:lo0 internet6: destination:gateway:flags:mtu:netif localhost:localhost:uh:16384:lo0 fe80::%lnc0:link#2:uc:1500:lnc0 fe80::20c:29ff:fe4f:95a4%lnc0:00:0c:29:4f:95:a4:uhl:1500:lo0 fe80::%lo0:fe80::1%lo0:uc:16384:lo0 fe80::1%lo0:link#4:uhl:16384:lo0 ff01:::localhost:u:16384:lo0 ff02::%lnc0:link#2:uc:1500:lnc0 ff02::%lo0:localhost:uc:16384:lo0
SHELL=/bin/sh PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin HOME=/var/log */5 * * * * root /usr/libexec/atrun 0 * * * * root newsyslog 1 3 * * * root periodic daily 15 4 * * 6 root periodic weekly 30 5 1 * * root periodic monthly 1,31 0-5 * * * root adjkerntz -a
expat-2.0.1 XML parser library written in C bootstrap-mk-files-20080808 *.mk files for the bootstrap bmake utility pkg_install-20081013 Package management and administration tools for pkgsrc pkg_tarup-1.7.1 Generates binary package(s) from installed pkg(s) isc-dhcp-server-4.0.0nb1 ISC Dynamic Host Configuration Protocol (DHCP) Server pax-20080110 POSIX standard archiver with many extensions curl-7.18.0nb5 Client that groks URLs scc-1.9.24 System Configuration Collector 1.9.24 gettext-lib-0.14.6 Internationalized Message Handling Library (libintl) libidn-1.11 Internationalized Domain Names command line tool perl-5.10.0nb4 Practical Extraction and Report Language isc-dhcp-base-4.0.0nb1 ISC Dynamic Host Configuration Protocol (DHCP) Base p5-Error-0.17015nb1 Perl extension module for try/throw/catch exception handling cdrtools-2.01.01.53 Software for creating ISO9660 images and writing CD/DVD/Blu-ray scmgit-base-1.6.0.2nb3 GIT Tree History Storage Tool (base package) scmgit-docs-1.6.0.2 GIT Tree History Storage Tool (documentation) pkg_leaves-1.1 Print leaf packages scmgit-1.6.0.2 GIT version control suite meta-package bmake-20081111 Portable (autoconf) version of NetBSD 'make' utility
version: dfbsd221.local.nl ESMTP Sendmail 8.14.2/8.14.2
scc_0000_s_general 76017463 9593 scc_0100_s_boot 2556296888 9765 scc_0200_s_hardware 4183023271 33112 scc_0300_s_kernel 855434238 9008 scc_0400_s_vol_mngt 1425255450 36062 scc_0500_s_network 2483262838 30628 scc_0500_u_named 3581799200 2161 scc_0600_s_software 4204805613 58656 scc_0610_s_oracle_sapr3 3940161015 3738 scc_0620_s_websphere 2936985430 650 scc_0700_s_hp_ov 1270739327 11159 scc_0700_u_hp_ovou_srv 4061246438 63795 scc_0800_s_oracle 2464776031 9125 scc_0900_s_system 2291388927 11188 scc_1000_s_users 3313527077 5318 scc_utils 3290949522 12386
Protocol 2 Subsystem sftp /usr/libexec/sftp-server
f4963b10b7eb90023068a73bb7488df1
1024 35 143014921908947629348281880592196892842705063681590830909337640960312972684354154397146995553723139253360163459357286109255107648386220765160257029491067043307523743774372483269006159465639946648085984774598024054871616586622016162571648074542353585144580328946165154751849553433326520932190487426545103908397 root@dfbsd221.local.nl
HOME = . RANDFILE = $ENV::HOME/.rnd oid_section = new_oids [ new_oids ] [ ca ] default_ca = CA_default # The default ca section [ CA_default ] dir = ./demoCA # Where everything is kept certs = $dir/certs # Where the issued certs are kept crl_dir = $dir/crl # Where the issued crl are kept database = $dir/index.txt # database index file. new_certs_dir = $dir/newcerts # default place for new certs. certificate = $dir/cacert.pem # The CA certificate serial = $dir/serial # The current serial number crlnumber = $dir/crlnumber # the current crl number crl = $dir/crl.pem # The current CRL private_key = $dir/private/cakey.pem# The private key RANDFILE = $dir/private/.rand # private random number file x509_extensions = usr_cert # The extentions to add to the cert name_opt = ca_default # Subject Name options cert_opt = ca_default # Certificate field options default_days = 365 # how long to certify for default_crl_days= 30 # how long before next CRL default_md = sha1 # which md to use. preserve = no # keep passed DN ordering policy = policy_match [ policy_match ] countryName = match stateOrProvinceName = match organizationName = match organizationalUnitName = optional commonName = supplied emailAddress = optional [ policy_anything ] countryName = optional stateOrProvinceName = optional localityName = optional organizationName = optional organizationalUnitName = optional commonName = supplied emailAddress = optional [ req ] default_bits = 1024 default_keyfile = privkey.pem distinguished_name = req_distinguished_name attributes = req_attributes x509_extensions = v3_ca # The extentions to add to the self signed cert string_mask = nombstr [ req_distinguished_name ] countryName = Country Name (2 letter code) countryName_default = AU countryName_min = 2 countryName_max = 2 stateOrProvinceName = State or Province Name (full name) stateOrProvinceName_default = Some-State localityName = Locality Name (eg, city) 0.organizationName = Organization Name (eg, qnh.nl) 0.organizationName_default = Internet Widgits Pty Ltd organizationalUnitName = Organizational Unit Name (eg, section) commonName = Common Name (eg, YOUR name) commonName_max = 64 emailAddress = Email Address emailAddress_max = 64 [ req_attributes ] challengePassword = A challenge password challengePassword_min = 4 challengePassword_max = 20 unstructuredName = An optional qnh.nl name [ usr_cert ] basicConstraints=CA:FALSE nsComment = "OpenSSL Generated Certificate" subjectKeyIdentifier=hash authorityKeyIdentifier=keyid,issuer [ v3_req ] basicConstraints = CA:FALSE keyUsage = nonRepudiation, digitalSignature, keyEncipherment [ v3_ca ] subjectKeyIdentifier=hash authorityKeyIdentifier=keyid:always,issuer:always basicConstraints = CA:true [ crl_ext ] authorityKeyIdentifier=keyid:always,issuer:always [ proxy_cert_ext ] basicConstraints=CA:FALSE nsComment = "OpenSSL Generated Certificate" subjectKeyIdentifier=hash authorityKeyIdentifier=keyid,issuer:always proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo
This directory contains configuration files for the Pluggable
Authentication Modules (PAM) library.
Each file details the module chain for a single service, and must be
named after that service. If no configuration file is found for a
particular service, the /etc/pam.d/other is used instead. If that
file does not exist, /etc/pam.conf is searched for entries matching
the specified service or, failing that, the "other" service.
See the pam(8) manual page for an explanation of the workings of the
PAM library and descriptions of the various files and modules. Below
is a summary of the format for the pam.conf and /etc/pam.d/* files.
Configuration lines take the following form:
module-type control-flag module-path arguments
Comments are introduced with a hash mark ('#'). Blank lines and lines
consisting entirely of comments are ignored.
The meanings of the different fields are as follows:
module-type:
auth: prompt for a password to authenticate that the user is
who they say they are, and set any credentials.
account: non-authentication based authorization, based on time,
resources, etc.
session: housekeeping before and/or after login.
password: update authentication tokens.
control-flag: How libpam handles success or failure of the module.
required: success is required; on failure all remaining
modules are run, but the request will be denied.
requisite: success is required, and on failure no remaining
modules are run.
sufficient: success is sufficient, and if no previous required
module failed, no remaining modules are run.
binding: success is sufficient; on failure all remaining
modules are run, but the request will be denied.
optional: ignored unless the other modules return PAM_IGNORE.
arguments: Module-specific options, plus some generic ones:
debug: syslog debug info.
no_warn: return no warning messages to the application.
Remove this to feed back to the user the
reason(s) they are being rejected.
use_first_pass: try authentication using password from the
preceding auth module.
try_first_pass: first try authentication using password from
the preceding auth module, and if that fails
prompt for a new password.
use_mapped_pass: convert cleartext password to a crypto key.
expose_account: allow printing more info about the user when
prompting.
Note that having a "sufficient" module as the last entry for a
particular service and module type may result in surprising behaviour.
To get the intended semantics, add a "required" entry listing the
pam_deny module at the end of the chain.
$DragonFly: src/etc/pam.d/README,v 1.1 2005/07/13 16:30:23 joerg Exp $
account required pam_unix.so
if [ $# -ge 1 ]
then
dir="$1"
else
dir=/etc/pam.d
fi
if [ $# = 2 ]
then
file="$2"
else
file=/etc/pam.conf
fi
if [ $# -gt 2 ]
then
echo "Usage: $0 [ output directory ] [ input file ]"
echo "Default output is /etc/pam.d, default input is /etc/pam.conf"
exit 1
fi
awk '/^([#[:space:]]*)([[:alnum:]_]+)[[:space:]]+(auth|account|session|password)[[:space:]]+([^[:space:]].*)$/ {
match($0, /[#[:space:]]*/)
prefix = substr($0, 0, RLENGTH)
$0 = substr($0, RLENGTH + 1)
match($0, /[[:alnum:]_]+/)
name = substr($0, 0, RLENGTH)
$0 = substr($0, RLENGTH + 1)
match($0, /[[:space:]]+/)
$0 = substr($0, RLENGTH + 1)
match($0, /(auth|account|session|password)/)
type = substr($0, 0, RLENGTH)
$0 = substr($0, RLENGTH + 1)
match($0, /[[:space:]]+/)
arg = substr($0, RLENGTH + 1)
line = prefix type
tabs = ((16 - length(line)) / 8)
for (i = 0; i < tabs; i++)
line = line "\t"
if ((name, type) in content)
content[name, type] = content[name, type] "\n" line arg
else
content[name, type] = line arg
services[name] = name
}
END {
'fdir=\"$dir\"'
split("auth account session password", types, " ")
for (service in services) {
fname = fdir "/" service
system("rm -f " fname)
print "#\n# $DragonFly: src/etc/pam.d/convert.sh,v 1.1 2005/07/22 18:20:43 joerg Exp $\n#\n# PAM configuration for the \"" service "\" service\n#\n" >> fname
for (type in types)
if ((service, types[type]) in content)
print content[service, types[type]] >> fname
close(fname)
}
}' < $file
account required pam_nologin.so account required pam_unix.so
auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_unix.so session required pam_permit.so
auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_unix.so session required pam_permit.so
auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_unix.so session required pam_permit.so
auth required pam_unix.so no_warn try_first_pass account required pam_unix.so
auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_unix.so session required pam_permit.so
auth sufficient pam_self.so no_warn auth include system account requisite pam_securetty.so account required pam_nologin.so account include system session include system password include system
auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_login_access.so account required pam_unix.so session required pam_permit.so password required pam_permit.so
password required pam_unix.so no_warn try_first_pass nullok
auth required pam_unix.so no_warn try_first_pass account required pam_unix.so
auth required pam_rhosts.so no_warn account required pam_nologin.so account required pam_unix.so session required pam_permit.so password required pam_deny.so
auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_login_access.so account required pam_unix.so session required pam_permit.so password required pam_unix.so no_warn try_first_pass
auth sufficient pam_rootok.so no_warn auth sufficient pam_self.so no_warn auth requisite pam_group.so no_warn group=wheel root_only fail_safe auth include system account include system session required pam_permit.so
auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local auth required pam_unix.so no_warn try_first_pass nullok account required pam_login_access.so account required pam_unix.so session required pam_lastlog.so no_fail password required pam_unix.so no_warn try_first_pass
auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_login_access.so account required pam_unix.so session required pam_lastlog.so no_fail password required pam_unix.so no_warn try_first_pass
auth required pam_unix.so no_warn try_first_pass account required pam_nologin.so account required pam_unix.so password required pam_deny.so
45046:64:0:44:M*: AIX:4.3::AIX 4.3 16384:64:0:44:M512: AIX:4.3:2-3:AIX 4.3.2 and earlier 16384:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2 16384:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2 32768:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2 32768:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2 65535:64:0:60:M512,N,W%2,N,N,T: AIX:4.3:3:AIX 4.3.3-5.2 65535:64:0:60:M512,N,W%2,N,N,T: AIX:5.1-5.2::AIX 4.3.3-5.2 65535:64:0:64:M*,N,W1,N,N,T,N,N,S: AIX:5.3:ML1:AIX 5.3 ML1 512:64:0:44:M*: Linux:2.0:3x:Linux 2.0.3x 16384:64:0:44:M*: Linux:2.0:3x:Linux 2.0.3x 2:64:0:44:M*: Linux:2.0:3x:Linux 2.0.3x (MkLinux) on Mac 64:64:0:44:M*: Linux:2.0:3x:Linux 2.0.3x (MkLinux) on Mac S4:64:1:60:M1360,S,T,N,W0: Linux:google::Linux (Google crawlbot) S2:64:1:60:M*,S,T,N,W0: Linux:2.4::Linux 2.4 (big boy) S3:64:1:60:M*,S,T,N,W0: Linux:2.4:.18-21:Linux 2.4.18 and newer S4:64:1:60:M*,S,T,N,W0: Linux:2.4::Linux 2.4/2.6 <= 2.6.7 S4:64:1:60:M*,S,T,N,W0: Linux:2.6:.1-7:Linux 2.4/2.6 <= 2.6.7 S4:64:1:60:M*,S,T,N,W7: Linux:2.6:8:Linux 2.6.8 and newer (?) S3:64:1:60:M*,S,T,N,W1: Linux:2.5::Linux 2.5 (sometimes 2.4) S4:64:1:60:M*,S,T,N,W1: Linux:2.5-2.6::Linux 2.5/2.6 S3:64:1:60:M*,S,T,N,W2: Linux:2.5::Linux 2.5 (sometimes 2.4) S4:64:1:60:M*,S,T,N,W2: Linux:2.5::Linux 2.5 (sometimes 2.4) S20:64:1:60:M*,S,T,N,W0: Linux:2.2:20-25:Linux 2.2.20 and newer S22:64:1:60:M*,S,T,N,W0: Linux:2.2::Linux 2.2 S11:64:1:60:M*,S,T,N,W0: Linux:2.2::Linux 2.2 S4:64:1:48:M1460,N,W0: Linux:2.4:cluster:Linux 2.4 in cluster T4:64:1:60:M1412,S,T,N,W0: Linux:2.4::Linux 2.4 (late, uncommon) 32767:64:1:60:M16396,S,T,N,W0: Linux:2.4:lo0:Linux 2.4 (local) S8:64:1:60:M3884,S,T,N,W0: Linux:2.2:lo0:Linux 2.2 (local) 16384:64:1:60:M*,S,T,N,W0: Linux:2.2:Opera:Linux 2.2 (Opera?) 32767:64:1:60:M*,S,T,N,W0: Linux:2.4:Opera:Linux 2.4 (Opera?) S4:64:1:52:M*,N,N,S,N,W0: Linux:2.4:ts:Linux 2.4 w/o timestamps S22:64:1:52:M*,N,N,S,N,W0: Linux:2.2:ts:Linux 2.2 w/o timestamps 16384:64:1:44:M*: FreeBSD:2.0-2.2::FreeBSD 2.0-4.2 16384:64:1:44:M*: FreeBSD:3.0-3.5::FreeBSD 2.0-4.2 16384:64:1:44:M*: FreeBSD:4.0-4.2::FreeBSD 2.0-4.2 16384:64:1:60:M*,N,W0,N,N,T: FreeBSD:4.4::FreeBSD 4.4 1024:64:1:60:M*,N,W0,N,N,T: FreeBSD:4.4::FreeBSD 4.4 57344:64:1:44:M*: FreeBSD:4.6-4.8:noRFC1323:FreeBSD 4.6-4.8 (no RFC1323) 57344:64:1:60:M*,N,W0,N,N,T: FreeBSD:4.6-4.9::FreeBSD 4.6-4.9 32768:64:1:60:M*,N,W0,N,N,T: FreeBSD:4.8-4.11::FreeBSD 4.8-5.1 (or MacOS X) 32768:64:1:60:M*,N,W0,N,N,T: FreeBSD:5.0-5.1::FreeBSD 4.8-5.1 (or MacOS X) 65535:64:1:60:M*,N,W0,N,N,T: FreeBSD:4.8-4.11::FreeBSD 4.8-5.2 (or MacOS X) 65535:64:1:60:M*,N,W0,N,N,T: FreeBSD:5.0-5.2::FreeBSD 4.8-5.2 (or MacOS X) 65535:64:1:60:M*,N,W1,N,N,T: FreeBSD:4.7-4.11::FreeBSD 4.7-5.2 65535:64:1:60:M*,N,W1,N,N,T: FreeBSD:5.0-5.2::FreeBSD 4.7-5.2 16384:64:0:60:M*,N,W0,N,N,T: NetBSD:1.3::NetBSD 1.3 65535:64:0:60:M*,N,W0,N,N,T0: NetBSD:1.6:opera:NetBSD 1.6 (Opera) 16384:64:0:60:M*,N,W0,N,N,T0: NetBSD:1.6::NetBSD 1.6 16384:64:1:60:M*,N,W0,N,N,T0: NetBSD:1.6:df:NetBSD 1.6 (DF) 65535:64:1:60:M*,N,W1,N,N,T0: NetBSD:1.6::NetBSD 1.6W-current (DF) 65535:64:1:60:M*,N,W0,N,N,T0: NetBSD:1.6::NetBSD 1.6X (DF) 32768:64:1:60:M*,N,W0,N,N,T0: NetBSD:1.6:randomization:NetBSD 1.6ZH-current (w/ ip_id randomization) 16384:64:0:60:M*,N,W0,N,N,T: OpenBSD:2.6::NetBSD 1.3 (or OpenBSD 2.6) 16384:64:1:64:M*,N,N,S,N,W0,N,N,T: OpenBSD:3.0-4.0::OpenBSD 3.0-4.0 16384:64:0:64:M*,N,N,S,N,W0,N,N,T: OpenBSD:3.0-4.0:no-df:OpenBSD 3.0-4.0 (scrub no-df) 57344:64:1:64:M*,N,N,S,N,W0,N,N,T: OpenBSD:3.3-4.0::OpenBSD 3.3-4.0 57344:64:0:64:M*,N,N,S,N,W0,N,N,T: OpenBSD:3.3-4.0:no-df:OpenBSD 3.3-4.0 (scrub no-df) 65535:64:1:64:M*,N,N,S,N,W0,N,N,T: OpenBSD:3.0-4.0:opera:OpenBSD 3.0-4.0 (Opera) S17:64:1:64:N,W3,N,N,T0,N,N,S,M*: Solaris:8:RFC1323:Solaris 8 RFC1323 S17:64:1:48:N,N,S,M*: Solaris:8::Solaris 8 S17:255:1:44:M*: Solaris:2.5-2.7::Solaris 2.5 to 7 S6:255:1:44:M*: Solaris:2.6-2.7::Solaris 2.6 to 7 S23:255:1:44:M*: Solaris:2.5:1:Solaris 2.5.1 S34:64:1:48:M*,N,N,S: Solaris:2.9::Solaris 9 S44:255:1:44:M*: Solaris:2.7::Solaris 7 4096:64:0:44:M1460: SunOS:4.1::SunOS 4.1.x S34:64:1:52:M*,N,W0,N,N,S: Solaris:10:beta:Solaris 10 (beta) 32850:64:1:64:M*,N,N,T,N,W1,N,N,S: Solaris:10::Solaris 10 1203 49152:64:0:44:M*: IRIX:6.4::IRIX 6.4 61440:64:0:44:M*: IRIX:6.2-6.5::IRIX 6.2-6.5 49152:64:0:52:M*,N,W2,N,N,S: IRIX:6.5:RFC1323:IRIX 6.5 (RFC1323) 49152:64:0:52:M*,N,W3,N,N,S: IRIX:6.5:RFC1323:IRIX 6.5 (RFC1323) 61440:64:0:48:M*,N,N,S: IRIX:6.5:12-21:IRIX 6.5.12 - 6.5.21 49152:64:0:48:M*,N,N,S: IRIX:6.5:15-21:IRIX 6.5.15 - 6.5.21 49152:60:0:64:M*,N,W2,N,N,T,N,N,S: IRIX:6.5:IP27:IRIX 6.5 IP27 32768:64:1:48:M*,N,W0: Tru64:4.0::Tru64 4.0 (or OS/2 Warp 4) 32768:64:0:48:M*,N,W0: Tru64:5.0::Tru64 5.0 8192:64:0:44:M1460: Tru64:5.1:noRFC1323:Tru64 6.1 (no RFC1323) (or QNX 6) 61440:64:0:48:M*,N,W0: Tru64:5.1a:JP4:Tru64 v5.1a JP4 (or OpenVMS 7.x on Compaq 5.x stack) 6144:64:1:60:M*,N,W0,N,N,T: OpenVMS:7.2::OpenVMS 7.2 (Multinet 4.4 stack) 16616:255:1:48:M*,W0: MacOS:7.3-7.6:OTTCP:MacOS 7.3-8.6 (OTTCP) 16616:255:1:48:M*,W0: MacOS:8.0-8.6:OTTCP:MacOS 7.3-8.6 (OTTCP) 16616:255:1:48:M*,N,N,N: MacOS:8.1-8.6:OTTCP:MacOS 8.1-8.6 (OTTCP) 32768:255:1:48:M*,W0,N: MacOS:9.0-9.2::MacOS 9.0-9.2 65535:255:1:48:M*,N,N,N,N: MacOS:9.1::MacOS 9.1 (OT 2.7.4) 8192:32:1:44:M*: Windows:3.11::Windows 3.11 (Tucows) S44:64:1:64:M*,N,W0,N,N,T0,N,N,S: Windows:95::Windows 95 8192:128:1:64:M*,N,W0,N,N,T0,N,N,S: Windows:95:b:Windows 95b S44:32:1:48:M*,N,N,S: Windows:98:lowTTL:Windows 98 (low TTL) 8192:32:1:48:M*,N,N,S: Windows:98:lowTTL:Windows 98 (low TTL) %8192:64:1:48:M536,N,N,S: Windows:98::Windows 98 %8192:128:1:48:M536,N,N,S: Windows:98::Windows 98 S4:64:1:48:M*,N,N,S: Windows:98::Windows 98 S6:64:1:48:M*,N,N,S: Windows:98::Windows 98 S12:64:1:48:M*,N,N,S: Windows:98::Windows 98 T30:64:1:64:M1460,N,W0,N,N,T0,N,N,S: Windows:98::Windows 98 32767:64:1:48:M*,N,N,S: Windows:98::Windows 98 37300:64:1:48:M*,N,N,S: Windows:98::Windows 98 46080:64:1:52:M*,N,W3,N,N,S: Windows:98:RFC1323:Windows 98 (RFC1323) 65535:64:1:44:M*: Windows:98:noSack:Windows 98 (no sack) S16:128:1:48:M*,N,N,S: Windows:98::Windows 98 S16:128:1:64:M*,N,W0,N,N,T0,N,N,S: Windows:98::Windows 98 S26:128:1:48:M*,N,N,S: Windows:98::Windows 98 T30:128:1:48:M*,N,N,S: Windows:98::Windows 98 32767:128:1:52:M*,N,W0,N,N,S: Windows:98::Windows 98 60352:128:1:48:M*,N,N,S: Windows:98::Windows 98 60352:128:1:64:M*,N,W2,N,N,T0,N,N,S: Windows:98::Windows 98 T31:128:1:44:M1414: Windows:NT:4.0:Windows NT 4.0 SP6a 64512:128:1:44:M1414: Windows:NT:4.0:Windows NT 4.0 SP6a 8192:128:1:44:M*: Windows:NT:4.0:Windows NT 4.0 (older) 65535:128:1:48:M*,N,N,S: Windows:2000:SP4:Windows 2000 SP4, XP SP1 65535:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows 2000 SP4, XP SP1 %8192:128:1:48:M*,N,N,S: Windows:2000:SP2+:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222) %8192:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows 2000 SP2, XP SP1 (seldom 98 4.10.2222) S20:128:1:48:M*,N,N,S: Windows:2000::Windows 2000/XP SP3 S20:128:1:48:M*,N,N,S: Windows:XP:SP3:Windows 2000/XP SP3 S45:128:1:48:M*,N,N,S: Windows:2000:SP4:Windows 2000 SP4, XP SP 1 S45:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows 2000 SP4, XP SP 1 40320:128:1:48:M*,N,N,S: Windows:2000:SP4:Windows 2000 SP4 S6:128:1:48:M*,N,N,S: Windows:2000:SP2:Windows XP, 2000 SP2+ S6:128:1:48:M*,N,N,S: Windows:XP::Windows XP, 2000 SP2+ S12:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows XP SP1 S44:128:1:48:M*,N,N,S: Windows:2000:SP3:Windows Pro SP1, 2000 SP3 S44:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows Pro SP1, 2000 SP3 64512:128:1:48:M*,N,N,S: Windows:2000:SP3:Windows SP1, 2000 SP3 64512:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows SP1, 2000 SP3 32767:128:1:48:M*,N,N,S: Windows:2000:SP4:Windows SP1, 2000 SP4 32767:128:1:48:M*,N,N,S: Windows:XP:SP1:Windows SP1, 2000 SP4 S52:128:1:48:M1260,N,N,S: Windows:2000:cisco:Windows XP/2000 via Cisco S52:128:1:48:M1260,N,N,S: Windows:XP:cisco:Windows XP/2000 via Cisco 65520:128:1:48:M*,N,N,S: Windows:XP::Windows XP bare-bone 16384:128:1:52:M536,N,W0,N,N,S: Windows:2000:ZoneAlarm:Windows 2000 w/ZoneAlarm? 2048:255:0:40:.: Windows:.NET::Windows .NET Enterprise Server 44620:64:0:48:M*,N,N,S: Windows:ME::Windows ME no SP (?) S6:255:1:48:M536,N,N,S: Windows:95:winsock2:Windows 95 winsock 2 32768:32:1:52:M1460,N,W0,N,N,S: Windows:2003:AS:Windows 2003 AS 32768:64:1:44:M*: HP-UX:B.10.20::HP-UX B.10.20 32768:64:0:48:M*,W0,N: HP-UX:11.0::HP-UX 11.0 32768:64:1:48:M*,W0,N: HP-UX:11.10::HP-UX 11.0 or 11.11 32768:64:1:48:M*,W0,N: HP-UX:11.11::HP-UX 11.0 or 11.11 0:64:0:48:M*,W0,N: HP-UX:B.11.00:A:HP-UX B.11.00 A (RFC1323) 12288:32:0:44:M536: RISC OS:3.70:4.10:RISC OS 3.70 inet 4.10 8192:64:1:60:M1460,N,W0,N,N,T: BSD/OS:3.1::BSD/OS 3.1-4.3 (or MacOS X 10.2 w/DF) 8192:64:1:60:M1460,N,W0,N,N,T: BSD/OS:4.0-4.3::BSD/OS 3.1-4.3 (or MacOS X 10.2) 4096:64:0:44:M1420: NewtonOS:2.1::NewtonOS 2.1 S4:64:0:44:M1024: NeXTSTEP:3.3::NeXTSTEP 3.3 S8:64:0:44:M512: NeXTSTEP:3.3::NeXTSTEP 3.3 1024:255:0:48:M*,N,W0: BeOS:5.0-5.1::BeOS 5.0-5.1 12288:255:0:44:M1402: BeOS:5.0::BeOS 5.0.x 8192:64:1:60:M1440,N,W0,N,N,T: OS/400:VR4::OS/400 VR4/R5 8192:64:1:60:M1440,N,W0,N,N,T: OS/400:VR5::OS/400 VR4/R5 4096:64:1:60:M1440,N,W0,N,N,T: OS/400:V4R5:CF67032:OS/400 V4R5 + CF67032 16384:64:0:40:.: ULTRIX:4.5::ULTRIX 4.5 S16:64:0:44:M512: QNX:::QNX demodisk 16384:128:1:44:M1460: Novell:NetWare:5.0:Novel Netware 5.0 6144:128:1:44:M1460: Novell:IntranetWare:4.11:Novell IntranetWare 4.11 6144:128:1:44:M1368: Novell:BorderManager::Novell BorderManager ? 6144:128:1:52:M*,W0,N,S,N,N: Novell:Netware:6:Novell Netware 6 SP3 S3:64:1:60:M1460,N,W0,N,N,T: SCO:UnixWare:7.1:SCO UnixWare 7.1 S17:64:1:60:M1380,N,W0,N,N,T: SCO:UnixWare:7.1:SCO UnixWare 7.1.3 MP3 S23:64:1:44:M1380: SCO:OpenServer:5.0:SCO OpenServer 5.0 2048:255:0:44:M536: DOS:WATTCP:1.05:DOS Arachne via WATTCP/1.05 T2:255:0:44:M984: DOS:WATTCP:1.05Arachne:Arachne via WATTCP/1.05 (eepro) S56:64:0:44:M512: OS/2:4::OS/2 4 28672:64:0:44:M1460: OS/2:4::OS/2 Warp 4.0 0:64:0:44:M1460: TOPS-20:7::TOPS-20 version 7 S44:255:0:44:M536: FreeMiNT:1:16A:FreeMiNT 1 patch 16A (Atari) 65535:255:0:48:M1460,W0,N: Plan9:4::Plan9 edition 4 16384:64:1:48:M1560,N,N,S: AMIGAOS:3.9::AMIGAOS 3.9 BB2 MiamiDX S12:64:1:44:M1460: @Checkpoint:::Checkpoint (unknown 1) S12:64:1:48:N,N,S,M1460: @Checkpoint:::Checkpoint (unknown 2) 4096:32:0:44:M1460: ExtremeWare:4.x::ExtremeWare 4.x S4:64:1:60:W0,N,S,T,M1460: FortiNet:FortiGate:50:FortiNet FortiGate 50 8192:64:1:44:M1460: Eagle:::Eagle Secure Gateway S52:128:1:48:M1260,N,N,N,N: LinkSys:WRV54G::LinkSys WRV54G VPN router 4128:255:0:44:M*: Cisco:::Cisco Catalyst 3500, 7500 etc S8:255:0:44:M*: Cisco:12008::Cisco 12008 60352:128:1:64:M1460,N,W2,N,N,T,N,N,S: Alteon:ACEswitch::Alteon ACEswitch 64512:128:1:44:M1370: Nortel:Contivity Client::Nortel Conectivity Client S4:64:1:52:M1460,N,N,S,N,W0: AOL:web cache::AOL web cache 32850:64:1:64:N,W1,N,N,T,N,N,S,M*: NetApp:5.x::NetApp Data OnTap 5.x 16384:64:1:64:M1460,N,N,S,N,W0,N: NetApp:5.3:1:NetApp 5.3.1 65535:64:0:64:M1460,N,N,S,N,W*,N,N,T: NetApp:5.3-5.5::NetApp 5.3-5.5 65535:64:0:60:M1460,N,W0,N,N,T: NetApp:CacheFlow::NetApp CacheFlow 8192:64:1:64:M1460,N,N,S,N,W0,N,N,T: NetApp:5.2:1:NetApp NetCache 5.2.1 20480:64:1:64:M1460,N,N,S,N,W0,N,N,T: NetApp:4.1::NetApp NetCache4.1 65535:64:0:60:M1460,N,W0,N,N,T: CacheFlow:4.1::CacheFlow CacheOS 4.1 8192:64:0:60:M1380,N,N,N,N,N,N,T: CacheFlow:1.1::CacheFlow CacheOS 1.1 S4:64:0:48:M1460,N,N,S: Cisco:Content Engine::Cisco Content Engine 27085:128:0:40:.: Dell:PowerApp cache::Dell PowerApp (Linux-based) 65535:255:1:48:N,W1,M1460: Inktomi:crawler::Inktomi crawler S1:255:1:60:M1460,S,T,N,W0: LookSmart:ZyBorg::LookSmart ZyBorg 16384:255:0:40:.: Proxyblocker:::Proxyblocker (what's this?) 65535:255:0:48:M*,N,N,S: Redline:::Redline T|X 2200 32696:128:0:40:M1460: Spirent:Avalanche::Spirent Web Avalanche HTTP benchmarking engine S9:255:0:44:M536: PalmOS:Tungsten:C:PalmOS Tungsten C S5:255:0:44:M536: PalmOS:3::PalmOS 3/4 S5:255:0:44:M536: PalmOS:4::PalmOS 3/4 S4:255:0:44:M536: PalmOS:3:5:PalmOS 3.5 2948:255:0:44:M536: PalmOS:3:5:PalmOS 3.5.3 (Handera) S29:255:0:44:M536: PalmOS:5::PalmOS 5.0 16384:255:0:44:M1398: PalmOS:5.2:Clie:PalmOS 5.2 (Clie) S14:255:0:44:M1350: PalmOS:5.2:Treo:PalmOS 5.2.1 (Treo) S23:64:1:64:N,W1,N,N,T,N,N,S,M1460: SymbianOS:7::SymbianOS 7 8192:255:0:44:M1460: SymbianOS:6048::Symbian OS 6048 (Nokia 7650?) 8192:255:0:44:M536: SymbianOS:9210::Symbian OS (Nokia 9210?) S22:64:1:56:M1460,T,S: SymbianOS:P800::Symbian OS ? (SE P800?) S36:64:1:56:M1360,T,S: SymbianOS:6600::Symbian OS 60xx (Nokia 6600?) 5840:64:1:60:M1452,S,T,N,W1: Zaurus:3.10::Zaurus 3.10 32768:128:1:64:M1460,N,W0,N,N,T0,N,N,S: PocketPC:2002::PocketPC 2002 S1:255:0:44:M346: Contiki:1.1:rc0:Contiki 1.1-rc0 4096:128:0:44:M1460: Sega:Dreamcast:3.0:Sega Dreamcast Dreamkey 3.0 T5:64:0:44:M536: Sega:Dreamcast:HKT-3020:Sega Dreamcast HKT-3020 (browser disc 51027) S22:64:1:44:M1460: Sony:PS2::Sony Playstation 2 (SOCOM?) S12:64:0:44:M1452: AXIS:5600:v5.64:AXIS Printer Server 5600 v5.64 3100:32:1:44:M1460: Windows:CE:2.0:Windows CE 2.0 1024:64:0:40:.: *NMAP:syn scan:1:NMAP syn scan (1) 2048:64:0:40:.: *NMAP:syn scan:2:NMAP syn scan (2) 3072:64:0:40:.: *NMAP:syn scan:3:NMAP syn scan (3) 4096:64:0:40:.: *NMAP:syn scan:4:NMAP syn scan (4) 1024:64:0:60:W10,N,M265,T: *NMAP:OS:1:NMAP OS detection probe (1) 2048:64:0:60:W10,N,M265,T: *NMAP:OS:2:NMAP OS detection probe (2) 3072:64:0:60:W10,N,M265,T: *NMAP:OS:3:NMAP OS detection probe (3) 4096:64:0:60:W10,N,M265,T: *NMAP:OS:4:NMAP OS detection probe (4) 32767:64:0:40:.: *NAST:::NASTsyn scan *:128:1:52:M*,N,W0,N,N,S: @Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp) *:128:1:52:M*,N,W0,N,N,S: @Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp) *:128:1:52:M*,N,W*,N,N,S: @Windows:XP:RFC1323:Windows XP/2000 (RFC1323 no tstamp) *:128:1:52:M*,N,W*,N,N,S: @Windows:2000:RFC1323:Windows XP/2000 (RFC1323 no tstamp) *:128:1:64:M*,N,W0,N,N,T0,N,N,S: @Windows:XP:RFC1323:Windows XP/2000 (RFC1323) *:128:1:64:M*,N,W0,N,N,T0,N,N,S: @Windows:2000:RFC1323:Windows XP/2000 (RFC1323) *:128:1:64:M*,N,W*,N,N,T0,N,N,S: @Windows:XP:RFC1323:Windows XP (RFC1323, w+) *:128:1:48:M536,N,N,S: @Windows:98::Windows 98 *:128:1:48:M*,N,N,S: @Windows:XP::Windows XP/2000 *:128:1:48:M*,N,N,S: @Windows:2000::Windows XP/2000
Version 8.14.2
Compiled with: DNSMAP LOG MAP_REGEX MATCHGECOS MILTER MIME7TO8 MIME8TO7
NAMED_BIND NETINET NETINET6 NETUNIX NEWDB NIS PIPELINING SCANF
STARTTLS TCPWRAPPERS USERDB XDEBUG
setoption SevenBitInput (7)=False
setoption AliasWait (a)=10
setoption AliasFile (A)=/etc/mail/aliases
setoption MinFreeBlocks (b)=100
setoption BlankSub (B)=.
setoption HoldExpensive (c)=False
setoption DeliveryMode (d)=background
setoption TempFileMode (F)=0600
setoption HelpFile (H)=/etc/mail/helpfile
setoption ResolverOptions (I)=WorkAroundBrokenAAAA
setoption SendMimeErrors (j)=True
setoption ForwardPath (J)= 0x81 z/.forward. 0x81 w+ 0x81 h: 0x81 z/.forward+ 0x81 h: 0x81 z/.forward. 0x81 w: 0x81 z/.forward
setoption ConnectionCacheSize (k)=2
setoption ConnectionCacheTimeout (K)=5m
setoption UseErrorsTo (l)=False
setoption LogLevel (L)=9
setoption CheckAliases (n)=False
setoption OldStyleHeaders (o)=True
setoption DaemonPortOptions (O)=Name=IPv4, Family=inet
Daemon IPv4 flags:
setoption DaemonPortOptions (O)=Name=IPv6, Family=inet6, Modifiers=O
Daemon IPv6 flags: <OPTIONAL>
setoption DaemonPortOptions (O)=Port=587, Name=MSA, M=E
Daemon MSA flags: <NOETRN>
setoption PrivacyOptions (p)=authwarnings,noexpn,novrfy
setoption QueueDirectory (Q)=/var/spool/mqueue
setoption Timeout (r).queuereturn=5d
setoption Timeout (r).queuewarn=4h
setoption SuperSafe (s)=True
setoption StatusFile (S)=/var/log/sendmail.st
setoption NoRecipientAction (0x88)=add-to-undisclosed
setoption SmtpGreetingMessage (0x90)= 0x81 j Sendmail 0x81 v/ 0x81 Z; 0x81 b
setoption UnixFromLine (0x91)=From 0x81 g 0x81 d
setoption OperatorChars (0x92)=.:%@!^/[]+
setoption MaxHeadersLength (0xaa)=32768
drop_privileges(1): Real[UG]id=0:0, get[ug]id=0:0, gete[ug]id=0:25, RunAs[UG]id=0:0
getauthinfo: root@localhost
============ SYSTEM IDENTITY (after readcf) ============
(short domain name) $w = dfbsd221
(canonical domain name) $j = dfbsd221.local.nl
(subdomain name) $m = local.nl
(node name) $k = dfbsd221.local.nl
========================================================
setoption HoldExpensive (c)=F
setoption DeliveryMode (d)=
ADDRESS TEST MODE (ruleset 3 NOT automatically invoked)
Enter <ruleset> <address>
> >
====finis: stat 0 e_id=NOQUEUE e_flags=4001<OLDSTYLE,METOO>
MAILER-DAEMON: postmaster postmaster: root _dhcp: root _pflogd: root _sdpd: root bin: root bind: root daemon: root games: root kmem: root mailnull: postmaster man: root news: root nobody: root operator: root pop: root proxy: root smmsp: postmaster sshd: root system: root toor: root tty: root usenet: news uucp: root xten: root abuse: root security: root ftp: root ftp-bugs: ftp
set append dot save ask crt ignore Received Message-Id Resent-Message-Id Status Mail-From Return-Path Via
sendmail /usr/libexec/sendmail/sendmail send-mail /usr/libexec/sendmail/sendmail mailq /usr/libexec/sendmail/sendmail newaliases /usr/libexec/sendmail/sendmail hoststat /usr/libexec/sendmail/sendmail purgestat /usr/libexec/sendmail/sendmail
V10/Berkeley
Cwlocalhost
Fw-o /etc/mail/local-host-names
CP.
DS
CO @ % !
C..
C[[
C{Accept}OK RELAY
Kresolve host -a<OKR> -T<TEMP>
C{ResOk}OKR
FR-o /etc/mail/relay-domains
Karith arith
Kmacro macro
C{Tls}VERIFY ENCR
Kdequote dequote
C{E}root
DnMAILER-DAEMON
CPREDIRECT
Kaccess hash -o -T<TMPF> /etc/mail/access
Kmailertable hash -o /etc/mail/mailertable
Kvirtuser hash -o /etc/mail/virtusertable
DZ8.14.2
O SevenBitInput=False
O AliasWait=10
O AliasFile=/etc/mail/aliases
O MinFreeBlocks=100
O BlankSub=.
O HoldExpensive=False
O DeliveryMode=background
O TempFileMode=0600
O HelpFile=/etc/mail/helpfile
O ResolverOptions=WorkAroundBrokenAAAA
O SendMimeErrors=True
O ForwardPath=$z/.forward.$w+$h:$z/.forward+$h:$z/.forward.$w:$z/.forward
O ConnectionCacheSize=2
O ConnectionCacheTimeout=5m
O UseErrorsTo=False
O LogLevel=9
O CheckAliases=False
O OldStyleHeaders=True
O DaemonPortOptions=Name=IPv4, Family=inet
O DaemonPortOptions=Name=IPv6, Family=inet6, Modifiers=O
O DaemonPortOptions=Port=587, Name=MSA, M=E
O PrivacyOptions=authwarnings,noexpn,novrfy
O QueueDirectory=/var/spool/mqueue
O Timeout.queuereturn=5d
O Timeout.queuewarn=4h
O SuperSafe=True
O StatusFile=/var/log/sendmail.st
O NoRecipientAction=add-to-undisclosed
O SmtpGreetingMessage=$j Sendmail $v/$Z; $b
O UnixFromLine=From $g $d
O OperatorChars=.:%@!^/[]+
O MaxHeadersLength=32768
Pfirst-class=0
Pspecial-delivery=100
Plist=-30
Pbulk=-60
Pjunk=-100
Troot
Tdaemon
Tuucp
H?P?Return-Path: <$g>
HReceived: $?sfrom $s $.$?_($?s$|from $.$_)
$.$?{auth_type}(authenticated$?{auth_ssf} bits=${auth_ssf}$.)
$.by $j ($v/$Z)$?r with $r$. id $i$?{tls_version}
(version=${tls_version} cipher=${cipher} bits=${cipher_bits} verify=${verify})$.$?u
for $u; $|;
$.$b
H?D?Resent-Date: $a
H?D?Date: $a
H?F?Resent-From: $?x$x <$g>$|$g$.
H?F?From: $?x$x <$g>$|$g$.
H?x?Full-Name: $x
H?M?Resent-Message-Id: <$t.$i@$j>
H?M?Message-Id: <$t.$i@$j>
Scanonify=3
R$@ $@ <@>
R$* $: $1 <@> mark addresses
R$* < $* > $* <@> $: $1 < $2 > $3 unmark <addr>
R@ $* <@> $: @ $1 unmark @host:...
R$* [ IPv6 : $+ ] <@> $: $1 [ IPv6 : $2 ] unmark IPv6 addr
R$* :: $* <@> $: $1 :: $2 unmark node::addr
R:include: $* <@> $: :include: $1 unmark :include:...
R$* : $* [ $* ] $: $1 : $2 [ $3 ] <@> remark if leading colon
R$* : $* <@> $: $2 strip colon if marked
R$* <@> $: $1 unmark
R$* ; $1 strip trailing semi
R$* < $+ :; > $* $@ $2 :; <@> catch <list:;>
R$* < $* ; > $1 < $2 > bogus bracketed semi
R$@ $@ :; <@>
R$* $: < $1 > housekeeping <>
R$+ < $* > < $2 > strip excess on left
R< $* > $+ < $1 > strip excess on right
R<> $@ < @ > MAIL FROM:<> case
R< $+ > $: $1 remove housekeeping <>
R@ $+ , $+ $2
R@ [ $* ] : $+ $2
R@ $+ : $+ $2
R $+ : $* ; @ $+ $@ $>Canonify2 $1 : $2 ; < @ $3 > list syntax
R $+ : $* ; $@ $1 : $2; list syntax
R$+ @ $+ $: $1 < @ $2 > focus on domain
R$+ < $+ @ $+ > $1 $2 < @ $3 > move gaze right
R$+ < @ $+ > $@ $>Canonify2 $1 < @ $2 > already canonical
R$- ! $+ $@ $>Canonify2 $2 < @ $1 .UUCP > resolve uucp names
R$+ . $- ! $+ $@ $>Canonify2 $3 < @ $1 . $2 > domain uucps
R$+ ! $+ $@ $>Canonify2 $2 < @ $1 .UUCP > uucp subdomains
R$* % $* $1 @ $2 First make them all @s.
R$* @ $* @ $* $1 % $2 @ $3 Undo all but the last.
R$* @ $* $@ $>Canonify2 $1 < @ $2 > Insert < > and finish
R$* $@ $>Canonify2 $1
SCanonify2=96
R$* < @ localhost > $* $: $1 < @ $j . > $2 no domain at all
R$* < @ localhost . $m > $* $: $1 < @ $j . > $2 local domain
R$* < @ localhost . UUCP > $* $: $1 < @ $j . > $2 .UUCP domain
R$* < @ [ $+ ] > $* $: $1 < @@ [ $2 ] > $3 mark [addr]
R$* < @@ $=w > $* $: $1 < @ $j . > $3 self-literal
R$* < @@ $+ > $* $@ $1 < @ $2 > $3 canon IP addr
R$* < @ $+ . UUCP > $* $: $1 < @ $[ $2 $] . UUCP . > $3
R$* < @ $+ . . UUCP . > $* $@ $1 < @ $2 . > $3
R$* < @ $* $=P > $* $: $1 < @ $2 $3 . > $4
R$* < @ $* $~P > $* $: $&{daemon_flags} $| $1 < @ $2 $3 > $4
R$* CC $* $| $* < @ $+.$+ > $* $: $3 < @ $4.$5 . > $6
R$* CC $* $| $* $: $3
R$* $| $* < @ $* > $* $: $2 < @ $[ $3 $] > $4
R$* $| $* $: $2
R$* < @ $=w > $* $: $1 < @ $2 . > $3
R$* < @ $=M > $* $: $1 < @ $2 . > $3
R$* < @ $={VirtHost} > $* $: $1 < @ $2 . > $3
R$* < @ $* . . > $* $1 < @ $2 . > $3
Sfinal=4
R$+ :; <@> $@ $1 : handle <list:;>
R$* <@> $@ handle <> and list:;
R$* < @ $+ . > $* $1 < @ $2 > $3
R$* < @ *LOCAL* > $* $1 < @ $j > $2
R$* < $+ > $* $1 $2 $3 defocus
R@ $+ : @ $+ : $+ @ $1 , @ $2 : $3 <route-addr> canonical
R@ $* $@ @ $1 ... and exit
R$+ @ $- . UUCP $2!$1 u@h.UUCP => h!u
R$+ % $=w @ $=w $1 @ $2 u%host@host => u@host
SRecurse=97
R$* $: $>canonify $1
R$* $@ $>parse $1
Sparse=0
R$* $: $>Parse0 $1 initial parsing
R<@> $#local $: <@> special case error msgs
R$* $: $>ParseLocal $1 handle local hacks
R$* $: $>Parse1 $1 final parsing
SParse0
R<@> $@ <@> special case error msgs
R$* : $* ; <@> $#error $@ 5.1.3 $: "553 List:; syntax illegal for recipient addresses"
R@ <@ $* > < @ $1 > catch "@@host" bogosity
R<@ $+> $#error $@ 5.1.3 $: "553 User address required"
R$+ <@> $#error $@ 5.1.3 $: "553 Hostname required"
R$* $: <> $1
R<> $* < @ [ $* ] : $+ > $* $1 < @ [ $2 ] : $3 > $4
R<> $* < @ [ $* ] , $+ > $* $1 < @ [ $2 ] , $3 > $4
R<> $* < @ [ $* ] $+ > $* $#error $@ 5.1.2 $: "553 Invalid address"
R<> $* < @ [ $+ ] > $* $1 < @ [ $2 ] > $3
R<> $* <$* : $* > $* $#error $@ 5.1.3 $: "553 Colon illegal in host name part"
R<> $* $1
R$* < @ . $* > $* $#error $@ 5.1.2 $: "553 Invalid host name"
R$* < @ $* .. $* > $* $#error $@ 5.1.2 $: "553 Invalid host name"
R$* < @ $* @ > $* $#error $@ 5.1.2 $: "553 Invalid route address"
R$* @ $* < @ $* > $* $#error $@ 5.1.3 $: "553 Invalid route address"
R$* , $~O $* $#error $@ 5.1.3 $: "553 Invalid route address"
R$* < @ > $* $@ $>Parse0 $>canonify $1 user@ => user
R< @ $=w . > : $* $@ $>Parse0 $>canonify $2 @here:... -> ...
R$- < @ $=w . > $: $(dequote $1 $) < @ $2 . > dequote "foo"@here
R< @ $+ > $#error $@ 5.1.3 $: "553 User address required"
R$* $=O $* < @ $=w . > $@ $>Parse0 $>canonify $1 $2 $3 ...@here -> ...
R$- $: $(dequote $1 $) < @ *LOCAL* > dequote "foo"
R< @ *LOCAL* > $#error $@ 5.1.3 $: "553 User address required"
R$* $=O $* < @ *LOCAL* >
$@ $>Parse0 $>canonify $1 $2 $3 ...@*LOCAL* -> ...
R$* < @ *LOCAL* > $: $1
SParse1
R$* < @ [ $+ ] > $* $: $>ParseLocal $1 < @ [ $2 ] > $3 numeric internet spec
R$* < @ [ $+ ] > $* $: $1 < @ [ $2 ] : $S > $3 Add smart host to path
R$* < @ [ $+ ] : > $* $#esmtp $@ [$2] $: $1 < @ [$2] > $3 no smarthost: send
R$* < @ [ $+ ] : $- : $*> $* $#$3 $@ $4 $: $1 < @ [$2] > $5 smarthost with mailer
R$* < @ [ $+ ] : $+ > $* $#esmtp $@ $3 $: $1 < @ [$2] > $4 smarthost without mailer
R$+ $: <!> $1 Mark for lookup
R<!> $+ < @ $={VirtHost} . > $: < $(virtuser $1 @ $2 $@ $1 $: @ $) > $1 < @ $2 . >
R<!> $+ < @ $=w . > $: < $(virtuser $1 @ $2 $@ $1 $: @ $) > $1 < @ $2 . >
R<@> $+ + $+ < @ $* . >
$: < $(virtuser $1 + + @ $3 $@ $1 $@ $2 $@ +$2 $: @ $) > $1 + $2 < @ $3 . >
R<@> $+ + $* < @ $* . >
$: < $(virtuser $1 + * @ $3 $@ $1 $@ $2 $@ +$2 $: @ $) > $1 + $2 < @ $3 . >
R<@> $+ + $* < @ $* . >
$: < $(virtuser $1 @ $3 $@ $1 $@ $2 $@ +$2 $: @ $) > $1 + $2 < @ $3 . >
R<@> $+ + $+ < @ $+ . > $: < $(virtuser + + @ $3 $@ $1 $@ $2 $@ +$2 $: @ $) > $1 + $2 < @ $3 . >
R<@> $+ + $* < @ $+ . > $: < $(virtuser + * @ $3 $@ $1 $@ $2 $@ +$2 $: @ $) > $1 + $2 < @ $3 . >
R<@> $+ + $* < @ $+ . > $: < $(virtuser @ $3 $@ $1 $@ $2 $@ +$2 $: ! $) > $1 + $2 < @ $3 . >
R<@> $+ < @ $+ . > $: < $(virtuser @ $2 $@ $1 $: @ $) > $1 < @ $2 . >
R<@> $+ $: $1
R<!> $+ $: $1
R< error : $-.$-.$- : $+ > $* $#error $@ $1.$2.$3 $: $4
R< error : $- $+ > $* $#error $@ $(dequote $1 $) $: $2
R< $+ > $+ < @ $+ > $: $>Recurse $1
R$=L < @ $=w . > $#local $: @ $1 special local names
R$+ < @ $=w . > $#local $: $1 regular local name
R$* <@ $+ > $* $: < $2 > $1 < @ $2 > $3 extract host name
R< $+ . > $* $: < $1 > $2 strip trailing dot
R< $+ > $* $: < $(mailertable $1 $) > $2 lookup
R< $~[ : $* > $* $>MailerToTriple < $1 : $2 > $3 check -- resolved?
R< $+ > $* $: $>Mailertable <$1> $2 try domain
R$* < @ $* > $* $: $>MailerToTriple < $S > $1 < @ $2 > $3 glue on smarthost name
R$* < @$* > $* $#esmtp $@ $2 $: $1 < @ $2 > $3 user@host.domain
R$=L $#local $: @ $1 special local names
R$+ $#local $: $1 regular local names
SLocal_localaddr
Slocaladdr=5
R$+ $: $1 $| $>"Local_localaddr" $1
R$+ $| $#ok $@ $1 no change
R$+ $| $#$* $#$2
R$+ $| $* $: $1
R$+ + * $#local $@ $&h $: $1
R$+ + $* $#local $@ + $2 $: $1 + *
R$+ $: <> $1
R< > $+ $: < > < $1 <> $&h > nope, restore +detail
R< > < $+ <> + $* > $: < > < $1 + $2 > check whether +detail
R< > < $+ <> $* > $: < > < $1 > else discard
R< > < $+ + $* > $* < > < $1 > + $2 $3 find the user part
R< > < $+ > + $* $#local $@ $2 $: @ $1 strip the extra +
R< > < $+ > $@ $1 no +detail
R$+ $: $1 <> $&h add +detail back in
R$+ <> + $* $: $1 + $2 check whether +detail
R$+ <> $* $: $1 else discard
R< local : $* > $* $: $>MailerToTriple < local : $1 > $2 no host extension
R< error : $* > $* $: $>MailerToTriple < error : $1 > $2 no host extension
R< $~[ : $+ > $+ $: $>MailerToTriple < $1 : $2 > $3 < @ $2 >
R< $+ > $+ $@ $>MailerToTriple < $1 > $2 < @ $1 >
SMailertable=90
R$* <$- . $+ > $* $: $1$2 < $(mailertable .$3 $@ $1$2 $@ $2 $) > $4
R$* <$~[ : $* > $* $>MailerToTriple < $2 : $3 > $4 check -- resolved?
R$* < . $+ > $* $@ $>Mailertable $1 . <$2> $3 no -- strip & try again
R$* < $* > $* $: < $(mailertable . $@ $1$2 $) > $3 try "."
R< $~[ : $* > $* $>MailerToTriple < $1 : $2 > $3 "." found?
R< $* > $* $@ $2 no mailertable match
SMailerToTriple=95
R< > $* $@ $1 strip off null relay
R< error : $-.$-.$- : $+ > $* $#error $@ $1.$2.$3 $: $4
R< error : $- : $+ > $* $#error $@ $(dequote $1 $) $: $2
R< error : $+ > $* $#error $: $1
R< local : $* > $* $>CanonLocal < $1 > $2
R< $~[ : $+ @ $+ > $*<$*>$* $# $1 $@ $3 $: $2<@$3> use literal user
R< $~[ : $+ > $* $# $1 $@ $2 $: $3 try qualified mailer
R< $=w > $* $@ $2 delete local host
R< $+ > $* $#relay $@ $1 $: $2 use unqualified mailer
SCanonLocal
R< $* > < @ $+ > : $+ $@ $>Recurse $3
R< $* > $+ $=O $+ < @ $+ > $@ $>Recurse $2 $3 $4
R< $* > $* < @ $* . > $: < $1 > $2 < @ $3 >
R< > $* < @ $* > $* $#local $@ $1@$2 $: $1
R< > $+ $#local $@ $1 $: $1
R< $+ @ $+ > $* < @ $* > $: < $1 > $3 < @ $4 >
R< $+ > $* <@ $* > $* $#local $@ $2@$3 $: $1
R< $+ > $* $#local $@ $2 $: $1
SMasqHdr=93
R$* < @ $* $=N . > $@ $1 < @ $2 $3 . >
R$* < @ *LOCAL* > $@ $1 < @ $j . >
SMasqEnv=94
R$* < @ *LOCAL* > $* $: $1 < @ $j . > $2
SParseLocal=98
R$* < @ $+ .REDIRECT. > $: $1 < @ $2 . REDIRECT . > < ${opMode} >
R$* < @ $+ .REDIRECT. > <i> $: $1 < @ $2 . REDIRECT. >
R$* < @ $+ .REDIRECT. > < $- > $#error $@ 5.1.1 $: "551 User has moved; please try " <$1@$2>
SD
R<$*> <$+> <$- $-> <$*> $: < $(access $4:$1 $: ? $) > <$1> <$2> <$3 $4> <$5>
R<?> <$+> <$+> <+ $-> <$*> $: < $(access $1 $: ? $) > <$1> <$2> <+ $3> <$4>
R<?> <[$+.$-]> <$+> <$- $-> <$*> $@ $>D <[$1]> <$3> <$4 $5> <$6>
R<?> <[$+::$-]> <$+> <$- $-> <$*> $: $>D <[$1]> <$3> <$4 $5> <$6>
R<?> <[$+:$-]> <$+> <$- $-> <$*> $: $>D <[$1]> <$3> <$4 $5> <$6>
R<?> <$+.$+> <$+> <$- $-> <$*> $@ $>D <$2> <$3> <$4 $5> <$6>
R<?> <$+> <$+> <$- $-> <$*> $@ <$2> <$5>
R<$* <TMPF>> <$+> <$+> <$- $-> <$*> $@ <<TMPF>> <$6>
R<$*> <$+> <$+> <$- $-> <$*> $@ <$1> <$6>
SA
R<$+> <$+> <$- $-> <$*> $: < $(access $4:$1 $: ? $) > <$1> <$2> <$3 $4> <$5>
R<?> <$+> <$+> <+ $-> <$*> $: < $(access $1 $: ? $) > <$1> <$2> <+ $3> <$4>
R<?> <$+::$-> <$+> <$- $-> <$*> $@ $>A <$1> <$3> <$4 $5> <$6>
R<?> <$+:$-> <$+> <$- $-> <$*> $@ $>A <$1> <$3> <$4 $5> <$6>
R<?> <$+.$-> <$+> <$- $-> <$*> $@ $>A <$1> <$3> <$4 $5> <$6>
R<?> <$+> <$+> <$- $-> <$*> $@ <$2> <$5>
R<$* <TMPF>> <$+> <$+> <$- $-> <$*> $@ <<TMPF>> <$6>
R<$*> <$+> <$+> <$- $-> <$*> $@ <$1> <$6>
SCanonAddr
R$* $: $>Parse0 $>canonify $1 make domain canonical
SParseRecipient
R$* $: <?> $>CanonAddr $1
R<?> $* < @ $* . > <?> $1 < @ $2 > strip trailing dots
R<?> $- < @ $* > $: <?> $(dequote $1 $) < @ $2 > dequote local part
R<?> $* $=O $* < @ $* > $: <NO> $1 $2 $3 < @ $4>
R<?> $* $@ $1
R<NO> $* < @ $* $=R > $: <RELAY> $1 < @ $2 $3 >
R<NO> $* < @ $+ > $: $>D <$2> <NO> <+ To> <$1 < @ $2 >>
R<$+> <$+> $: <$1> $2
R<RELAY> $* < @ $* > $@ $>ParseRecipient $1
R<$+> $* $@ $2
SLocal_check_relay
Scheck_relay
R$* $: $1 $| $>"Local_check_relay" $1
R$* $| $* $| $#$* $#$3
R$* $| $* $| $* $@ $>"Basic_check_relay" $1 $| $2
SBasic_check_relay
R$* $: < $&{deliveryMode} > $1
R< d > $* $@ deferred
R< $* > $* $: $2
R$+ $| $+ $: $>D < $1 > <?> <+ Connect> < $2 >
R $| $+ $: $>A < $1 > <?> <+ Connect> <> empty client_name
R<?> <$+> $: $>A < $1 > <?> <+ Connect> <> no: another lookup
R<?> <$*> $: OK found nothing
R<$={Accept}> <$*> $@ $1 return value of lookup
R<REJECT> <$*> $#error $@ 5.7.1 $: "550 Access denied"
R<DISCARD> <$*> $#discard $: discard
R<QUARANTINE:$+> <$*> $#error $@ quarantine $: $1
R<ERROR:$-.$-.$-:$+> <$*> $#error $@ $1.$2.$3 $: $4
R<ERROR:$+> <$*> $#error $: $1
R<$* <TMPF>> <$*> $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<$+> <$*> $#error $: $1
SLocal_check_mail
Scheck_mail
R$* $: $1 $| $>"Local_check_mail" $1
R$* $| $#$* $#$2
R$* $| $* $@ $>"Basic_check_mail" $1
SBasic_check_mail
R$* $: < $&{deliveryMode} > $1
R< d > $* $@ deferred
R< $* > $* $: $2
R$* $: $1 $| $>"tls_client" $&{verify} $| MAIL
R$* $| $#$+ $#$2
R$* $| $* $: $1
R<> $@ <OK> we MUST accept <> (RFC 1123)
R$+ $: <?> $1
R<?><$+> $: <@> <$1>
R<?>$+ $: <@> <$1>
R$* $: $&{daemon_flags} $| $1
R$* f $* $| <@> < $* @ $- > $: < ? $&{client_name} > < $3 @ $4 >
R$* u $* $| <@> < $* > $: <?> < $3 >
R$* $| $* $: $2
R<@> < $* @ localhost > $: < ? $&{client_name} > < $1 @ localhost >
R<@> < $* @ [127.0.0.1] >
$: < ? $&{client_name} > < $1 @ [127.0.0.1] >
R<@> < $* @ localhost.$m >
$: < ? $&{client_name} > < $1 @ localhost.$m >
R<@> < $* @ localhost.UUCP >
$: < ? $&{client_name} > < $1 @ localhost.UUCP >
R<@> $* $: $1 no localhost as domain
R<? $=w> $* $: $2 local client: ok
R<? $+> <$+> $#error $@ 5.5.4 $: "553 Real domain name required for sender address"
R<?> $* $: $1
R$* $: <?> $>CanonAddr $1 canonify sender address and mark it
R<?> $* < @ $+ . > <?> $1 < @ $2 > strip trailing dots
R<?> $* < @ $* $=P > $: <OKR> $1 < @ $2 $3 >
R<?> $* < @ $j > $: <OKR> $1 < @ $j >
R<?> $* < @ $+ > $: <? $(resolve $2 $: $2 <PERM> $) > $1 < @ $2 >
R<? $* <$->> $* < @ $+ >
$: <$2> $3 < @ $4 >
R<$+> $+ < @ $* > $: @<$1> <$2 < @ $3 >> $| <F:$2@$3> <U:$2@> <D:$3>
R<$+> $+ $: @<$1> <$2> $| <U:$2@>
R@ <$+> <$*> $| <$+> $: <@> <$1> <$2> $| $>SearchList <+ From> $| <$3> <>
R<@> <$+> <$*> $| <$*> $: <$3> <$1> <$2> reverse result
R<?> <$+> <$*> $: <$1> $2 no match
R<$+> <$+> <$*> $: <$1> $3 relevant result, keep it
R<?> $* $: $&{daemon_flags} $| <?> $1
R$* u $* $| <?> $* $: <OKR> $3
R$* $| $* $: $2
R<?> $* $: < ? $&{client_addr} > $1
R<?> $* $@ <OKR> ...local unqualed ok
R<? $+> $* $#error $@ 5.5.4 $: "553 Domain name required for sender address " $&f
...remote is not
R<?> $* $: @ $1 mark address: nothing known about it
R<$={ResOk}> $* $: @ $2 domain ok
R<TEMP> $* $#error $@ 4.1.8 $: "451 Domain of sender address " $&f " does not resolve"
R<PERM> $* $#error $@ 5.1.8 $: "553 Domain of sender address " $&f " does not exist"
R<$={Accept}> $* $# $1 accept from access map
R<DISCARD> $* $#discard $: discard
R<QUARANTINE:$+> $* $#error $@ quarantine $: $1
R<REJECT> $* $#error $@ 5.7.1 $: "550 Access denied"
R<ERROR:$-.$-.$-:$+> $* $#error $@ $1.$2.$3 $: $4
R<ERROR:$+> $* $#error $: $1
R<<TMPF>> $* $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<$+> $* $#error $: $1 error from access db
SLocal_check_rcpt
Scheck_rcpt
R$* $: $1 $| $>"Local_check_rcpt" $1
R$* $| $#$* $#$2
R$* $| $* $@ $>"Basic_check_rcpt" $1
SBasic_check_rcpt
R<> $#error $@ nouser $: "553 User address required"
R$@ $#error $@ nouser $: "553 User address required"
R$* $: < $&{deliveryMode} > $1
R< d > $* $@ deferred
R< $* > $* $: $2
R$* $: $1 $| @ $>"Rcpt_ok" $1
R$* $| @ $#TEMP $+ $: $1 $| T $2
R$* $| @ $#$* $#$2
R$* $| @ RELAY $@ RELAY
R$* $| @ $* $: O $| $>"Relay_ok" $1
R$* $| T $+ $: T $2 $| $>"Relay_ok" $1
R$* $| $#TEMP $+ $#error $2
R$* $| $#$* $#$2
R$* $| RELAY $@ RELAY
R T $+ $| $* $#error $1
R$* $#error $@ 5.7.1 $: "550 Relaying denied"
SRcpt_ok
R$* $: $>ParseRecipient $1 strip relayable hosts
R$* $: <?> $1
R<?> $+ < @ $=w > $: <> <$1 < @ $2 >> $| <F:$1@$2> <U:$1@> <D:$2>
R<?> $+ < @ $* > $: <> <$1 < @ $2 >> $| <F:$1@$2> <D:$2>
R<?> $+ $: <> <$1> $| <U:$1@>
R<> <$*> $| <$+> $: <@> <$1> $| $>SearchList <+ To> $| <$2> <>
R<@> <$*> $| <$*> $: <$2> <$1> reverse result
R<?> <$*> $: @ $1 mark address as no match
R<$={Accept}> <$*> $: @ $2 mark address as no match
R<REJECT> $* $#error $@ 5.2.1 $: "550 Mailbox disabled for this recipient"
R<DISCARD> $* $#discard $: discard
R<QUARANTINE:$+> $* $#error $@ quarantine $: $1
R<ERROR:$-.$-.$-:$+> $* $#error $@ $1.$2.$3 $: $4
R<ERROR:$+> $* $#error $: $1
R<<TMPF>> $* $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<$+> $* $#error $: $1 error from access db
R@ $* $1 remove mark
R$* $: $1 $| $>RelayTLS client authenticated?
R$* $| $# $+ $# $2 error/ok?
R$* $| $* $: $1 no
R$* $: $1 $| $>"Local_Relay_Auth" $&{auth_type}
R$* $| $# $* $# $2
R$* $| NO $: $1
R$* $| $* $: $1 $| $&{auth_type}
R$* $| $: $1
R$* $| $={TrustAuthMech} $# RELAY
R$* $| $* $: $1
R$+ < @ $=w > $@ RELAY
R$+ < @ $* $=R > $@ RELAY
R$+ < @ $+ > $: $>D <$2> <?> <+ To> <$1 < @ $2 >>
R<RELAY> $* $@ RELAY
R<$* <TMPF>> $* $#TEMP $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<$*> <$*> $: $2
R$* $: <?> $1
R<?> $* < @ $+ > $: <REMOTE> $1 < @ $2 >
R<?> $+ $@ RELAY
R<$+> $* $: $2
SRelay_ok
R$* $: $&{client_addr}
R$@ $@ RELAY originated locally
R0 $@ RELAY originated locally
R127.0.0.1 $@ RELAY originated locally
RIPv6:::1 $@ RELAY originated locally
R$=R $* $@ RELAY relayable IP address
R$* $: $>A <$1> <?> <+ Connect> <$1>
R<RELAY> $* $@ RELAY relayable IP address
R<<TMPF>> $* $#TEMP $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<$*> <$*> $: $2
R$* $: [ $1 ] put brackets around it...
R$=w $@ RELAY ... and see if it is local
R$* $: < $&{client_resolve} >
R<TEMP> $#TEMP $@ 4.4.0 $: "450 Relaying temporarily denied. Cannot resolve PTR record for " $&{client_addr}
R<FORGED> $#error $@ 5.7.1 $: "550 Relaying denied. IP name possibly forged " $&{client_name}
R<FAIL> $#error $@ 5.7.1 $: "550 Relaying denied. IP name lookup failed " $&{client_name}
R$* $: <@> $&{client_name}
R<@> $* $=P $:<?> $1 $2
R<@> $+ $:<?> $[ $1 $]
R$* . $1 strip trailing dots
R<?> $=w $@ RELAY
R<?> $* $=R $@ RELAY
R<?> $* $: $>D <$1> <?> <+ Connect> <$1>
R<RELAY> $* $@ RELAY
R<$* <TMPF>> $* $#TEMP $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<$*> <$*> $: $2
SF
R<$+> <$*> <$- $-> <$*> $: <$(access $4:$1 $: ? $)> <$1> <$2> <$3 $4> <$5>
R<?> <$+> <$*> <+ $-> <$*> $: <$(access $1 $: ? $)> <$1> <$2> <+ $3> <$4>
R<?> <$+ + $* @ $+> <$*> <$- $-> <$*>
$: <$(access $6:$1+*@$3 $: ? $)> <$1+$2@$3> <$4> <$5 $6> <$7>
R<?> <$+ + $* @ $+> <$*> <+ $-> <$*>
$: <$(access $1+*@$3 $: ? $)> <$1+$2@$3> <$4> <+ $5> <$6>
R<?> <$+ + $* @ $+> <$*> <$- $-> <$*>
$: <$(access $6:$1@$3 $: ? $)> <$1+$2@$3> <$4> <$5 $6> <$7>
R<?> <$+ + $* @ $+> <$*> <+ $-> <$*>
$: <$(access $1@$3 $: ? $)> <$1+$2@$3> <$4> <+ $5> <$6>
R<?> <$+> <$*> <$- $-> <$*> $@ <$2> <$5>
R<$+ <TMPF>> <$*> <$- $-> <$*> $@ <<TMPF>> <$5>
R<$+> <$*> <$- $-> <$*> $@ <$1> <$5>
SE
R<$*> <$*> <$- $-> <$*> $: <$(access $4:$1 $: ? $)> <$1> <$2> <$3 $4> <$5>
R<?> <$+> <$*> <+ $-> <$*> $: <$(access $1 $: ? $)> <$1> <$2> <+ $3> <$4>
R<?> <$+> <$*> <$- $-> <$*> $@ <$2> <$5>
R<$+ <TMPF>> <$*> <$- $-> <$*> $@ <<TMPF>> <$5>
R<$+> <$*> <$- $-> <$*> $@ <$1> <$5>
SU
R<$+> <$*> <$- $-> <$*> $: <$(access $4:$1 $: ? $)> <$1> <$2> <$3 $4> <$5>
R<?> <$+> <$*> <+ $-> <$*> $: <$(access $1 $: ? $)> <$1> <$2> <+ $3> <$4>
R<?> <$+ + $* @> <$*> <$- $-> <$*>
$: <$(access $5:$1+*@ $: ? $)> <$1+$2@> <$3> <$4 $5> <$6>
R<?> <$+ + $* @> <$*> <+ $-> <$*>
$: <$(access $1+*@ $: ? $)> <$1+$2@> <$3> <+ $4> <$5>
R<?> <$+ + $* @> <$*> <$- $-> <$*>
$: <$(access $5:$1@ $: ? $)> <$1+$2@> <$3> <$4 $5> <$6>
R<?> <$+ + $* @> <$*> <+ $-> <$*>
$: <$(access $1@ $: ? $)> <$1+$2@> <$3> <+ $4> <$5>
R<?> <$+> <$*> <$- $-> <$*> $@ <$2> <$5>
R<$+ <TMPF>> <$*> <$- $-> <$*> $@ <<TMPF>> <$5>
R<$+> <$*> <$- $-> <$*> $@ <$1> <$5>
C{Src}E F D U
SSearchList
R<$+> $| <$={Src}:$*> <$*> $: <$1> $| <$4> $| $>$2 <$3> <?> <$1> <>
R<$+> $| <> $| <?> <> $@ <?>
R<$+> $| <$+> $| <?> <> $@ $>SearchList <$1> $| <$2>
R<$+> $| <$*> $| <$+> <> $@ <$3>
R<$+> $| <$+> $@ <$2>
SLocal_trust_auth
Strust_auth
R$* $: $&{auth_type} $| $1
R$@ $| $* $#error $@ 5.7.1 $: "550 not authenticated"
R$* $| $&{auth_authen} $@ identical
R$* $| <$&{auth_authen}> $@ identical
R$* $| $* $: $1 $| $>"Local_trust_auth" $2
R$* $| $#$* $#$2
R$* $#error $@ 5.7.1 $: "550 " $&{auth_authen} " not allowed to act as " $&{auth_author}
SLocal_Relay_Auth
Ssrv_features
R$* $: $>D <$&{client_name}> <?> <! "Srv_Features"> <>
R<?>$* $: $>A <$&{client_addr}> <?> <! "Srv_Features"> <>
R<?>$* $: <$(access "Srv_Features": $: ? $)>
R<?>$* $@ OK
R<$* <TMPF>>$* $#temp
R<$+>$* $# $1
Stry_tls
R$* $: $>D <$&{server_name}> <?> <! "Try_TLS"> <>
R<?>$* $: $>A <$&{server_addr}> <?> <! "Try_TLS"> <>
R<?>$* $: <$(access "Try_TLS": $: ? $)>
R<?>$* $@ OK
R<$* <TMPF>>$* $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R<NO>$* $#error $@ 5.7.1 $: "550 do not try TLS with " $&{server_name} " ["$&{server_addr}"]"
Stls_rcpt
R$* $: $(macro {TLS_Name} $@ $&{server_name} $) $1
R$+ $: <?> $>CanonAddr $1
R<?> $+ < @ $+ . > <?> $1 <@ $2 >
R<?> $+ < @ $+ > $: $1 <@ $2 > $| <F:$1@$2> <U:$1@> <D:$2> <E:>
R<?> $+ $: $1 $| <U:$1@> <E:>
R$* $| $+ $: $1 $| $>SearchList <! "TLS_Rcpt"> $| $2 <>
R$* $| <?> $@ OK
R$* $| <$* <TMPF>> $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R$* $| <$+> $@ $>"TLS_connection" $&{verify} $| <$2>
Stls_client
R$* $: $(macro {TLS_Name} $@ $&{server_name} $) $1
R$* $| $* $: $1 $| $>D <$&{client_name}> <?> <! "TLS_Clt"> <>
R$* $| <?>$* $: $1 $| $>A <$&{client_addr}> <?> <! "TLS_Clt"> <>
R$* $| <?>$* $: $1 $| <$(access "TLS_Clt": $: ? $)>
R$* $| <$* <TMPF>> $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R$* $@ $>"TLS_connection" $1
Stls_server
R$* $: $(macro {TLS_Name} $@ $&{server_name} $) $1
R$* $: $1 $| $>D <$&{server_name}> <?> <! "TLS_Srv"> <>
R$* $| <?>$* $: $1 $| $>A <$&{server_addr}> <?> <! "TLS_Srv"> <>
R$* $| <?>$* $: $1 $| <$(access "TLS_Srv": $: ? $)>
R$* $| <$* <TMPF>> $#error $@ 4.3.0 $: "451 Temporary system failure. Please try again later."
R$* $@ $>"TLS_connection" $1
STLS_connection
R$* $| <$*>$* $: $1 $| <$2>
R$* $| <PERM + $={Tls} $*> $: $1 $| <503:5.7.0> <$2 $3>
R$* $| <TEMP + $={Tls} $*> $: $1 $| <403:4.7.0> <$2 $3>
R$* $| <$={Tls} $*> $: $1 $| <403:4.7.0> <$2 $3>
RSOFTWARE $| <$-:$+> $* $#error $@ $2 $: $1 " TLS handshake failed."
RSOFTWARE $| $* $#error $@ 4.7.0 $: "403 TLS handshake failed."
RPROTOCOL $| <$-:$+> $* $#error $@ $2 $: $1 " STARTTLS failed."
RPROTOCOL $| $* $#error $@ 4.7.0 $: "403 STARTTLS failed."
R$* $| <$*> <VERIFY> $: <$2> <VERIFY> <> $1
R$* $| <$*> <VERIFY + $+> $: <$2> <VERIFY> <$3> $1
R$* $| <$*> <$={Tls}:$->$* $: <$2> <$3:$4> <> $1
R$* $| <$*> <$={Tls}:$- + $+>$* $: <$2> <$3:$4> <$5> $1
R$* $| $* $@ OK
R<$*><VERIFY> <> OK $@ OK
R<$*><VERIFY> <$+> OK $: <$1> <REQ:0> <$2>
R<$*><VERIFY:$-> <$*> OK $: <$1> <REQ:$2> <$3>
R<$*><ENCR:$-> <$*> $* $: <$1> <REQ:$2> <$3>
R<$-:$+><VERIFY $*> <$*> $#error $@ $2 $: $1 " authentication required"
R<$-:$+><VERIFY $*> <$*> FAIL $#error $@ $2 $: $1 " authentication failed"
R<$-:$+><VERIFY $*> <$*> NO $#error $@ $2 $: $1 " not authenticated"
R<$-:$+><VERIFY $*> <$*> NOT $#error $@ $2 $: $1 " no authentication requested"
R<$-:$+><VERIFY $*> <$*> NONE $#error $@ $2 $: $1 " other side does not support STARTTLS"
R<$-:$+><VERIFY $*> <$*> $+ $#error $@ $2 $: $1 " authentication failure " $4
R<$*><REQ:$-> <$*> $: <$1> <REQ:$2> <$3> $>max $&{cipher_bits} : $&{auth_ssf}
R<$*><REQ:$-> <$*> $- $: <$1> <$2:$4> <$3> $(arith l $@ $4 $@ $2 $)
R<$-:$+><$-:$-> <$*> TRUE $#error $@ $2 $: $1 " encryption too weak " $4 " less than " $3
R<$-:$+><$-:$-> <$*> $* $: <$1:$2 ++ $5>
R<$-:$+ ++ > $@ OK
R<$-:$+ ++ $+ > $: <$1:$2> <$3>
R<$-:$+> < $+ ++ $+ > <$1:$2> <$3> <$4>
R<$-:$+> $+ $@ $>"TLS_req" $3 $| <$1:$2>
STLS_req
R $| $+ $@ OK
R<CN> $* $| <$+> $: <CN:$&{TLS_Name}> $1 $| <$2>
R<CN:$&{cn_subject}> $* $| <$+> $@ $>"TLS_req" $1 $| <$2>
R<CN:$+> $* $| <$-:$+> $#error $@ $4 $: $3 " CN " $&{cn_subject} " does not match " $1
R<CS:$&{cert_subject}> $* $| <$+> $@ $>"TLS_req" $1 $| <$2>
R<CS:$+> $* $| <$-:$+> $#error $@ $4 $: $3 " Cert Subject " $&{cert_subject} " does not match " $1
R<CI:$&{cert_issuer}> $* $| <$+> $@ $>"TLS_req" $1 $| <$2>
R<CI:$+> $* $| <$-:$+> $#error $@ $4 $: $3 " Cert Issuer " $&{cert_issuer} " does not match " $1
ROK $@ OK
Smax
R: $: 0
R:$- $: $1
R$-: $: $1
R$-:$- $: $(arith l $@ $1 $@ $2 $) : $1 : $2
RTRUE:$-:$- $: $2
R$-:$-:$- $: $2
SRelayTLS
R$* $: <?> $&{verify}
R<?> OK $: OK authenticated: continue
R<?> $* $@ NO not authenticated
R$* $: $&{cert_issuer}
R$+ $: $(access CERTISSUER:$1 $)
RRELAY $# RELAY
RSUBJECT $: <@> $&{cert_subject}
R<@> $+ $: <@> $(access CERTSUBJECT:$1 $)
R<@> RELAY $# RELAY
R$* $: NO
Sauthinfo
R$* $: $1 $| $>D <$&{server_name}> <?> <! AuthInfo> <>
R$* $| <?>$* $: $1 $| $>A <$&{server_addr}> <?> <! AuthInfo> <>
R$* $| <?>$* $: $1 $| <$(access AuthInfo: $: ? $)> <>
R$* $| <?>$* $@ no no authinfo available
R$* $| <$*> <> $# $2
SEnvFromL
R<@> $n errors to mailer-daemon
R@ <@ $*> $n temporarily bypass Sun bogosity
R$+ $: $>AddDomain $1 add local domain if needed
R$* $: $>MasqEnv $1 do masquerading
SEnvToL
R$+ < @ $* > $: $1 strip host part
R$+ + $* $: < $&{addr_type} > $1 + $2 mark with addr type
R<e s> $+ + $* $: $1 remove +detail for sender
R< $* > $+ $: $2 else remove mark
SHdrFromL
R<@> $n errors to mailer-daemon
R@ <@ $*> $n temporarily bypass Sun bogosity
R$+ $: $>AddDomain $1 add local domain if needed
R$* $: $>MasqHdr $1 do masquerading
SHdrToL
R$+ $: $>AddDomain $1 add local domain if needed
R$* < @ *LOCAL* > $* $: $1 < @ $j . > $2
SAddDomain
Mlocal, P=/usr/libexec/mail.local, F=lsDFMAw5:/|@qPSXmnz9, S=EnvFromSMTP/HdrFromL, R=EnvToL/HdrToL,
T=DNS/RFC822/SMTP,
A=mail.local -l
Mprog, P=/bin/sh, F=lsDFMoqeu9, S=EnvFromL/HdrFromL, R=EnvToL/HdrToL, D=$z:/,
T=X-Unix/X-Unix/X-Unix,
A=sh -c $u
SMasqSMTP
R$* < @ $* > $* $@ $1 < @ $2 > $3 already fully qualified
R$+ $@ $1 < @ *LOCAL* > add local qualification
SPseudoToReal
R< @ $+ > $* $@ < @ $1 > $2 resolve <route-addr>
R$+ < @ $+ .UUCP. > $: < $2 ! > $1 convert to UUCP form
R$+ < @ $* > $* $@ $1 < @ $2 > $3 not UUCP form
R< $&h ! > $- ! $+ $@ $2 < @ $1 .UUCP. >
R< $&h ! > $-.$+ ! $+ $@ $3 < @ $1.$2 >
R< $&h ! > $+ $@ $1 < @ $&h .UUCP. >
R< $+ ! > $+ $: $1 ! $2 < @ $Y > use UUCP_RELAY
R$+ < @ $~[ $* : $+ > $@ $1 < @ $4 > strip mailer: part
R$+ < @ > $: $1 < @ *LOCAL* > if no UUCP_RELAY
SEnvFromSMTP
R$+ $: $>PseudoToReal $1 sender/recipient common
R$* :; <@> $@ list:; special case
R$* $: $>MasqSMTP $1 qualify unqual'ed names
R$+ $: $>MasqEnv $1 do masquerading
SEnvToSMTP
R$+ $: $>PseudoToReal $1 sender/recipient common
R$+ $: $>MasqSMTP $1 qualify unqual'ed names
R$* < @ *LOCAL* > $* $: $1 < @ $j . > $2
SHdrFromSMTP
R$+ $: $>PseudoToReal $1 sender/recipient common
R:; <@> $@ list:; special case
R$* <@> $* $@ $1 <@> $2 pass null host through
R< @ $* > $* $@ < @ $1 > $2 pass route-addr through
R$* $: $>MasqSMTP $1 qualify unqual'ed names
R$+ $: $>MasqHdr $1 do masquerading
SMasqRelay
R$+ $: $>MasqSMTP $1
R$+ $: $>MasqHdr $1
Msmtp, P=[IPC], F=mDFMuX, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=TCP $h
Mesmtp, P=[IPC], F=mDFMuXa, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=TCP $h
Msmtp8, P=[IPC], F=mDFMuX8, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=TCP $h
Mdsmtp, P=[IPC], F=mDFMuXa%, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=TCP $h
Mrelay, P=[IPC], F=mDFMuXa8, S=EnvFromSMTP/HdrFromSMTP, R=MasqSMTP, E=\r\n, L=2040,
T=DNS/RFC822/SMTP,
A=TCP $h
*.err;kern.debug;auth.notice;mail.crit /dev/console *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages security.* /var/log/security auth.info;authpriv.info /var/log/auth.log mail.info /var/log/maillog lpr.info /var/log/lpd-errs cron.* /var/log/cron *.emerg * !startslip *.* /var/log/slip.log !ppp *.* /var/log/ppp.log
/var/log/cron 600 3 100 * Z /var/log/amd.log 644 7 100 * Z /var/log/auth.log 600 7 100 * Z /var/log/kerberos.log 600 7 100 * Z /var/log/lpd-errs 644 7 100 * Z /var/log/maillog 640 7 * @T00 Z /var/log/sendmail.st 640 10 * 168 B /var/log/messages 644 5 100 * Z /var/log/all.log 600 7 * @T00 Z /var/log/slip.log root:network 640 3 100 * Z /var/log/pflog 600 3 100 * ZB /var/run/pflogd.pid /var/log/ppp.log root:network 640 3 100 * Z /var/log/security 600 10 100 * Z /var/log/wtmp 644 3 * @01T05 B /var/log/daily.log 640 7 * @T00 ZN /var/log/weekly.log 640 5 1 $W6D0 ZN /var/log/monthly.log 640 12 * $M1D0 ZN /var/log/console.log 600 5 100 * Z
Copyright (c) 2003-2009 The DragonFly Project. Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. DragonFly 2.2.1-RELEASE #1: Mon Apr 27 04:19:39 GMT 2009 root@test29.backplane.com:/usr/obj/usr/src/sys/GENERIC TSC clock: 2260607258 Hz, i8254 clock: 1193008 Hz CPU: Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz (2260.34-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x10676 Stepping = 6 Features=0xfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS> Features2=0x80080201<SSE3,SSSE3,SSE4.1,<b31>> real memory = 268435456 (262144K bytes) avail memory = 247263232 (241468K bytes) Preloaded elf kernel "/boot/kernel" at 0xc07c5000. Preloaded elf module "/boot/modules/acpi.ko" at 0xc07c52e0. Pentium Pro MTRR support enabled md0: Malloc disk pcibios: BIOS version 2.10 Using $PIR table, 20 entries at 0xc00fde80 ACPI: RSDP @ 0x0xf6a30/0x0024 (v 2 PTLTD ) ACPI: XSDT @ 0x0xfef0780/0x004C (v 1 INTEL 440BX 0x06040000 VMW 0x01324272) ACPI: FACP @ 0x0xfefee98/0x00F4 (v 4 INTEL 440BX 0x06040000 PTL 0x000F4240) ACPI: DSDT @ 0x0xfef0938/0xE560 (v 1 PTLTD Custom 0x06040000 MSFT 0x03000001) ACPI: FACS @ 0x0xfefffc0/0x0040 ACPI: BOOT @ 0x0xfef0910/0x0028 (v 1 PTLTD $SBFTBL$ 0x06040000 LTP 0x00000001) ACPI: APIC @ 0x0xfef08c0/0x0050 (v 1 PTLTD APIC 0x06040000 LTP 0x00000000) ACPI: MCFG @ 0x0xfef0884/0x003C (v 1 PTLTD $PCITBL$ 0x06040000 LTP 0x00000001) ACPI: SRAT @ 0x0xfef0804/0x0080 (v 2 VMWARE MEMPLUG 0x06040000 VMW 0x00000001) npx0: <math processor> on motherboard npx0: INT 16 interface Using XMM optimized bcopy/copyin/copyout acpi0: <INTEL 440BX> on motherboard acpi0: Power Button (fixed) Warning: ACPI is disabling APM's device. You can't run both unknown: memory range not supported unknown: memory range not supported acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 acpi_acad0: <AC Adapter> on acpi0 acpi_button0: <Sleep Button> on acpi0 cpu0: <ACPI CPU> on acpi0 isab0: <ACPI Generic ISA bridge> on acpi0 atkbdc0: <Keyboard controller (i8042)> port 0x64,0x60 irq 1 on acpi0 atkbd0: <AT Keyboard> flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: failed to get data. psm0: <PS/2 Mouse> irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 ppc0 port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: <Parallel port bus> on ppc0 plip0: <PLIP network interface> on ppbus0 lpt0: <Printer> on ppbus0 lpt0: Interrupt-driven port ppi0: <Parallel I/O> on ppbus0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A sio1 port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A fdc0: <Intel 82077 or clone> port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 legacypci0 on motherboard pcib0: <Intel 82443BX (440 BX) host to PCI bridge> on legacypci0 pci0: <PCI bus> on pcib0 pcib1: <Intel 82443BX (440 BX) PCI-PCI (AGP) bridge> at device 1.0 on pci0 pci1: <PCI bus> on pcib1 isab1: <Intel 82371AB PCI to ISA bridge> at device 7.0 on pci0 isa0: <ISA bus> on isab1 atapci0: <Intel PIIX4 UDMA33 controller> port 0x10c0-0x10cf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 7.1 on pci0 ata0: <ATA channel 0> on atapci0 ata1: <ATA channel 1> on atapci0 acd0: CDROM <VMware Virtual IDE CDROM Drive/00000001> at ata1-master UDMA33 pci0: <Intel 82371AB Power management controller> at 7.3 pci0: <unknown card> (vendor=0x15ad, dev=0x0740) at 7.7 irq 9 pci0: <VGA-compatible display device> at 15.0 irq 9 mpt0: <LSILogic 1030 Ultra4 Adapter> port 0x1400-0x14ff mem 0xd8800000-0xd881ffff,0xd8820000-0xd883ffff irq 11 at device 16.0 on pci0 pcib2: <PCI to PCI bridge (vendor=15ad device=0790)> at device 17.0 on pci0 pci2: <PCI bus> on pcib2 lnc0: <AMD PCnet-PCI> port 0x2000-0x207f irq 10 at device 0.0 on pci2 lnc0: 16 receive buffers, 4 transmit buffers lnc0: MAC address: 00:0c:29:4f:95:a4 pcib3: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.0 on pci0 pci3: <PCI bus> on pcib3 pcib4: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.1 on pci0 pci4: <PCI bus> on pcib4 pcib5: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.2 on pci0 pci5: <PCI bus> on pcib5 pcib6: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.3 on pci0 pci6: <PCI bus> on pcib6 pcib7: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.4 on pci0 pci7: <PCI bus> on pcib7 pcib8: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.5 on pci0 pci8: <PCI bus> on pcib8 pcib9: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.6 on pci0 pci9: <PCI bus> on pcib9 pcib10: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 21.7 on pci0 pci10: <PCI bus> on pcib10 pcib11: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.0 on pci0 pci11: <PCI bus> on pcib11 pcib12: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.1 on pci0 pci12: <PCI bus> on pcib12 pcib13: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.2 on pci0 pci13: <PCI bus> on pcib13 pcib14: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.3 on pci0 pci14: <PCI bus> on pcib14 pcib15: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.4 on pci0 pci15: <PCI bus> on pcib15 pcib16: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.5 on pci0 pci16: <PCI bus> on pcib16 pcib17: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.6 on pci0 pci17: <PCI bus> on pcib17 pcib18: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 22.7 on pci0 pci18: <PCI bus> on pcib18 pcib19: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.0 on pci0 pci19: <PCI bus> on pcib19 pcib20: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.1 on pci0 pci20: <PCI bus> on pcib20 pcib21: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.2 on pci0 pci21: <PCI bus> on pcib21 pcib22: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.3 on pci0 pci22: <PCI bus> on pcib22 pcib23: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.4 on pci0 pci23: <PCI bus> on pcib23 pcib24: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.5 on pci0 pci24: <PCI bus> on pcib24 pcib25: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.6 on pci0 pci25: <PCI bus> on pcib25 pcib26: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 23.7 on pci0 pci26: <PCI bus> on pcib26 pcib27: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.0 on pci0 pci27: <PCI bus> on pcib27 pcib28: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.1 on pci0 pci28: <PCI bus> on pcib28 pcib29: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.2 on pci0 pci29: <PCI bus> on pcib29 pcib30: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.3 on pci0 pci30: <PCI bus> on pcib30 pcib31: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.4 on pci0 pci31: <PCI bus> on pcib31 pcib32: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.5 on pci0 pci32: <PCI bus> on pcib32 pcib33: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.6 on pci0 pci33: <PCI bus> on pcib33 pcib34: <PCI to PCI bridge (vendor=15ad device=07a0)> at device 24.7 on pci0 pci34: <PCI bus> on pcib34 orm0: <Option ROMs> at iomem 0xc0000-0xc7fff,0xca000-0xcafff,0xdc000-0xdffff,0xe4000-0xe7fff on isa0 pmtimer0 on isa0 fdc1: cannot reserve I/O port range vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: <System console> at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> ppc1: cannot reserve I/O port range Waiting 5 seconds for SCSI devices to settle da0 at mpt0 bus 0 target 0 lun 0 da0: <VMware, VMware Virtual S 1.0> Fixed Direct Access SCSI-2 device da0: 3.300MB/s transfers (3.300MHz DT, offset -928659128) da0: 8192MB (16777216 512 byte sectors: 255H 63S/T 1044C) cd0 at ata1 bus 0 target 0 lun 0 cd0: <NECVMWar VMware IDE CDR10 1.00> Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Mounting root from hammer:/dev/da0s1a
default:\ :passwd_format=md5:\ :copyright=/etc/COPYRIGHT:\ :welcome=/etc/motd:\ :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,FTP_PASSIVE_MODE=YES:\ :path=/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/pkg/xorg/bin /usr/pkg/sbin /usr/pkg/bin ~/bin:\ :nologin=/var/run/nologin:\ :cputime=unlimited:\ :datasize=unlimited:\ :stacksize=unlimited:\ :memorylocked=unlimited:\ :memoryuse=unlimited:\ :filesize=unlimited:\ :coredumpsize=unlimited:\ :openfiles=unlimited:\ :maxproc=unlimited:\ :posixlocks=unlimited:\ :sbsize=unlimited:\ :vmemoryuse=unlimited:\ :priority=0:\ :ignoretime@:\ :umask=022: standard:\ :tc=default: xuser:\ :tc=default: staff:\ :tc=default: daemon:\ :tc=default: news:\ :tc=default: dialer:\ :tc=default: root:\ :ignorenologin:\ :tc=default: russian|Russian Users Accounts:\ :charset=KOI8-R:\ :lang=ru_RU.KOI8-R:\ :tc=default:
alias rm='rm -I' set -o emacs
/bin/sh /bin/csh /bin/tcsh
if ( $?prompt ) then
alias rm 'rm -I'
endif
DragonFly 2.2.1-RELEASE (GENERIC) #1: Mon Apr 27 04:19:39 GMT 2009 Welcome to DragonFly!
/etc/manpath.config: MANDATORY_MANPATH /usr/share/man /etc/manpath.config: MANDATORY_MANPATH /usr/share/openssl/man /etc/manpath.config: OPTIONAL_MANPATH /usr/pkg/man /etc/manpath.config: MANPATH_MAP /bin /usr/share/man /etc/manpath.config: MANPATH_MAP /usr/bin /usr/share/man /etc/manpath.config: MANPATH_MAP /usr/local/bin /usr/local/man /etc/manpath.config: MANPATH_MAP /usr/local/bin /usr/local/share/man /etc/manpath.config: MANPATH_MAP /usr/pkg/xorg/bin /usr/pkg/xorg/man /etc/manpath.config: MANPATH_MAP /usr/X11R6/bin /usr/X11R6/man
PID TID TT STAT TIME COMMAND 746 0 v0 ILs 0:00.03 TERM=cons25 login [pam] (login) 754 0 v0 SL 0:00.08 TERM=cons25 PATH=/sbin:/bin:/usr/sbin:/usr/bin: 6125 0 v0 SL+ 0:00.01 TERM=cons25 PATH=/sbin:/bin:/usr/sbin:/usr/bin: 6130 0 v0 SNL+ 0:00.03 MACHTYPE=i386 USER=root MAIL=/var/mail/root SHL 6154 0 v0 SNL+ 0:00.03 TZ= ODMDIR= SCC_PROFILING=yes SCC_IGNORE_STM= S 6176 0 v0 R0NL+ 0:00.00 UNIX95= SCC_KEEP_NEW=/var/opt/scc/tmp/scc.keep_ 6177 0 v0 RNL+ 0:00.00 TZ= ODMDIR= SCC_PROFILING=yes SCC_IGNORE_STM= S 747 0 v1 ILs+ 0:00.02 TERM=cons25 /usr/libexec/getty Pc ttyv1 748 0 v2 ILs+ 0:00.00 TERM=cons25 /usr/libexec/getty Pc ttyv2 749 0 v3 ILs+ 0:00.01 TERM=cons25 /usr/libexec/getty Pc ttyv3 750 0 v4 ILs+ 0:00.01 TERM=cons25 /usr/libexec/getty Pc ttyv4 751 0 v5 ILs+ 0:00.00 TERM=cons25 /usr/libexec/getty Pc ttyv5 752 0 v6 ILs+ 0:00.02 TERM=cons25 /usr/libexec/getty Pc ttyv6 753 0 v7 ILs+ 0:00.00 TERM=cons25 /usr/libexec/getty Pc ttyv7 210 0 con- IL 0:00.02 HOME=/ PATH=/sbin:/bin:/usr/sbin:/usr/bin PWD=/
console none unknown off secure ttyv0 "/usr/libexec/getty Pc" cons25 on secure ttyv1 "/usr/libexec/getty Pc" cons25 on secure ttyv2 "/usr/libexec/getty Pc" cons25 on secure ttyv3 "/usr/libexec/getty Pc" cons25 on secure ttyv4 "/usr/libexec/getty Pc" cons25 on secure ttyv5 "/usr/libexec/getty Pc" cons25 on secure ttyv6 "/usr/libexec/getty Pc" cons25 on secure ttyv7 "/usr/libexec/getty Pc" cons25 on secure ttyv8 "/usr/pkg/xorg/bin/xdm -nodaemon" xterm off secure ttyd0 "/usr/libexec/getty std.9600" dialup off secure ttyd1 "/usr/libexec/getty std.9600" dialup off secure ttyd2 "/usr/libexec/getty std.9600" dialup off secure ttyd3 "/usr/libexec/getty std.9600" dialup off secure dcons "/usr/libexec/getty std.9600" vt100 off secure ttyp0 none network ttyp1 none network ttyp2 none network ttyp3 none network ttyp4 none network ttyp5 none network ttyp6 none network ttyp7 none network ttyp8 none network ttyp9 none network ttypa none network ttypb none network ttypc none network ttypd none network ttype none network ttypf none network ttypg none network ttyph none network ttypi none network ttypj none network ttypk none network ttypl none network ttypm none network ttypn none network ttypo none network ttypp none network ttypq none network ttypr none network ttyps none network ttypt none network ttypu none network ttypv none network ttyq0 none network ttyq1 none network ttyq2 none network ttyq3 none network ttyq4 none network ttyq5 none network ttyq6 none network ttyq7 none network ttyq8 none network ttyq9 none network ttyqa none network ttyqb none network ttyqc none network ttyqd none network ttyqe none network ttyqf none network ttyqg none network ttyqh none network ttyqi none network ttyqj none network ttyqk none network ttyql none network ttyqm none network ttyqn none network ttyqo none network ttyqp none network ttyqq none network ttyqr none network ttyqs none network ttyqt none network ttyqu none network ttyqv none network ttyr0 none network ttyr1 none network ttyr2 none network ttyr3 none network ttyr4 none network ttyr5 none network ttyr6 none network ttyr7 none network ttyr8 none network ttyr9 none network ttyra none network ttyrb none network ttyrc none network ttyrd none network ttyre none network ttyrf none network ttyrg none network ttyrh none network ttyri none network ttyrj none network ttyrk none network ttyrl none network ttyrm none network ttyrn none network ttyro none network ttyrp none network ttyrq none network ttyrr none network ttyrs none network ttyrt none network ttyru none network ttyrv none network ttys0 none network ttys1 none network ttys2 none network ttys3 none network ttys4 none network ttys5 none network ttys6 none network ttys7 none network ttys8 none network ttys9 none network ttysa none network ttysb none network ttysc none network ttysd none network ttyse none network ttysf none network ttysg none network ttysh none network ttysi none network ttysj none network ttysk none network ttysl none network ttysm none network ttysn none network ttyso none network ttysp none network ttysq none network ttysr none network ttyss none network ttyst none network ttysu none network ttysv none network ttyP0 none network ttyP1 none network ttyP2 none network ttyP3 none network ttyP4 none network ttyP5 none network ttyP6 none network ttyP7 none network ttyP8 none network ttyP9 none network ttyPa none network ttyPb none network ttyPc none network ttyPd none network ttyPe none network ttyPf none network ttyPg none network ttyPh none network ttyPi none network ttyPj none network ttyPk none network ttyPl none network ttyPm none network ttyPn none network ttyPo none network ttyPp none network ttyPq none network ttyPr none network ttyPs none network ttyPt none network ttyPu none network ttyPv none network ttyQ0 none network ttyQ1 none network ttyQ2 none network ttyQ3 none network ttyQ4 none network ttyQ5 none network ttyQ6 none network ttyQ7 none network ttyQ8 none network ttyQ9 none network ttyQa none network ttyQb none network ttyQc none network ttyQd none network ttyQe none network ttyQf none network ttyQg none network ttyQh none network ttyQi none network ttyQj none network ttyQk none network ttyQl none network ttyQm none network ttyQn none network ttyQo none network ttyQp none network ttyQq none network ttyQr none network ttyQs none network ttyQt none network ttyQu none network ttyQv none network ttyR0 none network ttyR1 none network ttyR2 none network ttyR3 none network ttyR4 none network ttyR5 none network ttyR6 none network ttyR7 none network ttyR8 none network ttyR9 none network ttyRa none network ttyRb none network ttyRc none network ttyRd none network ttyRe none network ttyRf none network ttyRg none network ttyRh none network ttyRi none network ttyRj none network ttyRk none network ttyRl none network ttyRm none network ttyRn none network ttyRo none network ttyRp none network ttyRq none network ttyRr none network ttyRs none network ttyRt none network ttyRu none network ttyRv none network ttyS0 none network ttyS1 none network ttyS2 none network ttyS3 none network ttyS4 none network ttyS5 none network ttyS6 none network ttyS7 none network ttyS8 none network ttyS9 none network ttySa none network ttySb none network ttySc none network ttySd none network ttySe none network ttySf none network ttySg none network ttySh none network ttySi none network ttySj none network ttySk none network ttySl none network ttySm none network ttySn none network ttySo none network ttySp none network ttySq none network ttySr none network ttySs none network ttySt none network ttySu none network ttySv none network
lrwxr-xr-x:1:root:wheel:15:2009-05-22:pam_chroot.so -> pam_chroot.so.1 -r--r--r--:1:root:wheel:3980:2009-04-27:pam_chroot.so.1 lrwxr-xr-x:1:root:wheel:13:2009-05-22:pam_deny.so -> pam_deny.so.1 -r--r--r--:1:root:wheel:2964:2009-04-27:pam_deny.so.1 lrwxr-xr-x:1:root:wheel:13:2009-05-22:pam_echo.so -> pam_echo.so.1 -r--r--r--:1:root:wheel:3776:2009-04-27:pam_echo.so.1 lrwxr-xr-x:1:root:wheel:13:2009-05-22:pam_exec.so -> pam_exec.so.1 -r--r--r--:1:root:wheel:4768:2009-04-27:pam_exec.so.1 lrwxr-xr-x:1:root:wheel:17:2009-05-22:pam_ftpusers.so -> pam_ftpusers.so.1 -r--r--r--:1:root:wheel:4052:2009-04-27:pam_ftpusers.so.1 lrwxr-xr-x:1:root:wheel:14:2009-05-22:pam_group.so -> pam_group.so.1 -r--r--r--:1:root:wheel:3500:2009-04-27:pam_group.so.1 lrwxr-xr-x:1:root:wheel:14:2009-05-22:pam_guest.so -> pam_guest.so.1 -r--r--r--:1:root:wheel:3680:2009-04-27:pam_guest.so.1 lrwxr-xr-x:1:root:wheel:16:2009-05-22:pam_lastlog.so -> pam_lastlog.so.1 -r--r--r--:1:root:wheel:5556:2009-04-27:pam_lastlog.so.1 lrwxr-xr-x:1:root:wheel:21:2009-05-22:pam_login_access.so -> pam_login_access.so.1 -r--r--r--:1:root:wheel:6348:2009-04-27:pam_login_access.so.1 lrwxr-xr-x:1:root:wheel:16:2009-05-22:pam_nologin.so -> pam_nologin.so.1 -r--r--r--:1:root:wheel:4340:2009-04-27:pam_nologin.so.1 lrwxr-xr-x:1:root:wheel:13:2009-05-22:pam_opie.so -> pam_opie.so.1 -r--r--r--:1:root:wheel:4160:2009-04-27:pam_opie.so.1 lrwxr-xr-x:1:root:wheel:19:2009-05-22:pam_opieaccess.so -> pam_opieaccess.so.1 -r--r--r--:1:root:wheel:3648:2009-04-27:pam_opieaccess.so.1 lrwxr-xr-x:1:root:wheel:17:2009-05-22:pam_passwdqc.so -> pam_passwdqc.so.1 -r--r--r--:1:root:wheel:40092:2009-04-27:pam_passwdqc.so.1 lrwxr-xr-x:1:root:wheel:15:2009-05-22:pam_permit.so -> pam_permit.so.1 -r--r--r--:1:root:wheel:2952:2009-04-27:pam_permit.so.1 lrwxr-xr-x:1:root:wheel:15:2009-05-22:pam_radius.so -> pam_radius.so.1 -r--r--r--:1:root:wheel:7704:2009-04-27:pam_radius.so.1 lrwxr-xr-x:1:root:wheel:15:2009-05-22:pam_rhosts.so -> pam_rhosts.so.1 -r--r--r--:1:root:wheel:3256:2009-04-27:pam_rhosts.so.1 lrwxr-xr-x:1:root:wheel:15:2009-05-22:pam_rootok.so -> pam_rootok.so.1 -r--r--r--:1:root:wheel:3120:2009-04-27:pam_rootok.so.1 lrwxr-xr-x:1:root:wheel:18:2009-05-22:pam_securetty.so -> pam_securetty.so.1 -r--r--r--:1:root:wheel:3556:2009-04-27:pam_securetty.so.1 lrwxr-xr-x:1:root:wheel:13:2009-05-22:pam_self.so -> pam_self.so.1 -r--r--r--:1:root:wheel:3320:2009-04-27:pam_self.so.1 lrwxr-xr-x:1:root:wheel:12:2009-05-22:pam_ssh.so -> pam_ssh.so.1 -r--r--r--:1:root:wheel:8444:2009-04-27:pam_ssh.so.1 lrwxr-xr-x:1:root:wheel:16:2009-05-22:pam_tacplus.so -> pam_tacplus.so.1 -r--r--r--:1:root:wheel:6520:2009-04-27:pam_tacplus.so.1 lrwxr-xr-x:1:root:wheel:13:2009-05-22:pam_unix.so -> pam_unix.so.1 -r--r--r--:1:root:wheel:9980:2009-04-27:pam_unix.so.1
ALL : ALL : allow ALL : PARANOID : RFC931 20 : deny ALL : localhost 127.0.0.1 : allow ALL : my.machine.example.com 192.0.2.35 : allow ALL : [fe80::%fxp0]/10 : allow ALL : [fe80::]/10 : deny ALL : [2001:db8:2:1:2:3:4:3fe1] : deny ALL : [2001:db8:2:1::]/64 : allow sendmail : localhost : allow sendmail : .nice.guy.example.com : allow sendmail : .evil.cracker.example.com : deny sendmail : ALL : allow exim : localhost : allow exim : .nice.guy.example.com : allow exim : .evil.cracker.example.com : deny exim : ALL : allow portmap : 192.0.2.32/255.255.255.224 : allow portmap : 192.0.2.96/255.255.255.224 : allow portmap : ALL : deny ftpd : localhost : allow ftpd : .nice.guy.example.com : allow ftpd : .evil.cracker.example.com : deny ftpd : ALL : allow fingerd : ALL \ : spawn (echo Finger. | \ /usr/bin/mail -s "tcpd\: %u@%h[%a] fingered me!" root) & \ : deny ALL : ALL \ : severity auth.info \ : twist /bin/echo "You are not welcome to use %d from %h."
POSIX_VERSION: POSIX2_VERSION: XOPEN_VERSION:
Device 1K-blocks Type /dev/da0s1b 524160 Interleaved
# # $DragonFly:ERASED:07:58 hasso Exp $ # $FreeBSD:ERASED:57:17 des Exp $ _dhcp:*:77:77:DHCP programs:/var/empty:/sbin/nologin _pflogd:*:64:64:pflogd privsep user:/var/empty:/sbin/nologin _sdpd:*:70:70:sdpd privsep user:/var/empty:/sbin/nologin bin:*:3:7:Binaries Commands and Source:/:/sbin/nologin bind:*:53:53:Bind Sandbox:/:/sbin/nologin daemon:*:1:1:Owner of many system processes:/root:/sbin/nologin games:*:7:13:Games pseudo-user:/usr/games:/sbin/nologin kmem:*:5:65533:KMem Sandbox:/:/sbin/nologin mailnull:*:26:26:Sendmail Default User:/var/spool/mqueue:/sbin/nologin man:*:9:9:Mister Man Pages:/usr/share/man:/sbin/nologin news:*:8:8:News Subsystem:/:/sbin/nologin operator:*:2:5:System &:/:/sbin/nologin pop:*:68:6:Post Office Owner:/nonexistent:/sbin/nologin proxy:*:62:62:Packet Filter pseudo-user:/nonexistent:/sbin/nologin root:*:0:0:Charlie &:/root:/bin/csh smmsp:*:25:25:Sendmail Submission User:/var/spool/clientmqueue:/sbin/nologin sshd:*:22:22:Secure Shell Daemon:/var/empty:/sbin/nologin toor:*:0:0:Bourne-again Superuser:/root: tty:*:4:65533:Tty Sandbox:/:/sbin/nologin uucp:*:66:66:UUCP pseudo-user:/var/spool/uucppublic:/usr/libexec/uucp/uucico www:*:80:80:World Wide Web Owner:/nonexistent:/sbin/nologin xten:*:67:67:X-10 daemon:/usr/local/xten:/sbin/nologin nobody:*:65534:65534:Unprivileged user:/nonexistent:/sbin/nologin siem:*:1001:1001:Siem Korteweg:/home/siem:/bin/sh
# # $DragonFly:ERASED:07:58 hasso Exp $ # $FreeBSD:ERASED:57:17 des Exp $ _dhcp:*:77:77::0:0:DHCP programs:/var/empty:/sbin/nologin _pflogd:*:64:64::0:0:pflogd privsep user:/var/empty:/sbin/nologin _sdpd:*:70:70::0:0:sdpd privsep user:/var/empty:/sbin/nologin bin:*:3:7::0:0:Binaries Commands and Source:/:/sbin/nologin bind:*:53:53::0:0:Bind Sandbox:/:/sbin/nologin daemon:*:1:1::0:0:Owner of many system processes:/root:/sbin/nologin games:*:7:13::0:0:Games pseudo-user:/usr/games:/sbin/nologin kmem:*:5:65533::0:0:KMem Sandbox:/:/sbin/nologin mailnull:*:26:26::0:0:Sendmail Default User:/var/spool/mqueue:/sbin/nologin man:*:9:9::0:0:Mister Man Pages:/usr/share/man:/sbin/nologin news:*:8:8::0:0:News Subsystem:/:/sbin/nologin operator:*:2:5::0:0:System &:/:/sbin/nologin pop:*:68:6::0:0:Post Office Owner:/nonexistent:/sbin/nologin proxy:*:62:62::0:0:Packet Filter pseudo-user:/nonexistent:/sbin/nologin root:ERASED:0:0::0:0:Charlie &:/root:/bin/csh smmsp:*:25:25::0:0:Sendmail Submission User:/var/spool/clientmqueue:/sbin/nologin sshd:*:22:22::0:0:Secure Shell Daemon:/var/empty:/sbin/nologin toor:*:0:0::0:0:Bourne-again Superuser:/root: tty:*:4:65533::0:0:Tty Sandbox:/:/sbin/nologin uucp:*:66:66::0:0:UUCP pseudo-user:/var/spool/uucppublic:/usr/libexec/uucp/uucico www:*:80:80::0:0:World Wide Web Owner:/nonexistent:/sbin/nologin xten:*:67:67::0:0:X-10 daemon:/usr/local/xten:/sbin/nologin nobody:*:65534:65534::0:0:Unprivileged user:/nonexistent:/sbin/nologin siem:ERASED:1001:1001::0:0:Siem Korteweg:/home/siem:/bin/sh
# $FreeBSD:57:17 des Exp $ # $DragonFly:07:58 hasso Exp $ # wheel:0:root,siem daemon:1:daemon kmem:2:root sys:3:root tty:4:root operator:5:root mail:6: bin:7: news:8: man:9: games:13: staff:20:root sshd:22: smmsp:25: mailnull:26: guest:31:root bind:53: proxy:62: authpf:63: _pflogd:64: uucp:66: xten:67:xten dialer:68: network:69: _sdpd:70: _dhcp:77: www:80: vknet:85: nogroup:65533: nobody:65534: siem:1001:
ssh known hosts: xs1.xs4all.nl ssh-dss ssh known hosts: 10.0.0.153 ssh-rsa ssh known hosts: 10.0.0.157 ssh-rsa /root/.cshrc:alias h history 25 /root/.cshrc:alias j jobs -l /root/.cshrc:alias la ls -a /root/.cshrc:alias lf ls -FA /root/.cshrc:alias ll ls -lA /root/.cshrc:umask 22 /root/.cshrc:set path = (/sbin /bin /usr/sbin /usr/bin /usr/pkg/bin /usr/pkg/sbin /usr/games /usr/local/sbin /usr/local/bin /usr/pkg/xorg/bin /usr/X11R6/bin $HOME/bin) /root/.cshrc:setenv EDITOR vi /root/.cshrc:setenv PAGER more /root/.cshrc:setenv BLOCKSIZE K /root/.cshrc:if ($?prompt) then /root/.cshrc: set prompt = "`hostname -s`# " /root/.cshrc: set filec /root/.cshrc: set history = 100 /root/.cshrc: set savehist = 100 /root/.cshrc: set mail = (/var/mail/$USER) /root/.cshrc: if ( $?tcsh ) then /root/.cshrc: bindkey "^W" backward-delete-word /root/.cshrc: bindkey -k up history-search-backward /root/.cshrc: bindkey -k down history-search-forward /root/.cshrc: endif /root/.cshrc:endif
siem
Help-info is excluded from the statistics.
| Category | Count | Percentage |
|---|---|---|
| fix | 6072 | 93 |
| var | 430 | 7 |
| total | 6502 | 100 |
| Main class | Sub class | Main cnt | Main perc | Sub cnt | Sub perc |
|---|---|---|---|---|---|
| network | 2732 | 42 | |||
| file | 2499 | 91 | |||
| sysctl | 144 | 5 | |||
| ftp | 24 | 1 | |||
| netstat-route | 21 | 1 | |||
| lan | 16 | 1 | |||
| NIS | 14 | 1 | |||
| ipcs | 6 | 0 | |||
| DNS | 3 | 0 | |||
| ports | 2 | 0 | |||
| named | 2 | 0 | |||
| gated | 1 | 0 | |||
| software | 1379 | 21 | |||
| sendmail | 789 | 57 | |||
| packet filter | 237 | 17 | |||
| pam | 186 | 13 | |||
| openssl | 88 | 6 | |||
| installed-BSD-packages | 19 | 1 | |||
| syslogd /etc/newsyslog.conf | 18 | 1 | |||
| scc | 16 | 1 | |||
| syslogd /etc/syslog.conf | 12 | 1 | |||
| cron | 9 | 1 | |||
| openssh2 | 4 | 0 | |||
| mail-server | 1 | 0 | |||
| boot | 1351 | 21 | |||
| config | 755 | 56 | |||
| defaults | 434 | 32 | |||
| /var/run/dmesg.boot | 162 | 12 | |||
| system | 588 | 9 | |||
| security | 345 | 59 | |||
| log | 162 | 28 | |||
| login | 51 | 9 | |||
| processes | 16 | 3 | |||
| path | 9 | 2 | |||
| standards | 3 | 1 | |||
| swapinfo | 2 | 0 | |||
| hardware | 190 | 3 | |||
| pciconf | 177 | 93 | |||
| natacontrol | 6 | 3 | |||
| getconf | 6 | 3 | |||
| usb | 1 | 1 | |||
| users | 114 | 2 | |||
| /etc/group | 34 | 30 | |||
| /etc/passwd | 27 | 24 | |||
| /etc/master.passwd | 27 | 24 | |||
| accounts | 25 | 22 | |||
| mailboxes | 1 | 1 | |||
| Volume Management | 93 | 1 | |||
| file systems | 93 | 100 | |||
| profiling | 34 | 1 | |||
| general | 21 | 0 |
Contents of file: /boot/loader.rc Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.subr Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.shutdown Ignore blank lines and lines starting with character: #
Contents of file: /var/run/dmesg.boot Ignore blank lines and lines starting with character: #
Contents of file: /etc/defaults/make.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/defaults/periodic.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/defaults/rc.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/defaults/uuids Ignore blank lines and lines starting with character: #
Contents of file: /etc/fstab Ignore blank lines and lines starting with character: #
Contents of file: /etc/host.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/hosts Ignore blank lines and lines starting with character: #
Contents of file: /etc/netconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/networks Ignore blank lines and lines starting with character: #
Contents of file: /etc/nsswitch.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/nscd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/protocols Ignore blank lines and lines starting with character: #
Contents of file: /etc/rpc Ignore blank lines and lines starting with character: #
Contents of file: /etc/services Ignore blank lines and lines starting with character: #
Contents of file: /etc/ftpusers Ignore blank lines and lines starting with character: #
Contents of file: /etc/crontab Ignore blank lines and lines starting with character: #
Contents of file: /etc/ssh/sshd_config Ignore blank lines and lines starting with character: #
Contents of file: /etc/ssh/ssh_host_key.pub Ignore blank lines and lines starting with character: #
Contents of file: /etc/ssl/openssl.cnf Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/README Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/atrun Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/convert.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/cron Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/ftp Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/ftpd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/gdm Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/imap Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/kde Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/login Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/other Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/passwd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/pop3 Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/rsh Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/sshd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/su Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/telnetd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/xdm Ignore blank lines and lines starting with character: #
Contents of file: /etc/pf.os Ignore blank lines and lines starting with character: #
Contents of file: /etc/aliases Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail.rc Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail/mailer.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail/sendmail.cf Ignore blank lines and lines starting with character: #
Contents of file: /etc/syslog.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/newsyslog.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/login.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile Ignore blank lines and lines starting with character: #
Contents of file: /etc/shells Ignore blank lines and lines starting with character: #
Contents of file: /etc/csh.cshrc Ignore blank lines and lines starting with character: #
Contents of file: /etc/motd Ignore blank lines and lines starting with character: #
/etc/manpath.config: Contents of file: /etc/manpath.config /etc/manpath.config: Ignore blank lines and lines starting with character: #
Contents of file: /etc/ttys Ignore blank lines and lines starting with character: #
Contents of file: /etc/hosts.allow Ignore blank lines and lines starting with character: #
ssh known hosts: Contents of file: /root/.ssh/known_hosts ssh known hosts: Ignore blank lines and lines starting with character: # /root/.cshrc:Contents of file: /root/.cshrc /root/.cshrc:Ignore blank lines and lines starting with character: #
Fix data in the snapshot has a default color. Variable data in the snapshot has a specific color.
Generated by SCC (© QNH) on Tue Dec 20 21:06:46 CET 2011
\n