date : 2019-12-20 start time : 23.20.53 stop time : 23.22.17 runtime : 84 remark : size (MB) : 2.838 layout-version : 1.26.71 hostname : centos59 domain : virtualization : virtualbox nodename : centos59 model-id : x86_64 model : innotek GmbH VirtualBox 1.2 hostid : a8c01a38 cpu_cnt : 1 cpu-speed : 2394.767 MHz bin : /optbin data : /var/optdata OS-name : Linux license : linux kernel version : 2.6.18-348.el5 OS-version-level : #1 SMP Tue Jan 8 17:53:53 EST 2013 linux distro name : CentOS linux distro version : 5.9 linux distro details : "CentOS release 5.9 (Final)" OS-release : 5.9 timezone : ZONE="Europe/Amsterdam" hwclock : Fri Dec 20 23:20:55 2019 -0.867753 seconds run level : N 3 superuser password : f13de822ae3e83024e5c9795007c9bbd memory real : 497 MB uptime : 20 min boot time : system boot Dec 20 23:00 scc_check_file ignored non-ASCII file /etc/sysconfig/ipmi: '/etc/sysconfig/ipmi: Apple Partition data block size: 8272, first type: enabled., name: ations., number of blocks: 538976288,' scc_check_file ignored non-ASCII file /etc/at.deny: '/etc/at.deny: very short file (no magic)'
#!/bin/sh touch /var/lock/subsys/local
#!/bin/sh touch /var/lock/subsys/local
#!/bin/bash HOSTNAME=`/bin/hostname` HOSTTYPE=`uname -m` unamer=`uname -r` set -m if [ -f /etc/sysconfig/network ]; then . /etc/sysconfig/network fi if [ -z "$HOSTNAME" -o "$HOSTNAME" = "(none)" ]; then HOSTNAME=localhost fi if [ ! -e /proc/mounts ]; then mount -n -t proc /proc /proc mount -n -t sysfs /sys /sys >/dev/null 2>&1 fi if [ ! -d /proc/bus/usb ]; then modprobe usbcore >/dev/null 2>&1 && mount -n -t usbfs /proc/bus/usb /proc/bus/usb else mount -n -t usbfs /proc/bus/usb /proc/bus/usb fi . /etc/init.d/functions selinuxfs="$(fstab_decode_str `LC_ALL=C awk '/ selinuxfs / { print $2 }' /proc/mounts`)" SELINUX_STATE= if [ -n "$selinuxfs" ] && [ "`cat /proc/self/attr/current`" != "kernel" ]; then if [ -r "$selinuxfs/enforce" ] ; then SELINUX_STATE=`cat "$selinuxfs/enforce"` else SELINUX_STATE=1 fi fi if [ -n "$SELINUX_STATE" -a -x /sbin/restorecon ] && LC_ALL=C fgrep -q " /dev " /proc/mounts ; then /sbin/restorecon -R /dev 2>/dev/null fi disable_selinux() { echo $"*** Warning -- SELinux is active" echo $"*** Disabling security enforcement for system recovery." echo $"*** Run 'setenforce 1' to reenable." echo "0" > "$selinuxfs/enforce" } relabel_selinux() { if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then chvt 1 fi REBOOTFLAG=`restorecon -v /sbin/init` AUTORELABEL= . /etc/selinux/config if [ "$AUTORELABEL" = "0" ]; then rm -f /.autorelabel echo echo $"*** Warning -- SELinux ${SELINUXTYPE} policy relabel is required. " echo $"*** /etc/selinux/config indicates you want to manually fix labeling" echo $"*** problems. Dropping you to a shell; the system will reboot" echo $"*** when you leave the shell." echo "0" > $selinuxfs/enforce sulogin echo $"Unmounting file systems" umount -a mount -n -o remount,ro / echo $"Automatic reboot in progress." reboot -f else echo echo $"*** Warning -- SELinux ${SELINUXTYPE} policy relabel is required." echo $"*** Relabeling could take a very long time, depending on file" echo $"*** system size and speed of hard drives." echo "0" > $selinuxfs/enforce /sbin/fixfiles restore > /dev/null 2>&1 rm -f /.autorelabel if [ ! -z "$REBOOTFLAG" ]; then echo $"Automatic reboot in progress." reboot -f fi echo $SELINUX_STATE > $selinuxfs/enforce if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then chvt 8 fi fi } key_is_random() { [ "$1" = "/dev/urandom" -o "$1" = "/dev/hw_random" \ -o "$1" = "/dev/random" ] } init_crypto() { local have_random dst src key opt mode owner params makeswap skip arg opt local param value rc ret mke2fs mdir ret=0 have_random=$1 while read dst src key opt; do [ -z "$dst" -o "${dst#\#}" != "$dst" ] && continue [ -b "/dev/mapper/$dst" ] && continue; if [ "$have_random" = 0 ] && key_is_random "$key"; then continue fi if [ -n "$key" -a "x$key" != "xnone" ]; then if test -e "$key" ; then owner=$(ls -l $key | (read a b owner rest; echo $owner)) if ! key_is_random "$key"; then mode=$(ls -l "$key" | cut -c 5-10) if [ "$mode" != "------" ]; then echo $"INSECURE MODE FOR $key" fi fi if [ "$owner" != root ]; then echo $"INSECURE OWNER FOR $key" fi else echo $"Key file for $dst not found, skipping" ret=1 continue fi else key="" fi params="" makeswap="" mke2fs="" skip="" if [ "${src%%=*}" == "UUID" ]; then src=$(/sbin/blkid -t "$src" -l -o device) elif [ "${src/^\/dev\/disk\/by-uuid\/}" != "$src" ]; then src=$(__readlink $src) fi while [ -n "$opt" ]; do arg=${opt%%,*} opt=${opt##$arg} opt=${opt##,} param=${arg%%=*} value=${arg##$param=} case "$param" in cipher) params="$params -c $value" if [ -z "$value" ]; then echo $"$dst: no value for cipher option, skipping" skip="yes" fi ;; size) params="$params -s $value" if [ -z "$value" ]; then echo $"$dst: no value for size option, skipping" skip="yes" fi ;; hash) params="$params -h $value" if [ -z "$value" ]; then echo $"$dst: no value for hash option, skipping" skip="yes" fi ;; verify) params="$params -y" ;; swap) makeswap=yes ;; tmp) mke2fs=yes esac done if [ "$skip" = "yes" ]; then ret=1 continue fi if [ -z "$key" -a -x /usr/bin/rhgb-client ] \ && /usr/bin/rhgb-client --ping ; then chvt 1 fi if cryptsetup isLuks "$src" 2>/dev/null; then if key_is_random "$key"; then echo $"$dst: LUKS requires non-random key, skipping" ret=1 continue fi if [ -n "$params" ]; then echo "$dst: options are invalid for LUKS partitions," \ "ignoring them" fi /sbin/cryptsetup ${key:+-d $key} luksOpen "$src" "$dst" <&1 else /sbin/cryptsetup $params ${key:+-d $key} create "$dst" "$src" <&1 fi rc=$? if [ -z "$key" -a -x /usr/bin/rhgb-client ] \ && /usr/bin/rhgb-client --ping ; then chvt 8 fi if [ $rc -ne 0 ]; then ret=1 continue fi if [ -b "/dev/mapper/$dst" ]; then if [ "$makeswap" = "yes" ]; then mkswap "/dev/mapper/$dst" 2>/dev/null >/dev/null fi if [ "$mke2fs" = "yes" ]; then if mke2fs "/dev/mapper/$dst" 2>/dev/null >/dev/null \ && mdir=$(mktemp -d /tmp/mountXXXXXX); then mount "/dev/mapper/$dst" "$mdir" && chmod 1777 "$mdir" umount "$mdir" rmdir "$mdir" fi fi fi done < /etc/crypttab return $ret } if [ -x /sbin/setsysfont -a -c /dev/tty1 ]; then /sbin/setsysfont < /dev/tty1 > /dev/tty1 2>/dev/null fi echo -en $"\t\tWelcome to " read -r redhat_release < /etc/redhat-release if [[ "$redhat_release" =~ "Red Hat" ]]; then [ "$BOOTUP" = "color" ] && echo -en "\\033[0;31m" echo -en "Red Hat" [ "$BOOTUP" = "color" ] && echo -en "\\033[0;39m" PRODUCT=`sed "s/Red Hat \(.*\) release.*/\1/" /etc/redhat-release` echo " $PRODUCT" elif [[ "$redhat_release" =~ "Fedora" ]]; then [ "$BOOTUP" = "color" ] && echo -en "\\033[0;34m" echo -en "Fedora" [ "$BOOTUP" = "color" ] && echo -en "\\033[0;39m" PRODUCT=`sed "s/Fedora \(.*\) release.*/\1/" /etc/redhat-release` echo " $PRODUCT" elif [[ "$redhat_release" =~ "CentOS" ]]; then [ "$BOOTUP" = "color" ] && echo -en "\\033[0;36m" PRODUCT=`sed "s/CentOS \(.*\) release.*/\1/" /etc/redhat-release` echo -e " $PRODUCT" [ "$BOOTUP" = "color" ] && echo -en "\\033[0;39m" else PRODUCT=`sed "s/ release.*//g" /etc/redhat-release` echo "$PRODUCT" fi if [ "$PROMPT" != "no" ]; then echo -en $"\t\tPress 'I' to enter interactive startup." echo fi update_boot_stage RCclock ARC=0 SRM=0 UTC=0 if [ -f /etc/sysconfig/clock ]; then . /etc/sysconfig/clock if [ "${CLOCKMODE}" = "GMT" ]; then UTC=true elif [ "${CLOCKMODE}" = "ARC" ]; then ARC=true fi fi CLOCKDEF="" CLOCKFLAGS="$CLOCKFLAGS --hctosys" case "$UTC" in yes|true) CLOCKFLAGS="$CLOCKFLAGS --utc" CLOCKDEF="$CLOCKDEF (utc)" ;; no|false) CLOCKFLAGS="$CLOCKFLAGS --localtime" CLOCKDEF="$CLOCKDEF (localtime)" ;; esac case "$ARC" in yes|true) CLOCKFLAGS="$CLOCKFLAGS --arc" CLOCKDEF="$CLOCKDEF (arc)" ;; esac case "$SRM" in yes|true) CLOCKFLAGS="$CLOCKFLAGS --srm" CLOCKDEF="$CLOCKDEF (srm)" ;; esac [ -x /sbin/hwclock ] && /sbin/hwclock $CLOCKFLAGS action $"Setting clock $CLOCKDEF: `date`" /bin/true if [ -n "$LOGLEVEL" ]; then /bin/dmesg -n $LOGLEVEL fi cmdline=$(cat /proc/cmdline) if [ -f /proc/sys/kernel/modprobe ]; then if ! strstr "$cmdline" nomodules && [ -f /proc/modules ] ; then sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1 else sysctl -w kernel.modprobe="/bin/true" >/dev/null 2>&1 fi fi touch /dev/.in_sysinit >/dev/null 2>&1 if [ -x /bin/taskset ]; then if strstr "$cmdline" default_affinity= ; then for arg in $cmdline ; do if [ "${arg##default_affinity=}" != "${arg}" ]; then /bin/taskset -p ${arg##default_affinity=} 1 fi done fi fi nashpid=$(pidof nash 2>/dev/null) [ -n "$nashpid" ] && kill $nashpid >/dev/null 2>&1 unset nashpid /sbin/start_udev for file in /etc/sysconfig/modules/*.modules ; do [ -x $file ] && $file done if [ -f /etc/rc.modules ]; then /etc/rc.modules fi RHGB_STARTED=0 mount -n /dev/pts >/dev/null 2>&1 [ -n "$SELINUX_STATE" ] && restorecon /dev/pts >/dev/null 2>&1 if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then ( . /etc/sysconfig/i18n 2>/dev/null ; /usr/bin/rhgb ) RHGB_STARTED=1 fi update_boot_stage RCkernelparam apply_sysctl if [ -x /bin/loadkeys ]; then KEYTABLE= KEYMAP= if [ -f /etc/sysconfig/console/default.kmap ]; then KEYMAP=/etc/sysconfig/console/default.kmap else if [ -f /etc/sysconfig/keyboard ]; then . /etc/sysconfig/keyboard fi if [ -n "$KEYTABLE" -a -d "/lib/kbd/keymaps" ]; then KEYMAP="$KEYTABLE.map" fi fi if [ -n "$KEYMAP" ]; then if [ -n "$KEYTABLE" ]; then echo -n $"Loading default keymap ($KEYTABLE): " else echo -n $"Loading default keymap: " fi LOADKEYS=loadkeys if [ "${LANG}" != "${LANG%%.UTF-8}" -o "${LANG}" != "${LANG%%.utf8}" ]; then LOADKEYS="loadkeys -u" fi $LOADKEYS $KEYMAP < /dev/tty0 > /dev/tty0 2>/dev/null && \ success $"Loading default keymap" || failure $"Loading default keymap" echo fi fi update_boot_stage RChostname action $"Setting hostname ${HOSTNAME}: " hostname ${HOSTNAME} if [ -d /proc/acpi ]; then for module in /lib/modules/$unamer/kernel/drivers/acpi/* ; do module=${module##*/} module=${module%.ko} modprobe $module >/dev/null 2>&1 done fi update_boot_stage RCraid [ -x /sbin/nash ] && echo "raidautorun /dev/md0" | nash --quiet if [ -f /etc/mdadm.conf ]; then /sbin/mdadm -A -s fi if ! LC_ALL=C fgrep -q "device-mapper" /proc/devices 2>/dev/null ; then modprobe dm-mod >/dev/null 2>&1 fi mkdir -p /dev/mapper >/dev/null 2>&1 mknod /dev/mapper/control c \ $(awk '/ misc$/ { print $1 }' /proc/devices) \ $(awk '/ device-mapper$/ { print $1 }' /proc/misc) >/dev/null 2>&1 [ -n "$SELINUX_STATE" ] && restorecon /dev/mapper /dev/mapper/control >/dev/null 2>&1 if [ -f /etc/crypttab ]; then s=$"Starting disk encryption:" echo "$s" init_crypto 0 && success "$s" || failure "$s" echo fi if [ -c /dev/mapper/control ]; then if ! strstr "$cmdline" nompath && [ -f /etc/multipath.conf -a \ -x /sbin/multipath.static ]; then modprobe dm-multipath > /dev/null 2>&1 /sbin/multipath.static -v 0 if [ -x /sbin/kpartx ]; then /sbin/dmsetup ls --target multipath --exec "/sbin/kpartx -a -p p" fi fi if ! strstr "$cmdline" nodmraid && [ -x /sbin/dmraid.static ]; then modprobe dm-mirror >/dev/null 2>&1 dmraidsets=$(LC_ALL=C /sbin/dmraid -s -c -i) if [ "$dmraidsets" != "no raid disks" -a "$dmraidsets" != "no block devices found" ]; then for dmname in $dmraidsets; do /sbin/dmraid.static -ay -i -p "$dmname" >/dev/null 2>&1 /sbin/kpartx -a -p p "/dev/mapper/$dmname" done fi fi if [ -x /sbin/lvm.static ]; then action $"Setting up Logical Volume Management:" /sbin/lvm.static vgchange -a y --ignorelockingfailure fi fi if [ -f /etc/crypttab ]; then s=$"Starting disk encryption:" echo "$s" init_crypto 0 && success "$s" || failure "$s" echo fi if [ -f /fastboot ] || strstr "$cmdline" fastboot ; then fastboot=yes fi if [ -f /fsckoptions ]; then fsckoptions=`cat /fsckoptions` fi if [ -f /forcefsck ] || strstr "$cmdline" forcefsck ; then fsckoptions="-f $fsckoptions" elif [ -f /.autofsck ]; then [ -f /etc/sysconfig/autofsck ] && . /etc/sysconfig/autofsck if [ "$AUTOFSCK_DEF_CHECK" = "yes" ]; then AUTOFSCK_OPT="$AUTOFSCK_OPT -f" fi if [ -n "$AUTOFSCK_SINGLEUSER" ]; then echo echo $"*** Warning -- the system did not shut down cleanly. " echo $"*** Dropping you to a shell; the system will continue" echo $"*** when you leave the shell." [ -n "$SELINUX_STATE" ] && echo "0" > $selinuxfs/enforce sulogin [ -n "$SELINUX_STATE" ] && echo "1" > $selinuxfs/enforce fi fsckoptions="$AUTOFSCK_OPT $fsckoptions" fi if [ "$BOOTUP" = "color" ]; then fsckoptions="-C $fsckoptions" else fsckoptions="-V $fsckoptions" fi READONLY= if [ -f /etc/sysconfig/readonly-root ]; then . /etc/sysconfig/readonly-root fi if strstr "$cmdline" readonlyroot ; then READONLY=yes [ -z "$RW_MOUNT" ] && RW_MOUNT=/var/lib/stateless/writable fi if strstr "$cmdline" noreadonlyroot ; then READONLY=no fi if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then mount_empty() { if [ -e "$1" ]; then echo "$1" | cpio -p -vd "$RW_MOUNT" &>/dev/null mount -n --bind "$RW_MOUNT$1" "$1" fi } mount_dirs() { if [ -e "$1" ]; then mkdir -p "$RW_MOUNT$1" find "$1" -type d -print0 | cpio -p -0vd "$RW_MOUNT" &>/dev/null mount -n --bind "$RW_MOUNT$1" "$1" fi } mount_files() { if [ -e "$1" ]; then cp -a --parents "$1" "$RW_MOUNT" mount -n --bind "$RW_MOUNT$1" "$1" fi } mountopts= rw_mount_dev=$(blkid -t LABEL="$RW_LABEL" -l -o device) if mount $mountopts "$RW_MOUNT" > /dev/null 2>&1 ; then rm -rf "$RW_MOUNT" > /dev/null 2>&1 elif [ x$rw_mount_dev != x ] && mount $rw_mount_dev $mountopts "$RW_MOUNT" > /dev/null 2>&1; then rm -rf "$RW_MOUNT" > /dev/null 2>&1 else mount -n -t tmpfs $mountopts none "$RW_MOUNT" fi for file in /etc/rwtab /etc/rwtab.d/* ; do is_ignored_file "$file" && continue [ -f $file ] && cat $file | while read type path ; do case "$type" in empty) mount_empty $path ;; files) mount_files $path ;; dirs) mount_dirs $path ;; *) ;; esac [ -n "$SELINUX_STATE" -a -e "$path" ] && restorecon -R "$path" done done ipaddr= if [ "$HOSTNAME" = "localhost" -o "$HOSTNAME" = "localhost.localdomain" ]; then ipaddr=$(ip addr show to 0/0 scope global | awk '/[[:space:]]inet / { print gensub("/.*","","g",$2) }') if [ -n "$ipaddr" ]; then eval $(ipcalc -h $ipaddr 2>/dev/null) hostname ${HOSTNAME} fi fi state_mount_dev=$(blkid -t LABEL="$STATE_LABEL" -l -o device) if mount $mountopts $STATE_OPTIONS "$STATE_MOUNT" > /dev/null 2>&1 ; then /bin/true elif [ x$state_mount_dev != x ] && mount $state_mount_dev $mountopts "$STATE_MOUNT" > /dev/null 2>&1; then /bin/true elif [ ! -z "$CLIENTSTATE" ]; then mount -t nfs $CLIENTSTATE/$HOSTNAME $STATE_MOUNT -o rw,nolock fi if [ -d $STATE_MOUNT/etc ]; then cp --parents -f -p /var/lib/puppet/ssl/certs/ca.pem $STATE_MOUNT 2>/dev/null for i in $(grep -v "^#" $STATE_MOUNT/files); do if [ -e $i ]; then mount -n -o bind $STATE_MOUNT/${i} ${i} fi done fi fi if ! [[ " $fsckoptions" =~ " -y" ]]; then fsckoptions="-a $fsckoptions" fi _RUN_QUOTACHECK=0 if [ -f /forcequotacheck ] || strstr "$cmdline" forcequotacheck ; then _RUN_QUOTACHECK=1 fi if [ -z "$fastboot" -a "$READONLY" != "yes" ]; then STRING=$"Checking filesystems" echo $STRING if [ "${RHGB_STARTED}" != "0" -a -w /etc/rhgb/temp/rhgb-console ]; then fsck -T -t noopts=_netdev -A $fsckoptions > /etc/rhgb/temp/rhgb-console else fsck -T -t noopts=_netdev -A $fsckoptions fi rc=$? if [ "$rc" -eq "0" ]; then success "$STRING" echo elif [ "$rc" -eq "1" ]; then passed "$STRING" echo elif [ "$rc" -eq "2" -o "$rc" -eq "3" ]; then echo $"Unmounting file systems" umount -a mount -n -o remount,ro / echo $"Automatic reboot in progress." reboot -f fi if [ $rc -gt 1 ]; then if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then chvt 1 fi failure "$STRING" echo echo echo $"*** An error occurred during the file system check." echo $"*** Dropping you to a shell; the system will reboot" echo $"*** when you leave the shell." str=$"(Repair filesystem)" PS1="$str \# # "; export PS1 [ "$SELINUX_STATE" = "1" ] && disable_selinux sulogin echo $"Unmounting file systems" umount -a mount -n -o remount,ro / echo $"Automatic reboot in progress." reboot -f elif [ "$rc" -eq "1" ]; then _RUN_QUOTACHECK=1 fi if [ -f /.autofsck -a -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then chvt 8 fi fi remount_needed() { local state oldifs [ "$READONLY" = "yes" ] && return 1 state=`LC_ALL=C awk '/ \/ / && ($3 !~ /rootfs/) { print $4 }' /proc/mounts` oldifs=$IFS IFS="," for opt in $state ; do if [ "$opt" = "rw" ]; then IFS=$oldifs return 1 fi done IFS=$oldifs return 0 } update_boot_stage RCmountfs if remount_needed ; then action $"Remounting root filesystem in read-write mode: " mount -n -o remount,rw / fi if [ -n "$SELINUX_STATE" ]; then restorecon /etc/mtab /etc/ld.so.cache /etc/blkid/blkid.tab /etc/resolv.conf >/dev/null 2>&1 fi if [ "$READONLY" != "yes" ] ; then (> /etc/mtab) &> /dev/null rm -f /etc/mtab~ /etc/mtab~~ mount -f / mount -f /proc >/dev/null 2>&1 mount -f /sys >/dev/null 2>&1 mount -f /dev/pts >/dev/null 2>&1 mount -f /proc/bus/usb >/dev/null 2>&1 fi if [ "$READONLY" != "yes" ] ; then action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -O no_netdev else action $"Mounting local filesystems: " mount -a -n -t nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -O no_netdev fi if [ X"$_RUN_QUOTACHECK" = X1 -a -x /sbin/quotacheck ]; then action $"Checking local filesystem quotas: " /sbin/quotacheck -anug fi if [ -x /sbin/quotaon ]; then action $"Enabling local filesystem quotas: " /sbin/quotaon -aug fi if [ -n "$SELINUX_STATE" -a "$READONLY" != "yes" ]; then if [ -f /.autorelabel ] || strstr "$cmdline" autorelabel ; then relabel_selinux fi else if [ -d /etc/selinux -a "$READONLY" != "yes" ]; then [ -f /.autorelabel ] || touch /.autorelabel fi fi if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then ( . /etc/sysconfig/i18n 2>/dev/null ; /usr/bin/rhgb ) RHGB_STARTED=1 fi if [ -f "/var/lib/random-seed" ]; then cat /var/lib/random-seed > /dev/urandom else [ "$READONLY" != "yes" ] && touch /var/lib/random-seed fi if [ "$READONLY" != "yes" ]; then chmod 600 /var/lib/random-seed dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 2>/dev/null fi if [ -f /etc/crypttab ]; then s=$"Starting disk encryption using the RNG:" echo "$s" init_crypto 1 && success "$s" || failure "$s" echo fi if [ -f /.unconfigured ]; then if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then chvt 1 fi if [ -x /usr/bin/system-config-keyboard ]; then /usr/bin/system-config-keyboard fi if [ -x /usr/bin/passwd ]; then /usr/bin/passwd root fi if [ -x /usr/sbin/system-config-network-tui ]; then /usr/sbin/system-config-network-tui fi if [ -x /usr/sbin/timeconfig ]; then /usr/sbin/timeconfig fi if [ -x /usr/sbin/authconfig-tui ]; then /usr/sbin/authconfig-tui --nostart fi if [ -x /usr/sbin/ntsysv ]; then /usr/sbin/ntsysv --level 35 fi if [ -f /etc/sysconfig/network ]; then . /etc/sysconfig/network action $"Resetting hostname ${HOSTNAME}: " hostname ${HOSTNAME} fi rm -f /.unconfigured if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then chvt 8 fi fi rm -f /fastboot /fsckoptions /forcefsck /.autofsck /forcequotacheck /halt \ /poweroff /.suspended &> /dev/null _NEED_XFILES= [ -f /var/run/utmpx -o -f /var/log/wtmpx ] && _NEED_XFILES=1 for afile in /var/lock/* /var/run/* ; do if [ -d "$afile" ]; then case "$afile" in */news|*/mon) ;; */sudo) rm -f $afile/*/* ;; */vmware) rm -rf $afile/*/* ;; */samba) rm -rf $afile/*/* ;; */screen) rm -rf $afile/* ;; */cvs) rm -rf $afile/* ;; */dovecot) rm -f $afile/* $afile/*/* 2>/dev/null ;; */cups) rm -f $afile/*/* ;; */libvirt) rm -rf $afile/*/* ;; *) rm -f $afile/* ;; esac else rm -f $afile fi done rm -f /var/lib/rpm/__db* &> /dev/null rm -f /var/gdm/.gdmfifo &> /dev/null [ -x /sbin/pam_console_apply ] && /sbin/pam_console_apply -r { > /var/run/utmp touch /var/log/wtmp chgrp utmp /var/run/utmp /var/log/wtmp chmod 0664 /var/run/utmp /var/log/wtmp if [ -n "$_NEED_XFILES" ]; then > /var/run/utmpx touch /var/log/wtmpx chgrp utmp /var/run/utmpx /var/log/wtmpx chmod 0664 /var/run/utmpx /var/log/wtmpx fi [ -n "$SELINUX_STATE" ] && restorecon /var/run/utmp* /var/log/wtmp* >/dev/null 2>&1 [ -n "$SELINUX_STATE" ] && restorecon /tmp rm -f /tmp/.X*-lock /tmp/.lock.* /tmp/.gdm_socket /tmp/.s.PGSQL.* rm -rf /tmp/.X*-unix /tmp/.ICE-unix /tmp/.font-unix /tmp/hsperfdata_* \ /tmp/kde-* /tmp/ksocket-* /tmp/mc-* /tmp/mcop-* /tmp/orbit-* \ /tmp/scrollkeeper-* /tmp/ssh-* \ /dev/.in_sysinit mkdir -m 1777 -p /tmp/.ICE-unix >/dev/null 2>&1 chown root:root /tmp/.ICE-unix [ -n "$SELINUX_STATE" ] && restorecon /tmp/.ICE-unix >/dev/null 2>&1 update_boot_stage RCswap action $"Enabling /etc/fstab swaps: " swapon -a -e if [ "$AUTOSWAP" = "yes" ]; then curswap=$(awk '/^\/dev/ { print $1 }' /proc/swaps | while read x; do get_numeric_dev dec $x ; echo -n " "; done) swappartitions=$(blkid -t TYPE=swap -o device) if [ x"$swappartitions" != x ]; then for partition in $swappartitions ; do [ ! -e $partition ] && continue majmin=$(get_numeric_dev dec $partition) echo $curswap | grep -qw "$majmin" || action $"Enabling local swap partitions: " swapon $partition done fi fi /bin/mount -t binfmt_misc none /proc/sys/fs/binfmt_misc > /dev/null 2>&1 if [ -f /etc/rc.serial ]; then . /etc/rc.serial fi if strstr "$cmdline" ide-scsi ; then modprobe ide-cd >/dev/null 2>&1 modprobe ide-scsi >/dev/null 2>&1 fi if [ -x /usr/sbin/system-config-network-cmd ]; then if strstr "$cmdline" netprofile= ; then for arg in $cmdline ; do if [ "${arg##netprofile=}" != "${arg}" ]; then /usr/sbin/system-config-network-cmd --profile ${arg##netprofile=} fi done fi fi dmesg -s 131072 > /var/log/dmesg touch /.autofsck &> /dev/null if [ "$PROMPT" != no ]; then while :; do pid=$(/sbin/pidof getkey) [ -n "$pid" -o -e /var/run/getkey_done ] && break usleep 100000 done [ -n "$pid" ] && kill -TERM "$pid" >/dev/null 2>&1 fi } & if strstr "$cmdline" confirm ; then touch /var/run/confirm fi if [ "$PROMPT" != "no" ]; then /sbin/getkey i && touch /var/run/confirm touch /var/run/getkey_done fi wait [ "$PROMPT" != no ] && rm -f /var/run/getkey_done if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping ; then /usr/bin/rhgb-client --sysinit fi
EXTRAOPTIONS="" AUDITD_LANG="en_US" AUDITD_CLEAN_STOP="yes" AUDITD_STOP_DISABLE="no"
USEWINBINDAUTH=no USEPASSWDQC=no PASSWDALGORITHM=md5 USEPAMACCESS=no USESSSDAUTH=no USESYSNETAUTH=no USEKERBEROS=no FORCESMARTCARD=no USESMBAUTH=no USESMARTCARD=no USELDAPAUTH=no USESSSD=no USEWINBIND=no USESHADOW=yes USEDB=no USEHESIOD=no USELDAP=no USEMKHOMEDIR=no USELOCAUTHORIZE=no USECRACKLIB=yes USENIS=no
TIMEOUT=300 BROWSE_MODE="no" USE_MISC_DEVICE="yes"
HID2HCI_ENABLE=true
AVPKT=3000
DEVICE=eth0,10Mbit,1Mbit RATE=128Kbit WEIGHT=10Kbit PRIO=5 RULE=192.168.1.0/24
ZONE="Europe/Amsterdam" UTC=true ARC=false
DRIVER= GOVERNOR= MAX_SPEED= MIN_SPEED= UP_THRESHOLD= DOWN_THRESHOLD= IGNORE_NICE=0 VMAJOR=1 VMINOR=1
CRONDARGS=
RUN_FIRSTBOOT=NO
boot=/dev/sda forcelba=0
HIDDARGS="--server"
- class: OTHER bus: PCI detached: 0 driver: i2c-piix4 desc: "Intel Corporation 82371AB/EB/MB PIIX4 ACPI" vendorId: 8086 deviceId: 7113 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 7 pcifn: 0 - class: OTHER bus: PCI detached: 0 desc: "InnoTek Systemberatung GmbH VirtualBox Guest Service" vendorId: 80ee deviceId: cafe subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 4 pcifn: 0 - class: OTHER bus: PCI detached: 0 desc: "Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II]" vendorId: 8086 deviceId: 7000 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 1 pcifn: 0 - class: OTHER bus: PCI detached: 0 desc: "Intel Corporation 440FX - 82441FX PMC [Natoma]" vendorId: 8086 deviceId: 1237 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 0 pcifn: 0 - class: OTHER bus: PSAUX detached: 0 driver: pcspkr desc: "PC Speaker" - class: OTHER bus: ISAPNP detached: 0 desc: "PNP0200" deviceId: PNP0200 - class: OTHER bus: ISAPNP detached: 0 desc: "PNP0303" deviceId: PNP0303 - class: OTHER bus: ISAPNP detached: 0 desc: "PNP0a03" deviceId: PNP0a03 - class: OTHER bus: ISAPNP detached: 0 desc: "PNP0f03" deviceId: PNP0f03 - class: OTHER bus: PSAUX detached: 0 desc: "Video Bus" - class: NETWORK bus: PCI detached: 0 device: eth0 driver: e1000 desc: "Intel Corporation 82540EM Gigabit Ethernet Controller" network.hwaddr: 08:00:27:e8:7a:02 vendorId: 8086 deviceId: 100e subVendorId: 8086 subDeviceId: 001e pciType: 1 pcidom: 0 pcibus: 0 pcidev: 3 pcifn: 0 - class: NETWORK bus: PCI detached: 0 device: eth1 driver: e1000 desc: "Intel Corporation 82540EM Gigabit Ethernet Controller" network.hwaddr: 08:00:27:f7:cf:17 vendorId: 8086 deviceId: 100e subVendorId: 8086 subDeviceId: 001e pciType: 1 pcidom: 0 pcibus: 0 pcidev: 8 pcifn: 0 - class: MOUSE bus: PSAUX detached: 0 device: input/mice driver: generic3ps/2 desc: "ImExPS/2 Generic Explorer Mouse" - class: AUDIO bus: PCI detached: 0 driver: snd-intel8x0 desc: "Intel Corporation 82801AA AC'97 Audio Controller" vendorId: 8086 deviceId: 2415 subVendorId: 8086 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 5 pcifn: 0 - class: CDROM bus: IDE detached: 0 device: hdc desc: "VBOX CD-ROM" - class: VIDEO bus: PCI detached: 0 desc: "InnoTek Systemberatung GmbH VirtualBox Graphics Adapter" vendorId: 80ee deviceId: beef subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 2 pcifn: 0 - class: HD bus: SCSI detached: 0 device: sda desc: "ATA VBOX HARDDISK" host: 0 id: 0 channel: 0 lun: 0 - class: KEYBOARD bus: PSAUX detached: 0 desc: "AT Translated Set 2 keyboard" - class: IDE bus: PCI detached: 0 driver: ata_piix desc: "Intel Corporation 82371AB/EB/MB PIIX4 IDE" vendorId: 8086 deviceId: 7111 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 1 pcifn: 1 - class: SATA bus: PCI detached: 0 driver: ahci desc: "Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode]" vendorId: 8086 deviceId: 2829 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: d pcifn: 0
LANG="en_US.UTF-8" SYSFONT="latarcyrheb-sun16"
BOOTUP=color GRAPHICAL=yes RES_COL=60 MOVE_TO_COL="echo -en \\033[${RES_COL}G" SETCOLOR_SUCCESS="echo -en \\033[0;32m" SETCOLOR_FAILURE="echo -en \\033[0;31m" SETCOLOR_WARNING="echo -en \\033[0;33m" SETCOLOR_NORMAL="echo -en \\033[0;39m" LOGLEVEL=3 PROMPT=yes AUTOSWAP=no
*filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :RH-Firewall-1-INPUT - [0:0] -A INPUT -j RH-Firewall-1-INPUT -A FORWARD -j RH-Firewall-1-INPUT -A RH-Firewall-1-INPUT -i lo -j ACCEPT -A RH-Firewall-1-INPUT -p icmpv6 -j ACCEPT -A RH-Firewall-1-INPUT -p 50 -j ACCEPT -A RH-Firewall-1-INPUT -p 51 -j ACCEPT -A RH-Firewall-1-INPUT -p udp --dport 5353 -d ff02::fb -j ACCEPT -A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT -A RH-Firewall-1-INPUT -p udp -m udp --dport 32768:61000 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 32768:61000 ! --syn -j ACCEPT -A RH-Firewall-1-INPUT -m tcp -p tcp --dport 22 -j ACCEPT -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp6-adm-prohibited COMMIT
IP6TABLES_MODULES="" IP6TABLES_MODULES_UNLOAD="yes" IP6TABLES_SAVE_ON_STOP="no" IP6TABLES_SAVE_ON_RESTART="no" IP6TABLES_SAVE_COUNTER="no" IP6TABLES_STATUS_NUMERIC="yes" IP6TABLES_STATUS_VERBOSE="no" IP6TABLES_STATUS_LINENUMBERS="yes"
*filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :RH-Firewall-1-INPUT - [0:0] -A INPUT -j RH-Firewall-1-INPUT -A FORWARD -j RH-Firewall-1-INPUT -A RH-Firewall-1-INPUT -i lo -j ACCEPT -A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT -A RH-Firewall-1-INPUT -p 50 -j ACCEPT -A RH-Firewall-1-INPUT -p 51 -j ACCEPT -A RH-Firewall-1-INPUT -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 80 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 443 -j ACCEPT -A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited COMMIT
IPTABLES_MODULES="ip_conntrack_netbios_ns" IPTABLES_MODULES_UNLOAD="yes" IPTABLES_SAVE_ON_STOP="no" IPTABLES_SAVE_ON_RESTART="no" IPTABLES_SAVE_COUNTER="no" IPTABLES_STATUS_NUMERIC="yes" IPTABLES_STATUS_VERBOSE="no" IPTABLES_STATUS_LINENUMBERS="yes"
IRDA=yes DEVICE=/dev/ttyS2 DISCOVERY=yes
UPDATEDEFAULT=yes DEFAULTKERNEL=kernel
KEYBOARDTYPE="pc" KEYTABLE="us"
KRB524D_ARGS=-m
SAFE=no
MULTIPATH=no
#!/bin/sh MODULES="nvram floppy parport lp snd-powermac" [ -f /etc/sysconfig/udev-stw ] && . /etc/sysconfig/udev-stw for i in $MODULES ; do modprobe $i >/dev/null 2>&1 done
ROOTDIR=/var/named/chroot
NETWORKING=yes NETWORKING_IPV6=yes HOSTNAME=centos59
PRELINKING=yes PRELINK_OPTS=-mR PRELINK_FULL_TIME_INTERVAL=14 PRELINK_NONRPM_CHECK_INTERVAL=7
#!/bin/bash ENABLED=yes CHECK=check CHECK_DEVS="" REPAIR_DEVS="" SKIP_DEVS=""
READONLY=no TEMPORARY_STATE=no RW_MOUNT=/var/lib/stateless/writable RW_LABEL=stateless-rw STATE_LABEL=stateless-state STATE_MOUNT=/.snapshot
OPTIONS="-l unix:/var/rrdtool/rrdcached/rrdcached.sock -s rrdcached -m 664 -b /var/rrdtool/rrdcached" RRDC_USER=rrdcached
SMBDOPTIONS="-D" NMBDOPTIONS="-D" WINBINDOPTIONS=""
SOCKETDIR=/var/run/saslauthd MECH=pam FLAGS=
DAEMON=yes QUEUE=1h
smartd_opts="-q never"
SPAMDOPTIONS="-d -c -m5 -H"
SQUID_OPTS="-D" SQUID_SHUTDOWN_TIMEOUT=100
SYSLOGD_OPTIONS="-m 0" KLOGD_OPTIONS="-x" SYSLOG_UMASK=077
--enabled --port=22:tcp
DOCROOT=/var/www/html/ LOGFILE=/var/log/tux
MODULES="nvram floppy parport lp snd-powermac"
INTERFACES="-i wlan0" DRIVERS="-D wext" OTHER_ARGS="-u -f /var/log/wpa_supplicant.log"
EXTRAOPTIONS="" XINETD_LANG="en_US"
SETENT_BATCH_READ=TRUE
GROUP=100 HOME=/home INACTIVE=-1 EXPIRE= SHELL=/bin/bash SKEL=/etc/skel CREATE_MAIL_SPOOL=yes
id:3:initdefault: si::sysinit:/etc/rc.d/rc.sysinit l0:0:wait:/etc/rc.d/rc 0 l1:1:wait:/etc/rc.d/rc 1 l2:2:wait:/etc/rc.d/rc 2 l3:3:wait:/etc/rc.d/rc 3 l4:4:wait:/etc/rc.d/rc 4 l5:5:wait:/etc/rc.d/rc 5 l6:6:wait:/etc/rc.d/rc 6 ca::ctrlaltdel:/sbin/shutdown -t3 -r now pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down" pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled" 1:2345:respawn:/sbin/mingetty tty1 2:2345:respawn:/sbin/mingetty tty2 3:2345:respawn:/sbin/mingetty tty3 4:2345:respawn:/sbin/mingetty tty4 5:2345:respawn:/sbin/mingetty tty5 6:2345:respawn:/sbin/mingetty tty6 x:5:respawn:/etc/X11/prefdm -nodaemon
(hd0) /dev/sda
default=0 timeout=5 splashimage=(hd0,0)/grub/splash.xpm.gz hiddenmenu title CentOS (2.6.18-348.el5) root (hd0,0) kernel /vmlinuz-2.6.18-348.el5 ro root=/dev/VolGroup00/LogVol00 initrd /initrd-2.6.18-348.el5.img
default=0 timeout=5 splashimage=(hd0,0)/grub/splash.xpm.gz hiddenmenu title CentOS (2.6.18-348.el5) root (hd0,0) kernel /vmlinuz-2.6.18-348.el5 ro root=/dev/VolGroup00/LogVol00 initrd /initrd-2.6.18-348.el5.img
ro root=/dev/VolGroup00/LogVol00
K01dnsmasq -> ../init.d/dnsmasq K01opsview -> ../init.d/opsview K01opsview-agent -> ../init.d/opsview-agent K01opsview-web -> ../init.d/opsview-web K01smartd -> ../init.d/smartd K02NetworkManager -> ../init.d/NetworkManager K02avahi-daemon -> ../init.d/avahi-daemon K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K03yum-updatesd -> ../init.d/yum-updatesd K05anacron -> ../init.d/anacron K05atd -> ../init.d/atd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K10xfs -> ../init.d/xfs K12dc_client -> ../init.d/dc_client K15gpm -> ../init.d/gpm K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K25sshd -> ../init.d/sshd K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K36mysqld -> ../init.d/mysqld K44rawdevices -> ../init.d/rawdevices K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K50xinetd -> ../init.d/xinetd K60crond -> ../init.d/crond K69rpcsvcgssd -> ../init.d/rpcsvcgssd K72autofs -> ../init.d/autofs K73ypbind -> ../init.d/ypbind K74acpid -> ../init.d/acpid K74haldaemon -> ../init.d/haldaemon K74ipmi -> ../init.d/ipmi K74lm_sensors -> ../init.d/lm_sensors K74lvm2-monitor -> ../init.d/lvm2-monitor K74nscd -> ../init.d/nscd K75netfs -> ../init.d/netfs K80hypervkvpd -> ../init.d/hypervkvpd K85mdmonitor -> ../init.d/mdmonitor K85mdmpd -> ../init.d/mdmpd K85messagebus -> ../init.d/messagebus K85rpcgssd -> ../init.d/rpcgssd K85rpcidmapd -> ../init.d/rpcidmapd K86nfslock -> ../init.d/nfslock K87irqbalance -> ../init.d/irqbalance K87mcstrans -> ../init.d/mcstrans K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K87portmap -> ../init.d/portmap K87restorecond -> ../init.d/restorecond K88auditd -> ../init.d/auditd K88pcscd -> ../init.d/pcscd K88syslog -> ../init.d/syslog K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89hidd -> ../init.d/hidd K89iscsi -> ../init.d/iscsi K89iscsid -> ../init.d/iscsid K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K90bluetooth -> ../init.d/bluetooth K90network -> ../init.d/network K91capi -> ../init.d/capi K91isdn -> ../init.d/isdn K92ip6tables -> ../init.d/ip6tables K92iptables -> ../init.d/iptables K95firstboot -> ../init.d/firstboot K95kudzu -> ../init.d/kudzu K99cpuspeed -> ../init.d/cpuspeed K99microcode_ctl -> ../init.d/microcode_ctl K99readahead_early -> ../init.d/readahead_early K99readahead_later -> ../init.d/readahead_later S00killall -> ../init.d/killall S01halt -> ../init.d/halt
K01dnsmasq -> ../init.d/dnsmasq K01opsview -> ../init.d/opsview K01opsview-agent -> ../init.d/opsview-agent K01opsview-web -> ../init.d/opsview-web K01smartd -> ../init.d/smartd K02NetworkManager -> ../init.d/NetworkManager K02avahi-daemon -> ../init.d/avahi-daemon K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K03yum-updatesd -> ../init.d/yum-updatesd K05anacron -> ../init.d/anacron K05atd -> ../init.d/atd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K10xfs -> ../init.d/xfs K12dc_client -> ../init.d/dc_client K15gpm -> ../init.d/gpm K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K25sshd -> ../init.d/sshd K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K36mysqld -> ../init.d/mysqld K44rawdevices -> ../init.d/rawdevices K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K50xinetd -> ../init.d/xinetd K60crond -> ../init.d/crond K69rpcsvcgssd -> ../init.d/rpcsvcgssd K72autofs -> ../init.d/autofs K73ypbind -> ../init.d/ypbind K74acpid -> ../init.d/acpid K74haldaemon -> ../init.d/haldaemon K74ipmi -> ../init.d/ipmi K74lm_sensors -> ../init.d/lm_sensors K74nscd -> ../init.d/nscd K75netfs -> ../init.d/netfs K80hypervkvpd -> ../init.d/hypervkvpd K85mdmonitor -> ../init.d/mdmonitor K85mdmpd -> ../init.d/mdmpd K85messagebus -> ../init.d/messagebus K85rpcgssd -> ../init.d/rpcgssd K85rpcidmapd -> ../init.d/rpcidmapd K86nfslock -> ../init.d/nfslock K87irqbalance -> ../init.d/irqbalance K87mcstrans -> ../init.d/mcstrans K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K87portmap -> ../init.d/portmap K87restorecond -> ../init.d/restorecond K88auditd -> ../init.d/auditd K88pcscd -> ../init.d/pcscd K88syslog -> ../init.d/syslog K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89hidd -> ../init.d/hidd K89iscsi -> ../init.d/iscsi K89iscsid -> ../init.d/iscsid K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K90bluetooth -> ../init.d/bluetooth K90network -> ../init.d/network K91capi -> ../init.d/capi K91isdn -> ../init.d/isdn K92ip6tables -> ../init.d/ip6tables K92iptables -> ../init.d/iptables K95firstboot -> ../init.d/firstboot K95kudzu -> ../init.d/kudzu K99microcode_ctl -> ../init.d/microcode_ctl K99readahead_early -> ../init.d/readahead_early K99readahead_later -> ../init.d/readahead_later S13cpuspeed -> ../init.d/cpuspeed S26lvm2-monitor -> ../init.d/lvm2-monitor S99single -> ../init.d/single
K01dnsmasq -> ../init.d/dnsmasq K02NetworkManager -> ../init.d/NetworkManager K02avahi-daemon -> ../init.d/avahi-daemon K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K05atd -> ../init.d/atd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K12dc_client -> ../init.d/dc_client K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K44rawdevices -> ../init.d/rawdevices K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K50xinetd -> ../init.d/xinetd K69rpcsvcgssd -> ../init.d/rpcsvcgssd K72autofs -> ../init.d/autofs K73ypbind -> ../init.d/ypbind K74haldaemon -> ../init.d/haldaemon K74ipmi -> ../init.d/ipmi K74nscd -> ../init.d/nscd K75netfs -> ../init.d/netfs K80hypervkvpd -> ../init.d/hypervkvpd K85mdmpd -> ../init.d/mdmpd K85messagebus -> ../init.d/messagebus K85rpcgssd -> ../init.d/rpcgssd K85rpcidmapd -> ../init.d/rpcidmapd K86nfslock -> ../init.d/nfslock K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K87portmap -> ../init.d/portmap K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89iscsi -> ../init.d/iscsi K89iscsid -> ../init.d/iscsid K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K91capi -> ../init.d/capi K95firstboot -> ../init.d/firstboot K95kudzu -> ../init.d/kudzu K99readahead_later -> ../init.d/readahead_later S00microcode_ctl -> ../init.d/microcode_ctl S04readahead_early -> ../init.d/readahead_early S08ip6tables -> ../init.d/ip6tables S08iptables -> ../init.d/iptables S08mcstrans -> ../init.d/mcstrans S09isdn -> ../init.d/isdn S10network -> ../init.d/network S11auditd -> ../init.d/auditd S12restorecond -> ../init.d/restorecond S12syslog -> ../init.d/syslog S13cpuspeed -> ../init.d/cpuspeed S13irqbalance -> ../init.d/irqbalance S15mdmonitor -> ../init.d/mdmonitor S25bluetooth -> ../init.d/bluetooth S25pcscd -> ../init.d/pcscd S26acpid -> ../init.d/acpid S26hidd -> ../init.d/hidd S26lm_sensors -> ../init.d/lm_sensors S26lvm2-monitor -> ../init.d/lvm2-monitor S55sshd -> ../init.d/sshd S64mysqld -> ../init.d/mysqld S85gpm -> ../init.d/gpm S90crond -> ../init.d/crond S90xfs -> ../init.d/xfs S95anacron -> ../init.d/anacron S97yum-updatesd -> ../init.d/yum-updatesd S99local -> ../rc.local S99opsview -> ../init.d/opsview S99opsview-agent -> ../init.d/opsview-agent S99opsview-web -> ../init.d/opsview-web S99smartd -> ../init.d/smartd
K01dnsmasq -> ../init.d/dnsmasq K02NetworkManager -> ../init.d/NetworkManager K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K12dc_client -> ../init.d/dc_client K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K69rpcsvcgssd -> ../init.d/rpcsvcgssd K73ypbind -> ../init.d/ypbind K74ipmi -> ../init.d/ipmi K74nscd -> ../init.d/nscd K85mdmpd -> ../init.d/mdmpd K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K91capi -> ../init.d/capi K99readahead_later -> ../init.d/readahead_later S00microcode_ctl -> ../init.d/microcode_ctl S04readahead_early -> ../init.d/readahead_early S05kudzu -> ../init.d/kudzu S07iscsid -> ../init.d/iscsid S08ip6tables -> ../init.d/ip6tables S08iptables -> ../init.d/iptables S08mcstrans -> ../init.d/mcstrans S09isdn -> ../init.d/isdn S10network -> ../init.d/network S11auditd -> ../init.d/auditd S12restorecond -> ../init.d/restorecond S12syslog -> ../init.d/syslog S13cpuspeed -> ../init.d/cpuspeed S13irqbalance -> ../init.d/irqbalance S13iscsi -> ../init.d/iscsi S13portmap -> ../init.d/portmap S14nfslock -> ../init.d/nfslock S15mdmonitor -> ../init.d/mdmonitor S18rpcidmapd -> ../init.d/rpcidmapd S19rpcgssd -> ../init.d/rpcgssd S20hypervkvpd -> ../init.d/hypervkvpd S22messagebus -> ../init.d/messagebus S25bluetooth -> ../init.d/bluetooth S25netfs -> ../init.d/netfs S25pcscd -> ../init.d/pcscd S26acpid -> ../init.d/acpid S26haldaemon -> ../init.d/haldaemon S26hidd -> ../init.d/hidd S26lm_sensors -> ../init.d/lm_sensors S26lvm2-monitor -> ../init.d/lvm2-monitor S28autofs -> ../init.d/autofs S55sshd -> ../init.d/sshd S56rawdevices -> ../init.d/rawdevices S56xinetd -> ../init.d/xinetd S64mysqld -> ../init.d/mysqld S85gpm -> ../init.d/gpm S90crond -> ../init.d/crond S90xfs -> ../init.d/xfs S95anacron -> ../init.d/anacron S95atd -> ../init.d/atd S97yum-updatesd -> ../init.d/yum-updatesd S98avahi-daemon -> ../init.d/avahi-daemon S99firstboot -> ../init.d/firstboot S99local -> ../rc.local S99opsview -> ../init.d/opsview S99opsview-agent -> ../init.d/opsview-agent S99opsview-web -> ../init.d/opsview-web S99smartd -> ../init.d/smartd
K01dnsmasq -> ../init.d/dnsmasq K02NetworkManager -> ../init.d/NetworkManager K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K12dc_client -> ../init.d/dc_client K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K69rpcsvcgssd -> ../init.d/rpcsvcgssd K73ypbind -> ../init.d/ypbind K74ipmi -> ../init.d/ipmi K74nscd -> ../init.d/nscd K85mdmpd -> ../init.d/mdmpd K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K91capi -> ../init.d/capi K95firstboot -> ../init.d/firstboot K99readahead_later -> ../init.d/readahead_later S00microcode_ctl -> ../init.d/microcode_ctl S04readahead_early -> ../init.d/readahead_early S05kudzu -> ../init.d/kudzu S07iscsid -> ../init.d/iscsid S08ip6tables -> ../init.d/ip6tables S08iptables -> ../init.d/iptables S08mcstrans -> ../init.d/mcstrans S09isdn -> ../init.d/isdn S10network -> ../init.d/network S11auditd -> ../init.d/auditd S12restorecond -> ../init.d/restorecond S12syslog -> ../init.d/syslog S13cpuspeed -> ../init.d/cpuspeed S13irqbalance -> ../init.d/irqbalance S13iscsi -> ../init.d/iscsi S13portmap -> ../init.d/portmap S14nfslock -> ../init.d/nfslock S15mdmonitor -> ../init.d/mdmonitor S18rpcidmapd -> ../init.d/rpcidmapd S19rpcgssd -> ../init.d/rpcgssd S20hypervkvpd -> ../init.d/hypervkvpd S22messagebus -> ../init.d/messagebus S25bluetooth -> ../init.d/bluetooth S25netfs -> ../init.d/netfs S25pcscd -> ../init.d/pcscd S26acpid -> ../init.d/acpid S26haldaemon -> ../init.d/haldaemon S26hidd -> ../init.d/hidd S26lm_sensors -> ../init.d/lm_sensors S26lvm2-monitor -> ../init.d/lvm2-monitor S28autofs -> ../init.d/autofs S55sshd -> ../init.d/sshd S56rawdevices -> ../init.d/rawdevices S56xinetd -> ../init.d/xinetd S64mysqld -> ../init.d/mysqld S85gpm -> ../init.d/gpm S90crond -> ../init.d/crond S90xfs -> ../init.d/xfs S95anacron -> ../init.d/anacron S95atd -> ../init.d/atd S97yum-updatesd -> ../init.d/yum-updatesd S98avahi-daemon -> ../init.d/avahi-daemon S99local -> ../rc.local S99opsview -> ../init.d/opsview S99opsview-agent -> ../init.d/opsview-agent S99opsview-web -> ../init.d/opsview-web S99smartd -> ../init.d/smartd
K01dnsmasq -> ../init.d/dnsmasq K02NetworkManager -> ../init.d/NetworkManager K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K12dc_client -> ../init.d/dc_client K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K69rpcsvcgssd -> ../init.d/rpcsvcgssd K73ypbind -> ../init.d/ypbind K74ipmi -> ../init.d/ipmi K74nscd -> ../init.d/nscd K85mdmpd -> ../init.d/mdmpd K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K91capi -> ../init.d/capi S00microcode_ctl -> ../init.d/microcode_ctl S04readahead_early -> ../init.d/readahead_early S05kudzu -> ../init.d/kudzu S07iscsid -> ../init.d/iscsid S08ip6tables -> ../init.d/ip6tables S08iptables -> ../init.d/iptables S08mcstrans -> ../init.d/mcstrans S09isdn -> ../init.d/isdn S10network -> ../init.d/network S11auditd -> ../init.d/auditd S12restorecond -> ../init.d/restorecond S12syslog -> ../init.d/syslog S13cpuspeed -> ../init.d/cpuspeed S13irqbalance -> ../init.d/irqbalance S13iscsi -> ../init.d/iscsi S13portmap -> ../init.d/portmap S14nfslock -> ../init.d/nfslock S15mdmonitor -> ../init.d/mdmonitor S18rpcidmapd -> ../init.d/rpcidmapd S19rpcgssd -> ../init.d/rpcgssd S20hypervkvpd -> ../init.d/hypervkvpd S22messagebus -> ../init.d/messagebus S25bluetooth -> ../init.d/bluetooth S25netfs -> ../init.d/netfs S25pcscd -> ../init.d/pcscd S26acpid -> ../init.d/acpid S26haldaemon -> ../init.d/haldaemon S26hidd -> ../init.d/hidd S26lm_sensors -> ../init.d/lm_sensors S26lvm2-monitor -> ../init.d/lvm2-monitor S28autofs -> ../init.d/autofs S55sshd -> ../init.d/sshd S56rawdevices -> ../init.d/rawdevices S56xinetd -> ../init.d/xinetd S64mysqld -> ../init.d/mysqld S85gpm -> ../init.d/gpm S90crond -> ../init.d/crond S90xfs -> ../init.d/xfs S95anacron -> ../init.d/anacron S95atd -> ../init.d/atd S96readahead_later -> ../init.d/readahead_later S97yum-updatesd -> ../init.d/yum-updatesd S98avahi-daemon -> ../init.d/avahi-daemon S99firstboot -> ../init.d/firstboot S99local -> ../rc.local S99opsview -> ../init.d/opsview S99opsview-agent -> ../init.d/opsview-agent S99opsview-web -> ../init.d/opsview-web S99smartd -> ../init.d/smartd
K01dnsmasq -> ../init.d/dnsmasq K01opsview -> ../init.d/opsview K01opsview-agent -> ../init.d/opsview-agent K01opsview-web -> ../init.d/opsview-web K01smartd -> ../init.d/smartd K02NetworkManager -> ../init.d/NetworkManager K02avahi-daemon -> ../init.d/avahi-daemon K02avahi-dnsconfd -> ../init.d/avahi-dnsconfd K02oddjobd -> ../init.d/oddjobd K03yum-updatesd -> ../init.d/yum-updatesd K05anacron -> ../init.d/anacron K05atd -> ../init.d/atd K05conman -> ../init.d/conman K05innd -> ../init.d/innd K05saslauthd -> ../init.d/saslauthd K10dc_server -> ../init.d/dc_server K10psacct -> ../init.d/psacct K10rrdcached -> ../init.d/rrdcached K10xfs -> ../init.d/xfs K12dc_client -> ../init.d/dc_client K15gpm -> ../init.d/gpm K15httpd -> ../init.d/httpd K20nfs -> ../init.d/nfs K20rwhod -> ../init.d/rwhod K24irda -> ../init.d/irda K25squid -> ../init.d/squid K25sshd -> ../init.d/sshd K30spamassassin -> ../init.d/spamassassin K35dovecot -> ../init.d/dovecot K35smb -> ../init.d/smb K35winbind -> ../init.d/winbind K36mysqld -> ../init.d/mysqld K44rawdevices -> ../init.d/rawdevices K50netconsole -> ../init.d/netconsole K50snmpd -> ../init.d/snmpd K50snmptrapd -> ../init.d/snmptrapd K50tux -> ../init.d/tux K50vsftpd -> ../init.d/vsftpd K50xinetd -> ../init.d/xinetd K60crond -> ../init.d/crond K69rpcsvcgssd -> ../init.d/rpcsvcgssd K72autofs -> ../init.d/autofs K73ypbind -> ../init.d/ypbind K74acpid -> ../init.d/acpid K74haldaemon -> ../init.d/haldaemon K74ipmi -> ../init.d/ipmi K74lm_sensors -> ../init.d/lm_sensors K74lvm2-monitor -> ../init.d/lvm2-monitor K74nscd -> ../init.d/nscd K75netfs -> ../init.d/netfs K80hypervkvpd -> ../init.d/hypervkvpd K85mdmonitor -> ../init.d/mdmonitor K85mdmpd -> ../init.d/mdmpd K85messagebus -> ../init.d/messagebus K85rpcgssd -> ../init.d/rpcgssd K85rpcidmapd -> ../init.d/rpcidmapd K86nfslock -> ../init.d/nfslock K87irqbalance -> ../init.d/irqbalance K87mcstrans -> ../init.d/mcstrans K87multipathd -> ../init.d/multipathd K87named -> ../init.d/named K87portmap -> ../init.d/portmap K87restorecond -> ../init.d/restorecond K88auditd -> ../init.d/auditd K88pcscd -> ../init.d/pcscd K88syslog -> ../init.d/syslog K88wpa_supplicant -> ../init.d/wpa_supplicant K89dund -> ../init.d/dund K89hidd -> ../init.d/hidd K89iscsi -> ../init.d/iscsi K89iscsid -> ../init.d/iscsid K89netplugd -> ../init.d/netplugd K89pand -> ../init.d/pand K89rdisc -> ../init.d/rdisc K90bluetooth -> ../init.d/bluetooth K90network -> ../init.d/network K91capi -> ../init.d/capi K91isdn -> ../init.d/isdn K92ip6tables -> ../init.d/ip6tables K92iptables -> ../init.d/iptables K95firstboot -> ../init.d/firstboot K95kudzu -> ../init.d/kudzu K99cpuspeed -> ../init.d/cpuspeed K99microcode_ctl -> ../init.d/microcode_ctl K99readahead_early -> ../init.d/readahead_early K99readahead_later -> ../init.d/readahead_later S00killall -> ../init.d/killall S01reboot -> ../init.d/halt
NetworkManager 0:off 1:off 2:off 3:off 4:off 5:off 6:off acpid 0:off 1:off 2:on 3:on 4:on 5:on 6:off anacron 0:off 1:off 2:on 3:on 4:on 5:on 6:off atd 0:off 1:off 2:off 3:on 4:on 5:on 6:off auditd 0:off 1:off 2:on 3:on 4:on 5:on 6:off autofs 0:off 1:off 2:off 3:on 4:on 5:on 6:off avahi-daemon 0:off 1:off 2:off 3:on 4:on 5:on 6:off avahi-dnsconfd 0:off 1:off 2:off 3:off 4:off 5:off 6:off bluetooth 0:off 1:off 2:on 3:on 4:on 5:on 6:off capi 0:off 1:off 2:off 3:off 4:off 5:off 6:off conman 0:off 1:off 2:off 3:off 4:off 5:off 6:off cpuspeed 0:off 1:on 2:on 3:on 4:on 5:on 6:off crond 0:off 1:off 2:on 3:on 4:on 5:on 6:off dc_client 0:off 1:off 2:off 3:off 4:off 5:off 6:off dc_server 0:off 1:off 2:off 3:off 4:off 5:off 6:off dnsmasq 0:off 1:off 2:off 3:off 4:off 5:off 6:off dovecot 0:off 1:off 2:off 3:off 4:off 5:off 6:off dund 0:off 1:off 2:off 3:off 4:off 5:off 6:off firstboot 0:off 1:off 2:off 3:on 4:off 5:on 6:off gpm 0:off 1:off 2:on 3:on 4:on 5:on 6:off haldaemon 0:off 1:off 2:off 3:on 4:on 5:on 6:off hidd 0:off 1:off 2:on 3:on 4:on 5:on 6:off httpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off hypervkvpd 0:off 1:off 2:off 3:on 4:on 5:on 6:off innd 0:off 1:off 2:off 3:off 4:off 5:off 6:off ip6tables 0:off 1:off 2:on 3:on 4:on 5:on 6:off ipmi 0:off 1:off 2:off 3:off 4:off 5:off 6:off iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off irda 0:off 1:off 2:off 3:off 4:off 5:off 6:off irqbalance 0:off 1:off 2:on 3:on 4:on 5:on 6:off iscsi 0:off 1:off 2:off 3:on 4:on 5:on 6:off iscsid 0:off 1:off 2:off 3:on 4:on 5:on 6:off isdn 0:off 1:off 2:on 3:on 4:on 5:on 6:off kudzu 0:off 1:off 2:off 3:on 4:on 5:on 6:off lm_sensors 0:off 1:off 2:on 3:on 4:on 5:on 6:off lvm2-monitor 0:off 1:on 2:on 3:on 4:on 5:on 6:off mcstrans 0:off 1:off 2:on 3:on 4:on 5:on 6:off mdmonitor 0:off 1:off 2:on 3:on 4:on 5:on 6:off mdmpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off messagebus 0:off 1:off 2:off 3:on 4:on 5:on 6:off microcode_ctl 0:off 1:off 2:on 3:on 4:on 5:on 6:off multipathd 0:off 1:off 2:off 3:off 4:off 5:off 6:off mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off named 0:off 1:off 2:off 3:off 4:off 5:off 6:off netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off netfs 0:off 1:off 2:off 3:on 4:on 5:on 6:off netplugd 0:off 1:off 2:off 3:off 4:off 5:off 6:off network 0:off 1:off 2:on 3:on 4:on 5:on 6:off nfs 0:off 1:off 2:off 3:off 4:off 5:off 6:off nfslock 0:off 1:off 2:off 3:on 4:on 5:on 6:off nscd 0:off 1:off 2:off 3:off 4:off 5:off 6:off oddjobd 0:off 1:off 2:off 3:off 4:off 5:off 6:off opsview 0:off 1:off 2:on 3:on 4:on 5:on 6:off opsview-agent 0:off 1:off 2:on 3:on 4:on 5:on 6:off opsview-web 0:off 1:off 2:on 3:on 4:on 5:on 6:off pand 0:off 1:off 2:off 3:off 4:off 5:off 6:off pcscd 0:off 1:off 2:on 3:on 4:on 5:on 6:off portmap 0:off 1:off 2:off 3:on 4:on 5:on 6:off psacct 0:off 1:off 2:off 3:off 4:off 5:off 6:off rawdevices 0:off 1:off 2:off 3:on 4:on 5:on 6:off rdisc 0:off 1:off 2:off 3:off 4:off 5:off 6:off readahead_early 0:off 1:off 2:on 3:on 4:on 5:on 6:off readahead_later 0:off 1:off 2:off 3:off 4:off 5:on 6:off restorecond 0:off 1:off 2:on 3:on 4:on 5:on 6:off rpcgssd 0:off 1:off 2:off 3:on 4:on 5:on 6:off rpcidmapd 0:off 1:off 2:off 3:on 4:on 5:on 6:off rpcsvcgssd 0:off 1:off 2:off 3:off 4:off 5:off 6:off rrdcached 0:off 1:off 2:off 3:off 4:off 5:off 6:off rwhod 0:off 1:off 2:off 3:off 4:off 5:off 6:off saslauthd 0:off 1:off 2:off 3:off 4:off 5:off 6:off smartd 0:off 1:off 2:on 3:on 4:on 5:on 6:off smb 0:off 1:off 2:off 3:off 4:off 5:off 6:off snmpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off snmptrapd 0:off 1:off 2:off 3:off 4:off 5:off 6:off spamassassin 0:off 1:off 2:off 3:off 4:off 5:off 6:off squid 0:off 1:off 2:off 3:off 4:off 5:off 6:off sshd 0:off 1:off 2:on 3:on 4:on 5:on 6:off syslog 0:off 1:off 2:on 3:on 4:on 5:on 6:off tux 0:off 1:off 2:off 3:off 4:off 5:off 6:off vsftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off winbind 0:off 1:off 2:off 3:off 4:off 5:off 6:off wpa_supplicant 0:off 1:off 2:off 3:off 4:off 5:off 6:off xfs 0:off 1:off 2:on 3:on 4:on 5:on 6:off xinetd 0:off 1:off 2:off 3:on 4:on 5:on 6:off ypbind 0:off 1:off 2:off 3:off 4:off 5:off 6:off yum-updatesd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
/lib64/iptables/libipt_REJECT.so /lib64/iptables/libipt_icmp.so /lib64/iptables/libipt_standard.so /lib64/iptables/libipt_state.so /lib64/iptables/libipt_tcp.so /lib64/iptables/libipt_udp.so /lib64/ld-linux-x86-64.so.2 /lib64/libacl.so.1 /lib64/libasound.so.2 /lib64/libattr.so.1 /lib64/libaudit.so.0 /lib64/libblkid.so.1 /lib64/libc.so.6 /lib64/libcom_err.so.2 /lib64/libcrypt.so.1 /lib64/libcrypto.so.6 /lib64/libdb-4.3.so /lib64/libdbus-1.so.3 /lib64/libdl.so.2 /lib64/libexpat.so.0 /lib64/libglib-2.0.so.0 /lib64/libgmodule-2.0.so.0 /lib64/libgobject-2.0.so.0 /lib64/libgthread-2.0.so.0 /lib64/libiw.so.28 /lib64/libm.so.6 /lib64/libnsl.so.1 /lib64/libnss_dns.so.2 /lib64/libnss_files.so.2 /lib64/libnss_hesiod.so.2 /lib64/libpam.so.0 /lib64/libpam_misc.so.0 /lib64/libpcre.so.0 /lib64/libproc-3.2.7.so /lib64/libpthread.so.0 /lib64/libresolv.so.2 /lib64/librt.so.1 /lib64/libselinux.so.1 /lib64/libssl.so.6 /lib64/libtermcap.so.2 /lib64/libutil.so.1 /lib64/libuuid.so.1 /lib64/security/../../lib/security/pam_cracklib.so /lib64/security/../../lib/security/pam_deny.so /lib64/security/../../lib/security/pam_env.so /lib64/security/../../lib/security/pam_krb5.so /lib64/security/../../lib/security/pam_limits.so /lib64/security/../../lib/security/pam_permit.so /lib64/security/../../lib/security/pam_succeed_if.so /lib64/security/../../lib/security/pam_unix.so /lib64/security/pam_console.so /lib64/security/pam_deny.so /lib64/security/pam_env.so /lib64/security/pam_nologin.so /lib64/security/pam_securetty.so /lib64/security/pam_selinux.so /lib64/security/pam_stack.so /lib/udev/MAKEDEV.dev /lib/udev/check-cdrom.sh /lib/udev/ide-media.sh /lib/udev/pam_console.dev /bin/awk /bin/basename /bin/bash /bin/cat /bin/chgrp /bin/chmod /bin/chown /bin/cut /bin/date /bin/dbus-daemon /bin/dd /bin/dmesg /bin/egrep /bin/fgrep /bin/grep /bin/gzip /bin/hostname /bin/ipcalc /bin/loadkeys /bin/login /bin/ls /bin/mkdir /bin/mktemp /bin/mount /bin/nice /bin/rm /bin/sed /bin/sh /bin/sleep /bin/sort /bin/touch /bin/true /bin/umount /bin/uname /etc/DIR_COLORS /etc/X11/Xresources /etc/X11/fs/config /etc/X11/gdm/Init/:0 /etc/X11/gdm/gdm.conf /etc/X11/prefdm /etc/X11/xdm/Xsetup_0 /etc/X11/xorg.conf /etc/acpi/events/power.conf /etc/acpi/events/video.conf /etc/aliases /etc/aliases.db /etc/alsa/alsa.conf /etc/anacrontab /etc/asound.state /etc/auto.master /etc/bashrc /etc/blkid/blkid.tab /etc/bluetooth/hcid.conf /etc/bluetooth/rfcomm.conf /etc/cpuspeed.conf /etc/crontab /etc/cups/classes.conf /etc/cups/cupsd.conf /etc/cups/mime.convs /etc/cups/mime.types /etc/cups/printers.conf /etc/cups/pstoraster.convs /etc/dbus-1/system.conf /etc/dbus-1/system.d/NetworkManager.conf /etc/dbus-1/system.d/cups.conf /etc/dbus-1/system.d/hal.conf /etc/dbus-1/system.d/printdriverselector.conf /etc/fonts/fonts.conf /etc/fstab /etc/group /etc/gtk-2.0/gtkrc /etc/gtk-2.0/i686-redhat-linux-gnu/gdk-pixbuf.loaders /etc/gtk-2.0/i686-redhat-linux-gnu/gtk.immodules /etc/host.conf /etc/hosts /etc/idmapd.conf /etc/init.d/functions /etc/inittab /etc/inputrc /etc/iproute2/rt_scopes /etc/issue /etc/krb5.conf /etc/ld.so.cache /etc/localtime /etc/lvm/lvm.conf /etc/mail/Makefile /etc/mail/local-host-names /etc/mail/sendmail.cf /etc/mail/submit.cf /etc/mail/trusted-users /etc/makedev.d/00macros /etc/makedev.d/01alsa /etc/makedev.d/01cciss /etc/makedev.d/01cdrom /etc/makedev.d/01console /etc/makedev.d/01dac960 /etc/makedev.d/01ftape /etc/makedev.d/01generic /etc/makedev.d/01ia64 /etc/makedev.d/01ibcs /etc/makedev.d/01ida /etc/makedev.d/01ide /etc/makedev.d/01ipfilter /etc/makedev.d/01isdn /etc/makedev.d/01linux-2.6.x /etc/makedev.d/01linux1394 /etc/makedev.d/01mouse /etc/makedev.d/01qic /etc/makedev.d/01raid /etc/makedev.d/01redhat /etc/makedev.d/01s390 /etc/makedev.d/01sound /etc/makedev.d/01std /etc/makedev.d/01undocumented /etc/makedev.d/01v4l /etc/modprobe.conf /etc/modprobe.d/modprobe.conf.dist /etc/motd /etc/mtab /etc/nsswitch.conf /etc/openldap/ldap.conf /etc/pam.d/gdm /etc/pam.d/login /etc/pam.d/other /etc/pam.d/system-auth /etc/pango/i686-redhat-linux-gnu/pango.modules /etc/passwd /etc/pcmcia/config.opts /etc/printcap /etc/profile /etc/profile.d/colorls.sh /etc/profile.d/glib2.sh /etc/profile.d/gnome-ssh-askpass.sh /etc/profile.d/krb5.sh /etc/profile.d/lang.sh /etc/profile.d/less.sh /etc/profile.d/which-2.sh /etc/protocols /etc/rc.d/init.d/bluetooth /etc/rc.d/init.d/crond /etc/rc.d/init.d/cups /etc/rc.d/init.d/cups-config-daemon /etc/rc.d/init.d/functions /etc/rc.d/init.d/haldaemon /etc/rc.d/init.d/messagebus /etc/rc.d/init.d/nfslock /etc/rc.d/init.d/rpcidmapd /etc/rc.d/rc /etc/rc.d/rc.sysinit /etc/rc.d/rc5.d/S14nfslock /etc/rc.d/rc5.d/S18rpcidmapd /etc/rc.d/rc5.d/S22messagebus /etc/rc.d/rc5.d/S25bluetooth /etc/rc.d/rc5.d/S55cups /etc/rc.d/rc5.d/S90crond /etc/rc.d/rc5.d/S98haldaemon /etc/rc5.d/K05saslauthd /etc/rc5.d/K10psacct /etc/rc5.d/K20nfs /etc/rc5.d/K24irda /etc/rc5.d/K30spamassassin /etc/rc5.d/K35vncserver /etc/rc5.d/K35winbind /etc/rc5.d/K50netdump /etc/rc5.d/K69rpcsvcgssd /etc/rc5.d/K73ypbind /etc/rc5.d/K74nscd /etc/rc5.d/K74ntpd /etc/rc5.d/K85mdmpd /etc/rc5.d/K87named /etc/rc5.d/K89netplugd /etc/rc5.d/K89rdisc /etc/rc5.d/K94diskdump /etc/rc5.d/S05kudzu /etc/rc5.d/S06cpuspeed /etc/rc5.d/S08iptables /etc/rc5.d/S09isdn /etc/rc5.d/S09pcmcia /etc/rc5.d/S10network /etc/rc5.d/S12syslog /etc/rc5.d/S13portmap /etc/rc5.d/S14nfslock /etc/rc5.d/S15mdmonitor /etc/rc5.d/S18rpcidmapd /etc/rc5.d/S19rpcgssd /etc/rc5.d/S22messagebus /etc/rc5.d/S25bluetooth /etc/rc5.d/S25netfs /etc/rc5.d/S28autofs /etc/rc5.d/S33nifd /etc/rc5.d/S44acpid /etc/rc5.d/S55cups /etc/rc5.d/S55sshd /etc/rc5.d/S80sendmail /etc/rc5.d/S85gpm /etc/rc5.d/S90crond /etc/rc5.d/S90xfs /etc/rc5.d/S95anacron /etc/rc5.d/S95atd /etc/rc5.d/S97rhnsd /etc/rc5.d/S98cups-config-daemon /etc/rc5.d/S98haldaemon /etc/rc5.d/S99firstboot /etc/rc5.d/S99local /etc/redhat-release /etc/resolv.conf /etc/rpc /etc/securetty /etc/security/console.perms /etc/security/console.perms.d/50-default.perms /etc/security/limits.conf /etc/security/pam_env.conf /etc/selinux/config /etc/selinux/targeted/contexts/customizable_types /etc/selinux/targeted/contexts/dbus_contexts /etc/selinux/targeted/contexts/default_contexts /etc/selinux/targeted/contexts/files/file_contexts /etc/selinux/targeted/contexts/files/file_contexts.homedirs /etc/selinux/targeted/contexts/files/media /etc/selinux/targeted/contexts/removable_context /etc/selinux/targeted/contexts/users/root /etc/services /etc/shadow /etc/ssh/ssh_host_dsa_key /etc/ssh/ssh_host_key /etc/ssh/ssh_host_rsa_key /etc/ssh/sshd_config /etc/sysconfig/autofs /etc/sysconfig/bluetooth /etc/sysconfig/crond /etc/sysconfig/desktop /etc/sysconfig/firstboot /etc/sysconfig/hwconf /etc/sysconfig/i18n /etc/sysconfig/init /etc/sysconfig/iptables /etc/sysconfig/iptables-config /etc/sysconfig/keyboard /etc/sysconfig/kudzu /etc/sysconfig/mouse /etc/sysconfig/network /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-lo /etc/sysconfig/network-scripts/ifup-aliases /etc/sysconfig/network-scripts/ifup-eth /etc/sysconfig/network-scripts/ifup-post /etc/sysconfig/network-scripts/ifup-routes /etc/sysconfig/network-scripts/network-functions /etc/sysconfig/pcmcia /etc/sysconfig/sendmail /etc/sysconfig/syslog /etc/sysctl.conf /etc/syslog.conf /etc/termcap /etc/udev/rules.d/50-udev.rules /etc/udev/rules.d/60-wacom.rules /etc/udev/udev.conf /lib/kbd/keymaps/amiga/amiga-de.map.gz /lib/kbd/keymaps/amiga/amiga-us.map.gz /lib/kbd/keymaps/atari/atari-de.map.gz /lib/kbd/keymaps/atari/atari-se.map.gz /lib/kbd/keymaps/atari/atari-uk-falcon.map.gz /lib/kbd/keymaps/atari/atari-us.map.gz /lib/kbd/keymaps/i386/qwerty/../../include/compose.latin1 /lib/kbd/keymaps/i386/qwerty/../include/compose.inc /lib/kbd/keymaps/i386/qwerty/../include/euro1.map.gz /lib/kbd/keymaps/i386/qwerty/../include/linux-keys-bare.inc /lib/kbd/keymaps/i386/qwerty/../include/linux-with-alt-and-altgr.inc /lib/kbd/keymaps/i386/qwerty/../include/qwerty-layout.inc /lib/kbd/keymaps/i386/qwerty/us.map.gz /sbin/MAKEDEV /sbin/alsactl /sbin/arping /sbin/auditctl /sbin/pccardctl /sbin/change_console /sbin/consoletype /sbin/dhclient /sbin/ethtool /sbin/findfs /sbin/fixfiles /sbin/fsck /sbin/fsck.ext3 /sbin/getkey /sbin/hwclock /sbin/ifconfig /sbin/ifenslave /sbin/insmod /sbin/ip /sbin/iptables /sbin/iptables-restore /sbin/iwconfig /sbin/klogd /sbin/kmodule /sbin/lsmod /sbin/lvm.static /sbin/mingetty /sbin/modprobe /sbin/nash /sbin/pam_console_apply /sbin/pidof /sbin/portmap /sbin/poweroff /sbin/quotaon /sbin/reboot /sbin/restorecon /sbin/rpc.statd /sbin/runlevel /sbin/runuser /sbin/start_udev /sbin/swapon /sbin/sysctl /sbin/syslogd /sbin/udevd /sbin/udevstart /sbin/vconfig /usr/lib64/autofs/lookup_ldap.so /usr/lib64/autofs/mount_bind.so /usr/lib64/autofs/mount_nfs.so /usr/lib64/autofs/parse_sun.so /usr/lib/cups/backend/hal /usr/lib/cups/backend/http /usr/lib/cups/backend/ipp /usr/lib/cups/backend/lpd /usr/lib/cups/backend/ncp /usr/lib/cups/backend/parallel /usr/lib/cups/backend/scsi /usr/lib/cups/backend/serial /usr/lib/cups/backend/smb /usr/lib/cups/backend/socket /usr/lib/cups/backend/usb /usr/lib/cups/filter/hpgltops /usr/lib/cups/filter/imagetops /usr/lib/cups/filter/imagetoraster /usr/lib/cups/filter/pdftops /usr/lib/cups/filter/pstops /usr/lib/cups/filter/pstoraster /usr/lib/cups/filter/texttops /usr/lib64/gconv/ISO8859-1.so /usr/lib64/gconv/gconv-modules.cache /usr/lib64/gtk-2.0/2.10.0/engines/libclearlooks.so /usr/lib64/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so /usr/lib64/libICE.so.6 /usr/lib64/libORBit-2.so.0 /usr/lib64/libORBitCosNaming-2.so.0 /usr/lib64/libSM.so.6 /usr/lib64/libX11.so.6 /usr/lib64/libXcursor.so.1 /usr/lib64/libXext.so.6 /usr/lib64/libXfixes.so.3 /usr/lib64/libXfont.so.1 /usr/lib64/libXft.so.2 /usr/lib64/libXi.so.6 /usr/lib64/libXinerama.so.1 /usr/lib64/libXmuu.so.1 /usr/lib64/libXrandr.so.2 /usr/lib64/libXrender.so.1 /usr/lib64/libalchemist.so.0 /usr/lib64/libart_lgpl_2.so.2 /usr/lib64/libatk-1.0.so.0 /usr/lib64/libbluetooth.so.2 /usr/lib64/libbonobo-2.so.0 /usr/lib64/libbonobo-activation.so.4 /usr/lib64/libbz2.so.1 /usr/lib64/libcrack.so.2 /usr/lib64/libcroco-0.6.so.3 /usr/lib64/libcups.so.2 /usr/lib64/libdbus-glib-1.so.2 /usr/lib64/libdes425.so.3 /usr/lib64/libfontconfig.so.1 /usr/lib64/libfreetype.so.6 /usr/lib64/libgconf-2.so.4 /usr/lib64/libgdk-x11-2.0.so.0 /usr/lib64/libgdk_pixbuf-2.0.so.0 /usr/lib64/libgnomecanvas-2.so.0 /usr/lib64/libgnomevfs-2.so.0 /usr/lib64/libgsf-1.so.114 /usr/lib64/libgssapi_krb5.so.2 /usr/lib64/libgtk-x11-2.0.so.0 /usr/lib64/libhal-storage.so.1 /usr/lib64/libhal.so.1 /usr/lib64/libhesiod.so.0 /usr/lib64/libk5crypto.so.3 /usr/lib64/libkrb4.so.2 /usr/lib64/libkrb5.so.3 /usr/lib64/libkrb5support.so.0 /usr/lib64/liblber-2.3.so.0 /usr/lib64/libldap-2.3.so.0 /usr/lib64/libncurses.so.5 /usr/lib64/libpango-1.0.so.0 /usr/lib64/libpangoft2-1.0.so.0 /usr/lib64/libpangox-1.0.so.0 /usr/lib64/libpangoxft-1.0.so.0 /usr/lib64/libpng12.so.0 /usr/lib64/libpopt.so.0 /usr/lib64/libpython2.4.so.1.0 /usr/lib64/librsvg-2.so.2 /usr/lib64/libsasl2.so.2 /usr/lib64/libusb-0.1.so.4 /usr/lib64/libvte.so.9 /usr/lib64/libwrap.so.0 /usr/lib64/libxkbfile.so.1 /usr/lib64/libxml2.so.2 /usr/lib64/libz.so.1 /usr/lib/locale/locale-archive /usr/lib64/pango/1.5.0/modules/pango-basic-fc.so /usr/lib64/python2.4/UserDict.py /usr/lib64/python2.4/UserDict.pyo /usr/lib64/python2.4/codecs.py /usr/lib64/python2.4/codecs.pyo /usr/lib64/python2.4/copy.py /usr/lib64/python2.4/copy.pyo /usr/lib64/python2.4/copy_reg.py /usr/lib64/python2.4/copy_reg.pyo /usr/lib64/python2.4/dis.py /usr/lib64/python2.4/dis.pyo /usr/lib64/python2.4/encodings/__init__.py /usr/lib64/python2.4/encodings/__init__.pyo /usr/lib64/python2.4/encodings/aliases.py /usr/lib64/python2.4/encodings/aliases.pyo /usr/lib64/python2.4/encodings/latin_1.py /usr/lib64/python2.4/encodings/latin_1.pyo /usr/lib64/python2.4/fnmatch.py /usr/lib64/python2.4/fnmatch.pyo /usr/lib64/python2.4/getopt.py /usr/lib64/python2.4/getopt.pyo /usr/lib64/python2.4/gettext.py /usr/lib64/python2.4/gettext.pyo /usr/lib64/python2.4/glob.py /usr/lib64/python2.4/glob.pyo /usr/lib64/python2.4/inspect.py /usr/lib64/python2.4/inspect.pyo /usr/lib64/python2.4/lib-dynload/_localemodule.so /usr/lib64/python2.4/lib-dynload/cPickle.so /usr/lib64/python2.4/lib-dynload/cStringIO.so /usr/lib64/python2.4/lib-dynload/grpmodule.so /usr/lib64/python2.4/lib-dynload/pwdmodule.so /usr/lib64/python2.4/lib-dynload/pyexpat.so /usr/lib64/python2.4/lib-dynload/stropmodule.so /usr/lib64/python2.4/lib-dynload/structmodule.so /usr/lib64/python2.4/lib-dynload/timemodule.so /usr/lib64/python2.4/lib-dynload/zlibmodule.so /usr/lib64/python2.4/linecache.py /usr/lib64/python2.4/linecache.pyo /usr/lib64/python2.4/locale.py /usr/lib64/python2.4/locale.pyo /usr/lib64/python2.4/opcode.py /usr/lib64/python2.4/opcode.pyo /usr/lib64/python2.4/os.py /usr/lib64/python2.4/os.pyo /usr/lib64/python2.4/posixpath.py /usr/lib64/python2.4/posixpath.pyo /usr/lib64/python2.4/re.py /usr/lib64/python2.4/re.pyo /usr/lib64/python2.4/site-packages/_xmlplus/__init__.py /usr/lib64/python2.4/site-packages/_xmlplus/__init__.pyo /usr/lib64/python2.4/site-packages/_xmlplus/utils/__init__.py /usr/lib64/python2.4/site-packages/_xmlplus/utils/__init__.pyo /usr/lib64/python2.4/site-packages/_xmlplus/utils/qp_xml.py /usr/lib64/python2.4/site-packages/_xmlplus/utils/qp_xml.pyo /usr/lib64/python2.4/site-packages/japanese.pth /usr/lib64/python2.4/site-packages/japanese/__init__.py /usr/lib64/python2.4/site-packages/japanese/__init__.pyo /usr/lib64/python2.4/site-packages/japanese/aliases/__init__.py /usr/lib64/python2.4/site-packages/japanese/aliases/__init__.pyo /usr/lib64/python2.4/site-packages/pyalchemist.so /usr/lib64/python2.4/site-packages/pyalchemist_python.py /usr/lib64/python2.4/site-packages/pyalchemist_python.pyo /usr/lib64/python2.4/site-packages/pygtk.pth /usr/lib64/python2.4/site-packages/rhpl/__init__.py /usr/lib64/python2.4/site-packages/rhpl/__init__.pyo /usr/lib64/python2.4/site-packages/rhpl/_translate.so /usr/lib64/python2.4/site-packages/rhpl/ethtool.so /usr/lib64/python2.4/site-packages/rhpl/gzread.py /usr/lib64/python2.4/site-packages/rhpl/gzread.pyo /usr/lib64/python2.4/site-packages/rhpl/iconv.so /usr/lib64/python2.4/site-packages/rhpl/translate.py /usr/lib64/python2.4/site-packages/rhpl/translate.pyo /usr/lib64/python2.4/site.py /usr/lib64/python2.4/site.pyo /usr/lib64/python2.4/sre.py /usr/lib64/python2.4/sre.pyo /usr/lib64/python2.4/sre_compile.py /usr/lib64/python2.4/sre_compile.pyo /usr/lib64/python2.4/sre_constants.py /usr/lib64/python2.4/sre_constants.pyo /usr/lib64/python2.4/sre_parse.py /usr/lib64/python2.4/sre_parse.pyo /usr/lib64/python2.4/stat.py /usr/lib64/python2.4/stat.pyo /usr/lib64/python2.4/string.py /usr/lib64/python2.4/string.pyo /usr/lib64/python2.4/token.py /usr/lib64/python2.4/token.pyo /usr/lib64/python2.4/tokenize.py /usr/lib64/python2.4/tokenize.pyo /usr/lib64/python2.4/types.py /usr/lib64/python2.4/types.pyo /usr/lib64/python2.4/warnings.py /usr/lib64/python2.4/warnings.pyo /usr/lib64/python2.4/xml/__init__.py /usr/lib64/python2.4/xml/__init__.pyo /usr/lib64/sasl2/Sendmail.conf /usr/lib64/sasl2/libanonymous.la /usr/lib64/sasl2/libanonymous.so.2 /usr/lib64/sasl2/liblogin.la /usr/lib64/sasl2/liblogin.so.2 /usr/lib64/sasl2/libplain.la /usr/lib64/sasl2/libplain.so.2 /usr/lib64/sasl2/libsasldb.la /usr/lib64/sasl2/libsasldb.so.2 /usr/lib64/vte/gnome-pty-helper /usr/lib64/xorg/modules/drivers/apm_drv.so /usr/lib64/xorg/modules/drivers/ark_drv.so /usr/lib64/xorg/modules/drivers/ati_drv.so /usr/lib64/xorg/modules/drivers/atimisc_drv.so /usr/lib64/xorg/modules/drivers/chips_drv.so /usr/lib64/xorg/modules/drivers/cirrus_alpine.so /usr/lib64/xorg/modules/drivers/cirrus_drv.so /usr/lib64/xorg/modules/drivers/cirrus_laguna.so /usr/lib64/xorg/modules/drivers/cyrix_drv.so /usr/lib64/xorg/modules/drivers/dummy_drv.so /usr/lib64/xorg/modules/drivers/fbdev_drv.so /usr/lib64/xorg/modules/drivers/glint_drv.so /usr/lib64/xorg/modules/drivers/i128_drv.so /usr/lib64/xorg/modules/drivers/i810_drv.so /usr/lib64/xorg/modules/drivers/mga_drv.so /usr/lib64/xorg/modules/drivers/neomagic_drv.so /usr/lib64/xorg/modules/drivers/nv_drv.so /usr/lib64/xorg/modules/drivers/r128_drv.so /usr/lib64/xorg/modules/drivers/radeon_drv.so /usr/lib64/xorg/modules/drivers/rendition_drv.so /usr/lib64/xorg/modules/drivers/riva128.so /usr/lib64/xorg/modules/drivers/s3_drv.so /usr/lib64/xorg/modules/drivers/s3virge_drv.so /usr/lib64/xorg/modules/drivers/savage_drv.so /usr/lib64/xorg/modules/drivers/siliconmotion_drv.so /usr/lib64/xorg/modules/drivers/sis_drv.so /usr/lib64/xorg/modules/drivers/tdfx_drv.so /usr/lib64/xorg/modules/drivers/tga_drv.so /usr/lib64/xorg/modules/drivers/trident_drv.so /usr/lib64/xorg/modules/drivers/tseng_drv.so /usr/lib64/xorg/modules/drivers/v4l_drv.so /usr/lib64/xorg/modules/drivers/vesa_drv.so /usr/lib64/xorg/modules/drivers/vga_drv.so /usr/lib64/xorg/modules/drivers/vmware_drv.so /usr/lib64/xorg/modules/extensions/libGLcore.so /usr/lib64/xorg/modules/extensions/libdbe.so /usr/lib64/xorg/modules/extensions/libdri.so /usr/lib64/xorg/modules/extensions/libextmod.so /usr/lib64/xorg/modules/extensions/libglx.so /usr/lib64/xorg/modules/extensions/librecord.so /usr/lib64/xorg/modules/extensions/libvnc.so /usr/lib64/xorg/modules/extensions/libxtrap.so /usr/lib64/xorg/modules/fonts/libbitmap.so /usr/lib64/xorg/modules/fonts/libfreetype.so /usr/lib64/xorg/modules/fonts/libtype1.so /usr/lib64/xorg/modules/input/acecad_drv.so /usr/lib64/xorg/modules/input/aiptek_drv.so /usr/lib64/xorg/modules/input/calcomp_drv.so /usr/lib64/xorg/modules/input/citron_drv.so /usr/lib64/xorg/modules/input/digitaledge_drv.so /usr/lib64/xorg/modules/input/dmc_drv.so /usr/lib64/xorg/modules/input/dynapro_drv.so /usr/lib64/xorg/modules/input/elographics_drv.so /usr/lib64/xorg/modules/input/fpit_drv.so /usr/lib64/xorg/modules/input/hyperpen_drv.so /usr/lib64/xorg/modules/input/js_x_drv.so /usr/lib64/xorg/modules/input/kbd_drv.so /usr/lib64/xorg/modules/input/keyboard_drv.so /usr/lib64/xorg/modules/input/magellan_drv.so /usr/lib64/xorg/modules/input/microtouch_drv.so /usr/lib64/xorg/modules/input/mouse_drv.so /usr/lib64/xorg/modules/input/mutouch_drv.so /usr/lib64/xorg/modules/input/palmax_drv.so /usr/lib64/xorg/modules/input/penmount_drv.so /usr/lib64/xorg/modules/input/spaceorb_drv.so /usr/lib64/xorg/modules/input/summa_drv.so /usr/lib64/xorg/modules/input/synaptics_drv.so /usr/lib64/xorg/modules/input/tek4957_drv.so /usr/lib64/xorg/modules/input/ur98_drv.so /usr/lib64/xorg/modules/input/void_drv.so /usr/lib64/xorg/modules/input/wacom_drv.so /usr/lib64/xorg/modules/libafb.so /usr/lib64/xorg/modules/libcfb.so /usr/lib64/xorg/modules/libcfb16.so /usr/lib64/xorg/modules/libcfb24.so /usr/lib64/xorg/modules/libcfb32.so /usr/lib64/xorg/modules/libcw.so /usr/lib64/xorg/modules/libdamage.so /usr/lib64/xorg/modules/libddc.so /usr/lib64/xorg/modules/libfb.so /usr/lib64/xorg/modules/libi2c.so /usr/lib64/xorg/modules/libint10.so /usr/lib64/xorg/modules/liblayer.so /usr/lib64/xorg/modules/libmfb.so /usr/lib64/xorg/modules/libpcidata.so /usr/lib64/xorg/modules/librac.so /usr/lib64/xorg/modules/libramdac.so /usr/lib64/xorg/modules/libscanpci.so /usr/lib64/xorg/modules/libshadow.so /usr/lib64/xorg/modules/libvbe.so /usr/lib64/xorg/modules/libvgahw.so /usr/lib64/xorg/modules/libxaa.so /usr/lib64/xorg/modules/libxf24_32bpp.so /usr/lib64/xorg/modules/libxf4bpp.so /usr/lib64/xorg/modules/libxf8_16bpp.so /usr/lib64/xorg/modules/libxf8_32bpp.so /usr/lib64/xorg/modules/linux/libdrm.so /usr/lib64/xorg/modules/linux/libfbdevhw.so /usr/lib64/xorg/modules/v20002d.uc /usr/lib64/xserver/SecurityPolicy /usr/bin/X /usr/bin/cpp /usr/bin/dircolors /usr/bin/fc-cache /usr/bin/find /usr/bin/gnome-session /usr/bin/id /usr/bin/lesspipe.sh /usr/bin/logger /usr/bin/make /usr/bin/newaliases /usr/bin/nifd /usr/bin/rfcomm /usr/bin/rhgb /usr/bin/rhgb-client /usr/bin/setxkbmap /usr/bin/tee /usr/bin/udevinfo /usr/bin/uniq /usr/bin/xfs /usr/bin/xrdb /usr/libexec/gcc/x86_64-redhat-linux/4.1.1/cc1 /usr/libexec/gcc/x86_64-redhat-linux/4.1.1/collect2 /usr/libexec/gdmchooser /usr/libexec/gdmgreeter /usr/libexec/gdmlogin /usr/libexec/hald-addon-acpi /usr/libexec/hald-addon-storage /usr/libexec/hald-probe-input /usr/libexec/hald-probe-pc-floppy /usr/libexec/hald-probe-smbios /usr/libexec/hald-probe-storage /usr/libexec/hald-probe-volume /usr/sbin/acpid /usr/sbin/anacron /usr/sbin/atd /usr/sbin/automount /usr/sbin/chkfontpath /usr/sbin/cpuspeed /usr/sbin/crond /usr/sbin/cupsd /usr/sbin/gdm /usr/sbin/gdm-binary /usr/sbin/gdmsetup /usr/sbin/gpm /usr/sbin/hald /usr/sbin/hcid /usr/sbin/hid2hci /usr/sbin/kudzu /usr/sbin/rhnsd /usr/sbin/rpc.gssd /usr/sbin/rpc.idmapd /usr/sbin/sdpd /usr/sbin/sendmail /usr/sbin/sshd /usr/sbin/system-config-network-cmd /usr/share/X11/fonts/misc/6x13-ISO8859-1.pcf.gz /usr/share/X11/fonts/misc/cursor.pcf.gz /usr/share/X11/fonts/misc/fonts.alias /usr/share/X11/fonts/misc/fonts.dir /usr/share/X11/locale/locale.alias /usr/share/cups/banners/classified /usr/share/cups/banners/confidential /usr/share/cups/banners/secret /usr/share/cups/banners/standard /usr/share/cups/banners/topsecret /usr/share/cups/banners/unclassified /usr/share/cups/model/deskjet.ppd.gz /usr/share/cups/model/deskjet2.ppd.gz /usr/share/cups/model/dymo.ppd.gz /usr/share/cups/model/epson24.ppd.gz /usr/share/cups/model/epson9.ppd.gz /usr/share/cups/model/laserjet.ppd.gz /usr/share/cups/model/okidat24.ppd.gz /usr/share/cups/model/okidata9.ppd.gz /usr/share/cups/model/postscript.ppd.gz /usr/share/cups/model/stcolor.ppd.gz /usr/share/cups/model/stcolor2.ppd.gz /usr/share/cups/model/stphoto.ppd.gz /usr/share/cups/model/stphoto2.ppd.gz /usr/share/cups/model/textonly.ppd /usr/share/cups/model/zebra.ppd.gz /usr/share/fonts/bitmap-fonts/10x20.pcf /usr/share/fonts/bitmap-fonts/5x8.pcf /usr/share/fonts/bitmap-fonts/6x10.pcf /usr/share/fonts/bitmap-fonts/6x12.pcf /usr/share/fonts/bitmap-fonts/6x13.pcf /usr/share/fonts/bitmap-fonts/6x9.pcf /usr/share/fonts/bitmap-fonts/9x15.pcf /usr/share/fonts/bitmap-fonts/9x18.pcf /usr/share/fonts/bitmap-fonts/console8x16.pcf /usr/share/fonts/bitmap-fonts/console8x8.pcf /usr/share/fonts/bitmap-fonts/fonts.cache-1 /usr/share/fonts/bitmap-fonts/lutRS10.pcf /usr/share/fonts/bitmap-fonts/lutRS12.pcf /usr/share/fonts/bitstream-vera/Vera.ttf /usr/share/fonts/bitstream-vera/VeraBI.ttf /usr/share/fonts/bitstream-vera/VeraBd.ttf /usr/share/fonts/bitstream-vera/VeraMono.ttf /usr/share/fonts/bitstream-vera/fonts.cache-1 /usr/share/fonts/default/Type1/c059013l.pfb /usr/share/fonts/default/Type1/fonts.cache-1 /usr/share/fonts/default/Type1/fonts.dir /usr/share/fonts/default/Type1/n019003l.pfb /usr/share/fonts/default/Type1/n022003l.pfb /usr/share/fonts/default/Type1/s050000l.pfb /usr/share/fonts/default/fonts.cache-1 /usr/share/fonts/default/ghostscript/fonts.cache-1 /usr/share/fonts/fonts.cache-1 /usr/share/gdm/BuiltInSessions/default.desktop /usr/share/gdm/themes/RHEL/RHEL.xml /usr/share/gdm/themes/RHEL/screenshot.png /usr/share/gdm/themes/RHEL/icon-session.png /usr/share/gdm/themes/RHEL/icon-reboot.png /usr/share/gdm/themes/RHEL/icon-language.png /usr/share/gdm/themes/RHEL/redhat_logo.png /usr/share/gdm/themes/RHEL/icon-shutdown.png /usr/share/gdm/themes/RHEL/background.png /usr/share/gdm/themes/RHEL/distribution.png /usr/share/gdm/themes/RHEL/GdmGreeterTheme.desktop /usr/share/gdm/themes/RHEL/rh_logo-header.png /usr/share/gdm/themes/RHEL/logo.png /usr/share/hal/fdi/information/10freedesktop/10-camera-ptp.fdi /usr/share/hal/fdi/information/10freedesktop/10-usb-card-readers.fdi /usr/share/hal/fdi/information/10freedesktop/10-usb-music-players.fdi /usr/share/hal/fdi/information/10freedesktop/10-usb-pda.fdi /usr/share/hal/fdi/information/10freedesktop/10-usb-zip-drives.fdi /usr/share/hal/fdi/information/10freedesktop/10-wireless-mice.fdi /usr/share/hal/fdi/information/20thirdparty/10-camera-libgphoto2.fdi /usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi /usr/share/hal/fdi/policy/10osvendor/15-storage-luks.fdi /usr/share/hal/fdi/policy/10osvendor/10-keyboard-policy.fdi /usr/share/hal/fdi/policy/10osvendor/10-toshiba-buttons.fdi /usr/share/hal/fdi/policy/10osvendor/10-power-mgmt-policy.fdi /usr/share/hal/fdi/policy/10osvendor/10-hal_lpadmin.fdi /usr/share/hal/fdi/policy/10osvendor/99-redhat-storage-policy-fixed-drives.fdi /usr/share/hal/fdi/policy/10osvendor/10-laptop-panel-mgmt-policy.fdi /usr/share/hwdata/pci.ids /usr/share/hwdata/usb.ids /usr/share/icons/Bluecurve/cursors/left_ptr /usr/share/icons/Bluecurve/cursors/watch /usr/share/icons/Bluecurve/cursors/xterm /usr/share/icons/Bluecurve/index.theme /usr/share/icons/default/index.theme /usr/share/icons/gnome/index.theme /usr/share/locale/locale.alias /usr/share/rhgb/large-computer.png /usr/share/rhgb/system-logo.png /usr/share/rhgb/throbber-anim.png /usr/share/themes/Clearlooks/gtk-2.0/gtkrc /usr/share/themes/Clearlooks/index.theme /usr/share/vte/termcap/xterm /usr/share/xsessions/gnome.desktop /usr/share/zoneinfo/Universal
/bin/df /bin/netstat /etc/alsa/alsa.conf /etc/bonobo-activation/bonobo-activation-config.xml /etc/cups/client.conf /etc/dbus-1/session.conf /etc/gconf/2/evoldap.conf /etc/gconf/2/path /etc/gconf/gconf.xml.defaults/%gconf-tree-af.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-am.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ar.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-az.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-be.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-bg.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-bn_IN.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-bn.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-br.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-bs.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ca.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-cs.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-cy.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-da.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-de.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-dz.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-el.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-en_CA.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-en_GB.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-eo.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_AR.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_CL.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_CO.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_CR.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_DO.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_EC.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_ES.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_GT.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_HN.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_MX.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_NI.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_PA.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_PE.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_PR.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_SV.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_UY.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es_VE.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-es.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-et.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-eu.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-fa.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-fi.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-fr.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ga.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-gl.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-gu.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-he.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-hi.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-hr.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-hu.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-hy.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-id.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-is.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-it.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ja.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ka.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-km.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ko.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ku.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ky.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-li.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-lt.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-lv.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-mg.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-mk.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ml.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-mn.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-mr.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ms.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-nb.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ne.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-nl.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-nn.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-no.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-nso.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-or.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-pa.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-pl.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-pt_BR.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-pt.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ro.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ru.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-rw.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sk.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sl.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sq.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sr@ije.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sr@Latn.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sr.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-sv.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ta.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-te.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-th.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-tk.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-tr.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-tt.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-ug.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-uk.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-vi.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-wa.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-xh.xml /etc/gconf/gconf.xml.defaults/%gconf-tree.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-yi.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-zh_CN.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-zh_HK.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-zh_TW.xml /etc/gconf/gconf.xml.defaults/%gconf-tree-zu.xml /etc/gconf/schemas/apps_evolution_addressbook-2.8.schemas /etc/gconf/schemas/apps_evolution_calendar-2.8.schemas /etc/gconf/schemas/apps-evolution-mail-prompts-checkdefault-2.8.schemas /etc/gconf/schemas/apps_evolution_shell-2.8.schemas /etc/gconf/schemas/apps_gnome_settings_daemon_default_editor.schemas /etc/gconf/schemas/apps_gnome_settings_daemon_keybindings.schemas /etc/gconf/schemas/apps_gnome_settings_daemon_power_manager.schemas /etc/gconf/schemas/apps_gnome_settings_daemon_screensaver.schemas /etc/gconf/schemas/apps_nautilus_preferences.schemas /etc/gconf/schemas/baobab.schemas /etc/gconf/schemas/battstat.schemas /etc/gconf/schemas/brlmonitor.schemas /etc/gconf/schemas/cdda-url-handler.schemas /etc/gconf/schemas/CDDB-Slave2.schemas /etc/gconf/schemas/charpick.schemas /etc/gconf/schemas/clock.schemas /etc/gconf/schemas/cpufreq-applet.schemas /etc/gconf/schemas/desktop_default_applications.schemas /etc/gconf/schemas/desktop_gnome_accessibility_keyboard.schemas /etc/gconf/schemas/desktop_gnome_accessibility_startup.schemas /etc/gconf/schemas/desktop_gnome_applications_browser.schemas /etc/gconf/schemas/desktop_gnome_applications_help_viewer.schemas /etc/gconf/schemas/desktop_gnome_applications_terminal.schemas /etc/gconf/schemas/desktop_gnome_applications_window_manager.schemas /etc/gconf/schemas/desktop_gnome_background.schemas /etc/gconf/schemas/desktop_gnome_file_sharing.schemas /etc/gconf/schemas/desktop_gnome_file_views.schemas /etc/gconf/schemas/desktop_gnome_font_rendering.schemas /etc/gconf/schemas/desktop_gnome_interface.schemas /etc/gconf/schemas/desktop_gnome_lockdown.schemas /etc/gconf/schemas/desktop_gnome_peripherals_keyboard.schemas /etc/gconf/schemas/desktop_gnome_peripherals_keyboard_xkb.schemas /etc/gconf/schemas/desktop_gnome_peripherals_monitor.schemas /etc/gconf/schemas/desktop_gnome_peripherals_mouse.schemas /etc/gconf/schemas/desktop_gnome_sound.schemas /etc/gconf/schemas/desktop_gnome_thumbnailers.schemas /etc/gconf/schemas/desktop_gnome_typing_break.schemas /etc/gconf/schemas/desktop_gnome_url_handlers.schemas /etc/gconf/schemas/drivemount.schemas /etc/gconf/schemas/eggcups.schemas /etc/gconf/schemas/ekiga.schemas /etc/gconf/schemas/eog.schemas /etc/gconf/schemas/evince.schemas /etc/gconf/schemas/evince-thumbnailer.schemas /etc/gconf/schemas/evolution-mail-2.8.schemas /etc/gconf/schemas/evolution-webcal.schemas /etc/gconf/schemas/filebrowser.schemas /etc/gconf/schemas/file-roller.schemas /etc/gconf/schemas/fish.schemas /etc/gconf/schemas/fontilus.schemas /etc/gconf/schemas/gcalctool.schemas /etc/gconf/schemas/gedit.schemas /etc/gconf/schemas/geyes.schemas /etc/gconf/schemas/gfloppy.schemas /etc/gconf/schemas/gnome-audio-profiles.schemas /etc/gconf/schemas/gnome-cd.schemas /etc/gconf/schemas/gnome-dictionary.schemas /etc/gconf/schemas/gnome-mount.schemas /etc/gconf/schemas/gnome-power-manager.schemas /etc/gconf/schemas/gnome-screensaver.schemas /etc/gconf/schemas/gnome-screenshot.schemas /etc/gconf/schemas/gnome-search-tool.schemas /etc/gconf/schemas/gnome-session.schemas /etc/gconf/schemas/gnome-system-monitor.schemas /etc/gconf/schemas/gnome-terminal.schemas /etc/gconf/schemas/gnome-volume-control.schemas /etc/gconf/schemas/gnome-volume-manager.schemas /etc/gconf/schemas/gnopernicus.schemas /etc/gconf/schemas/gok.schemas /etc/gconf/schemas/gsf-office-thumbnailer.schemas /etc/gconf/schemas/gstreamer-0.10.schemas /etc/gconf/schemas/gswitchit.schemas /etc/gconf/schemas/gthumb.schemas /etc/gconf/schemas/gweather.schemas /etc/gconf/schemas/logview.schemas /etc/gconf/schemas/metacity.schemas /etc/gconf/schemas/mini-commander-global.schemas /etc/gconf/schemas/mini-commander.schemas /etc/gconf/schemas/mixer.schemas /etc/gconf/schemas/modemlights.schemas /etc/gconf/schemas/multiload.schemas /etc/gconf/schemas/nautilus-cd-burner.schemas /etc/gconf/schemas/netstatus.schemas /etc/gconf/schemas/notification-daemon.schemas /etc/gconf/schemas/pager.schemas /etc/gconf/schemas/panel-compatibility.schemas /etc/gconf/schemas/panel-default-setup.entries /etc/gconf/schemas/panel-general.schemas /etc/gconf/schemas/panel-global.schemas /etc/gconf/schemas/panel-object.schemas /etc/gconf/schemas/panel-toplevel.schemas /etc/gconf/schemas/pilot.schemas /etc/gconf/schemas/remote.schemas /etc/gconf/schemas/stickynotes.schemas /etc/gconf/schemas/system_dns_sd.schemas /etc/gconf/schemas/system_http_proxy.schemas /etc/gconf/schemas/system_smb.schemas /etc/gconf/schemas/tasklist.schemas /etc/gconf/schemas/themus.schemas /etc/gconf/schemas/tomboy.schemas /etc/gconf/schemas/vino-server.schemas /etc/gconf/schemas/window-list.schemas /etc/gconf/schemas/workspace-switcher.schemas /etc/gconf/schemas/yelp.schemas /etc/gdm/PreSession/Default /etc/gnome-vfs-2.0/modules/default-modules.conf /etc/gnome-vfs-2.0/modules/font-method.conf /etc/gnome-vfs-2.0/modules/mapping-modules.conf /etc/gnome-vfs-2.0/modules/smb-module.conf /etc/gnome-vfs-2.0/modules/ssl-modules.conf /etc/gnome-vfs-2.0/modules/theme-method.conf /etc/pam.d/gnome-screensaver /etc/rc.d/init.d/pcmcia /etc/rc.d/init.d/sendmail /etc/rc.d/rc5.d/S09pcmcia /etc/rc.d/rc5.d/S80sendmail /etc/rpm/macros.jpackage /etc/rpm/macros.prelink /etc/rpm/macros.specspo /etc/rpm/macros.up2date /etc/rpm/platform /etc/security/console.handlers /etc/X11/xinit/Xclients /etc/X11/xinit/xinitrc-common /etc/X11/xinit/xinitrc.d/xinput.sh /etc/X11/xinit/Xsession /etc/X11/Xmodmap /lib64/libgcc_s.so.1 /sbin/pam_timestamp_check /usr/bin/ainit /usr/bin/cut /usr/bin/dbus-launch /usr/bin/dirname /usr/bin/eggcups /usr/bin/evolution /usr/bin/expr /usr/bin/firefox /usr/bin/gconftool-2 /usr/bin/gnome-keyring-daemon /usr/bin/gnome-open /usr/bin/gnome-panel /usr/bin/gnome-volume-manager /usr/bin/gnome-wm /usr/bin/htmlview /usr/bin/launchmail /usr/bin/magicdev /usr/bin/md5sum /usr/bin/metacity /usr/bin/mkfontdir /usr/bin/mkfontscale /usr/bin/nautilus /usr/bin/nautilus-connect-server /usr/bin/openoffice.org-2.0 /usr/bin/pam-panel-icon /usr/bin/printenv /usr/bin/rhn-applet-gui /usr/bin/sessreg /usr/bin/ssh-agent /usr/bin/system-config-date /usr/bin/which /usr/bin/xmodmap /usr/bin/xsetroot /usr/lib64/bonobo/monikers/libmoniker_extra_2.so /usr/lib64/bonobo/monikers/libmoniker_std_2.so /usr/lib64/bonobo/servers/Accessibility_Registry.server /usr/lib64/bonobo/servers/Bonobo_CosNaming_NamingContext.server /usr/lib64/bonobo/servers/Bonobo_Moniker_std.server /usr/lib64/bonobo/servers/Bonobo_Sample_Controls.server /usr/lib64/bonobo/servers/Bonobo_Sample_Echo.server /usr/lib64/bonobo/servers/CanvDemo.server /usr/lib64/bonobo/servers/ekiga.server /usr/lib64/bonobo/servers/GNOME_AccessxStatusApplet.server /usr/lib64/bonobo/servers/GNOME_BattstatApplet.server /usr/lib64/bonobo/servers/GNOME_CDPlayerApplet.server /usr/lib64/bonobo/servers/GNOME_CharpickerApplet.server /usr/lib64/bonobo/servers/GNOME_ClockApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_CPUFreqApplet.server /usr/lib64/bonobo/servers/GNOME_DictionaryApplet.server /usr/lib64/bonobo/servers/GNOME_DriveMountApplet.server /usr/lib64/bonobo/servers/GNOME_Evolution_Addressbook_2.8.server /usr/lib64/bonobo/servers/GNOME_Evolution_Calendar_2.8.server /usr/lib64/bonobo/servers/GNOME_Evolution_Calendar_AlarmNotify_2.8.server /usr/lib64/bonobo/servers/GNOME_Evolution_DataServer_1.2.server /usr/lib64/bonobo/servers/GNOME_Evolution_Mail_2.8.server /usr/lib64/bonobo/servers/GNOME_Evolution_Shell_2.8.server /usr/lib64/bonobo/servers/GNOME_FishApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_GeyesApplet.server /usr/lib64/bonobo/servers/GNOME_Gok.server /usr/lib64/bonobo/servers/GNOME_GThumb_CatalogView.server /usr/lib64/bonobo/servers/GNOME_GThumb.server /usr/lib64/bonobo/servers/GNOME_GThumb_Viewer.server /usr/lib64/bonobo/servers/GNOME_GtikApplet.server /usr/lib64/bonobo/servers/GNOME_GtkHTML_Editor-3.8.server /usr/lib64/bonobo/servers/GNOME_GWeatherApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_KeyboardApplet.server /usr/lib64/bonobo/servers/GNOME_Magnifier.server /usr/lib64/bonobo/servers/GNOME_MailcheckApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_Media_CDDBSlave2.server /usr/lib64/bonobo/servers/GNOME_MiniCommanderApplet.server /usr/lib64/bonobo/servers/GNOME_MixerApplet.server /usr/lib64/bonobo/servers/GNOME_ModemLightsApplet.server /usr/lib64/bonobo/servers/GNOME_Moniker_std.server /usr/lib64/bonobo/servers/GNOME_MultiLoadApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_NetstatusApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_NotificationAreaApplet.server /usr/lib64/bonobo/servers/GNOME_NullApplet_Factory.server /usr/lib64/bonobo/servers/GNOME_Panel.server /usr/lib64/bonobo/servers/GNOME_Panel_TrashApplet.server /usr/lib64/bonobo/servers/GNOME_Panel_WirelessApplet.server /usr/lib64/bonobo/servers/GNOME_PilotApplet.server /usr/lib64/bonobo/servers/GNOME_Pilot_Daemon.server /usr/lib64/bonobo/servers/GNOME_RemoteDesktop.server /usr/lib64/bonobo/servers/GNOME_Speech_SynthesisDriver_Festival.server /usr/lib64/bonobo/servers/GNOME_Spell.server /usr/lib64/bonobo/servers/GNOME_StickyNotesApplet.server /usr/lib64/bonobo/servers/gnome-terminal.server /usr/lib64/bonobo/servers/GNOME_TomboyApplet.server /usr/lib64/bonobo/servers/GNOME_Wncklet_Factory.server /usr/lib64/bonobo/servers/Invest_Applet.server /usr/lib64/bonobo/servers/Nautilus_shell.server /usr/lib64/evolution/2.8/components/libevolution-addressbook.so /usr/lib64/evolution/2.8/components/libevolution-calendar.so /usr/lib64/evolution/2.8/components/libevolution-mail.so /usr/lib64/evolution/2.8/libeabutil.so.0 /usr/lib64/evolution/2.8/libecontacteditor.so.0 /usr/lib64/evolution/2.8/libecontactlisteditor.so.0 /usr/lib64/evolution/2.8/libefilterbar.so.0 /usr/lib64/evolution/2.8/libemiscwidgets.so.0 /usr/lib64/evolution/2.8/libeshell.so.0 /usr/lib64/evolution/2.8/libessmime.so.0 /usr/lib64/evolution/2.8/libetimezonedialog.so.0 /usr/lib64/evolution/2.8/libeutil.so.0 /usr/lib64/evolution/2.8/libevolution-a11y.so.0 /usr/lib64/evolution/2.8/libevolution-addressbook-a11y.so.0 /usr/lib64/evolution/2.8/libevolution-calendar-a11y.so.0 /usr/lib64/evolution/2.8/libevolution-importer.so.0 /usr/lib64/evolution/2.8/libevolution-mail-importers.so.0 /usr/lib64/evolution/2.8/libevolution-smime.so.0 /usr/lib64/evolution/2.8/libevolution-widgets-a11y.so.0 /usr/lib64/evolution/2.8/libfilter.so.0 /usr/lib64/evolution/2.8/libmenus.so.0 /usr/lib64/evolution/2.8/plugins/libmail-account-disable.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-addressbook-file.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-audio-inline.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-calendar-file.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-calendar-http.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-calendar-weather.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-copy-tool.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-default-mailer.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-default-source.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-evolution-bbdb.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-evolution-hula-account-setup.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-evolution-startup-wizard.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-exchange-operations.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-groupwise-features.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-gw-account-setup.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-itip-formatter.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-mailing-list-actions.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-mail-to-task.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-mark-all-read.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-mark-calendar-offline.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-new-mail-notify.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-plugin-manager.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-print-message.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-publish-calendar.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-sa-junk-plugin.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-save-calendar.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-select-one-source.so /usr/lib64/evolution/2.8/plugins/liborg-gnome-subject-thread.so /usr/lib64/evolution/2.8/plugins/org-gnome-addressbook-file.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-audio-inline.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-calendar-file.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-calendar-http.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-calendar-weather.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-compose-send-options.xml /usr/lib64/evolution/2.8/plugins/org-gnome-copy-tool.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-default-mailer.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-default-source.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-evolution-bbdb.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-evolution-hula-account-setup.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-evolution-startup-wizard.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-exchange-ab-subscription.xml /usr/lib64/evolution/2.8/plugins/org-gnome-exchange-cal-subscription.xml /usr/lib64/evolution/2.8/plugins/org-gnome-exchange-operations.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-exchange-tasks-subscription.xml /usr/lib64/evolution/2.8/plugins/org-gnome-folder-permissions.xml /usr/lib64/evolution/2.8/plugins/org-gnome-folder-subscription.xml /usr/lib64/evolution/2.8/plugins/org-gnome-groupwise-features.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-gw-account-setup.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-itip-formatter.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-mail-account-disable.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-mailing-list-actions.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-mailing-list-actions.xml /usr/lib64/evolution/2.8/plugins/org-gnome-mail-to-task.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-mark-all-read.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-mark-calendar-offline.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-new-mail-notify.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-plugin-manager.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-plugin-manager.xml /usr/lib64/evolution/2.8/plugins/org-gnome-print-message.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-print-message.xml /usr/lib64/evolution/2.8/plugins/org-gnome-publish-calendar.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-publish-calendar.xml /usr/lib64/evolution/2.8/plugins/org-gnome-sa-junk-plugin.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-save-calendar.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-select-one-source.eplug /usr/lib64/evolution/2.8/plugins/org-gnome-subject-thread.eplug /usr/lib64/evolution/2.8/plugins/publish-calendar.glade /usr/lib64/evolution-data-server-1.2/camel-providers/libcamelgroupwise.urls /usr/lib64/evolution-data-server-1.2/camel-providers/libcamelimap.urls /usr/lib64/evolution-data-server-1.2/camel-providers/libcamellocal.so /usr/lib64/evolution-data-server-1.2/camel-providers/libcamellocal.urls /usr/lib64/evolution-data-server-1.2/camel-providers/libcamelnntp.urls /usr/lib64/evolution-data-server-1.2/camel-providers/libcamelpop3.urls /usr/lib64/evolution-data-server-1.2/camel-providers/libcamelsendmail.urls /usr/lib64/evolution-data-server-1.2/camel-providers/libcamelsmtp.urls /usr/lib64/evolution-data-server-1.2/extensions/libebookbackendfile.so /usr/lib64/evolution-data-server-1.2/extensions/libebookbackendgroupwise.so /usr/lib64/evolution-data-server-1.2/extensions/libebookbackendldap.so /usr/lib64/evolution-data-server-1.2/extensions/libebookbackendvcf.so /usr/lib64/evolution-data-server-1.2/extensions/libecalbackendcontacts.so /usr/lib64/evolution-data-server-1.2/extensions/libecalbackendfile.so /usr/lib64/evolution-data-server-1.2/extensions/libecalbackendgroupwise.so /usr/lib64/evolution-data-server-1.2/extensions/libecalbackendhttp.so /usr/lib64/evolution-data-server-1.2/extensions/libecalbackendweather.so /usr/libexec/bonobo-activation-server /usr/libexec/clock-applet /usr/libexec/evolution/2.8/evolution-alarm-notify /usr/libexec/evolution-data-server-1.8 /usr/libexec/gam_server /usr/libexec/gconfd-2 /usr/libexec/gconf-sanity-check-2 /usr/libexec/gnome-settings-daemon /usr/libexec/gnome-vfs-daemon /usr/libexec/mapping-daemon /usr/libexec/mixer_applet2 /usr/libexec/notification-area-applet /usr/libexec/wnck-applet /usr/libexec/xscreensaver /usr/lib64/firefox-1.5.0.9/browserconfig.properties /usr/lib64/firefox-1.5.0.9/chrome/browser.jar /usr/lib64/firefox-1.5.0.9/chrome/browser.manifest /usr/lib64/firefox-1.5.0.9/chrome/chromelist.txt /usr/lib64/firefox-1.5.0.9/chrome/classic.jar /usr/lib64/firefox-1.5.0.9/chrome/classic.manifest /usr/lib64/firefox-1.5.0.9/chrome/comm.jar /usr/lib64/firefox-1.5.0.9/chrome/comm.manifest /usr/lib64/firefox-1.5.0.9/chrome/en-US.jar /usr/lib64/firefox-1.5.0.9/chrome/en-US.manifest /usr/lib64/firefox-1.5.0.9/chrome/icons /usr/lib64/firefox-1.5.0.9/chrome/icons/default /usr/lib64/firefox-1.5.0.9/chrome/icons/default/default.xpm /usr/lib64/firefox-1.5.0.9/chrome/pippki.jar /usr/lib64/firefox-1.5.0.9/chrome/pippki.manifest /usr/lib64/firefox-1.5.0.9/chrome/reporter.jar /usr/lib64/firefox-1.5.0.9/chrome/reporter.manifest /usr/lib64/firefox-1.5.0.9/chrome/toolkit.jar /usr/lib64/firefox-1.5.0.9/chrome/toolkit.manifest /usr/lib64/firefox-1.5.0.9/components/accessibility-atk.xpt /usr/lib64/firefox-1.5.0.9/components/accessibility.xpt /usr/lib64/firefox-1.5.0.9/components/alerts.xpt /usr/lib64/firefox-1.5.0.9/components/appshell.xpt /usr/lib64/firefox-1.5.0.9/components/appstartup.xpt /usr/lib64/firefox-1.5.0.9/components/autocomplete.xpt /usr/lib64/firefox-1.5.0.9/components/autoconfig.xpt /usr/lib64/firefox-1.5.0.9/components/bookmarks.xpt /usr/lib64/firefox-1.5.0.9/components/browsercompsbase.xpt /usr/lib64/firefox-1.5.0.9/components/caps.xpt /usr/lib64/firefox-1.5.0.9/components/chardet.xpt /usr/lib64/firefox-1.5.0.9/components/chrome.xpt /usr/lib64/firefox-1.5.0.9/components/commandhandler.xpt /usr/lib64/firefox-1.5.0.9/components/commandlines.xpt /usr/lib64/firefox-1.5.0.9/components/composer.xpt /usr/lib64/firefox-1.5.0.9/components/content_base.xpt /usr/lib64/firefox-1.5.0.9/components/content_htmldoc.xpt /usr/lib64/firefox-1.5.0.9/components/content_html.xpt /usr/lib64/firefox-1.5.0.9/components/content_xmldoc.xpt /usr/lib64/firefox-1.5.0.9/components/content_xslt.xpt /usr/lib64/firefox-1.5.0.9/components/content_xtf.xpt /usr/lib64/firefox-1.5.0.9/components/cookie.xpt /usr/lib64/firefox-1.5.0.9/components/directory.xpt /usr/lib64/firefox-1.5.0.9/components/docshell.xpt /usr/lib64/firefox-1.5.0.9/components/dom_base.xpt /usr/lib64/firefox-1.5.0.9/components/dom_canvas.xpt /usr/lib64/firefox-1.5.0.9/components/dom_core.xpt /usr/lib64/firefox-1.5.0.9/components/dom_css.xpt /usr/lib64/firefox-1.5.0.9/components/dom_events.xpt /usr/lib64/firefox-1.5.0.9/components/dom_html.xpt /usr/lib64/firefox-1.5.0.9/components/dom_loadsave.xpt /usr/lib64/firefox-1.5.0.9/components/dom_range.xpt /usr/lib64/firefox-1.5.0.9/components/dom_stylesheets.xpt /usr/lib64/firefox-1.5.0.9/components/dom_svg.xpt /usr/lib64/firefox-1.5.0.9/components/dom_traversal.xpt /usr/lib64/firefox-1.5.0.9/components/dom_views.xpt /usr/lib64/firefox-1.5.0.9/components/dom_xbl.xpt /usr/lib64/firefox-1.5.0.9/components/dom_xpath.xpt /usr/lib64/firefox-1.5.0.9/components/dom.xpt /usr/lib64/firefox-1.5.0.9/components/dom_xul.xpt /usr/lib64/firefox-1.5.0.9/components/downloads.xpt /usr/lib64/firefox-1.5.0.9/components/editor.xpt /usr/lib64/firefox-1.5.0.9/components/embed_base.xpt /usr/lib64/firefox-1.5.0.9/components/extensions.xpt /usr/lib64/firefox-1.5.0.9/components/exthandler.xpt /usr/lib64/firefox-1.5.0.9/components/fastfind.xpt /usr/lib64/firefox-1.5.0.9/components/filepicker.xpt /usr/lib64/firefox-1.5.0.9/components/find.xpt /usr/lib64/firefox-1.5.0.9/components/gfx.xpt /usr/lib64/firefox-1.5.0.9/components/gksvgrenderer.xpt /usr/lib64/firefox-1.5.0.9/components/history.xpt /usr/lib64/firefox-1.5.0.9/components/htmlparser.xpt /usr/lib64/firefox-1.5.0.9/components/imgicon.xpt /usr/lib64/firefox-1.5.0.9/components/imglib2.xpt /usr/lib64/firefox-1.5.0.9/components/intl.xpt /usr/lib64/firefox-1.5.0.9/components/jar.xpt /usr/lib64/firefox-1.5.0.9/components/jsconsole-clhandler.js /usr/lib64/firefox-1.5.0.9/components/jsconsole.xpt /usr/lib64/firefox-1.5.0.9/components/jsdservice.xpt /usr/lib64/firefox-1.5.0.9/components/layout_base.xpt /usr/lib64/firefox-1.5.0.9/components/layout_printing.xpt /usr/lib64/firefox-1.5.0.9/components/layout_xul_tree.xpt /usr/lib64/firefox-1.5.0.9/components/layout_xul.xpt /usr/lib64/firefox-1.5.0.9/components/libaccessibility.so /usr/lib64/firefox-1.5.0.9/components/libappcomps.so /usr/lib64/firefox-1.5.0.9/components/libauth.so /usr/lib64/firefox-1.5.0.9/components/libautoconfig.so /usr/lib64/firefox-1.5.0.9/components/libbrowsercomps.so /usr/lib64/firefox-1.5.0.9/components/libbrowserdirprovider.so /usr/lib64/firefox-1.5.0.9/components/libcaps.so /usr/lib64/firefox-1.5.0.9/components/libchrome.so /usr/lib64/firefox-1.5.0.9/components/libcommandlines.so /usr/lib64/firefox-1.5.0.9/components/libcomposer.so /usr/lib64/firefox-1.5.0.9/components/libcookie.so /usr/lib64/firefox-1.5.0.9/components/libdocshell.so /usr/lib64/firefox-1.5.0.9/components/libeditor.so /usr/lib64/firefox-1.5.0.9/components/libembedcomponents.so /usr/lib64/firefox-1.5.0.9/components/libfileview.so /usr/lib64/firefox-1.5.0.9/components/libgfx_gtk.so /usr/lib64/firefox-1.5.0.9/components/libgfxps.so /usr/lib64/firefox-1.5.0.9/components/libgklayout.so /usr/lib64/firefox-1.5.0.9/components/libgkplugin.so /usr/lib64/firefox-1.5.0.9/components/libhtmlpars.so /usr/lib64/firefox-1.5.0.9/components/libi18n.so /usr/lib64/firefox-1.5.0.9/components/libimgicon.so /usr/lib64/firefox-1.5.0.9/components/libimglib2.so /usr/lib64/firefox-1.5.0.9/components/libjar50.so /usr/lib64/firefox-1.5.0.9/components/libjsd.so /usr/lib64/firefox-1.5.0.9/components/libmork.so /usr/lib64/firefox-1.5.0.9/components/libmozfind.so /usr/lib64/firefox-1.5.0.9/components/libmozgnome.so /usr/lib64/firefox-1.5.0.9/components/libnecko2.so /usr/lib64/firefox-1.5.0.9/components/libnecko.so /usr/lib64/firefox-1.5.0.9/components/libnkgnomevfs.so /usr/lib64/firefox-1.5.0.9/components/libnsappshell.so /usr/lib64/firefox-1.5.0.9/components/liboji.so /usr/lib64/firefox-1.5.0.9/components/libpermissions.so /usr/lib64/firefox-1.5.0.9/components/libpipboot.so /usr/lib64/firefox-1.5.0.9/components/libpipnss.so /usr/lib64/firefox-1.5.0.9/components/libpippki.so /usr/lib64/firefox-1.5.0.9/components/libpref.so /usr/lib64/firefox-1.5.0.9/components/librdf.so /usr/lib64/firefox-1.5.0.9/components/libremoteservice.so /usr/lib64/firefox-1.5.0.9/components/libsearchservice.so /usr/lib64/firefox-1.5.0.9/components/libsystem-pref.so /usr/lib64/firefox-1.5.0.9/components/libtoolkitcomps.so /usr/lib64/firefox-1.5.0.9/components/libtransformiix.so /usr/lib64/firefox-1.5.0.9/components/libtxmgr.so /usr/lib64/firefox-1.5.0.9/components/libuconv.so /usr/lib64/firefox-1.5.0.9/components/libucvmath.so /usr/lib64/firefox-1.5.0.9/components/libuniversalchardet.so /usr/lib64/firefox-1.5.0.9/components/libwebbrwsr.so /usr/lib64/firefox-1.5.0.9/components/libwebsrvcs.so /usr/lib64/firefox-1.5.0.9/components/libwidget_gtk2.so /usr/lib64/firefox-1.5.0.9/components/libxmlextras.so /usr/lib64/firefox-1.5.0.9/components/libxpcom_compat_c.so /usr/lib64/firefox-1.5.0.9/components/libxpconnect.so /usr/lib64/firefox-1.5.0.9/components/libxpinstall.so /usr/lib64/firefox-1.5.0.9/components/locale.xpt /usr/lib64/firefox-1.5.0.9/components/lwbrk.xpt /usr/lib64/firefox-1.5.0.9/components/migration.xpt /usr/lib64/firefox-1.5.0.9/components/mimetype.xpt /usr/lib64/firefox-1.5.0.9/components/mozbrwsr.xpt /usr/lib64/firefox-1.5.0.9/components/mozfind.xpt /usr/lib64/firefox-1.5.0.9/components/mozgnome.xpt /usr/lib64/firefox-1.5.0.9/components/necko_about.xpt /usr/lib64/firefox-1.5.0.9/components/necko_cache.xpt /usr/lib64/firefox-1.5.0.9/components/necko_cookie.xpt /usr/lib64/firefox-1.5.0.9/components/necko_data.xpt /usr/lib64/firefox-1.5.0.9/components/necko_dns.xpt /usr/lib64/firefox-1.5.0.9/components/necko_file.xpt /usr/lib64/firefox-1.5.0.9/components/necko_ftp.xpt /usr/lib64/firefox-1.5.0.9/components/necko_http.xpt /usr/lib64/firefox-1.5.0.9/components/necko_res.xpt /usr/lib64/firefox-1.5.0.9/components/necko_socket.xpt /usr/lib64/firefox-1.5.0.9/components/necko_strconv.xpt /usr/lib64/firefox-1.5.0.9/components/necko_viewsource.xpt /usr/lib64/firefox-1.5.0.9/components/necko.xpt /usr/lib64/firefox-1.5.0.9/components/nsBrowserContentHandler.js /usr/lib64/firefox-1.5.0.9/components/nsBrowserGlue.js /usr/lib64/firefox-1.5.0.9/components/nsCloseAllWindows.js /usr/lib64/firefox-1.5.0.9/components/nsDefaultCLH.js /usr/lib64/firefox-1.5.0.9/components/nsDictionary.js /usr/lib64/firefox-1.5.0.9/components/nsExtensionManager.js /usr/lib64/firefox-1.5.0.9/components/nsFilePicker.js /usr/lib64/firefox-1.5.0.9/components/nsHelperAppDlg.js /usr/lib64/firefox-1.5.0.9/components/nsInterfaceInfoToIDL.js /usr/lib64/firefox-1.5.0.9/components/nsKillAll.js /usr/lib64/firefox-1.5.0.9/components/nsProgressDialog.js /usr/lib64/firefox-1.5.0.9/components/nsProxyAutoConfig.js /usr/lib64/firefox-1.5.0.9/components/nsResetPref.js /usr/lib64/firefox-1.5.0.9/components/nsSetDefaultBrowser.js /usr/lib64/firefox-1.5.0.9/components/nsSidebar.js /usr/lib64/firefox-1.5.0.9/components/nsUpdateService.js /usr/lib64/firefox-1.5.0.9/components/nsXmlRpcClient.js /usr/lib64/firefox-1.5.0.9/components/oji.xpt /usr/lib64/firefox-1.5.0.9/components/passwordmgr.xpt /usr/lib64/firefox-1.5.0.9/components/pipboot.xpt /usr/lib64/firefox-1.5.0.9/components/pipnss.xpt /usr/lib64/firefox-1.5.0.9/components/pippki.xpt /usr/lib64/firefox-1.5.0.9/components/plugin.xpt /usr/lib64/firefox-1.5.0.9/components/prefetch.xpt /usr/lib64/firefox-1.5.0.9/components/pref.xpt /usr/lib64/firefox-1.5.0.9/components/profile.xpt /usr/lib64/firefox-1.5.0.9/components/progressDlg.xpt /usr/lib64/firefox-1.5.0.9/components/proxyObjInst.xpt /usr/lib64/firefox-1.5.0.9/components/rdf.xpt /usr/lib64/firefox-1.5.0.9/components/satchel.xpt /usr/lib64/firefox-1.5.0.9/components/search.xpt /usr/lib64/firefox-1.5.0.9/components/shellservice.xpt /usr/lib64/firefox-1.5.0.9/components/shistory.xpt /usr/lib64/firefox-1.5.0.9/components/sidebar.xpt /usr/lib64/firefox-1.5.0.9/components/toolkitprofile.xpt /usr/lib64/firefox-1.5.0.9/components/toolkitremote.xpt /usr/lib64/firefox-1.5.0.9/components/txmgr.xpt /usr/lib64/firefox-1.5.0.9/components/txtsvc.xpt /usr/lib64/firefox-1.5.0.9/components/uconv.xpt /usr/lib64/firefox-1.5.0.9/components/unicharutil.xpt /usr/lib64/firefox-1.5.0.9/components/update.xpt /usr/lib64/firefox-1.5.0.9/components/uriloader.xpt /usr/lib64/firefox-1.5.0.9/components/webBrowser_core.xpt /usr/lib64/firefox-1.5.0.9/components/webbrowserpersist.xpt /usr/lib64/firefox-1.5.0.9/components/webshell_idls.xpt /usr/lib64/firefox-1.5.0.9/components/websrvcs.xpt /usr/lib64/firefox-1.5.0.9/components/widget.xpt /usr/lib64/firefox-1.5.0.9/components/windowds.xpt /usr/lib64/firefox-1.5.0.9/components/windowwatcher.xpt /usr/lib64/firefox-1.5.0.9/components/xmlextras.xpt /usr/lib64/firefox-1.5.0.9/components/xml-rpc.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_base.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_components.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_ds.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_io.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_obsolete.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_threads.xpt /usr/lib64/firefox-1.5.0.9/components/xpcom_xpti.xpt /usr/lib64/firefox-1.5.0.9/components/xpconnect.xpt /usr/lib64/firefox-1.5.0.9/components/xpinstall.xpt /usr/lib64/firefox-1.5.0.9/components/xulapp.xpt /usr/lib64/firefox-1.5.0.9/components/xuldoc.xpt /usr/lib64/firefox-1.5.0.9/components/xultmpl.xpt /usr/lib64/firefox-1.5.0.9/defaults/autoconfig /usr/lib64/firefox-1.5.0.9/defaults/autoconfig/platform.js /usr/lib64/firefox-1.5.0.9/defaults/autoconfig/prefcalls.js /usr/lib64/firefox-1.5.0.9/defaults/pref/all-redhat.js /usr/lib64/firefox-1.5.0.9/defaults/pref/channel-prefs.js /usr/lib64/firefox-1.5.0.9/defaults/pref/firefox.js /usr/lib64/firefox-1.5.0.9/defaults/pref/firefox-l10n.js /usr/lib64/firefox-1.5.0.9/defaults/pref/reporter.js /usr/lib64/firefox-1.5.0.9/defaults/profile/bookmarks.html /usr/lib64/firefox-1.5.0.9/defaults/profile/chrome /usr/lib64/firefox-1.5.0.9/defaults/profile/chrome/userChrome-example.css /usr/lib64/firefox-1.5.0.9/defaults/profile/chrome/userContent-example.css /usr/lib64/firefox-1.5.0.9/defaults/profile/localstore.rdf /usr/lib64/firefox-1.5.0.9/defaults/profile/mimeTypes.rdf /usr/lib64/firefox-1.5.0.9/defaults/profile/prefs.js /usr/lib64/firefox-1.5.0.9/defaults/profile/search.rdf /usr/lib64/firefox-1.5.0.9/dependentlibs.list /usr/lib64/firefox-1.5.0.9/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd} /usr/lib64/firefox-1.5.0.9/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/chrome /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/chrome/chromelist.txt /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/chrome/inspector.jar /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/chrome.manifest /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/components /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/components/inspector-cmdline.js /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/components/inspector.xpt /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/components/libinspector.so /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/defaults /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/defaults/preferences /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/defaults/preferences/inspector.js /usr/lib64/firefox-1.5.0.9/extensions/inspector@mozilla.org/install.rdf /usr/lib64/firefox-1.5.0.9/firefox /usr/lib64/firefox-1.5.0.9/firefox-bin /usr/lib64/firefox-1.5.0.9/firefox-xremote-client /usr/lib64/firefox-1.5.0.9/greprefs/all.js /usr/lib64/firefox-1.5.0.9/greprefs/all-redhat.js /usr/lib64/firefox-1.5.0.9/greprefs/security-prefs.js /usr/lib64/firefox-1.5.0.9/greprefs/xpinstall.js /usr/lib64/firefox-1.5.0.9/icons/default.xpm /usr/lib64/firefox-1.5.0.9/icons/document.png /usr/lib64/firefox-1.5.0.9/icons/mozicon128.png /usr/lib64/firefox-1.5.0.9/icons/mozicon16.xpm /usr/lib64/firefox-1.5.0.9/icons/mozicon50.xpm /usr/lib64/firefox-1.5.0.9/init.d /usr/lib64/firefox-1.5.0.9/init.d/README /usr/lib64/firefox-1.5.0.9/libgfxpsshar.so /usr/lib64/firefox-1.5.0.9/libgkgfx.so /usr/lib64/firefox-1.5.0.9/libgtkembedmoz.so /usr/lib64/firefox-1.5.0.9/libgtkxtbin.so /usr/lib64/firefox-1.5.0.9/libjsj.so /usr/lib64/firefox-1.5.0.9/libmozjs.so /usr/lib64/firefox-1.5.0.9/libxpcom_compat.so /usr/lib64/firefox-1.5.0.9/libxpcom_core.so /usr/lib64/firefox-1.5.0.9/libxpcom.so /usr/lib64/firefox-1.5.0.9/libxpistub.so /usr/lib64/firefox-1.5.0.9/mozilla-xremote-client /usr/lib64/firefox-1.5.0.9/plugins/libnullplugin.so /usr/lib64/firefox-1.5.0.9/plugins/libunixprintplugin.so /usr/lib64/firefox-1.5.0.9/removed-files /usr/lib64/firefox-1.5.0.9/res/arrowd.gif /usr/lib64/firefox-1.5.0.9/res/arrow.gif /usr/lib64/firefox-1.5.0.9/res/bloatcycle.html /usr/lib64/firefox-1.5.0.9/res/broken-image.gif /usr/lib64/firefox-1.5.0.9/res/charsetalias.properties /usr/lib64/firefox-1.5.0.9/res/charsetData.properties /usr/lib64/firefox-1.5.0.9/res/cmessage.txt /usr/lib64/firefox-1.5.0.9/res/dtd/mathml.dtd /usr/lib64/firefox-1.5.0.9/res/dtd/xhtml11.dtd /usr/lib64/firefox-1.5.0.9/res/EditorOverride.css /usr/lib64/firefox-1.5.0.9/res/entityTables/html40Latin1.properties /usr/lib64/firefox-1.5.0.9/res/entityTables/html40Special.properties /usr/lib64/firefox-1.5.0.9/res/entityTables/html40Symbols.properties /usr/lib64/firefox-1.5.0.9/res/entityTables/htmlEntityVersions.properties /usr/lib64/firefox-1.5.0.9/res/entityTables/mathml20.properties /usr/lib64/firefox-1.5.0.9/res/entityTables/transliterate.properties /usr/lib64/firefox-1.5.0.9/res/fonts /usr/lib64/firefox-1.5.0.9/res/fonts/fontEncoding.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontCMEX10.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontCMSY10.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontMath1.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontMath2.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontMath4.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontMTExtra.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfont.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontPUA.properties /usr/lib64/firefox-1.5.0.9/res/fonts/mathfontSymbol.properties /usr/lib64/firefox-1.5.0.9/res/fonts/pangoFontEncoding.properties /usr/lib64/firefox-1.5.0.9/res/forms.css /usr/lib64/firefox-1.5.0.9/res/grabber.gif /usr/lib64/firefox-1.5.0.9/res/hiddenWindow.html /usr/lib64/firefox-1.5.0.9/res/html.css /usr/lib64/firefox-1.5.0.9/res/html/gopher-audio.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-binary.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-find.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-image.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-menu.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-movie.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-sound.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-telnet.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-text.gif /usr/lib64/firefox-1.5.0.9/res/html/gopher-unknown.gif /usr/lib64/firefox-1.5.0.9/res/langGroups.properties /usr/lib64/firefox-1.5.0.9/res/language.properties /usr/lib64/firefox-1.5.0.9/res/loading-image.gif /usr/lib64/firefox-1.5.0.9/res/mathml.css /usr/lib64/firefox-1.5.0.9/res/quirk.css /usr/lib64/firefox-1.5.0.9/res/sample.unixpsfonts.properties /usr/lib64/firefox-1.5.0.9/res/svg.css /usr/lib64/firefox-1.5.0.9/res/table-add-column-after-active.gif /usr/lib64/firefox-1.5.0.9/res/table-add-column-after.gif /usr/lib64/firefox-1.5.0.9/res/table-add-column-after-hover.gif /usr/lib64/firefox-1.5.0.9/res/table-add-column-before-active.gif /usr/lib64/firefox-1.5.0.9/res/table-add-column-before.gif /usr/lib64/firefox-1.5.0.9/res/table-add-column-before-hover.gif /usr/lib64/firefox-1.5.0.9/res/table-add-row-after-active.gif /usr/lib64/firefox-1.5.0.9/res/table-add-row-after.gif /usr/lib64/firefox-1.5.0.9/res/table-add-row-after-hover.gif /usr/lib64/firefox-1.5.0.9/res/table-add-row-before-active.gif /usr/lib64/firefox-1.5.0.9/res/table-add-row-before.gif /usr/lib64/firefox-1.5.0.9/res/table-add-row-before-hover.gif /usr/lib64/firefox-1.5.0.9/res/table-remove-column-active.gif /usr/lib64/firefox-1.5.0.9/res/table-remove-column.gif /usr/lib64/firefox-1.5.0.9/res/table-remove-column-hover.gif /usr/lib64/firefox-1.5.0.9/res/table-remove-row-active.gif /usr/lib64/firefox-1.5.0.9/res/table-remove-row.gif /usr/lib64/firefox-1.5.0.9/res/table-remove-row-hover.gif /usr/lib64/firefox-1.5.0.9/res/ua.css /usr/lib64/firefox-1.5.0.9/res/unixcharset.properties /usr/lib64/firefox-1.5.0.9/res/viewer.properties /usr/lib64/firefox-1.5.0.9/res/viewsource.css /usr/lib64/firefox-1.5.0.9/run-mozilla.sh /usr/lib64/firefox-1.5.0.9/searchplugins/amazondotcom.png /usr/lib64/firefox-1.5.0.9/searchplugins/amazondotcom.src /usr/lib64/firefox-1.5.0.9/searchplugins/answers.png /usr/lib64/firefox-1.5.0.9/searchplugins/answers.src /usr/lib64/firefox-1.5.0.9/searchplugins/creativecommons.png /usr/lib64/firefox-1.5.0.9/searchplugins/creativecommons.src /usr/lib64/firefox-1.5.0.9/searchplugins/eBay.gif /usr/lib64/firefox-1.5.0.9/searchplugins/eBay.src /usr/lib64/firefox-1.5.0.9/searchplugins/google.gif /usr/lib64/firefox-1.5.0.9/searchplugins/google.src /usr/lib64/firefox-1.5.0.9/searchplugins/yahoo.gif /usr/lib64/firefox-1.5.0.9/searchplugins/yahoo.src /usr/lib64/firefox-1.5.0.9/updater /usr/lib64/firefox-1.5.0.9/updater.ini /usr/lib64/firefox-1.5.0.9/xpicleanup /usr/lib64/GConf/2/libgconfbackend-xml.so /usr/lib64/gconv/UTF-16.so /usr/lib64/gnome-vfs-2.0/modules/libfile.so /usr/lib64/gnome-vfs-2.0/modules/libmapping.so /usr/lib64/gstreamer-0.10/libgst1394.so /usr/lib64/gstreamer-0.10/libgstadder.so /usr/lib64/gstreamer-0.10/libgstalaw.so /usr/lib64/gstreamer-0.10/libgstalphacolor.so /usr/lib64/gstreamer-0.10/libgstalpha.so /usr/lib64/gstreamer-0.10/libgstalsa.so /usr/lib64/gstreamer-0.10/libgstannodex.so /usr/lib64/gstreamer-0.10/libgstapetag.so /usr/lib64/gstreamer-0.10/libgstaudioconvert.so /usr/lib64/gstreamer-0.10/libgstaudiorate.so /usr/lib64/gstreamer-0.10/libgstaudioresample.so /usr/lib64/gstreamer-0.10/libgstaudiotestsrc.so /usr/lib64/gstreamer-0.10/libgstauparse.so /usr/lib64/gstreamer-0.10/libgstautodetect.so /usr/lib64/gstreamer-0.10/libgstavi.so /usr/lib64/gstreamer-0.10/libgstcairo.so /usr/lib64/gstreamer-0.10/libgstcdparanoia.so /usr/lib64/gstreamer-0.10/libgstcoreelements.so /usr/lib64/gstreamer-0.10/libgstcoreindexers.so /usr/lib64/gstreamer-0.10/libgstcutter.so /usr/lib64/gstreamer-0.10/libgstdebug.so /usr/lib64/gstreamer-0.10/libgstdecodebin.so /usr/lib64/gstreamer-0.10/libgstdv.so /usr/lib64/gstreamer-0.10/libgstefence.so /usr/lib64/gstreamer-0.10/libgsteffectv.so /usr/lib64/gstreamer-0.10/libgstesd.so /usr/lib64/gstreamer-0.10/libgstffmpegcolorspace.so /usr/lib64/gstreamer-0.10/libgstflac.so /usr/lib64/gstreamer-0.10/libgstflxdec.so /usr/lib64/gstreamer-0.10/libgstgconfelements.so /usr/lib64/gstreamer-0.10/libgstgnomevfs.so /usr/lib64/gstreamer-0.10/libgstgoom.so /usr/lib64/gstreamer-0.10/libgsthalelements.so /usr/lib64/gstreamer-0.10/libgsticydemux.so /usr/lib64/gstreamer-0.10/libgstid3demux.so /usr/lib64/gstreamer-0.10/libgstjpeg.so /usr/lib64/gstreamer-0.10/libgstlevel.so /usr/lib64/gstreamer-0.10/libgstmatroska.so /usr/lib64/gstreamer-0.10/libgstmulaw.so /usr/lib64/gstreamer-0.10/libgstmultipart.so /usr/lib64/gstreamer-0.10/libgstnavigationtest.so /usr/lib64/gstreamer-0.10/libgstogg.so /usr/lib64/gstreamer-0.10/libgstossaudio.so /usr/lib64/gstreamer-0.10/libgstpango.so /usr/lib64/gstreamer-0.10/libgstplaybin.so /usr/lib64/gstreamer-0.10/libgstpng.so /usr/lib64/gstreamer-0.10/libgstrtp.so /usr/lib64/gstreamer-0.10/libgstrtsp.so /usr/lib64/gstreamer-0.10/libgstsmpte.so /usr/lib64/gstreamer-0.10/libgstspeex.so /usr/lib64/gstreamer-0.10/libgstsubparse.so /usr/lib64/gstreamer-0.10/libgsttcp.so /usr/lib64/gstreamer-0.10/libgsttheora.so /usr/lib64/gstreamer-0.10/libgsttypefindfunctions.so /usr/lib64/gstreamer-0.10/libgstudp.so /usr/lib64/gstreamer-0.10/libgstvideo4linux.so /usr/lib64/gstreamer-0.10/libgstvideobalance.so /usr/lib64/gstreamer-0.10/libgstvideobox.so /usr/lib64/gstreamer-0.10/libgstvideoflip.so /usr/lib64/gstreamer-0.10/libgstvideomixer.so /usr/lib64/gstreamer-0.10/libgstvideorate.so /usr/lib64/gstreamer-0.10/libgstvideoscale.so /usr/lib64/gstreamer-0.10/libgstvideotestsrc.so /usr/lib64/gstreamer-0.10/libgstvolume.so /usr/lib64/gstreamer-0.10/libgstvorbis.so /usr/lib64/gstreamer-0.10/libgstwavenc.so /usr/lib64/gstreamer-0.10/libgstwavparse.so /usr/lib64/gstreamer-0.10/libgstximagesink.so /usr/lib64/gstreamer-0.10/libgstximagesrc.so /usr/lib64/gstreamer-0.10/libgstxvimagesink.so /usr/lib64/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so /usr/lib64/libaudiofile.so.0 /usr/lib64/libbeecrypt.so.6 /usr/lib64/libbonoboui-2.so.0 /usr/lib64/libcamel-1.2.so.0 /usr/lib64/libcamel-provider-1.2.so.8 /usr/lib64/libebook-1.2.so.9 /usr/lib64/libecal-1.2.so.7 /usr/lib64/libedata-book-1.2.so.2 /usr/lib64/libedata-cal-1.2.so.6 /usr/lib64/libedataserver-1.2.so.7 /usr/lib64/libedataserverui-1.2.so.8 /usr/lib64/libeel-2.so.2 /usr/lib64/libegroupwise-1.2.so.12 /usr/lib64/libelf.so.1 /usr/lib64/libesd.so.0 /usr/lib64/libexif.so.12 /usr/lib64/libfam.so.0 /usr/lib64/libfontenc.so.1 /usr/lib64/libgailutil.so.18 /usr/lib64/libgcrypt.so.11 /usr/lib64/libglade-2.0.so.0 /usr/lib64/libgnome-2.so.0 /usr/lib64/libgnomecups-1.0.so.1 /usr/lib64/libgnome-desktop-2.so.2 /usr/lib64/libgnome-keyring.so.0 /usr/lib64/libgnome-menu.so.2 /usr/lib64/libgnomeprint-2-2.so.0 /usr/lib64/libgnomeprintui-2-2.so.0 /usr/lib64/libgnomeui-2.so.0 /usr/lib64/libgnome-window-settings.so.1 /usr/lib64/libgnutls.so.13 /usr/lib64/libgpg-error.so.0 /usr/lib64/libgssapi_krb5.so.2 /usr/lib64/libgstinterfaces-0.10.so.0 /usr/lib64/libgstreamer-0.10.so.0 /usr/lib64/libgtkhtml-3.8.so.15 /usr/lib64/libIDL-2.so.0 /usr/lib64/libjpeg.so.62 /usr/lib64/libk5crypto.so.3 /usr/lib64/libkrb5.so.3 /usr/lib64/libkrb5support.so.0 /usr/lib64/libmetacity-private.so.0 /usr/lib64/libnautilus-extension.so.1 /usr/lib64/libnautilus-private.so.2 /usr/lib64/libneon.so.25 /usr/lib64/libnspr4.so /usr/lib64/libnss3.so /usr/lib64/libnssckbi.so /usr/lib64/libORBit-imodule-2.so.0 /usr/lib64/libpanel-applet-2.so.0 /usr/lib64/libplc4.so /usr/lib64/libplds4.so /usr/lib64/librpm-4.4.so /usr/lib64/librpmbuild-4.4.so /usr/lib64/librpmdb-4.4.so /usr/lib64/librpmio-4.4.so /usr/lib64/libsmime3.so /usr/lib64/libsoftokn3.so /usr/lib64/libsoup-2.2.so.8 /usr/lib64/libsqlite3.so.0 /usr/lib64/libssl3.so /usr/lib64/libstartup-notification-1.so.0 /usr/lib64/libstdc++.so.6 /usr/lib64/libwnck-1.so.18 /usr/lib64/libxklavier.so.11 /usr/lib64/libXmu.so.6 /usr/lib64/libXRes.so.1 /usr/lib64/libXss.so.1 /usr/lib64/libXt.so.6 /usr/lib64/libXxf86misc.so.1 /usr/lib64/libXxf86vm.so.1 /usr/lib64/libz.so.1 /usr/lib64/nautilus/extensions-1.0/libnautilus-burn-extension.so /usr/lib64/nautilus/extensions-1.0/libnautilus-fileroller.so /usr/lib64/nautilus/extensions-1.0/libnautilus-fontilus.so /usr/lib64/nautilus/extensions-1.0/libnautilus-themus.so /usr/lib64/openoffice.org2.0/program/javaldx /usr/lib64/openoffice.org2.0/program/pagein /usr/lib64/openoffice.org2.0/program/soffice /usr/lib64/openoffice.org2.0/program/soffice.bin /usr/lib64/orbit-2.0/Bonobo_module.so /usr/lib64/python2.4/atexit.py /usr/lib64/python2.4/atexit.pyc /usr/lib64/python2.4/base64.py /usr/lib64/python2.4/base64.pyc /usr/lib64/python2.4/bisect.py /usr/lib64/python2.4/bisect.pyc /usr/lib64/python2.4/calendar.py /usr/lib64/python2.4/calendar.pyc /usr/lib64/python2.4/codecs.pyc /usr/lib64/python2.4/cookielib.py /usr/lib64/python2.4/cookielib.pyc /usr/lib64/python2.4/copy.pyc /usr/lib64/python2.4/copy_reg.pyc /usr/lib64/python2.4/dis.pyc /usr/lib64/python2.4/encodings/aliases.pyc /usr/lib64/python2.4/encodings/ascii.py /usr/lib64/python2.4/encodings/ascii.pyc /usr/lib64/python2.4/encodings/idna.py /usr/lib64/python2.4/encodings/idna.pyc /usr/lib64/python2.4/encodings/__init__.pyc /usr/lib64/python2.4/encodings/latin_1.pyc /usr/lib64/python2.4/encodings/utf_8.py /usr/lib64/python2.4/encodings/utf_8.pyc /usr/lib64/python2.4/fnmatch.pyc /usr/lib64/python2.4/ftplib.py /usr/lib64/python2.4/ftplib.pyc /usr/lib64/python2.4/gettext.pyc /usr/lib64/python2.4/glob.pyc /usr/lib64/python2.4/gopherlib.py /usr/lib64/python2.4/gopherlib.pyc /usr/lib64/python2.4/gzip.py /usr/lib64/python2.4/gzip.pyc /usr/lib64/python2.4/httplib.py /usr/lib64/python2.4/httplib.pyc /usr/lib64/python2.4/inspect.pyc /usr/lib64/python2.4/keyword.py /usr/lib64/python2.4/keyword.pyc /usr/lib64/python2.4/lib-dynload/arraymodule.so /usr/lib64/python2.4/lib-dynload/binascii.so /usr/lib64/python2.4/lib-dynload/_bisect.so /usr/lib64/python2.4/lib-dynload/collectionsmodule.so /usr/lib64/python2.4/lib-dynload/datetime.so /usr/lib64/python2.4/lib-dynload/fcntlmodule.so /usr/lib64/python2.4/lib-dynload/mathmodule.so /usr/lib64/python2.4/lib-dynload/md5module.so /usr/lib64/python2.4/lib-dynload/operator.so /usr/lib64/python2.4/lib-dynload/_randommodule.so /usr/lib64/python2.4/lib-dynload/selectmodule.so /usr/lib64/python2.4/lib-dynload/shamodule.so /usr/lib64/python2.4/lib-dynload/_socketmodule.so /usr/lib64/python2.4/lib-dynload/_ssl.so /usr/lib64/python2.4/lib-dynload/unicodedata.so /usr/lib64/python2.4/linecache.pyc /usr/lib64/python2.4/locale.pyc /usr/lib64/python2.4/logging/__init__.py /usr/lib64/python2.4/logging/__init__.pyc /usr/lib64/python2.4/_LWPCookieJar.py /usr/lib64/python2.4/_LWPCookieJar.pyc /usr/lib64/python2.4/mimetools.py /usr/lib64/python2.4/mimetools.pyc /usr/lib64/python2.4/mimetypes.py /usr/lib64/python2.4/mimetypes.pyc /usr/lib64/python2.4/_MozillaCookieJar.py /usr/lib64/python2.4/_MozillaCookieJar.pyc /usr/lib64/python2.4/opcode.pyc /usr/lib64/python2.4/os.pyc /usr/lib64/python2.4/popen2.py /usr/lib64/python2.4/popen2.pyc /usr/lib64/python2.4/posixpath.pyc /usr/lib64/python2.4/random.py /usr/lib64/python2.4/random.pyc /usr/lib64/python2.4/re.pyc /usr/lib64/python2.4/rfc822.py /usr/lib64/python2.4/rfc822.pyc /usr/lib64/python2.4/shelve.py /usr/lib64/python2.4/shelve.pyc /usr/lib64/python2.4/site-packages/gtk-2.0/atk.so /usr/lib64/python2.4/site-packages/gtk-2.0/bonobo/activation.so /usr/lib64/python2.4/site-packages/gtk-2.0/bonobo/_bonobo.so /usr/lib64/python2.4/site-packages/gtk-2.0/bonobo/__init__.py /usr/lib64/python2.4/site-packages/gtk-2.0/bonobo/__init__.pyc /usr/lib64/python2.4/site-packages/gtk-2.0/bonobo/ui.so /usr/lib64/python2.4/site-packages/gtk-2.0/gnomecanvas.so /usr/lib64/python2.4/site-packages/gtk-2.0/gnome/_gnome.so /usr/lib64/python2.4/site-packages/gtk-2.0/gnome/__init__.py /usr/lib64/python2.4/site-packages/gtk-2.0/gnome/__init__.pyc /usr/lib64/python2.4/site-packages/gtk-2.0/gnome/ui.so /usr/lib64/python2.4/site-packages/gtk-2.0/gnomevfs.so /usr/lib64/python2.4/site-packages/gtk-2.0/gobject.so /usr/lib64/python2.4/site-packages/gtk-2.0/gtk/glade.so /usr/lib64/python2.4/site-packages/gtk-2.0/gtk/_gtk.so /usr/lib64/python2.4/site-packages/gtk-2.0/gtkhtml2.so /usr/lib64/python2.4/site-packages/gtk-2.0/gtk/__init__.py /usr/lib64/python2.4/site-packages/gtk-2.0/gtk/__init__.pyc /usr/lib64/python2.4/site-packages/gtk-2.0/gtk/keysyms.py /usr/lib64/python2.4/site-packages/gtk-2.0/gtk/keysyms.pyc /usr/lib64/python2.4/site-packages/gtk-2.0/pango.so /usr/lib64/python2.4/site-packages/japanese/aliases/__init__.pyc /usr/lib64/python2.4/site-packages/japanese/__init__.pyc /usr/lib64/python2.4/site-packages/OpenSSL/crypto.so /usr/lib64/python2.4/site-packages/OpenSSL/__init__.py /usr/lib64/python2.4/site-packages/OpenSSL/__init__.pyc /usr/lib64/python2.4/site-packages/OpenSSL/rand.so /usr/lib64/python2.4/site-packages/OpenSSL/SSL.so /usr/lib64/python2.4/site-packages/OpenSSL/tsafe.py /usr/lib64/python2.4/site-packages/OpenSSL/tsafe.pyc /usr/lib64/python2.4/site-packages/OpenSSL/version.py /usr/lib64/python2.4/site-packages/OpenSSL/version.pyc /usr/lib64/python2.4/site-packages/ORBit.so /usr/lib/python2.4/site-packages/rhn/connections.py /usr/lib/python2.4/site-packages/rhn/connections.pyc /usr/lib/python2.4/site-packages/rhn/__init__.py /usr/lib/python2.4/site-packages/rhn/__init__.pyc /usr/lib/python2.4/site-packages/rhn/nonblocking.py /usr/lib/python2.4/site-packages/rhn/nonblocking.pyc /usr/lib/python2.4/site-packages/rhn/rpclib.py /usr/lib/python2.4/site-packages/rhn/rpclib.pyc /usr/lib/python2.4/site-packages/rhn/SmartIO.py /usr/lib/python2.4/site-packages/rhn/SmartIO.pyc /usr/lib/python2.4/site-packages/rhn/SSL.py /usr/lib/python2.4/site-packages/rhn/SSL.pyc /usr/lib/python2.4/site-packages/rhn/transports.py /usr/lib/python2.4/site-packages/rhn/transports.pyc /usr/lib/python2.4/site-packages/rhn/UserDictCase.py /usr/lib/python2.4/site-packages/rhn/UserDictCase.pyc /usr/lib64/python2.4/site-packages/rhpl/gzread.pyc /usr/lib64/python2.4/site-packages/rhpl/__init__.pyc /usr/lib64/python2.4/site-packages/rhpl/translate.pyc /usr/lib64/python2.4/site-packages/rpm/__init__.py /usr/lib64/python2.4/site-packages/rpm/__init__.pyc /usr/lib64/python2.4/site-packages/rpm/_rpmmodule.so /usr/lib64/python2.4/site-packages/_xmlplus/__init__.pyc /usr/lib64/python2.4/site-packages/_xmlplus/parsers/expat.py /usr/lib64/python2.4/site-packages/_xmlplus/parsers/expat.pyc /usr/lib64/python2.4/site-packages/_xmlplus/parsers/__init__.py /usr/lib64/python2.4/site-packages/_xmlplus/parsers/__init__.pyc /usr/lib64/python2.4/site-packages/_xmlplus/parsers/pyexpat.so /usr/lib64/python2.4/site.pyc /usr/lib64/python2.4/socket.py /usr/lib64/python2.4/socket.pyc /usr/lib64/python2.4/sre_compile.pyc /usr/lib64/python2.4/sre_constants.pyc /usr/lib64/python2.4/sre_parse.pyc /usr/lib64/python2.4/sre.pyc /usr/lib64/python2.4/stat.pyc /usr/lib64/python2.4/StringIO.py /usr/lib64/python2.4/StringIO.pyc /usr/lib64/python2.4/stringprep.py /usr/lib64/python2.4/stringprep.pyc /usr/lib64/python2.4/string.pyc /usr/lib64/python2.4/tempfile.py /usr/lib64/python2.4/tempfile.pyc /usr/lib64/python2.4/threading.py /usr/lib64/python2.4/threading.pyc /usr/lib64/python2.4/tokenize.pyc /usr/lib64/python2.4/token.pyc /usr/lib64/python2.4/traceback.py /usr/lib64/python2.4/traceback.pyc /usr/lib64/python2.4/types.pyc /usr/lib64/python2.4/urllib2.py /usr/lib64/python2.4/urllib2.pyc /usr/lib64/python2.4/urllib.py /usr/lib64/python2.4/urllib.pyc /usr/lib64/python2.4/urlparse.py /usr/lib64/python2.4/urlparse.pyc /usr/lib64/python2.4/UserDict.pyc /usr/lib64/python2.4/warnings.pyc /usr/lib64/python2.4/xml/__init__.pyc /usr/lib64/python2.4/xmlrpclib.py /usr/lib64/python2.4/xmlrpclib.pyc /usr/lib64/X11/app-defaults/XScreenSaver /usr/sbin/lpc /usr/share/applications/defaults.list /usr/share/applications/gnome-nautilus-computer.desktop /usr/share/applications/gnome-nautilus-home.desktop /usr/share/applications/gnome-search-tool.desktop /usr/share/applications/mimeinfo.cache /usr/share/applications/mozilla-firefox.desktop /usr/share/backgrounds/images/default.png /usr/share/control-center-2.0/xrdb/Editres.ad /usr/share/control-center-2.0/xrdb/Emacs.ad /usr/share/control-center-2.0/xrdb/General.ad /usr/share/control-center-2.0/xrdb/Motif.ad /usr/share/control-center-2.0/xrdb/Tk.ad /usr/share/control-center-2.0/xrdb/Xaw.ad /usr/share/eggcups/icon.png /usr/share/evolution/2.8/addresstypes.xml /usr/share/evolution/2.8/default/C/mail/local/Inbox /usr/share/evolution/2.8/default/de/mail/local/Inbox /usr/share/evolution/2.8/default/fi/mail/local/Inbox /usr/share/evolution/2.8/default/fr/mail/local/Inbox /usr/share/evolution/2.8/default/ja/mail/local/Inbox /usr/share/evolution/2.8/default/lt/mail/local/Inbox /usr/share/evolution/2.8/default/mk/mail/local/Inbox /usr/share/evolution/2.8/default/nl/mail/local/Inbox /usr/share/evolution/2.8/default/pt/mail/local/Inbox /usr/share/evolution/2.8/default/zh_CN/mail/local/Inbox /usr/share/evolution/2.8/ecps/medbook.ecps /usr/share/evolution/2.8/ecps/phonelist.ecps /usr/share/evolution/2.8/ecps/smallbook.ecps /usr/share/evolution/2.8/errors/addressbook.error /usr/share/evolution/2.8/errors/calendar.error /usr/share/evolution/2.8/errors/e-system.error /usr/share/evolution/2.8/errors/filter.error /usr/share/evolution/2.8/errors/mail-composer.error /usr/share/evolution/2.8/errors/mail.error /usr/share/evolution/2.8/errors/org-gnome-default-mailer.error /usr/share/evolution/2.8/errors/org-gnome-exchange-operations.error /usr/share/evolution/2.8/errors/org-gnome-itip-formatter.error /usr/share/evolution/2.8/errors/org-gnome-mailing-list-actions.error /usr/share/evolution/2.8/errors/org-gnome-mail-retract-errors.xml /usr/share/evolution/2.8/errors/org-gnome-proxy-errors.xml /usr/share/evolution/2.8/errors/org-gnome-proxy-login-errors.xml /usr/share/evolution/2.8/errors/org-gnome-shared-folder.errors.xml /usr/share/evolution/2.8/errors/shell.error /usr/share/evolution/2.8/etspec/e-addressbook-view.etspec /usr/share/evolution/2.8/etspec/e-calendar-table.etspec /usr/share/evolution/2.8/etspec/e-cal-list-view.etspec /usr/share/evolution/2.8/etspec/e-contact-list-editor.etspec /usr/share/evolution/2.8/etspec/e-meeting-time-sel.etspec /usr/share/evolution/2.8/etspec/e-memo-table.etspec /usr/share/evolution/2.8/etspec/message-list.etspec /usr/share/evolution/2.8/filtertypes.xml /usr/share/evolution/2.8/glade/alarm-dialog.glade /usr/share/evolution/2.8/glade/alarm-list-dialog.glade /usr/share/evolution/2.8/glade/alarm-notify.glade /usr/share/evolution/2.8/glade/cal-prefs-dialog.glade /usr/share/evolution/2.8/glade/contact-editor.glade /usr/share/evolution/2.8/glade/contact-list-editor.glade /usr/share/evolution/2.8/glade/eab-contact-commit-duplicate-detected.glade /usr/share/evolution/2.8/glade/eab-contact-duplicate-detected.glade /usr/share/evolution/2.8/glade/e-active-connection-dialog.glade /usr/share/evolution/2.8/glade/e-attachment.glade /usr/share/evolution/2.8/glade/e-contact-print.glade /usr/share/evolution/2.8/glade/e-delegate-dialog.glade /usr/share/evolution/2.8/glade/e-foreign-folder-dialog.glade /usr/share/evolution/2.8/glade/e-itip-control.glade /usr/share/evolution/2.8/glade/e-send-options.glade /usr/share/evolution/2.8/glade/e-table-config.glade /usr/share/evolution/2.8/glade/e-table-config-no-group.glade /usr/share/evolution/2.8/glade/e-table-field-chooser.glade /usr/share/evolution/2.8/glade/e-timezone-dialog.glade /usr/share/evolution/2.8/glade/event-page.glade /usr/share/evolution/2.8/glade/exchange-change-password.glade /usr/share/evolution/2.8/glade/exchange-delegates.glade /usr/share/evolution/2.8/glade/exchange-folder-tree.glade /usr/share/evolution/2.8/glade/exchange-oof.glade /usr/share/evolution/2.8/glade/exchange-passwd-expiry.glade /usr/share/evolution/2.8/glade/exchange-permissions-dialog.glade /usr/share/evolution/2.8/glade/filter.glade /usr/share/evolution/2.8/glade/fulladdr.glade /usr/share/evolution/2.8/glade/fullname.glade /usr/share/evolution/2.8/glade/gal-categories.glade /usr/share/evolution/2.8/glade/gal-define-views.glade /usr/share/evolution/2.8/glade/gal-view-instance-save-as-dialog.glade /usr/share/evolution/2.8/glade/gal-view-new-dialog.glade /usr/share/evolution/2.8/glade/goto-dialog.glade /usr/share/evolution/2.8/glade/im.glade /usr/share/evolution/2.8/glade/import.glade /usr/share/evolution/2.8/glade/junk-settings.glade /usr/share/evolution/2.8/glade/ldap-config.glade /usr/share/evolution/2.8/glade/mail-config.glade /usr/share/evolution/2.8/glade/mail-dialogs.glade /usr/share/evolution/2.8/glade/meeting-page.glade /usr/share/evolution/2.8/glade/memo-page.glade /usr/share/evolution/2.8/glade/properties.glade /usr/share/evolution/2.8/glade/proxy-add-dialog.glade /usr/share/evolution/2.8/glade/proxy-listing.glade /usr/share/evolution/2.8/glade/proxy-login-dialog.glade /usr/share/evolution/2.8/glade/recurrence-page.glade /usr/share/evolution/2.8/glade/schedule-page.glade /usr/share/evolution/2.8/glade/smime-ui.glade /usr/share/evolution/2.8/glade/task-details-page.glade /usr/share/evolution/2.8/glade/task-page.glade /usr/share/evolution/2.8/help/quickref/C/quickref.pdf /usr/share/evolution/2.8/help/quickref/de/quickref.pdf /usr/share/evolution/2.8/images/about-box.png /usr/share/evolution/2.8/images/bcg.png /usr/share/evolution/2.8/images/evolution-contacts-mini.png /usr/share/evolution/2.8/images/minus.png /usr/share/evolution/2.8/images/monkey-16.png /usr/share/evolution/2.8/images/offline.png /usr/share/evolution/2.8/images/online.png /usr/share/evolution/2.8/images/plus.png /usr/share/evolution/2.8/images/query-free-busy.png /usr/share/evolution/2.8/images/world_map-960.png /usr/share/evolution/2.8/searchtypes.xml /usr/share/evolution/2.8/ui/evolution-addressbook.xml /usr/share/evolution/2.8/ui/evolution-calendar.xml /usr/share/evolution/2.8/ui/evolution-composer-entries.xml /usr/share/evolution/2.8/ui/evolution-editor.xml /usr/share/evolution/2.8/ui/evolution-event-editor.xml /usr/share/evolution/2.8/ui/evolution-mail-global.xml /usr/share/evolution/2.8/ui/evolution-mail-list.xml /usr/share/evolution/2.8/ui/evolution-mail-messagedisplay.xml /usr/share/evolution/2.8/ui/evolution-mail-message.xml /usr/share/evolution/2.8/ui/evolution-memo-editor.xml /usr/share/evolution/2.8/ui/evolution-memos.xml /usr/share/evolution/2.8/ui/evolution-message-composer.xml /usr/share/evolution/2.8/ui/evolution-signature-editor.xml /usr/share/evolution/2.8/ui/evolution-subscribe.xml /usr/share/evolution/2.8/ui/evolution-task-editor.xml /usr/share/evolution/2.8/ui/evolution-tasks.xml /usr/share/evolution/2.8/ui/evolution.xml /usr/share/evolution/2.8/vfoldertypes.xml /usr/share/evolution/2.8/views/addressbook/Address_Cards.galview /usr/share/evolution/2.8/views/addressbook/By_Company.galview /usr/share/evolution/2.8/views/addressbook/galview.xml /usr/share/evolution/2.8/views/addressbook/Phone_List.galview /usr/share/evolution/2.8/views/calendar/galview.xml /usr/share/evolution/2.8/views/calendar/List_View.galview /usr/share/evolution/2.8/views/mail/As_Sent_Folder.galview /usr/share/evolution/2.8/views/mail/By_Follow_Up_Flag.galview /usr/share/evolution/2.8/views/mail/By_Sender.galview /usr/share/evolution/2.8/views/mail/By_Status.galview /usr/share/evolution/2.8/views/mail/By_Subject.galview /usr/share/evolution/2.8/views/mail/galview.xml /usr/share/evolution/2.8/views/mail/Messages.galview /usr/share/evolution/2.8/views/mail/Wide_View_Normal.galview /usr/share/evolution/2.8/views/mail/Wide_View_Sent.galview /usr/share/evolution/2.8/views/memos/galview.xml /usr/share/evolution/2.8/views/memos/Memos.galview /usr/share/evolution/2.8/views/tasks/galview.xml /usr/share/evolution/2.8/views/tasks/Tasks.galview /usr/share/evolution/2.8/views/tasks/With_DueDate.galview /usr/share/evolution/2.8/views/tasks/With_Status.galview /usr/share/evolution/2.8/weather/category_weather_cloudy_16.png /usr/share/evolution/2.8/weather/category_weather_fog_16.png /usr/share/evolution/2.8/weather/category_weather_partly_cloudy_16.png /usr/share/evolution/2.8/weather/category_weather_rain_16.png /usr/share/evolution/2.8/weather/category_weather_snow_16.png /usr/share/evolution/2.8/weather/category_weather_sun_16.png /usr/share/evolution/2.8/weather/category_weather_tstorm_16.png /usr/share/evolution-data-server-1.8/evolutionperson.schema /usr/share/evolution-data-server-1.8/glade/e-categories-dialog.glade /usr/share/evolution-data-server-1.8/glade/e-name-selector-dialog.glade /usr/share/evolution-data-server-1.8/weather/Locations.xml /usr/share/evolution-data-server-1.8/zoneinfo/zones.tab /usr/share/fonts/bitstream-vera/VeraIt.ttf /usr/share/fonts/default/Type1/n021003l.pfb /usr/share/gdm/BuiltInSessions/default.desktop /usr/share/gnome-2.0/ui/GNOME_ClockApplet.xml /usr/share/gnome-2.0/ui/GNOME_MixerApplet.xml /usr/share/gnome-2.0/ui/GNOME_NotificationAreaApplet.xml /usr/share/gnome-2.0/ui/GNOME_Panel_Popup.xml /usr/share/gnome-2.0/ui/GNOME_ShowDesktopApplet.xml /usr/share/gnome-2.0/ui/GNOME_WindowListApplet.xml /usr/share/gnome-2.0/ui/GNOME_WorkspaceSwitcherApplet.xml /usr/share/gnome/default.session /usr/share/gnome-panelrc /usr/share/gtkhtml-3.8/keybindingsrc.emacs /usr/share/icons/Bluecurve/16x16/apps/icon-accessibility.png /usr/share/icons/Bluecurve/16x16/apps/icon-accessibility-technologies.png /usr/share/icons/Bluecurve/16x16/apps/icon-accessories.png /usr/share/icons/Bluecurve/16x16/apps/icon-applications.png /usr/share/icons/Bluecurve/16x16/apps/icon-audio.png /usr/share/icons/Bluecurve/16x16/apps/icon-background-picture.png /usr/share/icons/Bluecurve/16x16/apps/icon-bug.png /usr/share/icons/Bluecurve/16x16/apps/icon-calculator.png /usr/share/icons/Bluecurve/16x16/apps/icon-camera.png /usr/share/icons/Bluecurve/16x16/apps/icon-cd-burn.png /usr/share/icons/Bluecurve/16x16/apps/icon-cd-rip.png /usr/share/icons/Bluecurve/16x16/apps/icon-character-map.png /usr/share/icons/Bluecurve/16x16/apps/icon-clipboard.png /usr/share/icons/Bluecurve/16x16/apps/icon-clock.png /usr/share/icons/Bluecurve/16x16/apps/icon-computer-ccenter.png /usr/share/icons/Bluecurve/16x16/apps/icon-computer.png /usr/share/icons/Bluecurve/16x16/apps/icon-computer-restart.png /usr/share/icons/Bluecurve/16x16/apps/icon-config-edit.png /usr/share/icons/Bluecurve/16x16/apps/icon-configuration.png /usr/share/icons/Bluecurve/16x16/apps/icon-connect-windows.png /usr/share/icons/Bluecurve/16x16/apps/icon-date.png /usr/share/icons/Bluecurve/16x16/apps/icon-datetime.png /usr/share/icons/Bluecurve/16x16/apps/icon-db-user.png /usr/share/icons/Bluecurve/16x16/apps/icon-desktop.png /usr/share/icons/Bluecurve/16x16/apps/icon-development.png /usr/share/icons/Bluecurve/16x16/apps/icon-disks.png /usr/share/icons/Bluecurve/16x16/apps/icon-dns.png /usr/share/icons/Bluecurve/16x16/apps/icon-documentation.png /usr/share/icons/Bluecurve/16x16/apps/icon-eclipse.png /usr/share/icons/Bluecurve/16x16/apps/icon-email.png /usr/share/icons/Bluecurve/16x16/apps/icon-explore-tree.png /usr/share/icons/Bluecurve/16x16/apps/icon-filemanager.png /usr/share/icons/Bluecurve/16x16/apps/icon-fileshare.png /usr/share/icons/Bluecurve/16x16/apps/icon-fileshare-smb.png /usr/share/icons/Bluecurve/16x16/apps/icon-fonts.png /usr/share/icons/Bluecurve/16x16/apps/icon-games.png /usr/share/icons/Bluecurve/16x16/apps/icon-gfx.png /usr/share/icons/Bluecurve/16x16/apps/icon-gimp.png /usr/share/icons/Bluecurve/16x16/apps/icon-glade.png /usr/share/icons/Bluecurve/16x16/apps/icon-globe.png /usr/share/icons/Bluecurve/16x16/apps/icon-groupchat.png /usr/share/icons/Bluecurve/16x16/apps/icon-help.png /usr/share/icons/Bluecurve/16x16/apps/icon-html.png /usr/share/icons/Bluecurve/16x16/apps/icon-httpd.png /usr/share/icons/Bluecurve/16x16/apps/icon-install-software.png /usr/share/icons/Bluecurve/16x16/apps/icon-instantmessage.png /usr/share/icons/Bluecurve/16x16/apps/icon-keyboard.png /usr/share/icons/Bluecurve/16x16/apps/icon-keyboard-shortcuts.png /usr/share/icons/Bluecurve/16x16/apps/icon-kickstart.png /usr/share/icons/Bluecurve/16x16/apps/icon-languages.png /usr/share/icons/Bluecurve/16x16/apps/icon-launcher.png /usr/share/icons/Bluecurve/16x16/apps/icon-logbook.png /usr/share/icons/Bluecurve/16x16/apps/icon-media.png /usr/share/icons/Bluecurve/16x16/apps/icon-memory-profile.png /usr/share/icons/Bluecurve/16x16/apps/icon-menus-toolbars.png /usr/share/icons/Bluecurve/16x16/apps/icon-mime-types.png /usr/share/icons/Bluecurve/16x16/apps/icon-mixer.png /usr/share/icons/Bluecurve/16x16/apps/icon-monitor.png /usr/share/icons/Bluecurve/16x16/apps/icon-mouse.png /usr/share/icons/Bluecurve/16x16/apps/icon-network-address.png /usr/share/icons/Bluecurve/16x16/apps/icon-network-firewall.png /usr/share/icons/Bluecurve/16x16/apps/icon-network.png /usr/share/icons/Bluecurve/16x16/apps/icon-network-systems.png /usr/share/icons/Bluecurve/16x16/apps/icon-network-wizard.png /usr/share/icons/Bluecurve/16x16/apps/icon-notepad.png /usr/share/icons/Bluecurve/16x16/apps/icon-office.png /usr/share/icons/Bluecurve/16x16/apps/icon-office-presentation.png /usr/share/icons/Bluecurve/16x16/apps/icon-office-spreadsheet.png /usr/share/icons/Bluecurve/16x16/apps/icon-office-wordprocessor.png /usr/share/icons/Bluecurve/16x16/apps/icon-packages.png /usr/share/icons/Bluecurve/16x16/apps/icon-panel.png /usr/share/icons/Bluecurve/16x16/apps/icon-printer.png /usr/share/icons/Bluecurve/16x16/apps/icon-resize-screen.png /usr/share/icons/Bluecurve/16x16/apps/icon-runapp.png /usr/share/icons/Bluecurve/16x16/apps/icon-search.png /usr/share/icons/Bluecurve/16x16/apps/icon-security-badge.png /usr/share/icons/Bluecurve/16x16/apps/icon-security-global.png /usr/share/icons/Bluecurve/16x16/apps/icon-security-keys.png /usr/share/icons/Bluecurve/16x16/apps/icon-security-lock.png /usr/share/icons/Bluecurve/16x16/apps/icon-server.png /usr/share/icons/Bluecurve/16x16/apps/icon-service.png /usr/share/icons/Bluecurve/16x16/apps/icon-settings.png /usr/share/icons/Bluecurve/16x16/apps/icon-sound.png /usr/share/icons/Bluecurve/16x16/apps/icon-speaker.png /usr/share/icons/Bluecurve/16x16/apps/icon-system-configuration.png /usr/share/icons/Bluecurve/16x16/apps/icon-systemhealth.png /usr/share/icons/Bluecurve/16x16/apps/icon-system-packages.png /usr/share/icons/Bluecurve/16x16/apps/icon-system-parts.png /usr/share/icons/Bluecurve/16x16/apps/icon-system.png /usr/share/icons/Bluecurve/16x16/apps/icon-system-preferences.png /usr/share/icons/Bluecurve/16x16/apps/icon-system-security.png /usr/share/icons/Bluecurve/16x16/apps/icon-system-settings.png /usr/share/icons/Bluecurve/16x16/apps/icon-television.png /usr/share/icons/Bluecurve/16x16/apps/icon-terminal-linux.png /usr/share/icons/Bluecurve/16x16/apps/icon-terminal.png /usr/share/icons/Bluecurve/16x16/apps/icon-text-internet.png /usr/share/icons/Bluecurve/16x16/apps/icon-themes.png /usr/share/icons/Bluecurve/16x16/apps/icon-traceroute.png /usr/share/icons/Bluecurve/16x16/apps/icon-unknown.png /usr/share/icons/Bluecurve/16x16/apps/icon-update-applet.png /usr/share/icons/Bluecurve/16x16/apps/icon-update.png /usr/share/icons/Bluecurve/16x16/apps/icon-user-id.png /usr/share/icons/Bluecurve/16x16/apps/icon-user-keys.png /usr/share/icons/Bluecurve/16x16/apps/icon-user.png /usr/share/icons/Bluecurve/16x16/apps/icon-vector-editor.png /usr/share/icons/Bluecurve/16x16/apps/icon-web-browser.png /usr/share/icons/Bluecurve/16x16/apps/icon-windowmanager.png /usr/share/icons/Bluecurve/16x16/apps/icon-x-config.png /usr/share/icons/Bluecurve/16x16/apps/icon-xscreensaver.png /usr/share/icons/Bluecurve/16x16/apps/redhat-icon-panel-menu.png /usr/share/icons/Bluecurve/16x16/mimetypes/archive.icon /usr/share/icons/Bluecurve/16x16/mimetypes/archive.png /usr/share/icons/Bluecurve/16x16/mimetypes/camcorder.png /usr/share/icons/Bluecurve/16x16/mimetypes/cd-audio.icon /usr/share/icons/Bluecurve/16x16/mimetypes/cd-audio.png /usr/share/icons/Bluecurve/16x16/mimetypes/cd.icon /usr/share/icons/Bluecurve/16x16/mimetypes/cd.png /usr/share/icons/Bluecurve/16x16/mimetypes/cdr.png /usr/share/icons/Bluecurve/16x16/mimetypes/cdrw.png /usr/share/icons/Bluecurve/16x16/mimetypes/cd-video.icon /usr/share/icons/Bluecurve/16x16/mimetypes/cd-video.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvd.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvdram.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvdrom.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvdr-plus.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvdr.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvdrw.png /usr/share/icons/Bluecurve/16x16/mimetypes/dvd-video.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-about.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-amusement.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio-aiff.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio-au.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio-midi.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio-mp3.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio-ogg.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-audio-wav.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-broken.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-bug.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-clipboard.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-container.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-c.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-cpp.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-h.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-java.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-perl.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-php.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-devel-python.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-device.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-doc_container.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-document.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-executable.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-font.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-generic.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx-bmp.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx-gif.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx-ico.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx-jpg.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx-png.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gfx-xpm.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-gimp.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-help.png /usr/share/icons/Bluecurve/16x16/mimetypes/file.icon /usr/share/icons/Bluecurve/16x16/mimetypes/file-info.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-keys.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-launcher.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-loading.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-lock.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-media.png /usr/share/icons/Bluecurve/16x16/mimetypes/file.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-presentation.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-printer-dvi.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-printer-eps.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-printer-pdf.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-printer.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-printer-ps.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-printer-tex.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-security.png /usr/share/icons/Bluecurve/16x16/mimetypes/fileshare-nfs.png /usr/share/icons/Bluecurve/16x16/mimetypes/fileshare.png /usr/share/icons/Bluecurve/16x16/mimetypes/fileshare-smb.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-spreadsheet.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-style.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-unknown.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-url.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-ai.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-cdr.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-fh.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-sda.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-svg.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-sxd.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-vector_art-wmf.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-video-asf.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-video-avi.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-video-mov.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-video-mpeg.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-video.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-video-rm.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-wordprocessor.png /usr/share/icons/Bluecurve/16x16/mimetypes/file-xml.png /usr/share/icons/Bluecurve/16x16/mimetypes/floppy.icon /usr/share/icons/Bluecurve/16x16/mimetypes/floppy.png /usr/share/icons/Bluecurve/16x16/mimetypes/folder-accept.icon /usr/share/icons/Bluecurve/16x16/mimetypes/folder-accept.png /usr/share/icons/Bluecurve/16x16/mimetypes/folder-apps.icon /usr/share/icons/Bluecurve/16x16/mimetypes/folder-apps.png /usr/share/icons/Bluecurve/16x16/mimetypes/folder-home.icon /usr/share/icons/Bluecurve/16x16/mimetypes/folder-home.png /usr/share/icons/Bluecurve/16x16/mimetypes/folder.icon /usr/share/icons/Bluecurve/16x16/mimetypes/folder-locked.icon /usr/share/icons/Bluecurve/16x16/mimetypes/folder-locked.png /usr/share/icons/Bluecurve/16x16/mimetypes/folder.png /usr/share/icons/Bluecurve/16x16/mimetypes/folder-visiting.icon /usr/share/icons/Bluecurve/16x16/mimetypes/folder-visiting.png /usr/share/icons/Bluecurve/16x16/mimetypes/harddrive.icon /usr/share/icons/Bluecurve/16x16/mimetypes/harddrive.png /usr/share/icons/Bluecurve/16x16/mimetypes/multiple-files.png /usr/share/icons/Bluecurve/16x16/mimetypes/pda.png /usr/share/icons/Bluecurve/16x16/mimetypes/raid.icon /usr/share/icons/Bluecurve/16x16/mimetypes/raid.png /usr/share/icons/Bluecurve/16x16/mimetypes/rpm.png /usr/share/icons/Bluecurve/16x16/mimetypes/scanner.png /usr/share/icons/Bluecurve/16x16/mimetypes/start-here.png /usr/share/icons/Bluecurve/16x16/mimetypes/tablet.png /usr/share/icons/Bluecurve/16x16/mimetypes/trash-drop.png /usr/share/icons/Bluecurve/16x16/mimetypes/trash-empty.png /usr/share/icons/Bluecurve/16x16/mimetypes/trash-full.png /usr/share/icons/Bluecurve/16x16/ooo/stock_3d-effects.png /usr/share/icons/Bluecurve/16x16/ooo/stock_add-decimal-place.png /usr/share/icons/Bluecurve/16x16/ooo/stock_advanced-filter.png /usr/share/icons/Bluecurve/16x16/ooo/stock_anchor.png /usr/share/icons/Bluecurve/16x16/ooo/stock_arrowstyle.png /usr/share/icons/Bluecurve/16x16/ooo/stock_autofilter.png /usr/share/icons/Bluecurve/16x16/ooo/stock_autospellcheck.png /usr/share/icons/Bluecurve/16x16/ooo/stock_autotext.png /usr/share/icons/Bluecurve/16x16/ooo/stock_brightness.png /usr/share/icons/Bluecurve/16x16/ooo/stock_bring-backward.png /usr/share/icons/Bluecurve/16x16/ooo/stock_bring-forward.png /usr/share/icons/Bluecurve/16x16/ooo/stock_bucketfill.png /usr/share/icons/Bluecurve/16x16/ooo/stock_calc-accept.png /usr/share/icons/Bluecurve/16x16/ooo/stock_calc-cancel.png /usr/share/icons/Bluecurve/16x16/ooo/stock_cell-align-bottom.png /usr/share/icons/Bluecurve/16x16/ooo/stock_cell-align-center.png /usr/share/icons/Bluecurve/16x16/ooo/stock_cell-align-top.png /usr/share/icons/Bluecurve/16x16/ooo/stock_channel-blue.png /usr/share/icons/Bluecurve/16x16/ooo/stock_channel-green.png /usr/share/icons/Bluecurve/16x16/ooo/stock_channel-red.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-autoformat.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-data-in-columns.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-data-in-rows.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-edit-type.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-reorganize.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-scale-text.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-toggle-axes.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-toggle-axes-title.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-toggle-hgrid.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-toggle-legend.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-toggle-title.png /usr/share/icons/Bluecurve/16x16/ooo/stock_chart-toggle-vgrid.png /usr/share/icons/Bluecurve/16x16/ooo/stock_choose-themes.png /usr/share/icons/Bluecurve/16x16/ooo/stock_contrast.png /usr/share/icons/Bluecurve/16x16/ooo/stock_copy.png /usr/share/icons/Bluecurve/16x16/ooo/stock_create-with-attributes.png /usr/share/icons/Bluecurve/16x16/ooo/stock_crop.png /usr/share/icons/Bluecurve/16x16/ooo/stock_cut.png /usr/share/icons/Bluecurve/16x16/ooo/stock_data-sources.png /usr/share/icons/Bluecurve/16x16/ooo/stock_data-undo.png /usr/share/icons/Bluecurve/16x16/ooo/stock_default-folder.png /usr/share/icons/Bluecurve/16x16/ooo/stock_delete-autofilter.png /usr/share/icons/Bluecurve/16x16/ooo/stock_delete-decimal-place.png /usr/share/icons/Bluecurve/16x16/ooo/stock_directcursor.png /usr/share/icons/Bluecurve/16x16/ooo/stock_display-grid.png /usr/share/icons/Bluecurve/16x16/ooo/stock_display-guides.png /usr/share/icons/Bluecurve/16x16/ooo/stock_distort.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-arc.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-callouts.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle-arc.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle-pie.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle-pie-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle-segment.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle-segment-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-circle-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-cone.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-cube.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-curve-filled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-curve.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-cylinder.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-ellipse-pie.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-ellipse-pie-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-ellipse.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-ellipse-segment.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-ellipse-segment-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-ellipse-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-freeform-line-filled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-freeform-line.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-half-sphere.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-line.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-polygon-45-filled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-polygon-45.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-polygon-filled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-polygon.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-pyramid.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-rectangle.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-rectangle-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-rounded-rectangle.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-rounded-rectangle-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-rounded-square.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-rounded-square-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-selection.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-shell.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-sphere.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-square.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-square-unfilled.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-text-animation.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-text-frame.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-text.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-torus.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-vertical-callouts.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-vertical-text-frame.png /usr/share/icons/Bluecurve/16x16/ooo/stock_draw-vertical-text.png /usr/share/icons/Bluecurve/16x16/ooo/stock_edit.png /usr/share/icons/Bluecurve/16x16/ooo/stock_edit-points.png /usr/share/icons/Bluecurve/16x16/ooo/stock_exit-group.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-aging.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-charcoal.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-invert.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-pixelize.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-pop-art.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-posterize.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-relief.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-remove-noise.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-sharpen.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-smooth.png /usr/share/icons/Bluecurve/16x16/ooo/stock_filters-solarize.png /usr/share/icons/Bluecurve/16x16/ooo/stock_flip.png /usr/share/icons/Bluecurve/16x16/ooo/stock_folder.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-activation-order.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-add-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_format-default.png /usr/share/icons/Bluecurve/16x16/ooo/stock_format-percent.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-automatic-control-focus.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-autopilots.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-button.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-checkbox.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-combobox.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-control-properties.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-currency-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-date-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-design-mode.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-file-selection.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-formatted-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-frame.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-image-button.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-image-control.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-label.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-listbox.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-navigator.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-numerical-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-open-in-design-mode.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-pattern-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-properties.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-radio.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-table-control.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-text-box.png /usr/share/icons/Bluecurve/16x16/ooo/stock_form-time-field.png /usr/share/icons/Bluecurve/16x16/ooo/stock_frame.png /usr/share/icons/Bluecurve/16x16/ooo/stock_function-autopilot.png /usr/share/icons/Bluecurve/16x16/ooo/stock_gamma.png /usr/share/icons/Bluecurve/16x16/ooo/stock_glue.png /usr/share/icons/Bluecurve/16x16/ooo/stock_gradient.png /usr/share/icons/Bluecurve/16x16/ooo/stock_graphics-align-bottom.png /usr/share/icons/Bluecurve/16x16/ooo/stock_graphics-align-centered.png /usr/share/icons/Bluecurve/16x16/ooo/stock_graphics-align-center.png /usr/share/icons/Bluecurve/16x16/ooo/stock_graphics-align-left.png /usr/share/icons/Bluecurve/16x16/ooo/stock_graphics-align-right.png /usr/share/icons/Bluecurve/16x16/ooo/stock_graphics-align-top.png /usr/share/icons/Bluecurve/16x16/ooo/stock_guides.png /usr/share/icons/Bluecurve/16x16/ooo/stock_handles-big.png /usr/share/icons/Bluecurve/16x16/ooo/stock_handles-simple.png /usr/share/icons/Bluecurve/16x16/ooo/stock_hyperlink.png /usr/share/icons/Bluecurve/16x16/ooo/stock_hyperlink-target.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_bookmark.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-cells-down.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-cells.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-cells-right.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-chart.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-columns.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_endnote.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-fields.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-file.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-floating-frame.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_footnote.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-form.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_graphic.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_image.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_index_marker.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-math-object.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-ole-object.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-plugin.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-rows.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_section.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-slide.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-sound-plugin.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_special_character.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert_url.png /usr/share/icons/Bluecurve/16x16/ooo/stock_insert-video-plugin.png /usr/share/icons/Bluecurve/16x16/ooo/stock_linepen.png /usr/share/icons/Bluecurve/16x16/ooo/stock_list_bullet.png /usr/share/icons/Bluecurve/16x16/ooo/stock_list_enum.png /usr/share/icons/Bluecurve/16x16/ooo/stock_mail-merge.png /usr/share/icons/Bluecurve/16x16/ooo/stock_navigator.png /usr/share/icons/Bluecurve/16x16/ooo/stock_new-dir.png /usr/share/icons/Bluecurve/16x16/ooo/stock_new-text.png /usr/share/icons/Bluecurve/16x16/ooo/stock_nonprinting-chars.png /usr/share/icons/Bluecurve/16x16/ooo/stock_object-behind.png /usr/share/icons/Bluecurve/16x16/ooo/stock_object-infront.png /usr/share/icons/Bluecurve/16x16/ooo/stock_online-layout.png /usr/share/icons/Bluecurve/16x16/ooo/stock_open.png /usr/share/icons/Bluecurve/16x16/ooo/stock_paste.png /usr/share/icons/Bluecurve/16x16/ooo/stock_placeholder-graphic.png /usr/share/icons/Bluecurve/16x16/ooo/stock_placeholder-line-contour.png /usr/share/icons/Bluecurve/16x16/ooo/stock_placeholder-picture.png /usr/share/icons/Bluecurve/16x16/ooo/stock_placeholder-text.png /usr/share/icons/Bluecurve/16x16/ooo/stock_print.png /usr/share/icons/Bluecurve/16x16/ooo/stock_redo.png /usr/share/icons/Bluecurve/16x16/ooo/stock_reverse-order.png /usr/share/icons/Bluecurve/16x16/ooo/stock_rotate-3d.png /usr/share/icons/Bluecurve/16x16/ooo/stock_rotate.png /usr/share/icons/Bluecurve/16x16/ooo/stock_rotation-mode.png /usr/share/icons/Bluecurve/16x16/ooo/stock_save-pdf.png /usr/share/icons/Bluecurve/16x16/ooo/stock_save.png /usr/share/icons/Bluecurve/16x16/ooo/stock_search.png /usr/share/icons/Bluecurve/16x16/ooo/stock_show-draw-functions.png /usr/share/icons/Bluecurve/16x16/ooo/stock_slide-show.png /usr/share/icons/Bluecurve/16x16/ooo/stock_snap-grid.png /usr/share/icons/Bluecurve/16x16/ooo/stock_snap-guides.png /usr/share/icons/Bluecurve/16x16/ooo/stock_snap-margins.png /usr/share/icons/Bluecurve/16x16/ooo/stock_snap-object.png /usr/share/icons/Bluecurve/16x16/ooo/stock_snap-object-points.png /usr/share/icons/Bluecurve/16x16/ooo/stock_sort-ascending.png /usr/share/icons/Bluecurve/16x16/ooo/stock_sort-criteria.png /usr/share/icons/Bluecurve/16x16/ooo/stock_sort-descending.png /usr/share/icons/Bluecurve/16x16/ooo/stock_spellcheck.png /usr/share/icons/Bluecurve/16x16/ooo/stock_standard-filter.png /usr/share/icons/Bluecurve/16x16/ooo/stock_styles.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_bold.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_center.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_color_background.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_color_foreground.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_color_hilight.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text-direction-ltr.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text-direction-ttb.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text-double-click-to-edit.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_indent.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_italic.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_justify.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_left.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text-quickedit.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_right.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text-select-text-only.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_strikethrough.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_underlined-double.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_underlined.png /usr/share/icons/Bluecurve/16x16/ooo/stock_text_unindent.png /usr/share/icons/Bluecurve/16x16/ooo/stock_to-background.png /usr/share/icons/Bluecurve/16x16/ooo/stock_to-bottom.png /usr/share/icons/Bluecurve/16x16/ooo/stock_to-foreground.png /usr/share/icons/Bluecurve/16x16/ooo/stock_toggle-graphics.png /usr/share/icons/Bluecurve/16x16/ooo/stock_to-top.png /usr/share/icons/Bluecurve/16x16/ooo/stock_transform-circle-perspective.png /usr/share/icons/Bluecurve/16x16/ooo/stock_transform-circle-slant.png /usr/share/icons/Bluecurve/16x16/ooo/stock_transparency.png /usr/share/icons/Bluecurve/16x16/ooo/stock_undo.png /usr/share/icons/Bluecurve/16x16/ooo/stock_update-data.png /usr/share/icons/Bluecurve/16x16/ooo/stock_update-fields.png /usr/share/icons/Bluecurve/16x16/ooo/stock_up-one-dir.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-1.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-in.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-next.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-object.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-optimal.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-out.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-page.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-page-width.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-previous.png /usr/share/icons/Bluecurve/16x16/ooo/stock_zoom-shift.png /usr/share/icons/Bluecurve/16x16/stock/stock-about.png /usr/share/icons/Bluecurve/16x16/stock/stock-add.png /usr/share/icons/Bluecurve/16x16/stock/stock-apply.png /usr/share/icons/Bluecurve/16x16/stock/stock-attach.png /usr/share/icons/Bluecurve/16x16/stock/stock-bold.png /usr/share/icons/Bluecurve/16x16/stock/stock-bookmark-page.png /usr/share/icons/Bluecurve/16x16/stock/stock-bookmarks.png /usr/share/icons/Bluecurve/16x16/stock/stock-book.png /usr/share/icons/Bluecurve/16x16/stock/stock-cancel.png /usr/share/icons/Bluecurve/16x16/stock/stock-cdrom.png /usr/share/icons/Bluecurve/16x16/stock/stock-clear.png /usr/share/icons/Bluecurve/16x16/stock/stock-close.png /usr/share/icons/Bluecurve/16x16/stock/stock-connect.png /usr/share/icons/Bluecurve/16x16/stock/stock-convert.png /usr/share/icons/Bluecurve/16x16/stock/stock-copy.png /usr/share/icons/Bluecurve/16x16/stock/stock-cut.png /usr/share/icons/Bluecurve/16x16/stock/stock-delete.png /usr/share/icons/Bluecurve/16x16/stock/stock-disconnect.png /usr/share/icons/Bluecurve/16x16/stock/stock-dnd-multiple.png /usr/share/icons/Bluecurve/16x16/stock/stock-dnd.png /usr/share/icons/Bluecurve/16x16/stock/stock-download.png /usr/share/icons/Bluecurve/16x16/stock/stock-edit.png /usr/share/icons/Bluecurve/16x16/stock/stock-execute.png /usr/share/icons/Bluecurve/16x16/stock/stock-export.png /usr/share/icons/Bluecurve/16x16/stock/stock-find-and-replace.png /usr/share/icons/Bluecurve/16x16/stock/stock-find.png /usr/share/icons/Bluecurve/16x16/stock/stock-font.png /usr/share/icons/Bluecurve/16x16/stock/stock-foo.png /usr/share/icons/Bluecurve/16x16/stock/stock-fullscreen.png /usr/share/icons/Bluecurve/16x16/stock/stock-go-back.png /usr/share/icons/Bluecurve/16x16/stock/stock-go-down.png /usr/share/icons/Bluecurve/16x16/stock/stock-go-forward.png /usr/share/icons/Bluecurve/16x16/stock/stock-goto-bottom.png /usr/share/icons/Bluecurve/16x16/stock/stock-goto-first.png /usr/share/icons/Bluecurve/16x16/stock/stock-goto-last.png /usr/share/icons/Bluecurve/16x16/stock/stock-goto-top.png /usr/share/icons/Bluecurve/16x16/stock/stock-go-up.png /usr/share/icons/Bluecurve/16x16/stock/stock-help.png /usr/share/icons/Bluecurve/16x16/stock/stock-history.png /usr/share/icons/Bluecurve/16x16/stock/stock-home.png /usr/share/icons/Bluecurve/16x16/stock/stock-import.png /usr/share/icons/Bluecurve/16x16/stock/stock-insert-image.png /usr/share/icons/Bluecurve/16x16/stock/stock-insert-object.png /usr/share/icons/Bluecurve/16x16/stock/stock-insert-table.png /usr/share/icons/Bluecurve/16x16/stock/stock-italic.png /usr/share/icons/Bluecurve/16x16/stock/stock-jump-to.png /usr/share/icons/Bluecurve/16x16/stock/stock-justify-center.png /usr/share/icons/Bluecurve/16x16/stock/stock-justify-fill.png /usr/share/icons/Bluecurve/16x16/stock/stock-justify-left.png /usr/share/icons/Bluecurve/16x16/stock/stock-justify-right.png /usr/share/icons/Bluecurve/16x16/stock/stock-line-in.png /usr/share/icons/Bluecurve/16x16/stock/stock-lockscreen.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-eject.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-ffwd.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-next.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-pause.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-play.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-prev.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-rec.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-rewind.png /usr/share/icons/Bluecurve/16x16/stock/stock-media-stop.png /usr/share/icons/Bluecurve/16x16/stock/stock-mic.png /usr/share/icons/Bluecurve/16x16/stock/stock-missing-image.png /usr/share/icons/Bluecurve/16x16/stock/stock-new.png /usr/share/icons/Bluecurve/16x16/stock/stock-new-tab.png /usr/share/icons/Bluecurve/16x16/stock/stock-open.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-accessories.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-amusements.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-drawer.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-internet.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-launcher.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-multimedia.png /usr/share/icons/Bluecurve/16x16/stock/stock-panel-screenshot.png /usr/share/icons/Bluecurve/16x16/stock/stock-paste.png /usr/share/icons/Bluecurve/16x16/stock/stock-preferences.png /usr/share/icons/Bluecurve/16x16/stock/stock-printer-broken.png /usr/share/icons/Bluecurve/16x16/stock/stock-printer-default.png /usr/share/icons/Bluecurve/16x16/stock/stock-print.png /usr/share/icons/Bluecurve/16x16/stock/stock-print-preview.png /usr/share/icons/Bluecurve/16x16/stock/stock-properties.png /usr/share/icons/Bluecurve/16x16/stock/stock-quit.png /usr/share/icons/Bluecurve/16x16/stock/stock-redo.png /usr/share/icons/Bluecurve/16x16/stock/stock-refresh.png /usr/share/icons/Bluecurve/16x16/stock/stock-remove.png /usr/share/icons/Bluecurve/16x16/stock/stock-revert-to-saved.png /usr/share/icons/Bluecurve/16x16/stock/stock-save-as.png /usr/share/icons/Bluecurve/16x16/stock/stock-save.png /usr/share/icons/Bluecurve/16x16/stock/stock-select-color.png /usr/share/icons/Bluecurve/16x16/stock/stock-send-link.png /usr/share/icons/Bluecurve/16x16/stock/stock-sort-ascending.png /usr/share/icons/Bluecurve/16x16/stock/stock-sort-descending.png /usr/share/icons/Bluecurve/16x16/stock/stock-spell-check.png /usr/share/icons/Bluecurve/16x16/stock/stock-stop.png /usr/share/icons/Bluecurve/16x16/stock/stock-strikethrough.png /usr/share/icons/Bluecurve/16x16/stock/stock-undelete.png /usr/share/icons/Bluecurve/16x16/stock/stock-underline.png /usr/share/icons/Bluecurve/16x16/stock/stock-undo.png /usr/share/icons/Bluecurve/16x16/stock/stock-volume-0.png /usr/share/icons/Bluecurve/16x16/stock/stock-volume-max.png /usr/share/icons/Bluecurve/16x16/stock/stock-volume-med.png /usr/share/icons/Bluecurve/16x16/stock/stock-volume-min.png /usr/share/icons/Bluecurve/16x16/stock/stock-volume-mute.png /usr/share/icons/Bluecurve/16x16/stock/stock-volume.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-cloudy.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-few-clouds.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-fog.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-showers.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-snow.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-storm.png /usr/share/icons/Bluecurve/16x16/stock/stock_weather-sunny.png /usr/share/icons/Bluecurve/16x16/stock/stock-zoom-100.png /usr/share/icons/Bluecurve/16x16/stock/stock-zoom-fit.png /usr/share/icons/Bluecurve/16x16/stock/stock-zoom-in.png /usr/share/icons/Bluecurve/16x16/stock/stock-zoom-out.png /usr/share/icons/Bluecurve/20x20/stock/stock-about.png /usr/share/icons/Bluecurve/20x20/stock/stock-add.png /usr/share/icons/Bluecurve/20x20/stock/stock-apply.png /usr/share/icons/Bluecurve/20x20/stock/stock-attach.png /usr/share/icons/Bluecurve/20x20/stock/stock-bold.png /usr/share/icons/Bluecurve/20x20/stock/stock-bookmark-page.png /usr/share/icons/Bluecurve/20x20/stock/stock-bookmarks.png /usr/share/icons/Bluecurve/20x20/stock/stock-book.png /usr/share/icons/Bluecurve/20x20/stock/stock-cancel.png /usr/share/icons/Bluecurve/20x20/stock/stock-cdrom.png /usr/share/icons/Bluecurve/20x20/stock/stock-clear.png /usr/share/icons/Bluecurve/20x20/stock/stock-close.png /usr/share/icons/Bluecurve/20x20/stock/stock-connect.png /usr/share/icons/Bluecurve/20x20/stock/stock-convert.png /usr/share/icons/Bluecurve/20x20/stock/stock-copy.png /usr/share/icons/Bluecurve/20x20/stock/stock-cut.png /usr/share/icons/Bluecurve/20x20/stock/stock-delete.png /usr/share/icons/Bluecurve/20x20/stock/stock-disconnect.png /usr/share/icons/Bluecurve/20x20/stock/stock-dnd-multiple.png /usr/share/icons/Bluecurve/20x20/stock/stock-dnd.png /usr/share/icons/Bluecurve/20x20/stock/stock-download.png /usr/share/icons/Bluecurve/20x20/stock/stock-edit.png /usr/share/icons/Bluecurve/20x20/stock/stock-execute.png /usr/share/icons/Bluecurve/20x20/stock/stock-export.png /usr/share/icons/Bluecurve/20x20/stock/stock-find-and-replace.png /usr/share/icons/Bluecurve/20x20/stock/stock-find.png /usr/share/icons/Bluecurve/20x20/stock/stock-font.png /usr/share/icons/Bluecurve/20x20/stock/stock-foo.png /usr/share/icons/Bluecurve/20x20/stock/stock-fullscreen.png /usr/share/icons/Bluecurve/20x20/stock/stock-go-back.png /usr/share/icons/Bluecurve/20x20/stock/stock-go-down.png /usr/share/icons/Bluecurve/20x20/stock/stock-go-forward.png /usr/share/icons/Bluecurve/20x20/stock/stock-goto-bottom.png /usr/share/icons/Bluecurve/20x20/stock/stock-goto-first.png /usr/share/icons/Bluecurve/20x20/stock/stock-goto-last.png /usr/share/icons/Bluecurve/20x20/stock/stock-goto-top.png /usr/share/icons/Bluecurve/20x20/stock/stock-go-up.png /usr/share/icons/Bluecurve/20x20/stock/stock-help.png /usr/share/icons/Bluecurve/20x20/stock/stock-history.png /usr/share/icons/Bluecurve/20x20/stock/stock-home.png /usr/share/icons/Bluecurve/20x20/stock/stock-import.png /usr/share/icons/Bluecurve/20x20/stock/stock-insert-image.png /usr/share/icons/Bluecurve/20x20/stock/stock-insert-object.png /usr/share/icons/Bluecurve/20x20/stock/stock-insert-table.png /usr/share/icons/Bluecurve/20x20/stock/stock-italic.png /usr/share/icons/Bluecurve/20x20/stock/stock-jump-to.png /usr/share/icons/Bluecurve/20x20/stock/stock-justify-center.png /usr/share/icons/Bluecurve/20x20/stock/stock-justify-fill.png /usr/share/icons/Bluecurve/20x20/stock/stock-justify-left.png /usr/share/icons/Bluecurve/20x20/stock/stock-justify-right.png /usr/share/icons/Bluecurve/20x20/stock/stock-line-in.png /usr/share/icons/Bluecurve/20x20/stock/stock-lockscreen.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-eject.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-ffwd.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-next.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-pause.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-play.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-prev.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-rec.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-rewind.png /usr/share/icons/Bluecurve/20x20/stock/stock-media-stop.png /usr/share/icons/Bluecurve/20x20/stock/stock-mic.png /usr/share/icons/Bluecurve/20x20/stock/stock-missing-image.png /usr/share/icons/Bluecurve/20x20/stock/stock-new.png /usr/share/icons/Bluecurve/20x20/stock/stock-new-tab.png /usr/share/icons/Bluecurve/20x20/stock/stock-open.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-accessories.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-amusements.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-drawer.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-internet.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-launcher.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-multimedia.png /usr/share/icons/Bluecurve/20x20/stock/stock-panel-screenshot.png /usr/share/icons/Bluecurve/20x20/stock/stock-paste.png /usr/share/icons/Bluecurve/20x20/stock/stock-preferences.png /usr/share/icons/Bluecurve/20x20/stock/stock-printer-broken.png /usr/share/icons/Bluecurve/20x20/stock/stock-printer-default.png /usr/share/icons/Bluecurve/20x20/stock/stock-print.png /usr/share/icons/Bluecurve/20x20/stock/stock-print-preview.png /usr/share/icons/Bluecurve/20x20/stock/stock-properties.png /usr/share/icons/Bluecurve/20x20/stock/stock-quit.png /usr/share/icons/Bluecurve/20x20/stock/stock-redo.png /usr/share/icons/Bluecurve/20x20/stock/stock-refresh.png /usr/share/icons/Bluecurve/20x20/stock/stock-remove.png /usr/share/icons/Bluecurve/20x20/stock/stock-revert-to-saved.png /usr/share/icons/Bluecurve/20x20/stock/stock-save-as.png /usr/share/icons/Bluecurve/20x20/stock/stock-save.png /usr/share/icons/Bluecurve/20x20/stock/stock-select-color.png /usr/share/icons/Bluecurve/20x20/stock/stock-send-link.png /usr/share/icons/Bluecurve/20x20/stock/stock-sort-ascending.png /usr/share/icons/Bluecurve/20x20/stock/stock-sort-descending.png /usr/share/icons/Bluecurve/20x20/stock/stock-spell-check.png /usr/share/icons/Bluecurve/20x20/stock/stock-stop.png /usr/share/icons/Bluecurve/20x20/stock/stock-strikethrough.png /usr/share/icons/Bluecurve/20x20/stock/stock-undelete.png /usr/share/icons/Bluecurve/20x20/stock/stock-underline.png /usr/share/icons/Bluecurve/20x20/stock/stock-undo.png /usr/share/icons/Bluecurve/20x20/stock/stock-volume-0.png /usr/share/icons/Bluecurve/20x20/stock/stock-volume-max.png /usr/share/icons/Bluecurve/20x20/stock/stock-volume-med.png /usr/share/icons/Bluecurve/20x20/stock/stock-volume-min.png /usr/share/icons/Bluecurve/20x20/stock/stock-volume-mute.png /usr/share/icons/Bluecurve/20x20/stock/stock-volume.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-cloudy.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-few-clouds.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-fog.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-showers.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-snow.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-storm.png /usr/share/icons/Bluecurve/20x20/stock/stock_weather-sunny.png /usr/share/icons/Bluecurve/20x20/stock/stock-zoom-100.png /usr/share/icons/Bluecurve/20x20/stock/stock-zoom-fit.png /usr/share/icons/Bluecurve/20x20/stock/stock-zoom-in.png /usr/share/icons/Bluecurve/20x20/stock/stock-zoom-out.png /usr/share/icons/Bluecurve/24x24/apps/icon-accessibility.png /usr/share/icons/Bluecurve/24x24/apps/icon-accessibility-technologies.png /usr/share/icons/Bluecurve/24x24/apps/icon-accessories.png /usr/share/icons/Bluecurve/24x24/apps/icon-applications.png /usr/share/icons/Bluecurve/24x24/apps/icon-audio.png /usr/share/icons/Bluecurve/24x24/apps/icon-background-picture.png /usr/share/icons/Bluecurve/24x24/apps/icon-bug.png /usr/share/icons/Bluecurve/24x24/apps/icon-calculator.png /usr/share/icons/Bluecurve/24x24/apps/icon-camera.png /usr/share/icons/Bluecurve/24x24/apps/icon-cd-burn.png /usr/share/icons/Bluecurve/24x24/apps/icon-cd-rip.png /usr/share/icons/Bluecurve/24x24/apps/icon-character-map.png /usr/share/icons/Bluecurve/24x24/apps/icon-clipboard.png /usr/share/icons/Bluecurve/24x24/apps/icon-clock.png /usr/share/icons/Bluecurve/24x24/apps/icon-computer-ccenter.png /usr/share/icons/Bluecurve/24x24/apps/icon-computer.png /usr/share/icons/Bluecurve/24x24/apps/icon-computer-restart.png /usr/share/icons/Bluecurve/24x24/apps/icon-config-edit.png /usr/share/icons/Bluecurve/24x24/apps/icon-configuration.png /usr/share/icons/Bluecurve/24x24/apps/icon-connect-windows.png /usr/share/icons/Bluecurve/24x24/apps/icon-date.png /usr/share/icons/Bluecurve/24x24/apps/icon-datetime.png /usr/share/icons/Bluecurve/24x24/apps/icon-db-user.png /usr/share/icons/Bluecurve/24x24/apps/icon-desktop.png /usr/share/icons/Bluecurve/24x24/apps/icon-development.png /usr/share/icons/Bluecurve/24x24/apps/icon-disks.png /usr/share/icons/Bluecurve/24x24/apps/icon-dns.png /usr/share/icons/Bluecurve/24x24/apps/icon-documentation.png /usr/share/icons/Bluecurve/24x24/apps/icon-eclipse.png /usr/share/icons/Bluecurve/24x24/apps/icon-email.png /usr/share/icons/Bluecurve/24x24/apps/icon-explore-tree.png /usr/share/icons/Bluecurve/24x24/apps/icon-filemanager.png /usr/share/icons/Bluecurve/24x24/apps/icon-fileshare.png /usr/share/icons/Bluecurve/24x24/apps/icon-fileshare-smb.png /usr/share/icons/Bluecurve/24x24/apps/icon-fonts.png /usr/share/icons/Bluecurve/24x24/apps/icon-games.png /usr/share/icons/Bluecurve/24x24/apps/icon-gfx.png /usr/share/icons/Bluecurve/24x24/apps/icon-gimp.png /usr/share/icons/Bluecurve/24x24/apps/icon-glade.png /usr/share/icons/Bluecurve/24x24/apps/icon-globe.png /usr/share/icons/Bluecurve/24x24/apps/icon-groupchat.png /usr/share/icons/Bluecurve/24x24/apps/icon-help.png /usr/share/icons/Bluecurve/24x24/apps/icon-html.png /usr/share/icons/Bluecurve/24x24/apps/icon-httpd.png /usr/share/icons/Bluecurve/24x24/apps/icon-install-software.png /usr/share/icons/Bluecurve/24x24/apps/icon-instantmessage.png /usr/share/icons/Bluecurve/24x24/apps/icon-keyboard.png /usr/share/icons/Bluecurve/24x24/apps/icon-keyboard-shortcuts.png /usr/share/icons/Bluecurve/24x24/apps/icon-kickstart.png /usr/share/icons/Bluecurve/24x24/apps/icon-languages.png /usr/share/icons/Bluecurve/24x24/apps/icon-launcher.png /usr/share/icons/Bluecurve/24x24/apps/icon-logbook.png /usr/share/icons/Bluecurve/24x24/apps/icon-media.png /usr/share/icons/Bluecurve/24x24/apps/icon-memory-profile.png /usr/share/icons/Bluecurve/24x24/apps/icon-menus-toolbars.png /usr/share/icons/Bluecurve/24x24/apps/icon-mime-types.png /usr/share/icons/Bluecurve/24x24/apps/icon-mixer.png /usr/share/icons/Bluecurve/24x24/apps/icon-monitor.png /usr/share/icons/Bluecurve/24x24/apps/icon-mouse.png /usr/share/icons/Bluecurve/24x24/apps/icon-network-address.png /usr/share/icons/Bluecurve/24x24/apps/icon-network-firewall.png /usr/share/icons/Bluecurve/24x24/apps/icon-network.png /usr/share/icons/Bluecurve/24x24/apps/icon-network-systems.png /usr/share/icons/Bluecurve/24x24/apps/icon-network-wizard.png /usr/share/icons/Bluecurve/24x24/apps/icon-notepad.png /usr/share/icons/Bluecurve/24x24/apps/icon-office.png /usr/share/icons/Bluecurve/24x24/apps/icon-office-presentation.png /usr/share/icons/Bluecurve/24x24/apps/icon-office-spreadsheet.png /usr/share/icons/Bluecurve/24x24/apps/icon-office-wordprocessor.png /usr/share/icons/Bluecurve/24x24/apps/icon-packages.png /usr/share/icons/Bluecurve/24x24/apps/icon-panel.png /usr/share/icons/Bluecurve/24x24/apps/icon-printer.png /usr/share/icons/Bluecurve/24x24/apps/icon-resize-screen.png /usr/share/icons/Bluecurve/24x24/apps/icon-runapp.png /usr/share/icons/Bluecurve/24x24/apps/icon-search.png /usr/share/icons/Bluecurve/24x24/apps/icon-security-badge.png /usr/share/icons/Bluecurve/24x24/apps/icon-security-global.png /usr/share/icons/Bluecurve/24x24/apps/icon-security-keys.png /usr/share/icons/Bluecurve/24x24/apps/icon-security-lock.png /usr/share/icons/Bluecurve/24x24/apps/icon-server.png /usr/share/icons/Bluecurve/24x24/apps/icon-service.png /usr/share/icons/Bluecurve/24x24/apps/icon-settings.png /usr/share/icons/Bluecurve/24x24/apps/icon-sound.png /usr/share/icons/Bluecurve/24x24/apps/icon-speaker.png /usr/share/icons/Bluecurve/24x24/apps/icon-system-configuration.png /usr/share/icons/Bluecurve/24x24/apps/icon-systemhealth.png /usr/share/icons/Bluecurve/24x24/apps/icon-system-packages.png /usr/share/icons/Bluecurve/24x24/apps/icon-system-parts.png /usr/share/icons/Bluecurve/24x24/apps/icon-system.png /usr/share/icons/Bluecurve/24x24/apps/icon-system-preferences.png /usr/share/icons/Bluecurve/24x24/apps/icon-system-security.png /usr/share/icons/Bluecurve/24x24/apps/icon-system-settings.png /usr/share/icons/Bluecurve/24x24/apps/icon-television.png /usr/share/icons/Bluecurve/24x24/apps/icon-terminal-linux.png /usr/share/icons/Bluecurve/24x24/apps/icon-terminal.png /usr/share/icons/Bluecurve/24x24/apps/icon-text-internet.png /usr/share/icons/Bluecurve/24x24/apps/icon-themes.png /usr/share/icons/Bluecurve/24x24/apps/icon-traceroute.png /usr/share/icons/Bluecurve/24x24/apps/icon-unknown.png /usr/share/icons/Bluecurve/24x24/apps/icon-update-applet.png /usr/share/icons/Bluecurve/24x24/apps/icon-update.png /usr/share/icons/Bluecurve/24x24/apps/icon-user-id.png /usr/share/icons/Bluecurve/24x24/apps/icon-user-keys.png /usr/share/icons/Bluecurve/24x24/apps/icon-user.png /usr/share/icons/Bluecurve/24x24/apps/icon-vector-editor.png /usr/share/icons/Bluecurve/24x24/apps/icon-web-browser.png /usr/share/icons/Bluecurve/24x24/apps/icon-windowmanager.png /usr/share/icons/Bluecurve/24x24/apps/icon-x-config.png /usr/share/icons/Bluecurve/24x24/apps/icon-xscreensaver.png /usr/share/icons/Bluecurve/24x24/apps/redhat-icon-panel-menu.png /usr/share/icons/Bluecurve/24x24/mimetypes/archive.icon /usr/share/icons/Bluecurve/24x24/mimetypes/archive.png /usr/share/icons/Bluecurve/24x24/mimetypes/camcorder.png /usr/share/icons/Bluecurve/24x24/mimetypes/cd-audio.icon /usr/share/icons/Bluecurve/24x24/mimetypes/cd-audio.png /usr/share/icons/Bluecurve/24x24/mimetypes/cd.icon /usr/share/icons/Bluecurve/24x24/mimetypes/cd.png /usr/share/icons/Bluecurve/24x24/mimetypes/cdr.png /usr/share/icons/Bluecurve/24x24/mimetypes/cdrw.png /usr/share/icons/Bluecurve/24x24/mimetypes/cd-video.icon /usr/share/icons/Bluecurve/24x24/mimetypes/cd-video.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvd.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvdram.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvdrom.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvdr-plus.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvdr.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvdrw.png /usr/share/icons/Bluecurve/24x24/mimetypes/dvd-video.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-about.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-amusement.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio-aiff.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio-au.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio-midi.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio-mp3.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio-ogg.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-audio-wav.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-broken.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-bug.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-clipboard.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-container.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-c.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-cpp.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-h.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-java.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-perl.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-php.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-devel-python.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-device.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-doc_container.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-document.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-executable.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-font.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-generic.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx-bmp.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx-gif.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx-ico.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx-jpg.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx-png.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gfx-xpm.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-gimp.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-help.png /usr/share/icons/Bluecurve/24x24/mimetypes/file.icon /usr/share/icons/Bluecurve/24x24/mimetypes/file-info.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-keys.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-launcher.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-loading.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-lock.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-media.png /usr/share/icons/Bluecurve/24x24/mimetypes/file.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-presentation.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-printer-dvi.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-printer-eps.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-printer-pdf.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-printer.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-printer-ps.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-printer-tex.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-security.png /usr/share/icons/Bluecurve/24x24/mimetypes/fileshare-nfs.png /usr/share/icons/Bluecurve/24x24/mimetypes/fileshare.png /usr/share/icons/Bluecurve/24x24/mimetypes/fileshare-smb.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-spreadsheet.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-style.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-unknown.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-url.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-ai.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-cdr.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-fh.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-sda.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-svg.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-sxd.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-vector_art-wmf.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-video-asf.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-video-avi.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-video-mov.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-video-mpeg.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-video.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-video-rm.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-wordprocessor.png /usr/share/icons/Bluecurve/24x24/mimetypes/file-xml.png /usr/share/icons/Bluecurve/24x24/mimetypes/floppy.icon /usr/share/icons/Bluecurve/24x24/mimetypes/floppy.png /usr/share/icons/Bluecurve/24x24/mimetypes/folder-accept.icon /usr/share/icons/Bluecurve/24x24/mimetypes/folder-accept.png /usr/share/icons/Bluecurve/24x24/mimetypes/folder-apps.icon /usr/share/icons/Bluecurve/24x24/mimetypes/folder-apps.png /usr/share/icons/Bluecurve/24x24/mimetypes/folder-home.icon /usr/share/icons/Bluecurve/24x24/mimetypes/folder-home.png /usr/share/icons/Bluecurve/24x24/mimetypes/folder.icon /usr/share/icons/Bluecurve/24x24/mimetypes/folder-locked.icon /usr/share/icons/Bluecurve/24x24/mimetypes/folder-locked.png /usr/share/icons/Bluecurve/24x24/mimetypes/folder.png /usr/share/icons/Bluecurve/24x24/mimetypes/folder-visiting.icon /usr/share/icons/Bluecurve/24x24/mimetypes/folder-visiting.png /usr/share/icons/Bluecurve/24x24/mimetypes/harddisk-1394.png /usr/share/icons/Bluecurve/24x24/mimetypes/harddisk-usb.png /usr/share/icons/Bluecurve/24x24/mimetypes/harddrive.icon /usr/share/icons/Bluecurve/24x24/mimetypes/harddrive.png /usr/share/icons/Bluecurve/24x24/mimetypes/ipod.png /usr/share/icons/Bluecurve/24x24/mimetypes/media-cf.png /usr/share/icons/Bluecurve/24x24/mimetypes/media-ms.png /usr/share/icons/Bluecurve/24x24/mimetypes/media-sdmmc.png /usr/share/icons/Bluecurve/24x24/mimetypes/media-sm.png /usr/share/icons/Bluecurve/24x24/mimetypes/multiple-files.png /usr/share/icons/Bluecurve/24x24/mimetypes/pda.png /usr/share/icons/Bluecurve/24x24/mimetypes/raid.icon /usr/share/icons/Bluecurve/24x24/mimetypes/raid.png /usr/share/icons/Bluecurve/24x24/mimetypes/removable-1394.png /usr/share/icons/Bluecurve/24x24/mimetypes/removable.png /usr/share/icons/Bluecurve/24x24/mimetypes/removable-usb.png /usr/share/icons/Bluecurve/24x24/mimetypes/rpm.png /usr/share/icons/Bluecurve/24x24/mimetypes/scanner.png /usr/share/icons/Bluecurve/24x24/mimetypes/start-here.png /usr/share/icons/Bluecurve/24x24/mimetypes/tablet.png /usr/share/icons/Bluecurve/24x24/mimetypes/trash-drop.png /usr/share/icons/Bluecurve/24x24/mimetypes/trash-empty.png /usr/share/icons/Bluecurve/24x24/mimetypes/trash-full.png /usr/share/icons/Bluecurve/24x24/ooo/stock_3d-effects.png /usr/share/icons/Bluecurve/24x24/ooo/stock_add-decimal-place.png /usr/share/icons/Bluecurve/24x24/ooo/stock_advanced-filter.png /usr/share/icons/Bluecurve/24x24/ooo/stock_anchor.png /usr/share/icons/Bluecurve/24x24/ooo/stock_arrowstyle.png /usr/share/icons/Bluecurve/24x24/ooo/stock_autofilter.png /usr/share/icons/Bluecurve/24x24/ooo/stock_autospellcheck.png /usr/share/icons/Bluecurve/24x24/ooo/stock_autotext.png /usr/share/icons/Bluecurve/24x24/ooo/stock_brightness.png /usr/share/icons/Bluecurve/24x24/ooo/stock_bring-backward.png /usr/share/icons/Bluecurve/24x24/ooo/stock_bring-forward.png /usr/share/icons/Bluecurve/24x24/ooo/stock_bucketfill.png /usr/share/icons/Bluecurve/24x24/ooo/stock_calc-accept.png /usr/share/icons/Bluecurve/24x24/ooo/stock_calc-cancel.png /usr/share/icons/Bluecurve/24x24/ooo/stock_cell-align-bottom.png /usr/share/icons/Bluecurve/24x24/ooo/stock_cell-align-center.png /usr/share/icons/Bluecurve/24x24/ooo/stock_cell-align-top.png /usr/share/icons/Bluecurve/24x24/ooo/stock_channel-blue.png /usr/share/icons/Bluecurve/24x24/ooo/stock_channel-green.png /usr/share/icons/Bluecurve/24x24/ooo/stock_channel-red.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-autoformat.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-data-in-columns.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-data-in-rows.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-edit-type.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-reorganize.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-scale-text.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-toggle-axes.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-toggle-axes-title.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-toggle-hgrid.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-toggle-legend.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-toggle-title.png /usr/share/icons/Bluecurve/24x24/ooo/stock_chart-toggle-vgrid.png /usr/share/icons/Bluecurve/24x24/ooo/stock_choose-themes.png /usr/share/icons/Bluecurve/24x24/ooo/stock_contrast.png /usr/share/icons/Bluecurve/24x24/ooo/stock_copy.png /usr/share/icons/Bluecurve/24x24/ooo/stock_create-with-attributes.png /usr/share/icons/Bluecurve/24x24/ooo/stock_crop.png /usr/share/icons/Bluecurve/24x24/ooo/stock_cut.png /usr/share/icons/Bluecurve/24x24/ooo/stock_data-sources.png /usr/share/icons/Bluecurve/24x24/ooo/stock_data-undo.png /usr/share/icons/Bluecurve/24x24/ooo/stock_default-folder.png /usr/share/icons/Bluecurve/24x24/ooo/stock_delete-autofilter.png /usr/share/icons/Bluecurve/24x24/ooo/stock_delete-decimal-place.png /usr/share/icons/Bluecurve/24x24/ooo/stock_directcursor.png /usr/share/icons/Bluecurve/24x24/ooo/stock_display-grid.png /usr/share/icons/Bluecurve/24x24/ooo/stock_display-guides.png /usr/share/icons/Bluecurve/24x24/ooo/stock_distort.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-arc.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-callouts.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle-arc.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle-pie.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle-pie-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle-segment.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle-segment-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-circle-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-cone.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-cube.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-curve-filled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-curve.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-cylinder.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-ellipse-pie.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-ellipse-pie-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-ellipse.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-ellipse-segment.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-ellipse-segment-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-ellipse-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-freeform-line-filled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-freeform-line.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-half-sphere.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-line.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-polygon-45-filled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-polygon-45.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-polygon-filled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-polygon.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-pyramid.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-rectangle.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-rectangle-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-rounded-rectangle.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-rounded-rectangle-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-rounded-square.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-rounded-square-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-selection.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-shell.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-sphere.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-square.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-square-unfilled.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-text-animation.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-text-frame.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-text.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-torus.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-vertical-callouts.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-vertical-text-frame.png /usr/share/icons/Bluecurve/24x24/ooo/stock_draw-vertical-text.png /usr/share/icons/Bluecurve/24x24/ooo/stock_edit.png /usr/share/icons/Bluecurve/24x24/ooo/stock_edit-points.png /usr/share/icons/Bluecurve/24x24/ooo/stock_exit-group.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-aging.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-charcoal.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-invert.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-pixelize.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-pop-art.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-posterize.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-relief.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-remove-noise.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-sharpen.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-smooth.png /usr/share/icons/Bluecurve/24x24/ooo/stock_filters-solarize.png /usr/share/icons/Bluecurve/24x24/ooo/stock_flip.png /usr/share/icons/Bluecurve/24x24/ooo/stock_folder.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-activation-order.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-add-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_format-default.png /usr/share/icons/Bluecurve/24x24/ooo/stock_format-percent.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-automatic-control-focus.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-autopilots.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-button.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-checkbox.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-combobox.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-control-properties.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-currency-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-date-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-design-mode.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-file-selection.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-formatted-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-frame.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-image-button.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-image-control.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-label.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-listbox.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-navigator.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-numerical-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-open-in-design-mode.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-pattern-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-properties.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-radio.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-table-control.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-text-box.png /usr/share/icons/Bluecurve/24x24/ooo/stock_form-time-field.png /usr/share/icons/Bluecurve/24x24/ooo/stock_frame.png /usr/share/icons/Bluecurve/24x24/ooo/stock_function-autopilot.png /usr/share/icons/Bluecurve/24x24/ooo/stock_gamma.png /usr/share/icons/Bluecurve/24x24/ooo/stock_glue.png /usr/share/icons/Bluecurve/24x24/ooo/stock_gradient.png /usr/share/icons/Bluecurve/24x24/ooo/stock_graphics-align-bottom.png /usr/share/icons/Bluecurve/24x24/ooo/stock_graphics-align-centered.png /usr/share/icons/Bluecurve/24x24/ooo/stock_graphics-align-center.png /usr/share/icons/Bluecurve/24x24/ooo/stock_graphics-align-left.png /usr/share/icons/Bluecurve/24x24/ooo/stock_graphics-align-right.png /usr/share/icons/Bluecurve/24x24/ooo/stock_graphics-align-top.png /usr/share/icons/Bluecurve/24x24/ooo/stock_guides.png /usr/share/icons/Bluecurve/24x24/ooo/stock_handles-big.png /usr/share/icons/Bluecurve/24x24/ooo/stock_handles-simple.png /usr/share/icons/Bluecurve/24x24/ooo/stock_hyperlink.png /usr/share/icons/Bluecurve/24x24/ooo/stock_hyperlink-target.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_bookmark.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-cells-down.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-cells.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-cells-right.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-chart.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-columns.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_endnote.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-fields.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-file.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-floating-frame.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_footnote.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-form.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_graphic.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_image.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_index_marker.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-math-object.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-ole-object.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-plugin.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-rows.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_section.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-slide.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-sound-plugin.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_special_character.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert_url.png /usr/share/icons/Bluecurve/24x24/ooo/stock_insert-video-plugin.png /usr/share/icons/Bluecurve/24x24/ooo/stock_linepen.png /usr/share/icons/Bluecurve/24x24/ooo/stock_list_bullet.png /usr/share/icons/Bluecurve/24x24/ooo/stock_list_enum.png /usr/share/icons/Bluecurve/24x24/ooo/stock_mail-merge.png /usr/share/icons/Bluecurve/24x24/ooo/stock_navigator.png /usr/share/icons/Bluecurve/24x24/ooo/stock_new-dir.png /usr/share/icons/Bluecurve/24x24/ooo/stock_new-text.png /usr/share/icons/Bluecurve/24x24/ooo/stock_nonprinting-chars.png /usr/share/icons/Bluecurve/24x24/ooo/stock_object-behind.png /usr/share/icons/Bluecurve/24x24/ooo/stock_object-infront.png /usr/share/icons/Bluecurve/24x24/ooo/stock_online-layout.png /usr/share/icons/Bluecurve/24x24/ooo/stock_open.png /usr/share/icons/Bluecurve/24x24/ooo/stock_paste.png /usr/share/icons/Bluecurve/24x24/ooo/stock_placeholder-graphic.png /usr/share/icons/Bluecurve/24x24/ooo/stock_placeholder-line-contour.png /usr/share/icons/Bluecurve/24x24/ooo/stock_placeholder-picture.png /usr/share/icons/Bluecurve/24x24/ooo/stock_placeholder-text.png /usr/share/icons/Bluecurve/24x24/ooo/stock_print.png /usr/share/icons/Bluecurve/24x24/ooo/stock_redo.png /usr/share/icons/Bluecurve/24x24/ooo/stock_reverse-order.png /usr/share/icons/Bluecurve/24x24/ooo/stock_rotate-3d.png /usr/share/icons/Bluecurve/24x24/ooo/stock_rotate.png /usr/share/icons/Bluecurve/24x24/ooo/stock_rotation-mode.png /usr/share/icons/Bluecurve/24x24/ooo/stock_save-pdf.png /usr/share/icons/Bluecurve/24x24/ooo/stock_save.png /usr/share/icons/Bluecurve/24x24/ooo/stock_search.png /usr/share/icons/Bluecurve/24x24/ooo/stock_show-draw-functions.png /usr/share/icons/Bluecurve/24x24/ooo/stock_slide-show.png /usr/share/icons/Bluecurve/24x24/ooo/stock_snap-grid.png /usr/share/icons/Bluecurve/24x24/ooo/stock_snap-guides.png /usr/share/icons/Bluecurve/24x24/ooo/stock_snap-margins.png /usr/share/icons/Bluecurve/24x24/ooo/stock_snap-object.png /usr/share/icons/Bluecurve/24x24/ooo/stock_snap-object-points.png /usr/share/icons/Bluecurve/24x24/ooo/stock_sort-ascending.png /usr/share/icons/Bluecurve/24x24/ooo/stock_sort-criteria.png /usr/share/icons/Bluecurve/24x24/ooo/stock_sort-descending.png /usr/share/icons/Bluecurve/24x24/ooo/stock_spellcheck.png /usr/share/icons/Bluecurve/24x24/ooo/stock_standard-filter.png /usr/share/icons/Bluecurve/24x24/ooo/stock_styles.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_bold.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_center.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_color_background.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_color_foreground.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_color_hilight.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text-direction-ltr.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text-direction-ttb.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text-double-click-to-edit.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_indent.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_italic.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_justify.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_left.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text-quickedit.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_right.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text-select-text-only.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_strikethrough.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_underlined-double.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_underlined.png /usr/share/icons/Bluecurve/24x24/ooo/stock_text_unindent.png /usr/share/icons/Bluecurve/24x24/ooo/stock_to-background.png /usr/share/icons/Bluecurve/24x24/ooo/stock_to-bottom.png /usr/share/icons/Bluecurve/24x24/ooo/stock_to-foreground.png /usr/share/icons/Bluecurve/24x24/ooo/stock_toggle-graphics.png /usr/share/icons/Bluecurve/24x24/ooo/stock_to-top.png /usr/share/icons/Bluecurve/24x24/ooo/stock_transform-circle-perspective.png /usr/share/icons/Bluecurve/24x24/ooo/stock_transform-circle-slant.png /usr/share/icons/Bluecurve/24x24/ooo/stock_transparency.png /usr/share/icons/Bluecurve/24x24/ooo/stock_undo.png /usr/share/icons/Bluecurve/24x24/ooo/stock_update-data.png /usr/share/icons/Bluecurve/24x24/ooo/stock_update-fields.png /usr/share/icons/Bluecurve/24x24/ooo/stock_up-one-dir.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-1.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-in.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-next.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-object.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-optimal.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-out.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-page.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-page-width.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-previous.png /usr/share/icons/Bluecurve/24x24/ooo/stock_zoom-shift.png /usr/share/icons/Bluecurve/24x24/stock/stock-about.png /usr/share/icons/Bluecurve/24x24/stock/stock-add.png /usr/share/icons/Bluecurve/24x24/stock/stock-apply.png /usr/share/icons/Bluecurve/24x24/stock/stock-attach.png /usr/share/icons/Bluecurve/24x24/stock/stock-bold.png /usr/share/icons/Bluecurve/24x24/stock/stock-bookmark-page.png /usr/share/icons/Bluecurve/24x24/stock/stock-bookmarks.png /usr/share/icons/Bluecurve/24x24/stock/stock-book.png /usr/share/icons/Bluecurve/24x24/stock/stock-cancel.png /usr/share/icons/Bluecurve/24x24/stock/stock-cdrom.png /usr/share/icons/Bluecurve/24x24/stock/stock-clear.png /usr/share/icons/Bluecurve/24x24/stock/stock-close.png /usr/share/icons/Bluecurve/24x24/stock/stock-connect.png /usr/share/icons/Bluecurve/24x24/stock/stock-convert.png /usr/share/icons/Bluecurve/24x24/stock/stock-copy.png /usr/share/icons/Bluecurve/24x24/stock/stock-cut.png /usr/share/icons/Bluecurve/24x24/stock/stock-delete.png /usr/share/icons/Bluecurve/24x24/stock/stock-disconnect.png /usr/share/icons/Bluecurve/24x24/stock/stock-dnd-multiple.png /usr/share/icons/Bluecurve/24x24/stock/stock-dnd.png /usr/share/icons/Bluecurve/24x24/stock/stock-download.png /usr/share/icons/Bluecurve/24x24/stock/stock-edit.png /usr/share/icons/Bluecurve/24x24/stock/stock-execute.png /usr/share/icons/Bluecurve/24x24/stock/stock-export.png /usr/share/icons/Bluecurve/24x24/stock/stock-find-and-replace.png /usr/share/icons/Bluecurve/24x24/stock/stock-find.png /usr/share/icons/Bluecurve/24x24/stock/stock-font.png /usr/share/icons/Bluecurve/24x24/stock/stock-foo.png /usr/share/icons/Bluecurve/24x24/stock/stock-fullscreen.png /usr/share/icons/Bluecurve/24x24/stock/stock-go-back.png /usr/share/icons/Bluecurve/24x24/stock/stock-go-down.png /usr/share/icons/Bluecurve/24x24/stock/stock-go-forward.png /usr/share/icons/Bluecurve/24x24/stock/stock-goto-bottom.png /usr/share/icons/Bluecurve/24x24/stock/stock-goto-first.png /usr/share/icons/Bluecurve/24x24/stock/stock-goto-last.png /usr/share/icons/Bluecurve/24x24/stock/stock-goto-top.png /usr/share/icons/Bluecurve/24x24/stock/stock-go-up.png /usr/share/icons/Bluecurve/24x24/stock/stock-help.png /usr/share/icons/Bluecurve/24x24/stock/stock-history.png /usr/share/icons/Bluecurve/24x24/stock/stock-home.png /usr/share/icons/Bluecurve/24x24/stock/stock-import.png /usr/share/icons/Bluecurve/24x24/stock/stock-insert-image.png /usr/share/icons/Bluecurve/24x24/stock/stock-insert-object.png /usr/share/icons/Bluecurve/24x24/stock/stock-insert-table.png /usr/share/icons/Bluecurve/24x24/stock/stock-italic.png /usr/share/icons/Bluecurve/24x24/stock/stock-jump-to.png /usr/share/icons/Bluecurve/24x24/stock/stock-justify-center.png /usr/share/icons/Bluecurve/24x24/stock/stock-justify-fill.png /usr/share/icons/Bluecurve/24x24/stock/stock-justify-left.png /usr/share/icons/Bluecurve/24x24/stock/stock-justify-right.png /usr/share/icons/Bluecurve/24x24/stock/stock-line-in.png /usr/share/icons/Bluecurve/24x24/stock/stock-lockscreen.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-eject.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-ffwd.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-next.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-pause.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-play.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-prev.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-rec.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-rewind.png /usr/share/icons/Bluecurve/24x24/stock/stock-media-stop.png /usr/share/icons/Bluecurve/24x24/stock/stock-mic.png /usr/share/icons/Bluecurve/24x24/stock/stock-missing-image.png /usr/share/icons/Bluecurve/24x24/stock/stock-new.png /usr/share/icons/Bluecurve/24x24/stock/stock-new-tab.png /usr/share/icons/Bluecurve/24x24/stock/stock-open.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-accessories.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-amusements.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-drawer.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-internet.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-launcher.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-multimedia.png /usr/share/icons/Bluecurve/24x24/stock/stock-panel-screenshot.png /usr/share/icons/Bluecurve/24x24/stock/stock-paste.png /usr/share/icons/Bluecurve/24x24/stock/stock-preferences.png /usr/share/icons/Bluecurve/24x24/stock/stock-printer-broken.png /usr/share/icons/Bluecurve/24x24/stock/stock-printer-default.png /usr/share/icons/Bluecurve/24x24/stock/stock-print.png /usr/share/icons/Bluecurve/24x24/stock/stock-print-preview.png /usr/share/icons/Bluecurve/24x24/stock/stock-properties.png /usr/share/icons/Bluecurve/24x24/stock/stock-quit.png /usr/share/icons/Bluecurve/24x24/stock/stock-redo.png /usr/share/icons/Bluecurve/24x24/stock/stock-refresh.png /usr/share/icons/Bluecurve/24x24/stock/stock-remove.png /usr/share/icons/Bluecurve/24x24/stock/stock-revert-to-saved.png /usr/share/icons/Bluecurve/24x24/stock/stock-save-as.png /usr/share/icons/Bluecurve/24x24/stock/stock-save.png /usr/share/icons/Bluecurve/24x24/stock/stock-select-color.png /usr/share/icons/Bluecurve/24x24/stock/stock-send-link.png /usr/share/icons/Bluecurve/24x24/stock/stock-sort-ascending.png /usr/share/icons/Bluecurve/24x24/stock/stock-sort-descending.png /usr/share/icons/Bluecurve/24x24/stock/stock-spell-check.png /usr/share/icons/Bluecurve/24x24/stock/stock-stop.png /usr/share/icons/Bluecurve/24x24/stock/stock-strikethrough.png /usr/share/icons/Bluecurve/24x24/stock/stock-undelete.png /usr/share/icons/Bluecurve/24x24/stock/stock-underline.png /usr/share/icons/Bluecurve/24x24/stock/stock-undo.png /usr/share/icons/Bluecurve/24x24/stock/stock-volume-0.png /usr/share/icons/Bluecurve/24x24/stock/stock-volume-max.png /usr/share/icons/Bluecurve/24x24/stock/stock-volume-med.png /usr/share/icons/Bluecurve/24x24/stock/stock-volume-min.png /usr/share/icons/Bluecurve/24x24/stock/stock-volume-mute.png /usr/share/icons/Bluecurve/24x24/stock/stock-volume.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-cloudy.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-few-clouds.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-fog.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-showers.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-snow.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-storm.png /usr/share/icons/Bluecurve/24x24/stock/stock_weather-sunny.png /usr/share/icons/Bluecurve/24x24/stock/stock-zoom-100.png /usr/share/icons/Bluecurve/24x24/stock/stock-zoom-fit.png /usr/share/icons/Bluecurve/24x24/stock/stock-zoom-in.png /usr/share/icons/Bluecurve/24x24/stock/stock-zoom-out.png /usr/share/icons/Bluecurve/32x32/apps/icon-accessibility.png /usr/share/icons/Bluecurve/32x32/apps/icon-accessibility-technologies.png /usr/share/icons/Bluecurve/32x32/apps/icon-accessories.png /usr/share/icons/Bluecurve/32x32/apps/icon-applications.png /usr/share/icons/Bluecurve/32x32/apps/icon-audio.png /usr/share/icons/Bluecurve/32x32/apps/icon-background-picture.png /usr/share/icons/Bluecurve/32x32/apps/icon-bug.png /usr/share/icons/Bluecurve/32x32/apps/icon-calculator.png /usr/share/icons/Bluecurve/32x32/apps/icon-camera.png /usr/share/icons/Bluecurve/32x32/apps/icon-cd-burn.png /usr/share/icons/Bluecurve/32x32/apps/icon-cd-rip.png /usr/share/icons/Bluecurve/32x32/apps/icon-character-map.png /usr/share/icons/Bluecurve/32x32/apps/icon-clipboard.png /usr/share/icons/Bluecurve/32x32/apps/icon-clock.png /usr/share/icons/Bluecurve/32x32/apps/icon-computer-ccenter.png /usr/share/icons/Bluecurve/32x32/apps/icon-computer.png /usr/share/icons/Bluecurve/32x32/apps/icon-computer-restart.png /usr/share/icons/Bluecurve/32x32/apps/icon-config-edit.png /usr/share/icons/Bluecurve/32x32/apps/icon-configuration.png /usr/share/icons/Bluecurve/32x32/apps/icon-connect-windows.png /usr/share/icons/Bluecurve/32x32/apps/icon-date.png /usr/share/icons/Bluecurve/32x32/apps/icon-datetime.png /usr/share/icons/Bluecurve/32x32/apps/icon-db-user.png /usr/share/icons/Bluecurve/32x32/apps/icon-desktop.png /usr/share/icons/Bluecurve/32x32/apps/icon-development.png /usr/share/icons/Bluecurve/32x32/apps/icon-disks.png /usr/share/icons/Bluecurve/32x32/apps/icon-dns.png /usr/share/icons/Bluecurve/32x32/apps/icon-documentation.png /usr/share/icons/Bluecurve/32x32/apps/icon-eclipse.png /usr/share/icons/Bluecurve/32x32/apps/icon-email.png /usr/share/icons/Bluecurve/32x32/apps/icon-explore-tree.png /usr/share/icons/Bluecurve/32x32/apps/icon-filemanager.png /usr/share/icons/Bluecurve/32x32/apps/icon-fileshare.png /usr/share/icons/Bluecurve/32x32/apps/icon-fileshare-smb.png /usr/share/icons/Bluecurve/32x32/apps/icon-fonts.png /usr/share/icons/Bluecurve/32x32/apps/icon-games.png /usr/share/icons/Bluecurve/32x32/apps/icon-gfx.png /usr/share/icons/Bluecurve/32x32/apps/icon-gimp.png /usr/share/icons/Bluecurve/32x32/apps/icon-glade.png /usr/share/icons/Bluecurve/32x32/apps/icon-globe.png /usr/share/icons/Bluecurve/32x32/apps/icon-groupchat.png /usr/share/icons/Bluecurve/32x32/apps/icon-help.png /usr/share/icons/Bluecurve/32x32/apps/icon-html.png /usr/share/icons/Bluecurve/32x32/apps/icon-httpd.png /usr/share/icons/Bluecurve/32x32/apps/icon-install-software.png /usr/share/icons/Bluecurve/32x32/apps/icon-instantmessage.png /usr/share/icons/Bluecurve/32x32/apps/icon-keyboard.png /usr/share/icons/Bluecurve/32x32/apps/icon-keyboard-shortcuts.png /usr/share/icons/Bluecurve/32x32/apps/icon-kickstart.png /usr/share/icons/Bluecurve/32x32/apps/icon-languages.png /usr/share/icons/Bluecurve/32x32/apps/icon-launcher.png /usr/share/icons/Bluecurve/32x32/apps/icon-logbook.png /usr/share/icons/Bluecurve/32x32/apps/icon-media.png /usr/share/icons/Bluecurve/32x32/apps/icon-memory-profile.png /usr/share/icons/Bluecurve/32x32/apps/icon-menus-toolbars.png /usr/share/icons/Bluecurve/32x32/apps/icon-mime-types.png /usr/share/icons/Bluecurve/32x32/apps/icon-mixer.png /usr/share/icons/Bluecurve/32x32/apps/icon-monitor.png /usr/share/icons/Bluecurve/32x32/apps/icon-mouse.png /usr/share/icons/Bluecurve/32x32/apps/icon-network-address.png /usr/share/icons/Bluecurve/32x32/apps/icon-network-firewall.png /usr/share/icons/Bluecurve/32x32/apps/icon-network.png /usr/share/icons/Bluecurve/32x32/apps/icon-network-systems.png /usr/share/icons/Bluecurve/32x32/apps/icon-network-wizard.png /usr/share/icons/Bluecurve/32x32/apps/icon-notepad.png /usr/share/icons/Bluecurve/32x32/apps/icon-office.png /usr/share/icons/Bluecurve/32x32/apps/icon-office-presentation.png /usr/share/icons/Bluecurve/32x32/apps/icon-office-spreadsheet.png /usr/share/icons/Bluecurve/32x32/apps/icon-office-wordprocessor.png /usr/share/icons/Bluecurve/32x32/apps/icon-packages.png /usr/share/icons/Bluecurve/32x32/apps/icon-panel.png /usr/share/icons/Bluecurve/32x32/apps/icon-printer.png /usr/share/icons/Bluecurve/32x32/apps/icon-resize-screen.png /usr/share/icons/Bluecurve/32x32/apps/icon-runapp.png /usr/share/icons/Bluecurve/32x32/apps/icon-search.png /usr/share/icons/Bluecurve/32x32/apps/icon-security-badge.png /usr/share/icons/Bluecurve/32x32/apps/icon-security-global.png /usr/share/icons/Bluecurve/32x32/apps/icon-security-keys.png /usr/share/icons/Bluecurve/32x32/apps/icon-security-lock.png /usr/share/icons/Bluecurve/32x32/apps/icon-server.png /usr/share/icons/Bluecurve/32x32/apps/icon-service.png /usr/share/icons/Bluecurve/32x32/apps/icon-settings.png /usr/share/icons/Bluecurve/32x32/apps/icon-sound.png /usr/share/icons/Bluecurve/32x32/apps/icon-speaker.png /usr/share/icons/Bluecurve/32x32/apps/icon-system-configuration.png /usr/share/icons/Bluecurve/32x32/apps/icon-systemhealth.png /usr/share/icons/Bluecurve/32x32/apps/icon-system-packages.png /usr/share/icons/Bluecurve/32x32/apps/icon-system-parts.png /usr/share/icons/Bluecurve/32x32/apps/icon-system.png /usr/share/icons/Bluecurve/32x32/apps/icon-system-preferences.png /usr/share/icons/Bluecurve/32x32/apps/icon-system-security.png /usr/share/icons/Bluecurve/32x32/apps/icon-system-settings.png /usr/share/icons/Bluecurve/32x32/apps/icon-television.png /usr/share/icons/Bluecurve/32x32/apps/icon-terminal-linux.png /usr/share/icons/Bluecurve/32x32/apps/icon-terminal.png /usr/share/icons/Bluecurve/32x32/apps/icon-text-internet.png /usr/share/icons/Bluecurve/32x32/apps/icon-themes.png /usr/share/icons/Bluecurve/32x32/apps/icon-traceroute.png /usr/share/icons/Bluecurve/32x32/apps/icon-unknown.png /usr/share/icons/Bluecurve/32x32/apps/icon-update-applet.png /usr/share/icons/Bluecurve/32x32/apps/icon-update.png /usr/share/icons/Bluecurve/32x32/apps/icon-user-id.png /usr/share/icons/Bluecurve/32x32/apps/icon-user-keys.png /usr/share/icons/Bluecurve/32x32/apps/icon-user.png /usr/share/icons/Bluecurve/32x32/apps/icon-vector-editor.png /usr/share/icons/Bluecurve/32x32/apps/icon-web-browser.png /usr/share/icons/Bluecurve/32x32/apps/icon-windowmanager.png /usr/share/icons/Bluecurve/32x32/apps/icon-x-config.png /usr/share/icons/Bluecurve/32x32/apps/icon-xscreensaver.png /usr/share/icons/Bluecurve/32x32/apps/redhat-icon-panel-menu.png /usr/share/icons/Bluecurve/32x32/stock/stock-about.png /usr/share/icons/Bluecurve/32x32/stock/stock-add.png /usr/share/icons/Bluecurve/32x32/stock/stock-apply.png /usr/share/icons/Bluecurve/32x32/stock/stock-attach.png /usr/share/icons/Bluecurve/32x32/stock/stock-bold.png /usr/share/icons/Bluecurve/32x32/stock/stock-bookmark-page.png /usr/share/icons/Bluecurve/32x32/stock/stock-bookmarks.png /usr/share/icons/Bluecurve/32x32/stock/stock-book.png /usr/share/icons/Bluecurve/32x32/stock/stock-cancel.png /usr/share/icons/Bluecurve/32x32/stock/stock-cdrom.png /usr/share/icons/Bluecurve/32x32/stock/stock-clear.png /usr/share/icons/Bluecurve/32x32/stock/stock-close.png /usr/share/icons/Bluecurve/32x32/stock/stock-connect.png /usr/share/icons/Bluecurve/32x32/stock/stock-convert.png /usr/share/icons/Bluecurve/32x32/stock/stock-copy.png /usr/share/icons/Bluecurve/32x32/stock/stock-cut.png /usr/share/icons/Bluecurve/32x32/stock/stock-delete.png /usr/share/icons/Bluecurve/32x32/stock/stock-disconnect.png /usr/share/icons/Bluecurve/32x32/stock/stock-dnd-multiple.png /usr/share/icons/Bluecurve/32x32/stock/stock-dnd.png /usr/share/icons/Bluecurve/32x32/stock/stock-download.png /usr/share/icons/Bluecurve/32x32/stock/stock-edit.png /usr/share/icons/Bluecurve/32x32/stock/stock-execute.png /usr/share/icons/Bluecurve/32x32/stock/stock-export.png /usr/share/icons/Bluecurve/32x32/stock/stock-find-and-replace.png /usr/share/icons/Bluecurve/32x32/stock/stock-find.png /usr/share/icons/Bluecurve/32x32/stock/stock-font.png /usr/share/icons/Bluecurve/32x32/stock/stock-foo.png /usr/share/icons/Bluecurve/32x32/stock/stock-fullscreen.png /usr/share/icons/Bluecurve/32x32/stock/stock-go-back.png /usr/share/icons/Bluecurve/32x32/stock/stock-go-down.png /usr/share/icons/Bluecurve/32x32/stock/stock-go-forward.png /usr/share/icons/Bluecurve/32x32/stock/stock-goto-bottom.png /usr/share/icons/Bluecurve/32x32/stock/stock-goto-first.png /usr/share/icons/Bluecurve/32x32/stock/stock-goto-last.png /usr/share/icons/Bluecurve/32x32/stock/stock-goto-top.png /usr/share/icons/Bluecurve/32x32/stock/stock-go-up.png /usr/share/icons/Bluecurve/32x32/stock/stock-help.png /usr/share/icons/Bluecurve/32x32/stock/stock-history.png /usr/share/icons/Bluecurve/32x32/stock/stock-home.png /usr/share/icons/Bluecurve/32x32/stock/stock-import.png /usr/share/icons/Bluecurve/32x32/stock/stock-insert-image.png /usr/share/icons/Bluecurve/32x32/stock/stock-insert-object.png /usr/share/icons/Bluecurve/32x32/stock/stock-insert-table.png /usr/share/icons/Bluecurve/32x32/stock/stock-italic.png /usr/share/icons/Bluecurve/32x32/stock/stock-jump-to.png /usr/share/icons/Bluecurve/32x32/stock/stock-justify-center.png /usr/share/icons/Bluecurve/32x32/stock/stock-justify-fill.png /usr/share/icons/Bluecurve/32x32/stock/stock-justify-left.png /usr/share/icons/Bluecurve/32x32/stock/stock-justify-right.png /usr/share/icons/Bluecurve/32x32/stock/stock-line-in.png /usr/share/icons/Bluecurve/32x32/stock/stock-lockscreen.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-eject.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-ffwd.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-next.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-pause.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-play.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-prev.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-rec.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-rewind.png /usr/share/icons/Bluecurve/32x32/stock/stock-media-stop.png /usr/share/icons/Bluecurve/32x32/stock/stock-mic.png /usr/share/icons/Bluecurve/32x32/stock/stock-missing-image.png /usr/share/icons/Bluecurve/32x32/stock/stock-new.png /usr/share/icons/Bluecurve/32x32/stock/stock-new-tab.png /usr/share/icons/Bluecurve/32x32/stock/stock-open.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-accessories.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-amusements.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-drawer.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-internet.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-launcher.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-multimedia.png /usr/share/icons/Bluecurve/32x32/stock/stock-panel-screenshot.png /usr/share/icons/Bluecurve/32x32/stock/stock-paste.png /usr/share/icons/Bluecurve/32x32/stock/stock-preferences.png /usr/share/icons/Bluecurve/32x32/stock/stock-printer-broken.png /usr/share/icons/Bluecurve/32x32/stock/stock-printer-default.png /usr/share/icons/Bluecurve/32x32/stock/stock-print.png /usr/share/icons/Bluecurve/32x32/stock/stock-print-preview.png /usr/share/icons/Bluecurve/32x32/stock/stock-properties.png /usr/share/icons/Bluecurve/32x32/stock/stock-quit.png /usr/share/icons/Bluecurve/32x32/stock/stock-redo.png /usr/share/icons/Bluecurve/32x32/stock/stock-refresh.png /usr/share/icons/Bluecurve/32x32/stock/stock-remove.png /usr/share/icons/Bluecurve/32x32/stock/stock-revert-to-saved.png /usr/share/icons/Bluecurve/32x32/stock/stock-save-as.png /usr/share/icons/Bluecurve/32x32/stock/stock-save.png /usr/share/icons/Bluecurve/32x32/stock/stock-select-color.png /usr/share/icons/Bluecurve/32x32/stock/stock-send-link.png /usr/share/icons/Bluecurve/32x32/stock/stock-sort-ascending.png /usr/share/icons/Bluecurve/32x32/stock/stock-sort-descending.png /usr/share/icons/Bluecurve/32x32/stock/stock-spell-check.png /usr/share/icons/Bluecurve/32x32/stock/stock-stop.png /usr/share/icons/Bluecurve/32x32/stock/stock-strikethrough.png /usr/share/icons/Bluecurve/32x32/stock/stock-undelete.png /usr/share/icons/Bluecurve/32x32/stock/stock-underline.png /usr/share/icons/Bluecurve/32x32/stock/stock-undo.png /usr/share/icons/Bluecurve/32x32/stock/stock-volume-0.png /usr/share/icons/Bluecurve/32x32/stock/stock-volume-max.png /usr/share/icons/Bluecurve/32x32/stock/stock-volume-med.png /usr/share/icons/Bluecurve/32x32/stock/stock-volume-min.png /usr/share/icons/Bluecurve/32x32/stock/stock-volume-mute.png /usr/share/icons/Bluecurve/32x32/stock/stock-volume.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-cloudy.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-few-clouds.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-fog.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-showers.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-snow.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-storm.png /usr/share/icons/Bluecurve/32x32/stock/stock_weather-sunny.png /usr/share/icons/Bluecurve/32x32/stock/stock-zoom-100.png /usr/share/icons/Bluecurve/32x32/stock/stock-zoom-fit.png /usr/share/icons/Bluecurve/32x32/stock/stock-zoom-in.png /usr/share/icons/Bluecurve/32x32/stock/stock-zoom-out.png /usr/share/icons/Bluecurve/36x36/apps/gnome-spinner.png /usr/share/icons/Bluecurve/36x36/apps/gnome-spinner-rest.png /usr/share/icons/Bluecurve/36x36/apps/icon-accessibility.png /usr/share/icons/Bluecurve/36x36/apps/icon-accessibility-technologies.png /usr/share/icons/Bluecurve/36x36/apps/icon-accessories.png /usr/share/icons/Bluecurve/36x36/apps/icon-applications.png /usr/share/icons/Bluecurve/36x36/apps/icon-audio.png /usr/share/icons/Bluecurve/36x36/apps/icon-background-picture.png /usr/share/icons/Bluecurve/36x36/apps/icon-bug.png /usr/share/icons/Bluecurve/36x36/apps/icon-calculator.png /usr/share/icons/Bluecurve/36x36/apps/icon-camera.png /usr/share/icons/Bluecurve/36x36/apps/icon-cd-burn.png /usr/share/icons/Bluecurve/36x36/apps/icon-cd-rip.png /usr/share/icons/Bluecurve/36x36/apps/icon-character-map.png /usr/share/icons/Bluecurve/36x36/apps/icon-clipboard.png /usr/share/icons/Bluecurve/36x36/apps/icon-clock.png /usr/share/icons/Bluecurve/36x36/apps/icon-computer-ccenter.png /usr/share/icons/Bluecurve/36x36/apps/icon-computer.png /usr/share/icons/Bluecurve/36x36/apps/icon-computer-restart.png /usr/share/icons/Bluecurve/36x36/apps/icon-config-edit.png /usr/share/icons/Bluecurve/36x36/apps/icon-configuration.png /usr/share/icons/Bluecurve/36x36/apps/icon-connect-windows.png /usr/share/icons/Bluecurve/36x36/apps/icon-date.png /usr/share/icons/Bluecurve/36x36/apps/icon-datetime.png /usr/share/icons/Bluecurve/36x36/apps/icon-db-user.png /usr/share/icons/Bluecurve/36x36/apps/icon-desktop.png /usr/share/icons/Bluecurve/36x36/apps/icon-development.png /usr/share/icons/Bluecurve/36x36/apps/icon-disks.png /usr/share/icons/Bluecurve/36x36/apps/icon-dns.png /usr/share/icons/Bluecurve/36x36/apps/icon-documentation.png /usr/share/icons/Bluecurve/36x36/apps/icon-eclipse.png /usr/share/icons/Bluecurve/36x36/apps/icon-email.png /usr/share/icons/Bluecurve/36x36/apps/icon-explore-tree.png /usr/share/icons/Bluecurve/36x36/apps/icon-filemanager.png /usr/share/icons/Bluecurve/36x36/apps/icon-fileshare.png /usr/share/icons/Bluecurve/36x36/apps/icon-fileshare-smb.png /usr/share/icons/Bluecurve/36x36/apps/icon-fonts.png /usr/share/icons/Bluecurve/36x36/apps/icon-games.png /usr/share/icons/Bluecurve/36x36/apps/icon-gfx.png /usr/share/icons/Bluecurve/36x36/apps/icon-gimp.png /usr/share/icons/Bluecurve/36x36/apps/icon-glade.png /usr/share/icons/Bluecurve/36x36/apps/icon-globe.png /usr/share/icons/Bluecurve/36x36/apps/icon-groupchat.png /usr/share/icons/Bluecurve/36x36/apps/icon-help.png /usr/share/icons/Bluecurve/36x36/apps/icon-html.png /usr/share/icons/Bluecurve/36x36/apps/icon-httpd.png /usr/share/icons/Bluecurve/36x36/apps/icon-install-software.png /usr/share/icons/Bluecurve/36x36/apps/icon-instantmessage.png /usr/share/icons/Bluecurve/36x36/apps/icon-keyboard.png /usr/share/icons/Bluecurve/36x36/apps/icon-keyboard-shortcuts.png /usr/share/icons/Bluecurve/36x36/apps/icon-kickstart.png /usr/share/icons/Bluecurve/36x36/apps/icon-languages.png /usr/share/icons/Bluecurve/36x36/apps/icon-launcher.png /usr/share/icons/Bluecurve/36x36/apps/icon-logbook.png /usr/share/icons/Bluecurve/36x36/apps/icon-media.png /usr/share/icons/Bluecurve/36x36/apps/icon-memory-profile.png /usr/share/icons/Bluecurve/36x36/apps/icon-menus-toolbars.png /usr/share/icons/Bluecurve/36x36/apps/icon-mime-types.png /usr/share/icons/Bluecurve/36x36/apps/icon-mixer.png /usr/share/icons/Bluecurve/36x36/apps/icon-monitor.png /usr/share/icons/Bluecurve/36x36/apps/icon-mouse.png /usr/share/icons/Bluecurve/36x36/apps/icon-network-address.png /usr/share/icons/Bluecurve/36x36/apps/icon-network-firewall.png /usr/share/icons/Bluecurve/36x36/apps/icon-network.png /usr/share/icons/Bluecurve/36x36/apps/icon-network-systems.png /usr/share/icons/Bluecurve/36x36/apps/icon-network-wizard.png /usr/share/icons/Bluecurve/36x36/apps/icon-notepad.png /usr/share/icons/Bluecurve/36x36/apps/icon-office.png /usr/share/icons/Bluecurve/36x36/apps/icon-office-presentation.png /usr/share/icons/Bluecurve/36x36/apps/icon-office-spreadsheet.png /usr/share/icons/Bluecurve/36x36/apps/icon-office-wordprocessor.png /usr/share/icons/Bluecurve/36x36/apps/icon-packages.png /usr/share/icons/Bluecurve/36x36/apps/icon-panel.png /usr/share/icons/Bluecurve/36x36/apps/icon-printer.png /usr/share/icons/Bluecurve/36x36/apps/icon-resize-screen.png /usr/share/icons/Bluecurve/36x36/apps/icon-runapp.png /usr/share/icons/Bluecurve/36x36/apps/icon-search.png /usr/share/icons/Bluecurve/36x36/apps/icon-security-badge.png /usr/share/icons/Bluecurve/36x36/apps/icon-security-global.png /usr/share/icons/Bluecurve/36x36/apps/icon-security-keys.png /usr/share/icons/Bluecurve/36x36/apps/icon-security-lock.png /usr/share/icons/Bluecurve/36x36/apps/icon-server.png /usr/share/icons/Bluecurve/36x36/apps/icon-service.png /usr/share/icons/Bluecurve/36x36/apps/icon-settings.png /usr/share/icons/Bluecurve/36x36/apps/icon-sound.png /usr/share/icons/Bluecurve/36x36/apps/icon-speaker.png /usr/share/icons/Bluecurve/36x36/apps/icon-system-configuration.png /usr/share/icons/Bluecurve/36x36/apps/icon-systemhealth.png /usr/share/icons/Bluecurve/36x36/apps/icon-system-packages.png /usr/share/icons/Bluecurve/36x36/apps/icon-system-parts.png /usr/share/icons/Bluecurve/36x36/apps/icon-system.png /usr/share/icons/Bluecurve/36x36/apps/icon-system-preferences.png /usr/share/icons/Bluecurve/36x36/apps/icon-system-security.png /usr/share/icons/Bluecurve/36x36/apps/icon-system-settings.png /usr/share/icons/Bluecurve/36x36/apps/icon-television.png /usr/share/icons/Bluecurve/36x36/apps/icon-terminal-linux.png /usr/share/icons/Bluecurve/36x36/apps/icon-terminal.png /usr/share/icons/Bluecurve/36x36/apps/icon-text-internet.png /usr/share/icons/Bluecurve/36x36/apps/icon-themes.png /usr/share/icons/Bluecurve/36x36/apps/icon-traceroute.png /usr/share/icons/Bluecurve/36x36/apps/icon-unknown.png /usr/share/icons/Bluecurve/36x36/apps/icon-update-applet.png /usr/share/icons/Bluecurve/36x36/apps/icon-update.png /usr/share/icons/Bluecurve/36x36/apps/icon-user-id.png /usr/share/icons/Bluecurve/36x36/apps/icon-user-keys.png /usr/share/icons/Bluecurve/36x36/apps/icon-user.png /usr/share/icons/Bluecurve/36x36/apps/icon-vector-editor.png /usr/share/icons/Bluecurve/36x36/apps/icon-web-browser.png /usr/share/icons/Bluecurve/36x36/apps/icon-windowmanager.png /usr/share/icons/Bluecurve/36x36/apps/icon-x-config.png /usr/share/icons/Bluecurve/36x36/apps/icon-xscreensaver.png /usr/share/icons/Bluecurve/36x36/apps/redhat-icon-panel-menu.png /usr/share/icons/Bluecurve/48x48/apps/icon-accessibility.png /usr/share/icons/Bluecurve/48x48/apps/icon-accessibility-technologies.png /usr/share/icons/Bluecurve/48x48/apps/icon-accessories.png /usr/share/icons/Bluecurve/48x48/apps/icon-applications.png /usr/share/icons/Bluecurve/48x48/apps/icon-audio.png /usr/share/icons/Bluecurve/48x48/apps/icon-background-picture.png /usr/share/icons/Bluecurve/48x48/apps/icon-bug.png /usr/share/icons/Bluecurve/48x48/apps/icon-calculator.png /usr/share/icons/Bluecurve/48x48/apps/icon-camera.png /usr/share/icons/Bluecurve/48x48/apps/icon-cd-burn.png /usr/share/icons/Bluecurve/48x48/apps/icon-cd-rip.png /usr/share/icons/Bluecurve/48x48/apps/icon-character-map.png /usr/share/icons/Bluecurve/48x48/apps/icon-clipboard.png /usr/share/icons/Bluecurve/48x48/apps/icon-clock.png /usr/share/icons/Bluecurve/48x48/apps/icon-computer-ccenter.png /usr/share/icons/Bluecurve/48x48/apps/icon-computer.png /usr/share/icons/Bluecurve/48x48/apps/icon-computer-restart.png /usr/share/icons/Bluecurve/48x48/apps/icon-config-edit.png /usr/share/icons/Bluecurve/48x48/apps/icon-configuration.png /usr/share/icons/Bluecurve/48x48/apps/icon-connect-windows.png /usr/share/icons/Bluecurve/48x48/apps/icon-date.png /usr/share/icons/Bluecurve/48x48/apps/icon-datetime.png /usr/share/icons/Bluecurve/48x48/apps/icon-db-user.png /usr/share/icons/Bluecurve/48x48/apps/icon-desktop.png /usr/share/icons/Bluecurve/48x48/apps/icon-development.png /usr/share/icons/Bluecurve/48x48/apps/icon-disks.png /usr/share/icons/Bluecurve/48x48/apps/icon-dns.png /usr/share/icons/Bluecurve/48x48/apps/icon-documentation.png /usr/share/icons/Bluecurve/48x48/apps/icon-eclipse.png /usr/share/icons/Bluecurve/48x48/apps/icon-email.png /usr/share/icons/Bluecurve/48x48/apps/icon-explore-tree.png /usr/share/icons/Bluecurve/48x48/apps/icon-filemanager.png /usr/share/icons/Bluecurve/48x48/apps/icon-fileshare.png /usr/share/icons/Bluecurve/48x48/apps/icon-fileshare-smb.png /usr/share/icons/Bluecurve/48x48/apps/icon-fonts.png /usr/share/icons/Bluecurve/48x48/apps/icon-games.png /usr/share/icons/Bluecurve/48x48/apps/icon-gfx.png /usr/share/icons/Bluecurve/48x48/apps/icon-gimp.png /usr/share/icons/Bluecurve/48x48/apps/icon-glade.png /usr/share/icons/Bluecurve/48x48/apps/icon-globe.png /usr/share/icons/Bluecurve/48x48/apps/icon-groupchat.png /usr/share/icons/Bluecurve/48x48/apps/icon-help.png /usr/share/icons/Bluecurve/48x48/apps/icon-html.png /usr/share/icons/Bluecurve/48x48/apps/icon-httpd.png /usr/share/icons/Bluecurve/48x48/apps/icon-install-software.png /usr/share/icons/Bluecurve/48x48/apps/icon-instantmessage.png /usr/share/icons/Bluecurve/48x48/apps/icon-keyboard.png /usr/share/icons/Bluecurve/48x48/apps/icon-keyboard-shortcuts.png /usr/share/icons/Bluecurve/48x48/apps/icon-kickstart.png /usr/share/icons/Bluecurve/48x48/apps/icon-languages.png /usr/share/icons/Bluecurve/48x48/apps/icon-launcher.png /usr/share/icons/Bluecurve/48x48/apps/icon-logbook.png /usr/share/icons/Bluecurve/48x48/apps/icon-media.png /usr/share/icons/Bluecurve/48x48/apps/icon-memory-profile.png /usr/share/icons/Bluecurve/48x48/apps/icon-menus-toolbars.png /usr/share/icons/Bluecurve/48x48/apps/icon-mime-types.png /usr/share/icons/Bluecurve/48x48/apps/icon-mixer.png /usr/share/icons/Bluecurve/48x48/apps/icon-monitor.png /usr/share/icons/Bluecurve/48x48/apps/icon-mouse.png /usr/share/icons/Bluecurve/48x48/apps/icon-network-address.png /usr/share/icons/Bluecurve/48x48/apps/icon-network-firewall.png /usr/share/icons/Bluecurve/48x48/apps/icon-network.png /usr/share/icons/Bluecurve/48x48/apps/icon-network-systems.png /usr/share/icons/Bluecurve/48x48/apps/icon-network-wizard.png /usr/share/icons/Bluecurve/48x48/apps/icon-notepad.png /usr/share/icons/Bluecurve/48x48/apps/icon-office.png /usr/share/icons/Bluecurve/48x48/apps/icon-office-presentation.png /usr/share/icons/Bluecurve/48x48/apps/icon-office-spreadsheet.png /usr/share/icons/Bluecurve/48x48/apps/icon-office-wordprocessor.png /usr/share/icons/Bluecurve/48x48/apps/icon-packages.png /usr/share/icons/Bluecurve/48x48/apps/icon-panel.png /usr/share/icons/Bluecurve/48x48/apps/icon-printer.png /usr/share/icons/Bluecurve/48x48/apps/icon-resize-screen.png /usr/share/icons/Bluecurve/48x48/apps/icon-runapp.png /usr/share/icons/Bluecurve/48x48/apps/icon-search.png /usr/share/icons/Bluecurve/48x48/apps/icon-security-badge.png /usr/share/icons/Bluecurve/48x48/apps/icon-security-global.png /usr/share/icons/Bluecurve/48x48/apps/icon-security-keys.png /usr/share/icons/Bluecurve/48x48/apps/icon-security-lock.png /usr/share/icons/Bluecurve/48x48/apps/icon-server.png /usr/share/icons/Bluecurve/48x48/apps/icon-service.png /usr/share/icons/Bluecurve/48x48/apps/icon-settings.png /usr/share/icons/Bluecurve/48x48/apps/icon-sound.png /usr/share/icons/Bluecurve/48x48/apps/icon-speaker.png /usr/share/icons/Bluecurve/48x48/apps/icon-system-configuration.png /usr/share/icons/Bluecurve/48x48/apps/icon-systemhealth.png /usr/share/icons/Bluecurve/48x48/apps/icon-system-packages.png /usr/share/icons/Bluecurve/48x48/apps/icon-system-parts.png /usr/share/icons/Bluecurve/48x48/apps/icon-system.png /usr/share/icons/Bluecurve/48x48/apps/icon-system-preferences.png /usr/share/icons/Bluecurve/48x48/apps/icon-system-security.png /usr/share/icons/Bluecurve/48x48/apps/icon-system-settings.png /usr/share/icons/Bluecurve/48x48/apps/icon-television.png /usr/share/icons/Bluecurve/48x48/apps/icon-terminal-linux.png /usr/share/icons/Bluecurve/48x48/apps/icon-terminal.png /usr/share/icons/Bluecurve/48x48/apps/icon-text-internet.png /usr/share/icons/Bluecurve/48x48/apps/icon-themes.png /usr/share/icons/Bluecurve/48x48/apps/icon-traceroute.png /usr/share/icons/Bluecurve/48x48/apps/icon-unknown.png /usr/share/icons/Bluecurve/48x48/apps/icon-update-applet.png /usr/share/icons/Bluecurve/48x48/apps/icon-update.png /usr/share/icons/Bluecurve/48x48/apps/icon-user-id.png /usr/share/icons/Bluecurve/48x48/apps/icon-user-keys.png /usr/share/icons/Bluecurve/48x48/apps/icon-user.png /usr/share/icons/Bluecurve/48x48/apps/icon-vector-editor.png /usr/share/icons/Bluecurve/48x48/apps/icon-web-browser.png /usr/share/icons/Bluecurve/48x48/apps/icon-windowmanager.png /usr/share/icons/Bluecurve/48x48/apps/icon-x-config.png /usr/share/icons/Bluecurve/48x48/apps/icon-xscreensaver.png /usr/share/icons/Bluecurve/48x48/apps/redhat-icon-panel-menu.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-apps.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-art.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-bug.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-documentation.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-documents.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-edit.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-favorite.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-gear.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-home.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-keys.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-lock.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-multimedia.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-noread.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-nowrite.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-package.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-question.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-rocket.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-security.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-sound.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-symbolic-link.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-video.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-web.png /usr/share/icons/Bluecurve/48x48/emblems/emblem-wordprocessor.png /usr/share/icons/Bluecurve/48x48/mimetypes/archive.icon /usr/share/icons/Bluecurve/48x48/mimetypes/archive.png /usr/share/icons/Bluecurve/48x48/mimetypes/camcorder.png /usr/share/icons/Bluecurve/48x48/mimetypes/cd-audio.icon /usr/share/icons/Bluecurve/48x48/mimetypes/cd-audio.png /usr/share/icons/Bluecurve/48x48/mimetypes/cd.icon /usr/share/icons/Bluecurve/48x48/mimetypes/cd.png /usr/share/icons/Bluecurve/48x48/mimetypes/cdr.png /usr/share/icons/Bluecurve/48x48/mimetypes/cdrw.png /usr/share/icons/Bluecurve/48x48/mimetypes/cd-video.icon /usr/share/icons/Bluecurve/48x48/mimetypes/cd-video.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvd.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvdram.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvdrom.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvdr-plus.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvdr.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvdrw.png /usr/share/icons/Bluecurve/48x48/mimetypes/dvd-video.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-about.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-amusement.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio-aiff.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio-au.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio-midi.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio-mp3.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio-ogg.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-audio-wav.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-broken.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-bug.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-clipboard.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-container.icon /usr/share/icons/Bluecurve/48x48/mimetypes/file-container.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-c.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-cpp.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-h.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-java.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-perl.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-php.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-devel-python.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-device.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-doc_container.icon /usr/share/icons/Bluecurve/48x48/mimetypes/file-doc_container.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-document.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-executable.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-font.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-generic.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx-bmp.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx-gif.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx-ico.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx-jpg.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx-png.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gfx-xpm.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-gimp.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-help.png /usr/share/icons/Bluecurve/48x48/mimetypes/file.icon /usr/share/icons/Bluecurve/48x48/mimetypes/file-info.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-keys.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-launcher.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-loading.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-lock.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-media.png /usr/share/icons/Bluecurve/48x48/mimetypes/file.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-presentation.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-printer-dvi.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-printer-eps.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-printer-pdf.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-printer.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-printer-ps.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-printer-tex.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-security.png /usr/share/icons/Bluecurve/48x48/mimetypes/fileshare-nfs.png /usr/share/icons/Bluecurve/48x48/mimetypes/fileshare.png /usr/share/icons/Bluecurve/48x48/mimetypes/fileshare-smb.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-spreadsheet.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-style.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-unknown.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-url.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-ai.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-cdr.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-fh.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-sda.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-svg.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-sxd.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-vector_art-wmf.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-video-asf.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-video-avi.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-video-mov.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-video-mpeg.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-video.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-video-rm.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-wordprocessor.png /usr/share/icons/Bluecurve/48x48/mimetypes/file-xml.png /usr/share/icons/Bluecurve/48x48/mimetypes/floppy.icon /usr/share/icons/Bluecurve/48x48/mimetypes/floppy.png /usr/share/icons/Bluecurve/48x48/mimetypes/folder-accept.icon /usr/share/icons/Bluecurve/48x48/mimetypes/folder-accept.png /usr/share/icons/Bluecurve/48x48/mimetypes/folder-apps.icon /usr/share/icons/Bluecurve/48x48/mimetypes/folder-apps.png /usr/share/icons/Bluecurve/48x48/mimetypes/folder-home.icon /usr/share/icons/Bluecurve/48x48/mimetypes/folder-home.png /usr/share/icons/Bluecurve/48x48/mimetypes/folder.icon /usr/share/icons/Bluecurve/48x48/mimetypes/folder-locked.icon /usr/share/icons/Bluecurve/48x48/mimetypes/folder-locked.png /usr/share/icons/Bluecurve/48x48/mimetypes/folder.png /usr/share/icons/Bluecurve/48x48/mimetypes/folder-visiting.icon /usr/share/icons/Bluecurve/48x48/mimetypes/folder-visiting.png /usr/share/icons/Bluecurve/48x48/mimetypes/harddisk-1394.png /usr/share/icons/Bluecurve/48x48/mimetypes/harddisk-usb.png /usr/share/icons/Bluecurve/48x48/mimetypes/harddrive.icon /usr/share/icons/Bluecurve/48x48/mimetypes/harddrive.png /usr/share/icons/Bluecurve/48x48/mimetypes/ipod.png /usr/share/icons/Bluecurve/48x48/mimetypes/media-cf.png /usr/share/icons/Bluecurve/48x48/mimetypes/media-ms.png /usr/share/icons/Bluecurve/48x48/mimetypes/media-sdmmc.png /usr/share/icons/Bluecurve/48x48/mimetypes/media-sm.png /usr/share/icons/Bluecurve/48x48/mimetypes/multiple-files.png /usr/share/icons/Bluecurve/48x48/mimetypes/pda.png /usr/share/icons/Bluecurve/48x48/mimetypes/raid.icon /usr/share/icons/Bluecurve/48x48/mimetypes/raid.png /usr/share/icons/Bluecurve/48x48/mimetypes/removable-1394.png /usr/share/icons/Bluecurve/48x48/mimetypes/removable.png /usr/share/icons/Bluecurve/48x48/mimetypes/removable-usb.png /usr/share/icons/Bluecurve/48x48/mimetypes/rpm.png /usr/share/icons/Bluecurve/48x48/mimetypes/scanner.png /usr/share/icons/Bluecurve/48x48/mimetypes/start-here.png /usr/share/icons/Bluecurve/48x48/mimetypes/tablet.png /usr/share/icons/Bluecurve/48x48/mimetypes/trash-drop.png /usr/share/icons/Bluecurve/48x48/mimetypes/trash-empty.png /usr/share/icons/Bluecurve/48x48/mimetypes/trash-full.png /usr/share/icons/Bluecurve/48x48/stock/dialog-error.png /usr/share/icons/Bluecurve/48x48/stock/dialog-info.png /usr/share/icons/Bluecurve/48x48/stock/dialog-question.png /usr/share/icons/Bluecurve/48x48/stock/dialog-warning.png /usr/share/icons/Bluecurve/48x48/stock/stock-about.png /usr/share/icons/Bluecurve/48x48/stock/stock-add.png /usr/share/icons/Bluecurve/48x48/stock/stock-apply.png /usr/share/icons/Bluecurve/48x48/stock/stock-attach.png /usr/share/icons/Bluecurve/48x48/stock/stock-bold.png /usr/share/icons/Bluecurve/48x48/stock/stock-bookmark-page.png /usr/share/icons/Bluecurve/48x48/stock/stock-bookmarks.png /usr/share/icons/Bluecurve/48x48/stock/stock-book.png /usr/share/icons/Bluecurve/48x48/stock/stock-cancel.png /usr/share/icons/Bluecurve/48x48/stock/stock-cdrom.png /usr/share/icons/Bluecurve/48x48/stock/stock-clear.png /usr/share/icons/Bluecurve/48x48/stock/stock-close.png /usr/share/icons/Bluecurve/48x48/stock/stock-connect.png /usr/share/icons/Bluecurve/48x48/stock/stock-convert.png /usr/share/icons/Bluecurve/48x48/stock/stock-copy.png /usr/share/icons/Bluecurve/48x48/stock/stock-cut.png /usr/share/icons/Bluecurve/48x48/stock/stock-delete.png /usr/share/icons/Bluecurve/48x48/stock/stock-disconnect.png /usr/share/icons/Bluecurve/48x48/stock/stock-dnd-multiple.png /usr/share/icons/Bluecurve/48x48/stock/stock-dnd.png /usr/share/icons/Bluecurve/48x48/stock/stock-download.png /usr/share/icons/Bluecurve/48x48/stock/stock-edit.png /usr/share/icons/Bluecurve/48x48/stock/stock-execute.png /usr/share/icons/Bluecurve/48x48/stock/stock-export.png /usr/share/icons/Bluecurve/48x48/stock/stock-find-and-replace.png /usr/share/icons/Bluecurve/48x48/stock/stock-find.png /usr/share/icons/Bluecurve/48x48/stock/stock-font.png /usr/share/icons/Bluecurve/48x48/stock/stock-foo.png /usr/share/icons/Bluecurve/48x48/stock/stock-fullscreen.png /usr/share/icons/Bluecurve/48x48/stock/stock-go-back.png /usr/share/icons/Bluecurve/48x48/stock/stock-go-down.png /usr/share/icons/Bluecurve/48x48/stock/stock-go-forward.png /usr/share/icons/Bluecurve/48x48/stock/stock-goto-bottom.png /usr/share/icons/Bluecurve/48x48/stock/stock-goto-first.png /usr/share/icons/Bluecurve/48x48/stock/stock-goto-last.png /usr/share/icons/Bluecurve/48x48/stock/stock-goto-top.png /usr/share/icons/Bluecurve/48x48/stock/stock-go-up.png /usr/share/icons/Bluecurve/48x48/stock/stock-help.png /usr/share/icons/Bluecurve/48x48/stock/stock-history.png /usr/share/icons/Bluecurve/48x48/stock/stock-home.png /usr/share/icons/Bluecurve/48x48/stock/stock-import.png /usr/share/icons/Bluecurve/48x48/stock/stock-insert-image.png /usr/share/icons/Bluecurve/48x48/stock/stock-insert-object.png /usr/share/icons/Bluecurve/48x48/stock/stock-insert-table.png /usr/share/icons/Bluecurve/48x48/stock/stock-italic.png /usr/share/icons/Bluecurve/48x48/stock/stock-jump-to.png /usr/share/icons/Bluecurve/48x48/stock/stock-justify-center.png /usr/share/icons/Bluecurve/48x48/stock/stock-justify-fill.png /usr/share/icons/Bluecurve/48x48/stock/stock-justify-left.png /usr/share/icons/Bluecurve/48x48/stock/stock-justify-right.png /usr/share/icons/Bluecurve/48x48/stock/stock-line-in.png /usr/share/icons/Bluecurve/48x48/stock/stock-lockscreen.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-eject.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-ffwd.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-next.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-pause.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-play.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-prev.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-rec.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-rewind.png /usr/share/icons/Bluecurve/48x48/stock/stock-media-stop.png /usr/share/icons/Bluecurve/48x48/stock/stock-mic.png /usr/share/icons/Bluecurve/48x48/stock/stock-missing-image.png /usr/share/icons/Bluecurve/48x48/stock/stock-new.png /usr/share/icons/Bluecurve/48x48/stock/stock-new-tab.png /usr/share/icons/Bluecurve/48x48/stock/stock-open.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-accessories.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-amusements.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-drawer.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-internet.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-launcher.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-multimedia.png /usr/share/icons/Bluecurve/48x48/stock/stock-panel-screenshot.png /usr/share/icons/Bluecurve/48x48/stock/stock-paste.png /usr/share/icons/Bluecurve/48x48/stock/stock-preferences.png /usr/share/icons/Bluecurve/48x48/stock/stock-printer-broken.png /usr/share/icons/Bluecurve/48x48/stock/stock-printer-default.png /usr/share/icons/Bluecurve/48x48/stock/stock-print.png /usr/share/icons/Bluecurve/48x48/stock/stock-print-preview.png /usr/share/icons/Bluecurve/48x48/stock/stock-properties.png /usr/share/icons/Bluecurve/48x48/stock/stock-quit.png /usr/share/icons/Bluecurve/48x48/stock/stock-redo.png /usr/share/icons/Bluecurve/48x48/stock/stock-refresh.png /usr/share/icons/Bluecurve/48x48/stock/stock-remove.png /usr/share/icons/Bluecurve/48x48/stock/stock-revert-to-saved.png /usr/share/icons/Bluecurve/48x48/stock/stock-save-as.png /usr/share/icons/Bluecurve/48x48/stock/stock-save.png /usr/share/icons/Bluecurve/48x48/stock/stock-select-color.png /usr/share/icons/Bluecurve/48x48/stock/stock-send-link.png /usr/share/icons/Bluecurve/48x48/stock/stock-sort-ascending.png /usr/share/icons/Bluecurve/48x48/stock/stock-sort-descending.png /usr/share/icons/Bluecurve/48x48/stock/stock-spell-check.png /usr/share/icons/Bluecurve/48x48/stock/stock-stop.png /usr/share/icons/Bluecurve/48x48/stock/stock-strikethrough.png /usr/share/icons/Bluecurve/48x48/stock/stock-undelete.png /usr/share/icons/Bluecurve/48x48/stock/stock-underline.png /usr/share/icons/Bluecurve/48x48/stock/stock-undo.png /usr/share/icons/Bluecurve/48x48/stock/stock-volume-0.png /usr/share/icons/Bluecurve/48x48/stock/stock-volume-max.png /usr/share/icons/Bluecurve/48x48/stock/stock-volume-med.png /usr/share/icons/Bluecurve/48x48/stock/stock-volume-min.png /usr/share/icons/Bluecurve/48x48/stock/stock-volume-mute.png /usr/share/icons/Bluecurve/48x48/stock/stock-volume.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-cloudy.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-few-clouds.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-fog.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-showers.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-snow.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-storm.png /usr/share/icons/Bluecurve/48x48/stock/stock_weather-sunny.png /usr/share/icons/Bluecurve/48x48/stock/stock-zoom-100.png /usr/share/icons/Bluecurve/48x48/stock/stock-zoom-fit.png /usr/share/icons/Bluecurve/48x48/stock/stock-zoom-in.png /usr/share/icons/Bluecurve/48x48/stock/stock-zoom-out.png /usr/share/icons/Bluecurve/64x64/stock/stock-about.png /usr/share/icons/Bluecurve/64x64/stock/stock-add.png /usr/share/icons/Bluecurve/64x64/stock/stock-apply.png /usr/share/icons/Bluecurve/64x64/stock/stock-attach.png /usr/share/icons/Bluecurve/64x64/stock/stock-bold.png /usr/share/icons/Bluecurve/64x64/stock/stock-bookmark-page.png /usr/share/icons/Bluecurve/64x64/stock/stock-bookmarks.png /usr/share/icons/Bluecurve/64x64/stock/stock-book.png /usr/share/icons/Bluecurve/64x64/stock/stock-cancel.png /usr/share/icons/Bluecurve/64x64/stock/stock-cdrom.png /usr/share/icons/Bluecurve/64x64/stock/stock-clear.png /usr/share/icons/Bluecurve/64x64/stock/stock-close.png /usr/share/icons/Bluecurve/64x64/stock/stock-connect.png /usr/share/icons/Bluecurve/64x64/stock/stock-convert.png /usr/share/icons/Bluecurve/64x64/stock/stock-copy.png /usr/share/icons/Bluecurve/64x64/stock/stock-cut.png /usr/share/icons/Bluecurve/64x64/stock/stock-delete.png /usr/share/icons/Bluecurve/64x64/stock/stock-disconnect.png /usr/share/icons/Bluecurve/64x64/stock/stock-dnd-multiple.png /usr/share/icons/Bluecurve/64x64/stock/stock-dnd.png /usr/share/icons/Bluecurve/64x64/stock/stock-download.png /usr/share/icons/Bluecurve/64x64/stock/stock-edit.png /usr/share/icons/Bluecurve/64x64/stock/stock-execute.png /usr/share/icons/Bluecurve/64x64/stock/stock-export.png /usr/share/icons/Bluecurve/64x64/stock/stock-find-and-replace.png /usr/share/icons/Bluecurve/64x64/stock/stock-find.png /usr/share/icons/Bluecurve/64x64/stock/stock-font.png /usr/share/icons/Bluecurve/64x64/stock/stock-foo.png /usr/share/icons/Bluecurve/64x64/stock/stock-fullscreen.png /usr/share/icons/Bluecurve/64x64/stock/stock-go-back.png /usr/share/icons/Bluecurve/64x64/stock/stock-go-down.png /usr/share/icons/Bluecurve/64x64/stock/stock-go-forward.png /usr/share/icons/Bluecurve/64x64/stock/stock-goto-bottom.png /usr/share/icons/Bluecurve/64x64/stock/stock-goto-first.png /usr/share/icons/Bluecurve/64x64/stock/stock-goto-last.png /usr/share/icons/Bluecurve/64x64/stock/stock-goto-top.png /usr/share/icons/Bluecurve/64x64/stock/stock-go-up.png /usr/share/icons/Bluecurve/64x64/stock/stock-help.png /usr/share/icons/Bluecurve/64x64/stock/stock-history.png /usr/share/icons/Bluecurve/64x64/stock/stock-home.png /usr/share/icons/Bluecurve/64x64/stock/stock-import.png /usr/share/icons/Bluecurve/64x64/stock/stock-insert-image.png /usr/share/icons/Bluecurve/64x64/stock/stock-insert-object.png /usr/share/icons/Bluecurve/64x64/stock/stock-insert-table.png /usr/share/icons/Bluecurve/64x64/stock/stock-italic.png /usr/share/icons/Bluecurve/64x64/stock/stock-jump-to.png /usr/share/icons/Bluecurve/64x64/stock/stock-justify-center.png /usr/share/icons/Bluecurve/64x64/stock/stock-justify-fill.png /usr/share/icons/Bluecurve/64x64/stock/stock-justify-left.png /usr/share/icons/Bluecurve/64x64/stock/stock-justify-right.png /usr/share/icons/Bluecurve/64x64/stock/stock-line-in.png /usr/share/icons/Bluecurve/64x64/stock/stock-lockscreen.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-eject.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-ffwd.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-next.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-pause.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-play.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-prev.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-rec.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-rewind.png /usr/share/icons/Bluecurve/64x64/stock/stock-media-stop.png /usr/share/icons/Bluecurve/64x64/stock/stock-mic.png /usr/share/icons/Bluecurve/64x64/stock/stock-missing-image.png /usr/share/icons/Bluecurve/64x64/stock/stock-new.png /usr/share/icons/Bluecurve/64x64/stock/stock-new-tab.png /usr/share/icons/Bluecurve/64x64/stock/stock-open.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-accessories.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-amusements.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-drawer.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-internet.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-launcher.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-multimedia.png /usr/share/icons/Bluecurve/64x64/stock/stock-panel-screenshot.png /usr/share/icons/Bluecurve/64x64/stock/stock-paste.png /usr/share/icons/Bluecurve/64x64/stock/stock-preferences.png /usr/share/icons/Bluecurve/64x64/stock/stock-printer-broken.png /usr/share/icons/Bluecurve/64x64/stock/stock-printer-default.png /usr/share/icons/Bluecurve/64x64/stock/stock-print.png /usr/share/icons/Bluecurve/64x64/stock/stock-print-preview.png /usr/share/icons/Bluecurve/64x64/stock/stock-properties.png /usr/share/icons/Bluecurve/64x64/stock/stock-quit.png /usr/share/icons/Bluecurve/64x64/stock/stock-redo.png /usr/share/icons/Bluecurve/64x64/stock/stock-refresh.png /usr/share/icons/Bluecurve/64x64/stock/stock-remove.png /usr/share/icons/Bluecurve/64x64/stock/stock-revert-to-saved.png /usr/share/icons/Bluecurve/64x64/stock/stock-save-as.png /usr/share/icons/Bluecurve/64x64/stock/stock-save.png /usr/share/icons/Bluecurve/64x64/stock/stock-select-color.png /usr/share/icons/Bluecurve/64x64/stock/stock-send-link.png /usr/share/icons/Bluecurve/64x64/stock/stock-sort-ascending.png /usr/share/icons/Bluecurve/64x64/stock/stock-sort-descending.png /usr/share/icons/Bluecurve/64x64/stock/stock-spell-check.png /usr/share/icons/Bluecurve/64x64/stock/stock-stop.png /usr/share/icons/Bluecurve/64x64/stock/stock-strikethrough.png /usr/share/icons/Bluecurve/64x64/stock/stock-undelete.png /usr/share/icons/Bluecurve/64x64/stock/stock-underline.png /usr/share/icons/Bluecurve/64x64/stock/stock-undo.png /usr/share/icons/Bluecurve/64x64/stock/stock-volume-0.png /usr/share/icons/Bluecurve/64x64/stock/stock-volume-max.png /usr/share/icons/Bluecurve/64x64/stock/stock-volume-med.png /usr/share/icons/Bluecurve/64x64/stock/stock-volume-min.png /usr/share/icons/Bluecurve/64x64/stock/stock-volume-mute.png /usr/share/icons/Bluecurve/64x64/stock/stock-volume.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-cloudy.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-few-clouds.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-fog.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-showers.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-snow.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-storm.png /usr/share/icons/Bluecurve/64x64/stock/stock_weather-sunny.png /usr/share/icons/Bluecurve/64x64/stock/stock-zoom-100.png /usr/share/icons/Bluecurve/64x64/stock/stock-zoom-fit.png /usr/share/icons/Bluecurve/64x64/stock/stock-zoom-in.png /usr/share/icons/Bluecurve/64x64/stock/stock-zoom-out.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-apps.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-art.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-bug.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-documentation.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-documents.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-edit.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-favorite.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-gear.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-home.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-keys.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-lock.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-multimedia.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-noread.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-nowrite.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-package.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-question.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-rocket.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-security.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-sound.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-symbolic-link.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-video.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-web.png /usr/share/icons/Bluecurve/96x96/emblems/emblem-wordprocessor.png /usr/share/icons/Bluecurve/96x96/mimetypes/archive.icon /usr/share/icons/Bluecurve/96x96/mimetypes/archive.png /usr/share/icons/Bluecurve/96x96/mimetypes/camcorder.png /usr/share/icons/Bluecurve/96x96/mimetypes/cd-audio.icon /usr/share/icons/Bluecurve/96x96/mimetypes/cd-audio.png /usr/share/icons/Bluecurve/96x96/mimetypes/cd.icon /usr/share/icons/Bluecurve/96x96/mimetypes/cd.png /usr/share/icons/Bluecurve/96x96/mimetypes/cdr.png /usr/share/icons/Bluecurve/96x96/mimetypes/cdrw.png /usr/share/icons/Bluecurve/96x96/mimetypes/cd-video.icon /usr/share/icons/Bluecurve/96x96/mimetypes/cd-video.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvd.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvdram.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvdrom.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvdr-plus.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvdr.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvdrw.png /usr/share/icons/Bluecurve/96x96/mimetypes/dvd-video.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-about.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-amusement.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio-aiff.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio-au.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio-midi.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio-mp3.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio-ogg.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-audio-wav.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-broken.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-bug.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-clipboard.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-container.icon /usr/share/icons/Bluecurve/96x96/mimetypes/file-container.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-c.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-cpp.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-h.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-java.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-perl.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-php.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-devel-python.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-device.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-doc_container.icon /usr/share/icons/Bluecurve/96x96/mimetypes/file-doc_container.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-document.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-executable.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-font.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-generic.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx-bmp.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx-gif.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx-ico.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx-jpg.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx-png.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gfx-xpm.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-gimp.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-help.png /usr/share/icons/Bluecurve/96x96/mimetypes/file.icon /usr/share/icons/Bluecurve/96x96/mimetypes/file-info.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-keys.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-launcher.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-loading.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-lock.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-media.png /usr/share/icons/Bluecurve/96x96/mimetypes/file.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-presentation.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-printer-dvi.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-printer-eps.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-printer-pdf.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-printer.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-printer-ps.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-printer-tex.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-security.png /usr/share/icons/Bluecurve/96x96/mimetypes/fileshare-nfs.png /usr/share/icons/Bluecurve/96x96/mimetypes/fileshare.png /usr/share/icons/Bluecurve/96x96/mimetypes/fileshare-smb.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-spreadsheet.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-style.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-unknown.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-url.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-ai.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-cdr.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-fh.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-sda.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-svg.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-sxd.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-vector_art-wmf.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-video-asf.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-video-avi.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-video-mov.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-video-mpeg.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-video.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-video-rm.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-wordprocessor.png /usr/share/icons/Bluecurve/96x96/mimetypes/file-xml.png /usr/share/icons/Bluecurve/96x96/mimetypes/floppy.icon /usr/share/icons/Bluecurve/96x96/mimetypes/floppy.png /usr/share/icons/Bluecurve/96x96/mimetypes/folder-accept.icon /usr/share/icons/Bluecurve/96x96/mimetypes/folder-accept.png /usr/share/icons/Bluecurve/96x96/mimetypes/folder-apps.icon /usr/share/icons/Bluecurve/96x96/mimetypes/folder-apps.png /usr/share/icons/Bluecurve/96x96/mimetypes/folder-home.icon /usr/share/icons/Bluecurve/96x96/mimetypes/folder-home.png /usr/share/icons/Bluecurve/96x96/mimetypes/folder.icon /usr/share/icons/Bluecurve/96x96/mimetypes/folder-locked.icon /usr/share/icons/Bluecurve/96x96/mimetypes/folder-locked.png /usr/share/icons/Bluecurve/96x96/mimetypes/folder.png /usr/share/icons/Bluecurve/96x96/mimetypes/folder-visiting.icon /usr/share/icons/Bluecurve/96x96/mimetypes/folder-visiting.png /usr/share/icons/Bluecurve/96x96/mimetypes/harddrive.icon /usr/share/icons/Bluecurve/96x96/mimetypes/harddrive.png /usr/share/icons/Bluecurve/96x96/mimetypes/multiple-files.png /usr/share/icons/Bluecurve/96x96/mimetypes/pda.png /usr/share/icons/Bluecurve/96x96/mimetypes/raid.icon /usr/share/icons/Bluecurve/96x96/mimetypes/raid.png /usr/share/icons/Bluecurve/96x96/mimetypes/rpm.png /usr/share/icons/Bluecurve/96x96/mimetypes/scanner.png /usr/share/icons/Bluecurve/96x96/mimetypes/start-here.png /usr/share/icons/Bluecurve/96x96/mimetypes/tablet.png /usr/share/icons/Bluecurve/96x96/mimetypes/trash-drop.png /usr/share/icons/Bluecurve/96x96/mimetypes/trash-empty.png /usr/share/icons/Bluecurve/96x96/mimetypes/trash-full.png /usr/share/icons/Bluecurve/cursors/arrow /usr/share/icons/Bluecurve/cursors/bottom_left_corner /usr/share/icons/Bluecurve/cursors/bottom_right_corner /usr/share/icons/Bluecurve/cursors/bottom_side /usr/share/icons/Bluecurve/cursors/center_ptr /usr/share/icons/Bluecurve/cursors/circle /usr/share/icons/Bluecurve/cursors/color-picker /usr/share/icons/Bluecurve/cursors/cross /usr/share/icons/Bluecurve/cursors/crosshair /usr/share/icons/Bluecurve/cursors/dnd-ask /usr/share/icons/Bluecurve/cursors/dnd-copy /usr/share/icons/Bluecurve/cursors/dnd-link /usr/share/icons/Bluecurve/cursors/dnd-move /usr/share/icons/Bluecurve/cursors/dnd-none /usr/share/icons/Bluecurve/cursors/dot /usr/share/icons/Bluecurve/cursors/dotbox /usr/share/icons/Bluecurve/cursors/double_arrow /usr/share/icons/Bluecurve/cursors/draft_large /usr/share/icons/Bluecurve/cursors/draft_small /usr/share/icons/Bluecurve/cursors/exchange /usr/share/icons/Bluecurve/cursors/fleur /usr/share/icons/Bluecurve/cursors/gobbler /usr/share/icons/Bluecurve/cursors/gumby /usr/share/icons/Bluecurve/cursors/hand1 /usr/share/icons/Bluecurve/cursors/hand2 /usr/share/icons/Bluecurve/cursors/heart /usr/share/icons/Bluecurve/cursors/left_ptr /usr/share/icons/Bluecurve/cursors/left_ptr_watch /usr/share/icons/Bluecurve/cursors/left_side /usr/share/icons/Bluecurve/cursors/pencil /usr/share/icons/Bluecurve/cursors/pirate /usr/share/icons/Bluecurve/cursors/plus /usr/share/icons/Bluecurve/cursors/question_arrow /usr/share/icons/Bluecurve/cursors/right_ptr /usr/share/icons/Bluecurve/cursors/right_side /usr/share/icons/Bluecurve/cursors/sb_down_arrow /usr/share/icons/Bluecurve/cursors/sb_h_double_arrow /usr/share/icons/Bluecurve/cursors/sb_left_arrow /usr/share/icons/Bluecurve/cursors/sb_right_arrow /usr/share/icons/Bluecurve/cursors/sb_up_arrow /usr/share/icons/Bluecurve/cursors/sb_v_double_arrow /usr/share/icons/Bluecurve/cursors/shuttle /usr/share/icons/Bluecurve/cursors/spider /usr/share/icons/Bluecurve/cursors/spraycan /usr/share/icons/Bluecurve/cursors/star /usr/share/icons/Bluecurve/cursors/tcross /usr/share/icons/Bluecurve/cursors/top_left_arrow /usr/share/icons/Bluecurve/cursors/top_left_corner /usr/share/icons/Bluecurve/cursors/top_right_corner /usr/share/icons/Bluecurve/cursors/top_side /usr/share/icons/Bluecurve/cursors/trek /usr/share/icons/Bluecurve/cursors/umbrella /usr/share/icons/Bluecurve/cursors/_watch-old_ /usr/share/icons/Bluecurve/cursors/X_cursor /usr/share/icons/Bluecurve/cursors/xterm /usr/share/icons/Bluecurve/icon-theme.cache /usr/share/icons/Bluecurve/index.theme /usr/share/icons/Clearlooks/icon-theme.cache /usr/share/icons/Clearlooks/index.theme /usr/share/icons/gnome/icon-theme.cache /usr/share/icons/hicolor/icon-theme.cache /usr/share/icons/hicolor/index.theme /usr/share/locale/en_US/cups_en_US /usr/share/man/man1/firefox.1.gz /usr/share/mime/aliases /usr/share/mime/application/octet-stream.xml /usr/share/mime/globs /usr/share/mime/magic /usr/share/mime/subclasses /usr/share/nautilus/ui/nautilus-desktop-icon-view-ui.xml /usr/share/nautilus/ui/nautilus-directory-view-ui.xml /usr/share/nautilus/ui/nautilus-icon-view-ui.xml /usr/share/nautilus/ui/nautilus-shell-ui.xml /usr/share/nautilus/ui/nautilus-spatial-window-ui.xml /usr/share/pixmaps/applet-busy.png /usr/share/pixmaps/applet-critical-blank.png /usr/share/pixmaps/applet-critical.png /usr/share/pixmaps/applet-disconnect.png /usr/share/pixmaps/applet-error.png /usr/share/pixmaps/applet-okay.png /usr/share/pixmaps/badge-small.png /usr/share/pixmaps/firefox.png /usr/share/pixmaps/keyring.png /usr/share/pixmaps/nautilus/text-selection-frame.png /usr/share/pixmaps/nautilus/thumbnail_frame.png /usr/share/pixmaps/splash/gnome-splash.png /usr/share/themes/Clearlooks/metacity-1/metacity-theme-1.xml /usr/share/themes/Default/gtk-2.0-key/gtkrc /usr/share/themes/Raleigh/gtk/gtkrc /usr/share/zoneinfo/UTC
processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 58 model name : Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz stepping : 9 cpu MHz : 2394.767 cache size : 6144 KB fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc up nonstop_tsc pni monitor ssse3 cx16 sse4_1 sse4_2 popcnt lahf_lm bogomips : 4789.53 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: [8]
4: cascade
# biosdecode 2.11 ACPI 2.0 present. OEM Identifier: VBOX RSD Table 32-bit Address: 0x1FFF0000 XSD Table 64-bit Address: 0x000000001FFF0030 BIOS32 Service Directory present. Revision: 0 Calling Interface Address: 0x000FDA00 PCI Interrupt Routing 1.0 present. Router ID: 00:01.0 Exclusive IRQs: None Compatible Router: 8086:7000 Slot Entry 1: ID 00:01, on-board Slot Entry 2: ID 00:02, slot number 1 Slot Entry 3: ID 00:03, slot number 2 Slot Entry 4: ID 00:04, slot number 3 Slot Entry 5: ID 00:05, slot number 4 Slot Entry 6: ID 00:06, slot number 5 Slot Entry 7: ID 00:07, slot number 6 Slot Entry 8: ID 00:08, slot number 7 Slot Entry 9: ID 00:09, slot number 8 Slot Entry 10: ID 00:0a, slot number 9 Slot Entry 11: ID 00:0b, slot number 10 Slot Entry 12: ID 00:0c, slot number 11 Slot Entry 13: ID 00:0d, slot number 12 Slot Entry 14: ID 00:0e, slot number 13 Slot Entry 15: ID 00:0f, slot number 14 Slot Entry 16: ID 00:10, slot number 15 Slot Entry 17: ID 00:11, slot number 16 Slot Entry 18: ID 00:12, slot number 17 Slot Entry 19: ID 00:13, slot number 18 Slot Entry 20: ID 00:14, slot number 19 Slot Entry 21: ID 00:15, slot number 20 Slot Entry 22: ID 00:16, slot number 21 Slot Entry 23: ID 00:17, slot number 22 Slot Entry 24: ID 00:18, slot number 23 Slot Entry 25: ID 00:19, slot number 24 Slot Entry 26: ID 00:1a, slot number 25 Slot Entry 27: ID 00:1b, slot number 26 Slot Entry 28: ID 00:1c, slot number 27 Slot Entry 29: ID 00:1d, slot number 28 Slot Entry 30: ID 00:1e, slot number 29 SMBIOS 2.5 present. Structure Table Length: 450 bytes Structure Table Address: 0x000E1000 Number Of Structures: 10 Maximum Structure Size: 255 bytes
# dmidecode 2.11 SMBIOS 2.5 present. 10 structures occupying 450 bytes. Table at 0x000E1000.
Handle 0x0000, DMI type 0, 20 bytes Vendor: innotek GmbH Version: VirtualBox Release Date: 12/01/2006 Address: 0xE0000 Runtime Size: 128 kB ROM Size: 128 kB Characteristics: ISA is supported PCI is supported Boot from CD is supported Selectable boot is supported 8042 keyboard services are supported (int 9h) CGA/mono video services are supported (int 10h) ACPI is supported
Handle 0x0001, DMI type 1, 27 bytes Manufacturer: innotek GmbH Product Name: VirtualBox Version: 1.2 Serial Number: 0 UUID: 2E321626-F343-4E1F-B21B-BC3E127E269E Wake-up Type: Power Switch SKU Number: Not Specified Family: Virtual Machine
Handle 0x0008, DMI type 2, 15 bytes Manufacturer: Oracle Corporation Product Name: VirtualBox Version: 1.2 Serial Number: 0 Asset Tag: Not Specified Features: Board is a hosting board Location In Chassis: Not Specified Chassis Handle: 0x0003 Type: Motherboard Contained Object Handles: 0
Handle 0x0003, DMI type 3, 13 bytes Manufacturer: Oracle Corporation Type: Other Lock: Not Present Version: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Boot-up State: Safe Power Supply State: Safe Thermal State: Safe Security Status: None
Handle 0x0007, DMI type 126, 42 bytes Handle 0x0005, DMI type 126, 15 bytes Handle 0x0006, DMI type 126, 28 bytes
Handle 0x0002, DMI type 11, 7 bytes String 1: vboxVer_6.0.14 String 2: vboxRev_133895
Handle 0xFEFF, DMI type 127, 4 bytes
Character devices: 1 mem 4 /dev/vc/0 4 tty 4 ttyS 5 /dev/tty 5 /dev/console 5 /dev/ptmx 6 lp 7 vcs 10 misc 13 input 14 sound 21 sg 29 fb 116 alsa 128 ptm 136 pts 162 raw 180 usb 189 usb_device 202 cpu/msr 203 cpu/cpuid 216 rfcomm 253 hidraw 254 pcmcia Block devices: 1 ramdisk 8 sd 9 md 22 ide1 65 sd 66 sd 67 sd 68 sd 69 sd 70 sd 71 sd 128 sd 129 sd 130 sd 131 sd 132 sd 133 sd 134 sd 135 sd 253 device-mapper 254 mdp
blacklist { devnode "*" } defaults { user_friendly_names yes }
dev.cdrom.autoclose = 1 dev.cdrom.autoeject = 0 dev.cdrom.check_media = 0 dev.cdrom.debug = 0 dev.cdrom.info = dev.cdrom.info = dev.cdrom.info = dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17 dev.cdrom.info = Can change speed: 1 dev.cdrom.info = Can close tray: 1 dev.cdrom.info = Can lock tray: 1 dev.cdrom.info = Can open tray: 1 dev.cdrom.info = Can play audio: 1 dev.cdrom.info = Can read DVD: 1 dev.cdrom.info = Can read MCN: 1 dev.cdrom.info = Can read MRW: 1 dev.cdrom.info = Can read multisession: 1 dev.cdrom.info = Can select disk: 0 dev.cdrom.info = Can write CD-R: 0 dev.cdrom.info = Can write CD-RW: 0 dev.cdrom.info = Can write DVD-R: 0 dev.cdrom.info = Can write DVD-RAM: 0 dev.cdrom.info = Can write MRW: 1 dev.cdrom.info = Can write RAM: 0 dev.cdrom.info = Reports media changed: 1 dev.cdrom.info = drive # of slots: 1 dev.cdrom.info = drive name: hdc dev.cdrom.info = drive speed: 32 dev.cdrom.lock = 1 dev.hpet.max-user-freq = 64 dev.parport.default.spintime = 500 dev.parport.default.timeslice = 200 dev.raid.speed_limit_max = 200000 dev.raid.speed_limit_min = 1000 dev.rtc.max-user-freq = 64 dev.scsi.logging_level = 0
node.startup = automatic node.leading_login = No node.session.timeo.replacement_timeout = 120 node.conn[0].timeo.login_timeout = 15 node.conn[0].timeo.logout_timeout = 15 node.conn[0].timeo.noop_out_interval = 5 node.conn[0].timeo.noop_out_timeout = 5 node.session.err_timeo.abort_timeout = 15 node.session.err_timeo.lu_reset_timeout = 30 node.session.initial_login_retry_max = 8 node.session.cmds_max = 128 node.session.queue_depth = 32 node.session.xmit_thread_priority = -20 node.session.iscsi.InitialR2T = No node.session.iscsi.ImmediateData = Yes node.session.iscsi.FirstBurstLength = 262144 node.session.iscsi.MaxBurstLength = 16776192 node.conn[0].iscsi.MaxRecvDataSegmentLength = 262144 node.conn[0].iscsi.MaxXmitDataSegmentLength = 0 discovery.sendtargets.iscsi.MaxRecvDataSegmentLength = 32768 node.conn[0].iscsi.HeaderDigest = None node.session.nr_sessions = 1 node.session.iscsi.FastAbort = Yes
InitiatorName=iqn.1994-05.com.redhat:9857bde12b
Attached devices: Host: scsi0 Channel: 00 Id: 00 Lun: 00 Vendor: ATA Model: VBOX HARDDISK Rev: 1.0 Type: Direct-Access ANSI SCSI revision: 05
dev :253:0 range :1 removable :0 size :14417920
dev :253:1 range :1 removable :0 size :2097152
dev :22:0 queue/iosched/back_seek_max :16384 queue/iosched/back_seek_penalty :2 queue/iosched/fifo_expire_async :250 queue/iosched/fifo_expire_sync :125 queue/iosched/quantum :4 queue/iosched/queued :8 queue/iosched/slice_async :40 queue/iosched/slice_async_rq :2 queue/iosched/slice_idle :8 queue/iosched/slice_sync :100 queue/iostats :1 queue/max_hw_sectors_kb :128 queue/max_sectors_kb :128 queue/nr_requests :128 queue/read_ahead_kb :128 queue/scheduler :noop anticipatory deadline [cfq] range :1 removable :1 size :8388604
dev :9:0 md/array_state :clear md/chunk_size :0 md/component_size :0 md/layout :0 md/level :0 md/metadata_version :none md/resync_start :0 md/safe_mode_delay :0.000 range :1 removable :0 size :0
dev :8:0 queue/iosched/back_seek_max :16384 queue/iosched/back_seek_penalty :2 queue/iosched/fifo_expire_async :250 queue/iosched/fifo_expire_sync :125 queue/iosched/quantum :4 queue/iosched/queued :8 queue/iosched/slice_async :40 queue/iosched/slice_async_rq :2 queue/iosched/slice_idle :8 queue/iosched/slice_sync :100 queue/iostats :1 queue/max_hw_sectors_kb :32767 queue/max_sectors_kb :512 queue/nr_requests :128 queue/read_ahead_kb :128 queue/scheduler :noop anticipatory deadline [cfq] range :16 removable :0 sda1/dev :8:1 sda1/size :208782 sda1/start :63 sda2/dev :8:2 sda2/size :16563015 sda2/start :208845 size :16777216
holders: dm-0 holders: dm-1
parted: Model: Linux device-mapper (dm) parted: Disk /dev/root: 7382MB parted: Sector size (logical/physical): 512B/512B parted: Partition Table: loop parted: Number Start End Size File system Flags parted: 1 0.00kB 7382MB 7382MB ext3
parted: Model: ATA VBOX HARDDISK (scsi) parted: Disk /dev/sda: 8590MB parted: Sector size (logical/physical): 512B/512B parted: Partition Table: msdos parted: Number Start End Size Type File system Flags parted: 1 32.3kB 107MB 107MB primary ext3 boot parted: 2 107MB 8587MB 8480MB primary lvm smartctl Device Model: VBOX HARDDISK smartctl Serial Number: VB89a83e11-5154408e smartctl Firmware Version: 1.0 smartctl User Capacity: 8,589,934,592 bytes [8.58 GB] smartctl Sector Size: 512 bytes logical/physical smartctl Device is: Not in smartctl database [for details use: -P showall] smartctl ATA Version is: 6 smartctl ATA Standard is: ATA/ATAPI-6 published, ANSI INCITS 361-2002 smartctl SMART support is: Unavailable - device lacks SMART capability. smartctl smartctl A mandatory SMART command failed: exiting. To continue, add one or more '-T permissive' options.
model: VBOX CD-ROM driver: ide-cdrom version 4.61
ide-disk version 1.18 ide-floppy version 0.99.newide ide-cdrom version 4.61
id : ata-VBOX_CD-ROM_VB2-01700376 path : pci-0000:00:01.1-ide-0:0
id : scsi-SATA_VBOX_HARDDISK_VB89a83e11-5154408e-part1 label : boot path : pci-0000:00:0d.0-scsi-0:0:0:0-part1 uuid : 7fc3fcd7-26ca-4180-b5c1-04cafb468666
id : scsi-SATA_VBOX_HARDDISK_VB89a83e11-5154408e-part2 path : pci-0000:00:0d.0-scsi-0:0:0:0-part2
id : scsi-SATA_VBOX_HARDDISK_VB89a83e11-5154408e path : pci-0000:00:0d.0-scsi-0:0:0:0
Personalities : unused devices: <none>
0: IO-APIC-edge timer 1: IO-APIC-edge i8042 8: IO-APIC-edge rtc 9: IO-APIC-level acpi 12: IO-APIC-edge i8042 15: IO-APIC-edge ide1 169: IO-APIC-level ahci, 185: IO-APIC-level eth0 193: IO-APIC-level eth1 NMI: LOC: ERR: MIS:
0000-001f : dma1 0020-0021 : pic1 0040-0043 : timer0 0050-0053 : timer1 0060-0060 : keyboard 0064-0064 : keyboard 0070-0077 : rtc 0080-008f : dma page reg 00a0-00a1 : pic2 00c0-00df : dma2 00f0-00ff : fpu 0170-0177 : ide1 0376-0376 : ide1 03c0-03df : vga+ 0cf8-0cff : PCI conf1 4000-403f : 0000:00:07.0 4000-4003 : ACPI PM1a_EVT_BLK 4004-4005 : ACPI PM1a_CNT_BLK 4008-400b : ACPI PM_TMR 4020-4021 : ACPI GPE0_BLK 4100-410f : 0000:00:07.0 d000-d00f : 0000:00:01.1 d000-d007 : ide0 d008-d00f : ide1 d010-d017 : 0000:00:03.0 d010-d017 : e1000 d020-d03f : 0000:00:04.0 d100-d1ff : 0000:00:05.0 d100-d1ff : Intel 82801AA-ICH d200-d23f : 0000:00:05.0 d200-d23f : Intel 82801AA-ICH d240-d247 : 0000:00:08.0 d240-d247 : e1000 d248-d24f : 0000:00:0d.0 d250-d253 : 0000:00:0d.0 d258-d25f : 0000:00:0d.0 d260-d263 : 0000:00:0d.0 d270-d27f : 0000:00:0d.0
CS_MACHINE_SERIAL: CLK_TCK: 100 CPU_CHIP_TYPE: HW_CPU_SUPP_BITS: HW_32_64_CAPABLE: KERNEL_BITS:
MemTotal: 509728 kB HighTotal: 0 kB LowTotal: 509728 kB SwapTotal: 1048568 kB VmallocTotal: 34359738367 kB HugePages_Total: 0
00010000-0009fbff : System RAM 0009fc00-0009ffff : reserved 000a0000-000bffff : Video RAM area 000c0000-000c7fff : Video ROM 000e2000-000ef3ff : Adapter ROM 000f0000-000fffff : System ROM 00100000-1ffeffff : System RAM 00200000-00490ccc : Kernel code 00490ccd-00634127 : Kernel data 1fff0000-1fffffff : ACPI Tables e0000000-e0ffffff : 0000:00:02.0 f0000000-f001ffff : 0000:00:03.0 f0000000-f001ffff : e1000 f0400000-f07fffff : 0000:00:04.0 f0800000-f0803fff : 0000:00:04.0 f0820000-f083ffff : 0000:00:08.0 f0820000-f083ffff : e1000 f0840000-f0841fff : 0000:00:0d.0 f0840000-f0841fff : ahci fec00000-fec00fff : reserved fee00000-fee00fff : reserved fffc0000-ffffffff : reserved
class: OTHER bus: PCI detached: 0 driver: i2c-piix4 desc: "Intel Corporation 82371AB/EB/MB PIIX4 ACPI" vendorId: 8086 deviceId: 7113 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 7 pcifn: 0 class: OTHER bus: PCI detached: 0 desc: "InnoTek Systemberatung GmbH VirtualBox Guest Service" vendorId: 80ee deviceId: cafe subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 4 pcifn: 0 class: OTHER bus: PCI detached: 0 desc: "Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II]" vendorId: 8086 deviceId: 7000 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 1 pcifn: 0 class: OTHER bus: PCI detached: 0 desc: "Intel Corporation 440FX - 82441FX PMC [Natoma]" vendorId: 8086 deviceId: 1237 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 0 pcifn: 0 class: OTHER bus: PSAUX detached: 0 driver: pcspkr desc: "PC Speaker" class: OTHER bus: ISAPNP detached: 0 desc: "PNP0200" deviceId: PNP0200 class: OTHER bus: ISAPNP detached: 0 desc: "PNP0303" deviceId: PNP0303 class: OTHER bus: ISAPNP detached: 0 desc: "PNP0a03" deviceId: PNP0a03 class: OTHER bus: ISAPNP detached: 0 desc: "PNP0f03" deviceId: PNP0f03 class: OTHER bus: PSAUX detached: 0 desc: "Video Bus" class: NETWORK bus: PCI detached: 0 device: eth0 driver: e1000 desc: "Intel Corporation 82540EM Gigabit Ethernet Controller" network.hwaddr: 08:00:27:e8:7a:02 vendorId: 8086 deviceId: 100e subVendorId: 8086 subDeviceId: 001e pciType: 1 pcidom: 0 pcibus: 0 pcidev: 3 pcifn: 0 class: NETWORK bus: PCI detached: 0 device: eth1 driver: e1000 desc: "Intel Corporation 82540EM Gigabit Ethernet Controller" network.hwaddr: 08:00:27:f7:cf:17 vendorId: 8086 deviceId: 100e subVendorId: 8086 subDeviceId: 001e pciType: 1 pcidom: 0 pcibus: 0 pcidev: 8 pcifn: 0 class: MOUSE bus: PSAUX detached: 0 device: input/mice driver: generic3ps/2 desc: "ImExPS/2 Generic Explorer Mouse" class: AUDIO bus: PCI detached: 0 driver: snd-intel8x0 desc: "Intel Corporation 82801AA AC'97 Audio Controller" vendorId: 8086 deviceId: 2415 subVendorId: 8086 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 5 pcifn: 0 class: CDROM bus: IDE detached: 0 device: hdc desc: "VBOX CD-ROM" class: VIDEO bus: PCI detached: 0 desc: "InnoTek Systemberatung GmbH VirtualBox Graphics Adapter" vendorId: 80ee deviceId: beef subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 2 pcifn: 0 class: HD bus: SCSI detached: 0 device: sda desc: "ATA VBOX HARDDISK" host: 0 id: 0 channel: 0 lun: 0 class: KEYBOARD bus: PSAUX detached: 0 desc: "AT Translated Set 2 keyboard" class: IDE bus: PCI detached: 0 driver: ata_piix desc: "Intel Corporation 82371AB/EB/MB PIIX4 IDE" vendorId: 8086 deviceId: 7111 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: 1 pcifn: 1 class: SATA bus: PCI detached: 0 driver: ahci desc: "Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode]" vendorId: 8086 deviceId: 2829 subVendorId: 0000 subDeviceId: 0000 pciType: 1 pcidom: 0 pcibus: 0 pcidev: d pcifn: 0
filter = yes
00:00.0 Host bridge: Intel Corporation 440FX - 82441FX PMC [Natoma] (rev 02) Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- 00:01.0 ISA bridge: Intel Corporation 82371SB PIIX3 ISA [Natoma/Triton II] Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 00:01.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01) (prog-if 8a [Master SecP PriP]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 0 Region 4: I/O ports at d000 [size=16] Kernel driver in use: PIIX_IDE Kernel modules: ata_piix 00:02.0 VGA compatible controller: InnoTek Systemberatung GmbH VirtualBox Graphics Adapter (prog-if 00 [VGA controller]) Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Interrupt: pin A routed to IRQ 10 Region 0: Memory at e0000000 (32-bit, prefetchable) [size=16M] Expansion ROM at <unassigned> [disabled] 00:03.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet Controller (rev 02) Subsystem: Intel Corporation PRO/1000 MT Desktop Adapter Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (63750ns min) Interrupt: pin A routed to IRQ 185 Region 0: Memory at f0000000 (32-bit, non-prefetchable) [size=128K] Region 2: I/O ports at d010 [size=8] Capabilities: [dc] Power Management version 2 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [e4] PCI-X non-bridge device Command: DPERE- ERO+ RBC=512 OST=1 Status: Dev=ff:1f.0 64bit- 133MHz- SCD- USC- DC=simple DMMRBC=2048 DMOST=1 DMCRS=8 RSCEM- 266MHz- 533MHz- Kernel driver in use: e1000 Kernel modules: e1000 00:04.0 System peripheral: InnoTek Systemberatung GmbH VirtualBox Guest Service Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Interrupt: pin A routed to IRQ 11 Region 0: I/O ports at d020 [size=32] Region 1: Memory at f0400000 (32-bit, non-prefetchable) [size=4M] Region 2: Memory at f0800000 (32-bit, prefetchable) [size=16K] 00:05.0 Multimedia audio controller: Intel Corporation 82801AA AC'97 Audio Controller (rev 01) Subsystem: Intel Corporation Device 0000 Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 Interrupt: pin A routed to IRQ 169 Region 0: I/O ports at d100 [size=256] Region 1: I/O ports at d200 [size=64] Kernel driver in use: Intel ICH Kernel modules: snd-intel8x0 00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Interrupt: pin A routed to IRQ 9 Kernel modules: i2c-piix4 00:08.0 Ethernet controller: Intel Corporation 82540EM Gigabit Ethernet Controller (rev 02) Subsystem: Intel Corporation PRO/1000 MT Desktop Adapter Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (63750ns min) Interrupt: pin A routed to IRQ 193 Region 0: Memory at f0820000 (32-bit, non-prefetchable) [size=128K] Region 2: I/O ports at d240 [size=8] Capabilities: [dc] Power Management version 2 Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [e4] PCI-X non-bridge device Command: DPERE- ERO+ RBC=512 OST=1 Status: Dev=ff:1f.0 64bit- 133MHz- SCD- USC- DC=simple DMMRBC=2048 DMOST=1 DMCRS=8 RSCEM- 266MHz- 533MHz- Kernel driver in use: e1000 Kernel modules: e1000 00:0d.0 SATA controller: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode] (rev 02) (prog-if 01 [AHCI 1.0]) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 Interrupt: pin A routed to IRQ 169 Region 0: I/O ports at d248 [size=8] Region 1: I/O ports at d250 [size=4] Region 2: I/O ports at d258 [size=8] Region 3: I/O ports at d260 [size=4] Region 4: I/O ports at d270 [size=16] Region 5: Memory at f0840000 (32-bit, non-prefetchable) [size=8K] Capabilities: [70] Power Management version 3 Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-) Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME- Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000002 Kernel driver in use: ahci Kernel modules: ahci
serinfo:1.0 driver revision: 0: uart:unknown port:000003F8 irq:4 1: uart:unknown port:000002F8 irq:3 2: uart:unknown port:000003E8 irq:4 3: uart:unknown port:000002E8 irq:3
udev_log="err"
ACTION=="add", DEVPATH=="/devices/*", ENV{PHYSDEVBUS}=="?*", WAIT_FOR_SYSFS="bus" ACTION=="add", SUBSYSTEM=="net", WAIT_FOR_SYSFS="address" ACTION=="add", SUBSYSTEM=="scsi", WAIT_FOR_SYSFS="ioerr_cnt" SUBSYSTEM=="drivers", OPTIONS="ignore_device" SUBSYSTEM=="module", OPTIONS="ignore_device" ACTION=="add", SUBSYSTEM=="firmware", ENV{FIRMWARE}=="*", RUN="/sbin/firmware_helper", OPTIONS="last_rule"
SUBSYSTEM!="block", GOTO="end_mpath" KERNEL!="dm-[0-9]*", GOTO="end_mpath" PROGRAM!="/sbin/mpath_wait %M %m", GOTO="end_mpath" PROGRAM!="/sbin/dmsetup info -c --noheadings -j %M -m %m", GOTO="end_mpath" RESULT!="*:*:*:*:*:*:*:mpath-*", GOTO="kpartx_check" PROGRAM!="/sbin/dmsetup info -c --noheadings -o name -j %M -m %m", GOTO="end_mpath" RESULT!="?*", GOTO="end_mpath" NAME="%k", SYMLINK="mpath/%c" ACTION!="change", GOTO="skip_kpartx" RUN+="/bin/bash -c '/sbin/mpath_wait /dev/mapper/%c; /sbin/kpartx -a -p p /dev/mapper/%c'" LABEL="skip_kpartx" OPTIONS="last_rule" LABEL="kpartx_check" RESULT!="*:*:*:*:*:*:*:part*-mpath-*", GOTO="end_mpath" PROGRAM=="/sbin/dmsetup info -c --noheadings -o name -j %M -m %m", RESULT=="?*", NAME="%k", SYMLINK="mpath/%c" OPTIONS="last_rule" LABEL="end_mpath"
KERNEL=="*", OWNER="root" GROUP="root", MODE="0600" SUBSYSTEM=="block", GROUP="disk", MODE="0640" KERNEL=="root", GROUP="disk", MODE="0640" KERNEL=="tty", NAME="%k", GROUP="tty", MODE="0666", OPTIONS="last_rule" KERNEL=="console", NAME="%k", MODE="0600", OPTIONS="last_rule" KERNEL=="tty[0-9]*", NAME="%k", GROUP="tty", MODE="0660", OPTIONS="last_rule" KERNEL=="vc/[0-9]*", NAME="%k", GROUP="tty", MODE="0660", OPTIONS="last_rule" KERNEL=="ptmx", NAME="%k", GROUP="tty", MODE="666", OPTIONS="last_rule" KERNEL=="pty[pqrstuvwxyzabcdef][0123456789abcdef]", NAME="%k", GROUP="tty", MODE="660", OPTIONS="last_rule" KERNEL=="tty[pqrstuvwxyzabcdef][0123456789abcdef]", NAME="%k", GROUP="tty", MODE="660", OPTIONS="last_rule" KERNEL=="pty/m*", NAME="%k", GROUP="tty", MODE="0660", OPTIONS="last_rule" KERNEL=="ippp*", NAME="%k", MODE="0660" KERNEL=="isdn*", NAME="%k", MODE="0660" KERNEL=="isdnctrl*", NAME="%k", MODE="0660" KERNEL=="capi", NAME="capi20", GROUP="uucp", MODE="0660" KERNEL=="capi*", NAME="capi/%n", GROUP="uucp", MODE="0660" KERNEL=="dcbri*", NAME="%k", MODE="0660" KERNEL=="ircomm*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="tts/[0-9]*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="tts/USB[0-9]*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="tty[A-Z]*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="pppox*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="ircomm*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="modems/mwave*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="hvc*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="hvsi*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="iseries/vtty*", NAME="%k", GROUP="uucp", MODE="0660" KERNEL=="ttyUSB*", SYSFS{product}=="Palm Handheld*", SYMLINK+="pilot", GROUP="uucp", MODE="0660" KERNEL=="ttyUSB*", SYSFS{product}=="palmOne Handheld*", SYMLINK+="pilot", GROUP="uucp", MODE="0660" KERNEL=="ttyUSB*", SYSFS{product}=="Handspring Visor*", SYMLINK+="pilot", GROUP="uucp", MODE="0660" KERNEL=="vcs", NAME="%k", OWNER="vcsa", GROUP="tty", OPTIONS="last_rule" KERNEL=="vcs[0-9]*", NAME="%k", OWNER="vcsa", GROUP="tty", OPTIONS="last_rule" KERNEL=="vcsa", NAME="%k", OWNER="vcsa", GROUP="tty", OPTIONS="last_rule" KERNEL=="vcsa[0-9]*", NAME="%k", OWNER="vcsa", GROUP="tty", OPTIONS="last_rule" KERNEL=="vcc/*", NAME="%k", OWNER="vcsa", GROUP="tty", OPTIONS="last_rule" KERNEL=="random", MODE="0666", OPTIONS="last_rule" KERNEL=="urandom", MODE="0444", OPTIONS="last_rule" KERNEL=="mem", GROUP="kmem", MODE="0640", OPTIONS="last_rule" KERNEL=="kmem", GROUP="kmem", MODE="0640", OPTIONS="last_rule" KERNEL=="port", GROUP="kmem", MODE="0640", OPTIONS="last_rule" KERNEL=="full", MODE="0666", OPTIONS="last_rule" KERNEL=="null", MODE="0666", OPTIONS="last_rule" KERNEL=="zero", MODE="0666", OPTIONS="last_rule" KERNEL=="hw_random", NAME="hwrng", SYMLINK+="%k" KERNEL=="nvram", MODE="0660" KERNEL=="rtc", MODE="0644" ACTION=="add", SUBSYSTEM=="pnp", RUN+="/bin/sh -c 'while read id; do /lib/udev/modprobe pnp:d$$id; done < /sys/$devpath/id'" KERNEL=="fd[01]*", GROUP="floppy", MODE="0660" KERNEL=="nvram", ACTION=="add", RUN+="load_floppy_module.sh" KERNEL=="fd[0-9]*", ACTION=="add", SYSFS{device/cmos}=="*", RUN+="create_floppy_devices -c -t $sysfs{device/cmos} -m %M /dev/%k" KERNEL=="fd[0-9]*", ACTION=="remove", RUN+="/bin/sh -c 'rm -f /dev/%k*'" KERNEL=="dsp*", MODE="0660" KERNEL=="audio*", MODE="0660" KERNEL=="midi*", MODE="0660" KERNEL=="mixer*", MODE="0660" KERNEL=="sequencer*", MODE="0660" KERNEL=="sound/*", MODE="0660" KERNEL=="snd/*", MODE="0660" KERNEL=="beep", MODE="0660" KERNEL=="admm*", MODE="0660" KERNEL=="adsp*", MODE="0660" KERNEL=="aload*", MODE="0660" KERNEL=="amidi*", MODE="0660" KERNEL=="dmfm*", MODE="0660" KERNEL=="dmmidi*", MODE="0660" KERNEL=="sndstat", MODE="0660" KERNEL=="lp*", GROUP="lp", MODE="0660" KERNEL=="parport*", GROUP="lp", MODE="0660" KERNEL=="irlpt*", GROUP="lp", MODE="0660" KERNEL=="usblp*", GROUP="lp", MODE="0660" KERNEL=="usb/lp*", GROUP="lp", MODE="0660" SUBSYSTEM=="ide", SYSFS{media}=="tape", ACTION=="add", \ RUN+="modprobe $env{UDEV_MODPROBE_DBG} ide-scsi idescsi_nocd=1" KERNEL=="ht*", GROUP="disk", MODE="0660" KERNEL=="nht*", GROUP="disk", MODE="0660" KERNEL=="pt[0-9]*", GROUP="disk", MODE="0660" KERNEL=="npt*", GROUP="disk", MODE="0660" KERNEL=="st*", GROUP="disk", MODE="0660" KERNEL=="nst*", GROUP="disk", MODE="0660" KERNEL=="osst*", GROUP="disk", MODE="0660" KERNEL=="nosst*", GROUP="disk", MODE="0660" KERNEL=="diskonkey*", GROUP="disk", MODE="0640" KERNEL=="microdrive*", GROUP="disk", MODE="0640" KERNEL=="kbd", MODE="0644" KERNEL=="js[0-9]*", MODE="0644" KERNEL=="djs[0-9]*", MODE="0644" KERNEL=="video*", MODE="0660" KERNEL=="radio*", MODE="0660" KERNEL=="winradio*", MODE="0660" KERNEL=="vtx*", MODE="0660" KERNEL=="vbi*", MODE="0660" KERNEL=="video/*", MODE="0660" KERNEL=="vttuner", MODE="0660" KERNEL=="v4l/*", MODE="0660" KERNEL=="input/*", MODE="0660" KERNEL=="gpmctl", MODE="0700" KERNEL=="nvidia*", MODE="0660" KERNEL=="3dfx*", MODE="0660" KERNEL=="card[0-9]*", NAME="dri/%k", MODE="0666" KERNEL=="usb/dabusb*", MODE="0660" KERNEL=="usb/mdc800*", MODE="0660" KERNEL=="usb/rio500", MODE="0660" KERNEL=="z90crypt", MODE="0666" KERNEL=="slram[0-9]*", SYMLINK+="xpram%n" KERNEL=="dvb", MODE="0660" SUBSYSTEM=="dvb", PROGRAM="/bin/sh -c 'K=%k; K=$${K#dvb}; printf dvb/adapter%%i/%%s $${K%%%%.*} $${K#*.}'", \ NAME="%c", MODE="0660" KERNEL=="controlC[0-9]*", NAME="snd/%k" KERNEL=="hw[CD0-9]*", NAME="snd/%k" KERNEL=="pcm[CD0-9cp]*", NAME="snd/%k" KERNEL=="midi[CD0-9]*", NAME="snd/%k" KERNEL=="timer", NAME="snd/%k" KERNEL=="seq", NAME="snd/%k" KERNEL=="mice", NAME="input/%k" KERNEL=="mouse*", NAME="input/%k" KERNEL=="event*", SYSFS{idVendor}=="03f0", SYSFS{device/interface}=="Virtual Mouse", SYSFS{device/bInterfaceProtocol}=="02", SYMLINK+="input/hp_ilo_mouse" KERNEL=="event*", NAME="input/%k" KERNEL=="js*", NAME="input/%k", SYMLINK+="%k" KERNEL=="ts*", NAME="input/%k" SUBSYSTEM=="ieee1394_protocol", KERNEL=="raw1394", NAME="%k" KERNEL=="dv1394*", NAME="dv1394/%n" KERNEL=="video1394*", NAME="video1394/%n" KERNEL=="raw[0-9]*", NAME="raw/%k" KERNEL=="lp[0-9]*", SYMLINK+="par%n" BUS=="usb", KERNEL=="lp[0-9]*", NAME="usb/%k" KERNEL=="microcode", NAME="cpu/%k" KERNEL=="msr[0-9]*", NAME="cpu/%n/msr" KERNEL=="cpu[0-9]*", NAME="cpu/%n/cpuid" KERNEL=="ram1", SYMLINK+="ram" KERNEL=="video0", SYMLINK+="video" KERNEL=="radio0", SYMLINK+="radio" KERNEL=="audio0", SYMLINK+="audio" KERNEL=="dsp0", SYMLINK+="dsp" KERNEL=="fb0", SYMLINK+="fb" KERNEL=="qft0", SYMLINK+="ftape" KERNEL=="isdnctrl0", SYMLINK+="isdnctrl" KERNEL=="mixer0", SYMLINK+="mixer" KERNEL=="ram0", SYMLINK+="ramdisk" KERNEL=="sbpcd0", SYMLINK+="sbpcd" KERNEL=="radio0", SYMLINK+="radio" KERNEL=="tty0", SYMLINK+="systty" KERNEL=="vbi0", SYMLINK+="vbi" KERNEL=="null", SYMLINK+="XOR" KERNEL=="tun", NAME="net/%k" KERNEL=="device-mapper", NAME="mapper/control" KERNEL=="sr[0-9]*", SYMLINK+="cdrom cdrom-%k" KERNEL=="scd[0-9]*", SYMLINK+="cdrom cdrom-%k" KERNEL=="pcd[0-9]*", SYMLINK+="cdrom cdrom-%k" KERNEL=="fd[0-9]*", SYMLINK+="floppy floppy-%k" KERNEL=="pktcdvd", NAME="%k/control" KERNEL=="hd[a-z]", BUS=="ide", SYSFS{removable}=="1", \ SYSFS{device/media}=="floppy", \ SYMLINK+="floppy floppy-%k", OPTIONS+="ignore_remove, all_partitions" KERNEL=="hd[a-z]", BUS=="ide", SYSFS{removable}=="1", SYSFS{device/media}=="cdrom", SYMLINK+="cdrom cdrom-%k" KERNEL=="hd[a-z]", BUS=="ide", SYSFS{removable}=="1", PROGRAM=="check-cdrom.sh %k DVD", SYMLINK+="dvd dvd-%k" KERNEL=="sr[0-9]*", BUS=="scsi", PROGRAM=="check-cdrom.sh %k DVD", SYMLINK+="dvd dvd-%k" KERNEL=="hd[a-z]", BUS=="ide", SYSFS{removable}=="1", PROGRAM=="check-cdrom.sh %k CD-R", SYMLINK+="cdwriter cdwriter-%k cdrw cdrw-%k" KERNEL=="sr[0-9]*", BUS=="scsi", PROGRAM=="check-cdrom.sh %k CD-R", SYMLINK+="cdwriter cdwriter-%k cdrw cdrw-%k" KERNEL=="hd[a-z]", BUS=="ide", SYSFS{removable}=="1", PROGRAM="check-cdrom.sh %k DVD-R", SYMLINK+="dvdwriter dvdwriter-%k dvdrw dvdrw-%k" KERNEL=="sr[0-9]*", BUS=="scsi", PROGRAM=="check-cdrom.sh %k DVD-R", SYMLINK+="dvdwriter dvdwriter-%k dvdrw dvdrw-%k" KERNEL=="sr[0-9]*", BUS=="scsi", SYMLINK+="scd%n" KERNEL=="hd*[0-9]", BUS=="ide", SYSFS{../removable}=="1", \ OPTIONS+="ignore_remove" KERNEL=="vport*", SYSFS{name}=="?*", SYMLINK+="virtio-ports/%s{name}" ACTION!="add", GOTO="persistent_end" KERNEL=="dm-[0-9]*", GOTO="persistent_end" KERNEL=="st*[0-9]|nst*[0-9]", IMPORT{parent}=="ID_*" KERNEL=="st*[0-9]|nst*[0-9]", SUBSYSTEM=="scsi_tape", ENV{ID_SERIAL}=="", \ IMPORT{program}="scsi_id -u -g -x -s %p -d $tempnode" KERNEL=="st*[0-9]|nst*[0-9]", SUBSYSTEM=="scsi_tape", ENV{ID_SERIAL}=="", \ IMPORT{program}="scsi_id -u -g -x -a -s %p -d $tempnode" KERNEL=="nst*[0-9]", SUBSYSTEM=="scsi_tape", ENV{ID_SERIAL}=="?*", \ SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-nst" KERNEL=="st*[0-9]", SUBSYSTEM=="scsi_tape", ENV{ID_SERIAL}=="?*", \ SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-st" SUBSYSTEM!="scsi_tape", GOTO="persistent_storage_tape_end" KERNEL=="st*[0-9]|nst*[0-9]", IMPORT{program}="path_id %p" KERNEL=="st*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="tape/by-path/$env{ID_PATH}" KERNEL=="nst*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="tape/by-path/$env{ID_PATH}" LABEL="persistent_storage_tape_end" KERNEL=="sg*", IMPORT{parent}=="ID_*" KERNEL=="sg*", SUBSYSTEM=="scsi_generic", SYSFS{type}=="8", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -u -x -s %p -d $tempnode" KERNEL=="sg*", SUBSYSTEM=="scsi_generic", SYSFS{type}=="8", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -u -x -a -s %p -d $tempnode" KERNEL=="sg*", SUBSYSTEM=="scsi_generic", SYSFS{type}=="8", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-changer" KERNEL=="sg*", SUBSYSTEM=="scsi_generic", SYSFS{type}=="1", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -u -x -s %p -d $tempnode" KERNEL=="sg*", SUBSYSTEM=="scsi_generic", SYSFS{type}=="1", ENV{ID_SERIAL}=="", IMPORT{program}="scsi_id -g -u -x -a -s %p -d $tempnode" KERNEL=="sg*", SUBSYSTEM=="scsi_generic", SYSFS{type}=="1", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-sg" SUBSYSTEM!="block", GOTO="persistent_end" KERNEL=="ram*|loop*|fd*|nbd*|gnbd*", GOTO="persistent_end" BUS=="ide", DRIVER!="ide-cdrom", SYSFS{removable}=="1", GOTO="persistent_end" BUS=="ide", KERNEL=="hd*[0-9]", SYSFS{../removable}=="1", GOTO="persistent_end" KERNEL=="hd*[!0-9]", IMPORT{program}="/lib/udev/ata_id --export $tempnode" KERNEL=="hd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}" KERNEL=="hd*[0-9]", IMPORT{parent}=="ID_*", SYMLINK+="disk/by-id/ata-$env{ID_MODEL}_$env{ID_SERIAL}-part%n" KERNEL=="sd*[!0-9]|sr*", SYSFS{ieee1394_id}=="*", ENV{ID_SERIAL}="$sysfs{ieee1394_id}", ENV{ID_BUS}="ieee1394" KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}=="", IMPORT{program}="/lib/udev/usb_id -x" KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}=="", IMPORT{program}="/lib/udev/scsi_id -g -x -s %p -d $tempnode" KERNEL=="sd*[!0-9]|sr*", ENV{ID_SERIAL}=="", IMPORT{program}="/lib/udev/scsi_id -g -x -a -s %p -d $tempnode" KERNEL=="dasd*[!0-9]", IMPORT{program}="/lib/udev/dasd_id --export $tempnode" KERNEL=="nst[0-9]*|st*|sd*[!0-9]|sr*|dasd*[!0-9]|cciss?c", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}" KERNEL=="nst[0-9]*|st*|sd*[!0-9]|sr*|dasd*[!0-9]|cciss?c", ENV{ID_UID}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_UID}" KERNEL=="sd*[0-9]|dasd*[0-9]", IMPORT{parent}=="ID_*" KERNEL=="cciss?c[0-9]d[0-9]", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id -g -x -s %p -d $tempnode", ENV{ID_BUS}="cciss" KERNEL=="cciss?c[0-9]d[0-9]", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id -g -x -a -n -s %p -d $tempnode", ENV{ID_BUS}="cciss" KERNEL=="sd*[0-9]|dasd*[0-9]|cciss*p[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n" KERNEL=="sd*[0-9]|dasd*[0-9]|cciss*p[0-9]", ENV{ID_UID}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_UID}-part%n" KERNEL=="*[!0-9]|sr*", ENV{ID_TYPE}=="?*", IMPORT{program}="/lib/udev/path_id %p", SYMLINK+="disk/by-path/$env{ID_PATH}" KERNEL=="st*", IMPORT{program}="path_id %p", SYMLINK+="tape/by-path/$env{ID_PATH}" KERNEL=="sr*|st*", GOTO="persistent_end" KERNEL=="*[0-9]", IMPORT{parent}=="ID_*" KERNEL=="*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n" KERNEL=="*[!0-9]", SYSFS{removable}=="1", GOTO="persistent_end" IMPORT{program}="/lib/udev/vol_id --export $tempnode" ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}" ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}" KERNEL=="*[!0-9]", IMPORT{program}="/lib/udev/edd_id --export $tempnode" KERNEL=="*[!0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}" KERNEL=="*[0-9]", ENV{ID_EDD}=="?*", SYMLINK+="disk/by-id/edd-$env{ID_EDD}-part%n" LABEL="persistent_end" ACTION=="add", SUBSYSTEM=="usb_device", \ PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev}; printf bus/usb/%%03i/%%03i $${K%%%%.*} $${K#*.}'", \ NAME="%c", MODE="0644" ACTION=="add", SUBSYSTEM=="?*", ENV{MODALIAS}=="?*", RUN+="modprobe $env{UDEV_MODPROBE_DBG} $env{MODALIAS}" ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", RUN+="/bin/sh -c 'echo 1 > /sys/$DEVPATH/allow_func_id_match'" ACTION=="add", SUBSYSTEM=="scsi" , SYSFS{type}=="0|7|14", \ RUN+="/bin/sh -c 'echo 60 > /sys$$DEVPATH/timeout'" ACTION=="add", SUBSYSTEM=="scsi" , SYSFS{type}=="1", \ RUN+="/bin/sh -c 'echo 900 > /sys$$DEVPATH/timeout'" ACTION=="add", SUBSYSTEM=="scsi_device" RUN+="modprobe sg" ACTION=="add", SUBSYSTEM=="scsi_device", SYSFS{type}=="0|7|14", \ RUN+="modprobe sd_mod" ACTION=="add", SUBSYSTEM=="scsi_device", SYSFS{type}=="[45]", \ RUN+="modprobe sr_mod" ACTION=="add", KERNEL=="sg[0-9]*", BUS=="scsi", SYSFS{type}=="[36]", \ SYMLINK+="scanner scanner-%k", MODE="0660" ACTION=="add", KERNEL=="sg[0-9]*", BUS=="scsi", SYSFS{type}=="8", \ SYMLINK+="changer changer-%k", MODE="0660", GROUP="disk" ACTION=="add", SUBSYSTEM=="scsi_device", SYSFS{type}=="1", SYSFS{device/vendor}=="On[sS]tream", \ SYSFS{model}!="ADR*", RUN+="modprobe osst" ACTION=="add", SUBSYSTEM=="scsi_device", SYSFS{type}=="1", SYSFS{device/vendor}=="On[sS]tream", \ SYSFS{model}=="ADR*", RUN+="modprobe st" ACTION=="add", SUBSYSTEM=="scsi_device", SYSFS{type}=="1", SYSFS{device/vendor}!="On[sS]tream", \ RUN+="modprobe st" ACTION=="add", SUBSYSTEM=="mmc", RUN+="modprobe mmc_block" RUN+="socket:/org/kernel/udev/monitor"
SUBSYSTEM=="drivers", GOTO="hotplug_end" SUBSYSTEM=="module", GOTO="hotplug_end" ACTION=="add", GOTO="hotplug_comp" ACTION=="remove", GOTO="hotplug_comp" GOTO="hotplug_end" LABEL="hotplug_comp" ENV{UDEVD_EVENT}=="1", RUN+="/lib/udev/udev_run_hotplugd" RUN+="/lib/udev/udev_run_devd" LABEL="hotplug_end"
ACTION=="add", SUBSYSTEM=="net", IMPORT{program}="/lib/udev/rename_device" SUBSYSTEM=="net", RUN+="/etc/sysconfig/network-scripts/net.hotplug"
ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", \ RUN+="/sbin/modprobe $modalias" ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", \ RUN+="/sbin/pcmcia-check-broken-cis" ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", \ RUN+="/bin/sh -c 'echo 1 > /sys/$devpath/allow_func_id_match'" ACTION=="add", SUBSYSTEM=="pcmcia_socket", \ RUN+="/sbin/modprobe pcmcia" ACTION=="add", SUBSYSTEM=="pcmcia_socket", \ RUN+="/sbin/pcmcia-socket-startup"
ACTION!="add", GOTO="pcscd_ccid_rules_end" BUS=="usb", SYSFS{idVendor}=="0d46", SYSFS{idProduct}=="4081", RUN+="/usr/sbin/Kobil_mIDentity_switch" BUS=="usb", SYSFS{bInterfaceClass}=="0b", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="046a", SYSFS{idProduct}=="003e", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="413c", SYSFS{idProduct}=="2100", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="09be", SYSFS{idProduct}=="0002", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="04e6", SYSFS{idProduct}=="5120", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="04e6", SYSFS{idProduct}=="5111", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="04e6", SYSFS{idProduct}=="5121", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="04e6", SYSFS{idProduct}=="e003", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="08e6", SYSFS{idProduct}=="1359", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="08e6", SYSFS{idProduct}=="ace0", RUN+="/usr/sbin/pcscd --hotplug" BUS=="usb", SYSFS{idVendor}=="0973", SYSFS{idProduct}=="0003", RUN+="/usr/sbin/pcscd --hotplug" LABEL="pcscd_ccid_rules_end"
KERNEL=="dm-[0-9]*", ACTION=="add", OPTIONS+="ignore_device"
RUN+="socket:/org/freedesktop/hal/udev_event"
ACTION=="add", SYSFS{dev}=="?*", KERNEL=="?*", RUN+="/sbin/pam_console_apply $env{DEVNAME} $env{DEVLINKS}"
SUBSYSTEM=="tty", BUS=="pcmcia", ENV{MANF_ID}="$sysfs{manf_id}", ENV{CARD_ID}="$sysfs{card_id}" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="Brain Boxes", SYSFS{prod_id2}=="Bluetooth PC Card", ENV{HCIOPTS}="bboxes", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="Xircom", SYSFS{prod_id3}=="CBT", ENV{HCIOPTS}="xircom", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="Xircom", SYSFS{prod_id3}=="CBT", ENV{HCIOPTS}="xircom", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="IBM", SYSFS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="TDK", SYSFS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="AmbiCom BT2000C", SYSFS{prod_id2}=="Bluetooth PC/CF Card", ENV{HCIOPTS}="bt2000c", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="COM1 SA", SYSFS{prod_id2}=="MC310 CARD", ENV{HCIOPTS}="comone", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="SPHINX", SYSFS{prod_id2}=="BT-CARD", ENV{HCIOPTS}="picocard", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="H-Soft", SYSFS{prod_id2}=="Blue+CARD", ENV{HCIOPTS}="$sysfs{manf_id},$sysfs{card_id}", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="CF CARD", SYSFS{prod_id2}=="GENERIC", ENV{HCIOPTS}="$sysfs{manf_id},$sysfs{card_id}", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="PCMCIA", SYSFS{prod_id2}=="Bluetooth Card", ENV{HCIOPTS}="zoom", RUN+="bluetooth_serial" SUBSYSTEM=="tty", BUS=="pcmcia", SYSFS{prod_id1}=="Bluetooth BT0100M", ENV{HCIOPTS}="bcsp 115200", RUN+="bluetooth_serial"
# vpddecode 2.11 # No VPD structure found, sorry.
alias scsi_hostadapter ata_piix alias scsi_hostadapter1 ahci alias snd-card-0 snd-intel8x0 options snd-card-0 index=0 options snd-intel8x0 index=0 remove snd-intel8x0 { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0 alias eth0 e1000 alias eth1 e1000
blacklist i8xx_tco blacklist aty128fb blacklist atyfb blacklist radeonfb blacklist i810fb blacklist cirrusfb blacklist intelfb blacklist kyrofb blacklist i2c-matroxfb blacklist hgafb blacklist nvidiafb blacklist rivafb blacklist savagefb blacklist sstfb blacklist neofb blacklist tridentfb blacklist tdfxfb blacklist virgefb blacklist vga16fb blacklist matroxfb_base blacklist hisax blacklist hisax_fcpcipnp
blacklist firewire-ohci
blacklist i8xx_tco blacklist aty128fb blacklist atyfb blacklist radeonfb blacklist i810fb blacklist cirrusfb blacklist intelfb blacklist kyrofb blacklist i2c-matroxfb blacklist hgafb blacklist nvidiafb blacklist rivafb blacklist savagefb blacklist sstfb blacklist neofb blacklist tridentfb blacklist tdfxfb blacklist virgefb blacklist vga16fb blacklist hisax blacklist hisax_fcpcipnp
alias binfmt-204 binfmt_aout alias binfmt-263 binfmt_aout alias binfmt-264 binfmt_aout alias binfmt-267 binfmt_aout alias binfmt-387 binfmt_aout alias block-major-1-* rd alias block-major-3-* ide-probe-mod alias block-major-8-* sd_mod alias block-major-9-* md alias block-major-11-* sr_mod alias block-major-13-* xd alias block-major-15-* cdu31a alias block-major-16-* gscd alias block-major-17-* optcd alias block-major-18-* sjcd alias block-major-20-* mcdx alias block-major-22-* ide-probe-mod alias block-major-23-* mcd alias block-major-24-* sonycd535 alias block-major-25-* sbpcd alias block-major-26-* sbpcd alias block-major-27-* sbpcd alias block-major-29-* aztcd alias block-major-32-* cm206 alias block-major-33-* ide-probe-mod alias block-major-34-* ide-probe-mod alias block-major-37-* ide-tape alias block-major-44-* ftl alias block-major-46-* pcd alias block-major-47-* pf alias block-major-56-* ide-probe-mod alias block-major-57-* ide-probe-mod alias block-major-88-* ide-probe-mod alias block-major-89-* ide-probe-mod alias block-major-90-* ide-probe-mod alias block-major-91-* ide-probe-mod alias block-major-93-* nftl alias block-major-113-* viocd alias char-major-4-* serial alias char-major-5-* serial alias char-major-9-* st alias char-major-10-2 msbusmouse alias char-major-10-3 atixlmouse alias char-major-10-135 rtc alias char-major-10-139 openprom alias char-major-10-157 applicom alias char-major-10-175 agpgart alias char-major-10-250 hci_vhci alias char-major-13-* input alias char-major-13-0 joydev alias char-major-13-32 mousedev alias char-major-19-* cyclades alias char-major-20-* cyclades alias char-major-22-* pcxx alias char-major-23-* pcxx alias char-major-27-* zftape alias char-major-34-* scc alias char-major-35-* tclmidi alias char-major-36-* netlink alias char-major-48-* riscom8 alias char-major-49-* riscom8 alias char-major-57-* esp alias char-major-58-* esp alias char-major-63-* kdebug alias char-major-90-* mtdchar alias char-major-96-* pt alias char-major-97-* pg alias char-major-107-* 3dfx alias char-major-109-* lvm-mod alias char-major-188-* usbserial alias char-major-200-* vxspec alias char-major-206-* osst alias char-major-216-* rfcomm alias dos msdos alias dummy0 dummy alias dummy1 dummy alias iso9660 isofs alias net-pf-1 unix alias net-pf-2 ipv4 alias net-pf-17 af_packet alias netalias-2 ip_alias alias irlan0 irlan alias irda-dongle-0 tekram alias irda-dongle-1 esi alias irda-dongle-2 actisys alias irda-dongle-3 actisys alias irda-dongle-4 girbil alias irda-dongle-5 litelink alias irda-dongle-6 airport alias irda-dongle-7 old_belkin alias plip0 plip alias plip1 plip alias tunl0 ipip alias cipcb0 cipcb alias cipcb1 cipcb alias cipcb2 cipcb alias cipcb3 cipcb alias slip0 slip alias slip1 slip alias tty-ldisc-1 slip alias tty-ldisc-3 ppp_async alias tty-ldisc-11 irtty-sir alias tty-ldisc-14 ppp_synctty alias tty-ldisc-15 hci_uart alias ppp-compress-18 ppp_mppe install ppp-compress-21 /bin/true alias ppp-compress-24 ppp_deflate alias ppp-compress-26 ppp_deflate alias parport_lowlevel parport_pc alias usbdevfs usbcore alias xfrm-type-2-50 esp4 alias xfrm-type-2-51 ah4 alias xfrm-type-2-108 ipcomp alias xfrm-type-10-50 esp6 alias xfrm-type-10-51 ah6 alias xfrm-type-10-108 ipcomp6 alias cipher_null crypto_null alias digest_null crypto_null alias compress_null crypto_null alias sha384 sha512 install binfmt-0000 /bin/true install binfmt_misc /sbin/modprobe --first-time --ignore-install binfmt_misc && { /bin/mount -t binfmt_misc none /proc/sys/fs/binfmt_misc > /dev/null 2>&1 || :; } install nfsd /sbin/modprobe --first-time --ignore-install nfsd && { /bin/mount -t nfsd nfsd /proc/fs/nfsd > /dev/null 2>&1 || :; } install sunrpc /sbin/modprobe --first-time --ignore-install sunrpc && { /bin/mount -t rpc_pipefs sunrpc /var/lib/nfs/rpc_pipefs > /dev/null 2>&1 || :; } install char-major-10 /bin/true install char-major-10-1 /bin/true install dummy0 /sbin/modprobe -o dummy0 --ignore-install dummy install dummy1 /sbin/modprobe -o dummy1 --ignore-install dummy install net-pf-19 /bin/true install net-pf-3 /bin/true install net-pf-6 /bin/true install ov518_decomp { /sbin/modprobe ov511; } ; /sbin/modprobe --first-time --ignore-install ov518_decomp install scsi_hostadapter /bin/true install usbmouse /sbin/modprobe --first-time --ignore-install usbmouse && { /sbin/modprobe hid; /bin/true; } remove binfmt_misc { /bin/umount /proc/sys/fs/binfmt_misc > /dev/null 2>&1 || :; } ; /sbin/modprobe -r --first-time --ignore-remove binfmt_misc remove ov518_decomp /sbin/modprobe -r --first-time --ignore-remove ov518_decomp && { /sbin/modprobe -r ov511; /bin/true; } remove usbmouse { /sbin/modprobe -r hid; } ; /sbin/modprobe -r --first-time --ignore-remove usbmouse remove sunrpc { /bin/umount /var/lib/nfs/rpc_pipefs > /dev/null 2>&1 || :; } ; /sbin/modprobe -r --ignore-remove sunrpc remove nfsd { /bin/umount /proc/fs/nfsd > /dev/null 2>&1 || :; } ; /sbin/modprobe -r --first-time --ignore-remove nfsd alias usb-uhci uhci-hcd alias usb-ohci ohci-hcd alias uhci uhci-hcd alias char-major-116-* snd alias sound-service-*-0 snd-mixer-oss alias sound-service-*-1 snd-seq-oss alias sound-service-*-3 snd-pcm-oss alias sound-service-*-8 snd-seq-oss alias sound-service-*-12 snd-pcm-oss install sound-slot-* /sbin/modprobe snd-card-${MODPROBE_MODULE##sound[_-]slot[_-]} install snd-pcm /sbin/modprobe --ignore-install snd-pcm && /sbin/modprobe snd-pcm-oss && /sbin/modprobe snd-seq-device && /sbin/modprobe snd-seq-oss alias nfs4 nfs alias rpc_pipefs sunrpc alias rpc_svc_gss_pipefs sunrpc install eth1394 /bin/true install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth install st /sbin/modprobe --ignore-install st && /sbin/modprobe sg install cu3088 /sbin/modprobe --ignore-install cu3088; /sbin/modprobe lcs
search updates extra built-in weak-updates
options snd-card-0 index=0 options snd-intel8x0 index=0 remove snd-intel8x0 { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0 blacklist i8xx_tco blacklist aty128fb blacklist atyfb blacklist radeonfb blacklist i810fb blacklist cirrusfb blacklist intelfb blacklist kyrofb blacklist i2c-matroxfb blacklist hgafb blacklist nvidiafb blacklist rivafb blacklist savagefb blacklist sstfb blacklist neofb blacklist tridentfb blacklist tdfxfb blacklist virgefb blacklist vga16fb blacklist hisax blacklist hisax_fcpcipnp blacklist firewire-ohci install ppp-compress-21 /bin/true install binfmt-0000 /bin/true install binfmt_misc /sbin/modprobe --first-time --ignore-install binfmt_misc && { /bin/mount -t binfmt_misc none /proc/sys/fs/binfmt_misc > /dev/null 2>&1 || :; } install nfsd /sbin/modprobe --first-time --ignore-install nfsd && { /bin/mount -t nfsd nfsd /proc/fs/nfsd > /dev/null 2>&1 || :; } install sunrpc /sbin/modprobe --first-time --ignore-install sunrpc && { /bin/mount -t rpc_pipefs sunrpc /var/lib/nfs/rpc_pipefs > /dev/null 2>&1 || :; } install char-major-10 /bin/true install char-major-10-1 /bin/true install dummy0 /sbin/modprobe -o dummy0 --ignore-install dummy install dummy1 /sbin/modprobe -o dummy1 --ignore-install dummy install net-pf-19 /bin/true install net-pf-3 /bin/true install net-pf-6 /bin/true install ov518_decomp { /sbin/modprobe ov511; } ; /sbin/modprobe --first-time --ignore-install ov518_decomp install scsi_hostadapter /bin/true install usbmouse /sbin/modprobe --first-time --ignore-install usbmouse && { /sbin/modprobe hid; /bin/true; } remove binfmt_misc { /bin/umount /proc/sys/fs/binfmt_misc > /dev/null 2>&1 || :; } ; /sbin/modprobe -r --first-time --ignore-remove binfmt_misc remove ov518_decomp /sbin/modprobe -r --first-time --ignore-remove ov518_decomp && { /sbin/modprobe -r ov511; /bin/true; } remove usbmouse { /sbin/modprobe -r hid; } ; /sbin/modprobe -r --first-time --ignore-remove usbmouse remove sunrpc { /bin/umount /var/lib/nfs/rpc_pipefs > /dev/null 2>&1 || :; } ; /sbin/modprobe -r --ignore-remove sunrpc remove nfsd { /bin/umount /proc/fs/nfsd > /dev/null 2>&1 || :; } ; /sbin/modprobe -r --first-time --ignore-remove nfsd install sound-slot-* /sbin/modprobe snd-card-${MODPROBE_MODULE##sound[_-]slot[_-]} install snd-pcm /sbin/modprobe --ignore-install snd-pcm && /sbin/modprobe snd-pcm-oss && /sbin/modprobe snd-seq-device && /sbin/modprobe snd-seq-oss install eth1394 /bin/true install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth install st /sbin/modprobe --ignore-install st && /sbin/modprobe sg install cu3088 /sbin/modprobe --ignore-install cu3088; /sbin/modprobe lcs blacklist i8xx_tco blacklist aty128fb blacklist atyfb blacklist radeonfb blacklist i810fb blacklist cirrusfb blacklist intelfb blacklist kyrofb blacklist i2c-matroxfb blacklist hgafb blacklist nvidiafb blacklist rivafb blacklist savagefb blacklist sstfb blacklist neofb blacklist tridentfb blacklist tdfxfb blacklist virgefb blacklist vga16fb blacklist matroxfb_base blacklist hisax blacklist hisax_fcpcipnp
full path: /lib/modules/2.6.18-348.el5/modules.dep /lib/modules/VERSION/kernel/drivers/net/tokenring/3c359.ko: /lib/modules/VERSION/kernel/drivers/net/pcmcia/3c574_cs.ko: /lib/modules/VERSION/kernel/drivers/net/pcmcia/3c589_cs.ko: /lib/modules/VERSION/kernel/drivers/net/3c59x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/scsi/3w-9xxx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/3w-sas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/3w-xxxx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/net/8021q/8021q.ko: /lib/modules/VERSION/kernel/drivers/net/8139cp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/8139too.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/8390.ko: /lib/modules/VERSION/kernel/drivers/block/DAC960.ko: /lib/modules/VERSION/kernel/drivers/scsi/aacraid/aacraid.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/hwmon/abituguru.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/abituguru3.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/acpi/ac.ko: /lib/modules/VERSION/kernel/sound/ac97_bus.ko: /lib/modules/VERSION/kernel/drivers/usb/input/acecad.ko: /lib/modules/VERSION/kernel/drivers/net/acenic.ko: /lib/modules/VERSION/kernel/arch/x86_64/kernel/cpufreq/acpi-cpufreq.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cpufreq/freq_table.ko /lib/modules/2.6.18-348.el5/kernel/arch/x86_64/kernel/cpufreq/mperf.ko /lib/modules/VERSION/kernel/drivers/acpi/acpi_memhotplug.ko: /lib/modules/VERSION/kernel/drivers/pci/hotplug/acpiphp.ko: /lib/modules/VERSION/kernel/drivers/pci/hotplug/acpiphp_ibm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/pci/hotplug/acpiphp.ko /lib/modules/VERSION/kernel/net/sched/act_gact.ko: /lib/modules/VERSION/kernel/net/sched/act_ipt.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/sched/act_mirred.ko: /lib/modules/VERSION/kernel/net/sched/act_pedit.ko: /lib/modules/VERSION/kernel/net/sched/act_police.ko: /lib/modules/VERSION/kernel/net/sched/act_simple.ko: /lib/modules/VERSION/kernel/drivers/hwmon/ad7418.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adm1021.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adm1025.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adm1026.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adm1029.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adm1031.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adm9240.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/ads7828.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adt7470.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/adt7473.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/crypto/aead.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/pci/pcie/aer/aer_inject.ko: /lib/modules/VERSION/kernel/arch/x86_64/crypto/aes-x86_64.ko: /lib/modules/VERSION/kernel/crypto/aes_generic.ko: /lib/modules/VERSION/kernel/net/key/af_key.ko: /lib/modules/VERSION/kernel/net/ipv4/ah4.ko: /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv6/ah6.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/ata/ahci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/aic7xxx/aic79xx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_spi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/aic7xxx/aic7xxx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_spi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/aic7xxx_old.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/aic94xx/aic94xx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libsas/libsas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_sas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/usb/input/aiptek.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/airo.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/airo_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/airo.ko /lib/modules/VERSION/kernel/drivers/usb/serial/airprime.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/alim1535_wdt.ko: /lib/modules/VERSION/kernel/drivers/char/watchdog/alim7101_wdt.ko: /lib/modules/VERSION/kernel/drivers/atm/ambassador.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/char/hw_random/amd-rng.ko: /lib/modules/VERSION/kernel/drivers/edac/amd64_edac_mod.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/net/amd8111e.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/crypto/ansi_cprng.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/rng.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/crypto/anubis.ko: /lib/modules/VERSION/kernel/drivers/block/aoe/aoe.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/appledisplay.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/video/backlight/backlight.ko /lib/modules/VERSION/kernel/drivers/hwmon/applesmc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/usb/input/appletouch.ko: /lib/modules/VERSION/kernel/crypto/arc4.ko: /lib/modules/VERSION/kernel/drivers/scsi/arcmsr/arcmsr.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/usb/serial/ark3116.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/arp_tables.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/arpt_mangle.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/arptable_filter.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/arp_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/drivers/hwmon/asb100.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/net/asix.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/acpi/asus_acpi.ko: /lib/modules/VERSION/kernel/drivers/ata/ata_piix.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/block/paride/aten.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/net/wireless/ath/ath.ko: /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/ath/ath5k/ath5k.ko: /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/ath/ath.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/ath/ath9k/ath9k.ko: /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/ath/ath.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/usb/input/ati_remote.ko: /lib/modules/VERSION/kernel/drivers/usb/input/ati_remote2.ko: /lib/modules/VERSION/kernel/drivers/net/atl1e/atl1e.ko: /lib/modules/VERSION/kernel/net/atm/atm.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/atmel.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/atmel_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/atmel.ko /lib/modules/VERSION/kernel/drivers/net/wireless/atmel_pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/atmel.ko /lib/modules/VERSION/kernel/drivers/atm/atmtcp.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/scsi/atp870u.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/hwmon/atxp1.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/misc/auerswald.ko: /lib/modules/VERSION/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko: /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/crypto/authenc.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/fs/autofs4/autofs4.ko: /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/avm_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1pcmcia.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/avma1_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/pcmcia/axnet_cs.ko: /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/b1.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/b1dma.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/b1pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1dma.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/b1pcmcia.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/drivers/net/b44.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/video/backlight/backlight.ko: /lib/modules/VERSION/kernel/drivers/isdn/gigaset/bas_gigaset.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/gigaset/gigaset.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/VERSION/kernel/drivers/acpi/battery.ko: /lib/modules/VERSION/kernel/drivers/bluetooth/bcm203x.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/bcm43xx/bcm43xx.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/softmac/ieee80211softmac.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/scsi/be2iscsi/be2iscsi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/benet/be2net.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/usb/serial/belkin_sa.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/scsi/bfa/bfa.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/bluetooth/bfusb.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/mtd/devices/block2mtd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/crypto/blowfish.ko: /lib/modules/VERSION/kernel/drivers/bluetooth/bluecard_cs.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/net/bluetooth/bluetooth.ko: /lib/modules/VERSION/kernel/drivers/net/bna/bna.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/net/bluetooth/bnep/bnep.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/l2cap.ko /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/net/bnx2.ko: /lib/modules/VERSION/kernel/drivers/scsi/bnx2i/bnx2i.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/cnic.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/drivers/uio/uio.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/bnx2x/bnx2x.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/mdio.ko /lib/modules/VERSION/kernel/drivers/net/bonding/bonding.ko: /lib/modules/VERSION/kernel/drivers/bluetooth/bpa10x.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/block/paride/bpck.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/net/atm/br2684.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/net/bridge/bridge.ko: /lib/modules/VERSION/kernel/drivers/bluetooth/bt3c_cs.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/media/video/btcx-risc.ko: /lib/modules/VERSION/kernel/drivers/media/video/bt8xx/bttv.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/video-buf.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/common/ir-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/btcx-risc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/tveeprom.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/bluetooth/btuart_cs.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/acpi/button.ko: /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/c4.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/fs/cachefiles/cachefiles.ko: /lib/modules/2.6.18-348.el5/kernel/fs/fscache/fscache.ko /lib/modules/VERSION/kernel/drivers/isdn/capi/capi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/capifs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/drivers/isdn/capi/capidrv.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/isdn/capi/capifs.ko: /lib/modules/VERSION/kernel/drivers/net/cassini.ko: /lib/modules/VERSION/kernel/crypto/cast5.ko: /lib/modules/VERSION/kernel/crypto/cast6.ko: /lib/modules/VERSION/kernel/drivers/usb/net/catc.ko: /lib/modules/VERSION/kernel/crypto/cbc.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/block/cciss.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/crypto/ccm.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/usb/class/cdc-acm.ko: /lib/modules/VERSION/kernel/drivers/usb/net/cdc_eem.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/usb/net/cdc_ether.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/usb/net/cdc_subset.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/cdrom/cdrom.ko: /lib/modules/VERSION/kernel/net/wireless/cfg80211.ko: /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/cfi_cmdset_0001.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/cfi_util.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/cfi_cmdset_0002.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/cfi_util.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/cfi_cmdset_0020.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/cfi_util.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/cfi_probe.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/gen_probe.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/cfi_util.ko: /lib/modules/VERSION/kernel/drivers/scsi/ch.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/crypto/chainiv.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/rng.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/chipreg.ko: /lib/modules/VERSION/kernel/drivers/net/phy/cicada.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/fs/cifs/cifs.ko: /lib/modules/VERSION/kernel/drivers/video/cirrusfb.ko: /lib/modules/VERSION/kernel/net/atm/clip.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/net/sched/cls_basic.ko: /lib/modules/VERSION/kernel/net/sched/cls_fw.ko: /lib/modules/VERSION/kernel/net/sched/cls_route.ko: /lib/modules/VERSION/kernel/net/sched/cls_rsvp.ko: /lib/modules/VERSION/kernel/net/sched/cls_rsvp6.ko: /lib/modules/VERSION/kernel/net/sched/cls_tcindex.ko: /lib/modules/VERSION/kernel/net/sched/cls_u32.ko: /lib/modules/VERSION/kernel/drivers/char/pcmcia/cm4000_cs.ko: /lib/modules/VERSION/kernel/drivers/char/pcmcia/cm4040_cs.ko: /lib/modules/VERSION/kernel/net/bluetooth/cmtp/cmtp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/l2cap.ko /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/net/cnic.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/drivers/uio/uio.ko /lib/modules/VERSION/kernel/drivers/block/paride/comm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/media/video/compat_ioctl32.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/fs/configfs/configfs.ko: /lib/modules/VERSION/kernel/drivers/hwmon/coretemp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/usb/serial/cp2101.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/media/video/cpia2/cpia2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/block/cpqarray.ko: /lib/modules/VERSION/kernel/drivers/cpufreq/cpufreq_conservative.ko: /lib/modules/VERSION/kernel/drivers/cpufreq/cpufreq_ondemand.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cpufreq/freq_table.ko /lib/modules/VERSION/kernel/drivers/cpufreq/cpufreq_powersave.ko: /lib/modules/VERSION/kernel/drivers/cpufreq/cpufreq_stats.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cpufreq/freq_table.ko /lib/modules/VERSION/kernel/fs/cramfs/cramfs.ko: /lib/modules/VERSION/kernel/drivers/char/crash.ko: /lib/modules/VERSION/kernel/lib/crc-ccitt.ko: /lib/modules/VERSION/kernel/lib/crc-itu-t.ko: /lib/modules/VERSION/kernel/lib/crc16.ko: /lib/modules/VERSION/kernel/crypto/crypto_algapi.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/crypto/crypto_api.ko: /lib/modules/VERSION/kernel/crypto/crypto_blkcipher.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/crypto/crypto_hash.ko: /lib/modules/VERSION/kernel/crypto/crypto_null.ko: /lib/modules/VERSION/kernel/drivers/block/cryptoloop.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/loop.ko /lib/modules/VERSION/kernel/crypto/cryptomgr.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/media/video/cs53l32a.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/crypto/ctr.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/media/video/cx2341x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/media/video/cx25840/cx25840.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/atm/cxacru.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/atm/usbatm.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/net/chelsio/cxgb.ko: /lib/modules/VERSION/kernel/drivers/net/cxgb3/cxgb3.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/scsi/cxgbi/cxgb3i/cxgb3i.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/cxgbi/libcxgbi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/cxgb3/cxgb3.ko /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi_tcp.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/cxgb4/cxgb4.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/scsi/cxgbi/cxgb4i/cxgb4i.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/cxgbi/libcxgbi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/cxgb4/cxgb4.ko /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi_tcp.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/usb/serial/cyberjack.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/char/cyclades.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/cypress_m8.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/media/video/dabusb.ko: /lib/modules/VERSION/kernel/drivers/net/phy/davicom.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/drivers/scsi/dc395x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/dca/dca.ko: /lib/modules/VERSION/kernel/net/dccp/dccp.ko: /lib/modules/VERSION/kernel/net/dccp/ccids/dccp_ccid2.ko: /lib/modules/2.6.18-348.el5/kernel/net/dccp/dccp.ko /lib/modules/VERSION/kernel/net/dccp/ccids/dccp_ccid3.ko: /lib/modules/2.6.18-348.el5/kernel/net/dccp/ccids/lib/dccp_tfrc_lib.ko /lib/modules/2.6.18-348.el5/kernel/net/dccp/dccp.ko /lib/modules/VERSION/kernel/net/dccp/dccp_diag.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/inet_diag.ko /lib/modules/2.6.18-348.el5/kernel/net/dccp/dccp.ko /lib/modules/VERSION/kernel/net/dccp/dccp_ipv4.ko: /lib/modules/2.6.18-348.el5/kernel/net/dccp/dccp.ko /lib/modules/VERSION/kernel/net/dccp/dccp_ipv6.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/net/dccp/dccp_ipv4.ko /lib/modules/2.6.18-348.el5/kernel/net/dccp/dccp.ko /lib/modules/VERSION/kernel/net/dccp/ccids/lib/dccp_tfrc_lib.ko: /lib/modules/VERSION/kernel/drivers/firmware/dcdbas.ko: /lib/modules/VERSION/kernel/drivers/net/tulip/de2104x.ko: /lib/modules/VERSION/kernel/drivers/net/tulip/de4x5.ko: /lib/modules/VERSION/kernel/crypto/deflate.ko: /lib/modules/2.6.18-348.el5/kernel/lib/zlib_deflate/zlib_deflate.ko /lib/modules/VERSION/kernel/drivers/acpi/dell-wmi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/wmi.ko /lib/modules/VERSION/kernel/drivers/firmware/dell_rbu.ko: /lib/modules/VERSION/kernel/crypto/des.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/digi_acceleport.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/mtd/nand/diskonchip.ko: /lib/modules/2.6.18-348.el5/kernel/lib/reed_solomon/reed_solomon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand_ids.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand_ecc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/net/dl2k.ko: /lib/modules/VERSION/kernel/fs/dlm/dlm.ko: /lib/modules/2.6.18-348.el5/kernel/fs/configfs/configfs.ko /lib/modules/VERSION/kernel/drivers/md/dm-crypt.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/md/dm-emc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-multipath.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-hp-sw.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-multipath.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-log.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-mem-cache.ko: /lib/modules/VERSION/kernel/drivers/md/dm-message.ko: /lib/modules/VERSION/kernel/drivers/md/dm-mirror.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-log.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-mod.ko: /lib/modules/VERSION/kernel/drivers/md/dm-multipath.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-raid45.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-region_hash.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-log.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mem-cache.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-message.ko /lib/modules/VERSION/kernel/drivers/md/dm-rdac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-multipath.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-region_hash.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-log.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-round-robin.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-multipath.ko /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-snapshot.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/VERSION/kernel/drivers/md/dm-zero.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko /lib/modules/VERSION/kernel/drivers/usb/net/dm9601.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/dma/dmaengine.ko: /lib/modules/VERSION/kernel/drivers/hwmon/dme1737.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/net/tulip/dmfe.ko: /lib/modules/VERSION/kernel/drivers/char/drm/drm.ko: /lib/modules/VERSION/kernel/drivers/i2c/chips/ds1337.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/chips/ds1374.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/ds1621.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/radio/dsbr100.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/isdn/divert/dss1_divert.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/block/paride/dstr.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/bluetooth/dtl1_cs.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/char/dtlk.ko: /lib/modules/VERSION/kernel/drivers/net/dummy.ko: /lib/modules/VERSION/kernel/drivers/net/e100.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/e1000/e1000.ko: /lib/modules/VERSION/kernel/drivers/net/e1000e/e1000e.ko: /lib/modules/VERSION/kernel/drivers/edac/e752x_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_802_3.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_among.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_arp.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_arpreply.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_dnat.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_ip.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_limit.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_log.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_mark.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_mark_m.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_pkttype.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_redirect.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_snat.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_stp.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_ulog.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebt_vlan.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebtable_broute.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/bridge.ko /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebtable_filter.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebtable_nat.ko: /lib/modules/2.6.18-348.el5/kernel/net/bridge/netfilter/ebtables.ko /lib/modules/VERSION/kernel/net/bridge/netfilter/ebtables.ko: /lib/modules/VERSION/kernel/crypto/ecb.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/fs/ecryptfs/ecryptfs.ko: /lib/modules/VERSION/kernel/drivers/edac/edac_mc.ko: /lib/modules/VERSION/kernel/drivers/firmware/edd.ko: /lib/modules/VERSION/kernel/drivers/i2c/chips/eeprom.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/misc/eeprom_93cx6.ko: /lib/modules/VERSION/kernel/drivers/usb/host/ehci-hcd.ko: /lib/modules/VERSION/kernel/drivers/input/touchscreen/elo.ko: /lib/modules/VERSION/kernel/drivers/isdn/hisax/elsa_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/media/video/em28xx/em28xx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/common/ir-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/tveeprom.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/net/sched/em_cmp.ko: /lib/modules/VERSION/kernel/net/sched/em_meta.ko: /lib/modules/VERSION/kernel/net/sched/em_nbyte.ko: /lib/modules/VERSION/kernel/net/sched/em_text.ko: /lib/modules/VERSION/kernel/net/sched/em_u32.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/emi26.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/emi62.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/empeg.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/input/gameport/emu10k1-gp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/VERSION/kernel/drivers/misc/enclosure.ko: /lib/modules/VERSION/kernel/drivers/atm/eni.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/atm/suni.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/net/enic/enic.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/block/paride/epat.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/block/paride/epia.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/net/epic100.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/crypto/eseqiv.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/rng.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv4/esp4.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/xfrm4_esp.ko /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv6/esp6.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/xfrm6_esp.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/media/video/et61x251/et61x251.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/fs/exportfs/exportfs.ko: /lib/modules/VERSION/kernel/fs/ext3/ext3.ko: /lib/modules/2.6.18-348.el5/kernel/fs/jbd/jbd.ko /lib/modules/VERSION/kernel/fs/ext4/ext4.ko: /lib/modules/2.6.18-348.el5/kernel/fs/jbd2/jbd2.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc16.ko /lib/modules/VERSION/kernel/drivers/hwmon/f71805f.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/f71882fg.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/f75375s.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/pci/hotplug/fakephp.ko: /lib/modules/VERSION/kernel/fs/fat/fat.ko: /lib/modules/VERSION/kernel/drivers/md/faulty.ko: /lib/modules/VERSION/kernel/drivers/scsi/fcoe/fcoe.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/fcoe/libfcoe.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libfc/libfc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/fealnx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/atm/firestream.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/firewire/firewire-core.ko: /lib/modules/VERSION/kernel/drivers/firewire/firewire-ohci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/firewire/firewire-core.ko /lib/modules/VERSION/kernel/drivers/firewire/firewire-sbp2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/firewire/firewire-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/block/paride/fit2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/block/paride/fit3.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/net/phy/fixed.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/drivers/block/floppy.ko: /lib/modules/VERSION/kernel/drivers/input/gameport/fm801-gp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/VERSION/kernel/drivers/net/pcmcia/fmvj18x_cs.ko: /lib/modules/VERSION/kernel/drivers/scsi/fnic/fnic.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/fcoe/libfcoe.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libfc/libfc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/forcedeth.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/fs/freevxfs/freevxfs.ko: /lib/modules/VERSION/kernel/drivers/cpufreq/freq_table.ko: /lib/modules/VERSION/kernel/drivers/block/paride/friq.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/block/paride/frpw.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/fs/fscache/fscache.ko: /lib/modules/VERSION/kernel/drivers/hwmon/fscher.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/fschmd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/fscpos.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/serial/ftdi_sio.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/mtd/ftl.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtd_blkdevs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/usb/serial/funsoft.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/fs/fuse/fuse.ko: /lib/modules/VERSION/kernel/drivers/input/gameport/gameport.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/garmin_gps.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/scsi/gdth.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/gen_probe.ko: /lib/modules/VERSION/kernel/crypto/gf128mul.ko: /lib/modules/VERSION/kernel/fs/gfs2/gfs2.ko: /lib/modules/VERSION/kernel/drivers/isdn/gigaset/gigaset.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/hwmon/gl518sm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/gl520sm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/net/gl620a.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/input/touchscreen/gunze.ko: /lib/modules/VERSION/kernel/drivers/char/hangcheck-timer.ko: /lib/modules/VERSION/kernel/drivers/bluetooth/hci_uart.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/bluetooth/hci_usb.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/bluetooth/hci_vhci.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/hwmon/hdaps.ko: /lib/modules/VERSION/kernel/drivers/atm/he.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/net/wireless/hermes.ko: /lib/modules/VERSION/kernel/drivers/isdn/hisax/hfc4s8s_l1.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/fs/hfs/hfs.ko: /lib/modules/VERSION/kernel/fs/hfsplus/hfsplus.ko: /lib/modules/VERSION/kernel/drivers/hv/hid-base-hv.ko: /lib/modules/VERSION/kernel/drivers/hv/hid-hyperv.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hv/hv_vmbus.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hv/hid-base-hv.ko /lib/modules/VERSION/kernel/net/bluetooth/hidp/hidp.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/l2cap.ko /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/hisax.ko: /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/hisax_fcpcipnp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax_isac.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/hisax_isac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/hisax_st5481.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/isdnhdlc.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/VERSION/kernel/crypto/hmac.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_hash.ko /lib/modules/VERSION/kernel/drivers/atm/horizon.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/net/wireless/hostap/hostap.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/net/wireless/hostap/hostap_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hostap/hostap.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/net/wireless/hostap/hostap_pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hostap/hostap.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/net/wireless/hostap/hostap_plx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hostap/hostap.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/usb/serial/hp4x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/misc/hpilo.ko: /lib/modules/VERSION/kernel/drivers/scsi/hptiop.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/hyperv/hv_netvsc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hv/hv_vmbus.ko /lib/modules/VERSION/kernel/drivers/scsi/hv_storvsc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hv/hv_vmbus.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/hv/hv_utils.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hv/hv_vmbus.ko /lib/modules/VERSION/kernel/drivers/hv/hv_vmbus.ko: /lib/modules/VERSION/kernel/drivers/hwmon/hwmon.ko: /lib/modules/VERSION/kernel/drivers/hwmon/hwmon-vid.ko: /lib/modules/VERSION/kernel/drivers/i2c/algos/i2c-algo-bit.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/algos/i2c-algo-pca.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/algos/i2c-algo-pcf.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-amd756.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-amd756-s4882.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/busses/i2c-amd756.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-amd8111.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/i2c-core.ko: /lib/modules/VERSION/kernel/drivers/i2c/i2c-dev.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-i801.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-isa.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-nforce2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-parport.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-parport-light.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-piix4.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-prosavage.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-savage4.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-sis96x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-stub.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-via.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-viapro.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/busses/i2c-voodoo3.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/acpi/i2c_ec.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/message/i2o/i2o_block.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/i2o/i2o_core.ko /lib/modules/VERSION/kernel/drivers/message/i2o/i2o_bus.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/i2o/i2o_core.ko /lib/modules/VERSION/kernel/drivers/message/i2o/i2o_config.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/i2o/i2o_core.ko /lib/modules/VERSION/kernel/drivers/message/i2o/i2o_core.ko: /lib/modules/VERSION/kernel/drivers/message/i2o/i2o_proc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/i2o/i2o_core.ko /lib/modules/VERSION/kernel/drivers/message/i2o/i2o_scsi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/i2o/i2o_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/edac/i3000_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/edac/i3200_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/edac/i5000_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/edac/i5400_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/hwmon/i5k_amb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/i6300esb.ko: /lib/modules/VERSION/kernel/drivers/edac/i7300_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/edac/i7core_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/char/drm/i810.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/char/drm/i830.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/i8xx_tco.ko: /lib/modules/VERSION/kernel/drivers/char/drm/i915.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_addr.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_cm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_core.ko: /lib/modules/VERSION/kernel/drivers/infiniband/hw/ipath/ib_ipath.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/ulp/ipoib/ipoib_helper.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/infiniband/ulp/iser/ib_iser.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/rdma_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/iw_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_addr.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_mad.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/util/ib_madeye.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/hw/mthca/ib_mthca.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/hw/qib/ib_qib.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/dca/dca.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_sa.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/ulp/sdp/ib_sdp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/rdma_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/iw_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_addr.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/infiniband/ulp/srp/ib_srp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_ucm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_uverbs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_umad.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/ib_uverbs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/ibmasr.ko: /lib/modules/VERSION/kernel/drivers/media/video/usbvideo/ibmcam.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/usbvideo/usbvideo.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/hwmon/ibmpex.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/ipmi/ipmi_msghandler.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/ide/ide-cd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cdrom/cdrom.ko /lib/modules/VERSION/kernel/drivers/ide/legacy/ide-cs.ko: /lib/modules/VERSION/kernel/drivers/scsi/ide-scsi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/usb/misc/idmouse.ko: /lib/modules/VERSION/kernel/drivers/atm/idt77252.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/atm/suni.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/net/ieee80211/ieee80211.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/net/ieee80211/ieee80211_crypt.ko: /lib/modules/VERSION/kernel/net/ieee80211/ieee80211_crypt_ccmp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/net/ieee80211/ieee80211_crypt_tkip.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/net/ieee80211/ieee80211_crypt_wep.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/net/ieee80211/softmac/ieee80211softmac.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/net/ifb.ko: /lib/modules/VERSION/kernel/drivers/net/igb/igb.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/2.6.18-348.el5/kernel/drivers/dca/dca.ko /lib/modules/VERSION/kernel/drivers/net/igbvf/igbvf.ko: /lib/modules/VERSION/kernel/drivers/scsi/imm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/net/ipv4/inet_diag.ko: /lib/modules/VERSION/kernel/drivers/scsi/initio.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/char/hw_random/intel-rng.ko: /lib/modules/VERSION/kernel/drivers/video/intelfb/intelfb.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/io_edgeport.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/usb/serial/io_ti.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/dma/ioatdma.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/dma/dmaengine.ko /lib/modules/VERSION/kernel/drivers/dma_v3/ioatdma_v3.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/dca/dca.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6_queue.ko: /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6_tables.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/ip6_tunnel.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/tunnel6.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_HL.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_LOG.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_REJECT.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_ah.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_dst.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_eui64.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_frag.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_hbh.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_hl.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_ipv6header.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_owner.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6t_rt.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6table_filter.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6table_mangle.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv6/netfilter/ip6table_raw.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_amanda.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_ftp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_h323.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_irc.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_netbios_ns.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_netlink.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_pptp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_proto_sctp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_sip.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_conntrack_tftp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/ip_gre.ko: /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_amanda.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_amanda.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_ftp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_ftp.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_h323.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_h323.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_irc.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_irc.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_pptp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_pptp.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_sip.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_sip.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_snmp_basic.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_nat_tftp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_tftp.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_queue.ko: /lib/modules/VERSION/kernel/net/ipv4/netfilter/ip_tables.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs.ko: /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_dh.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_ftp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_lblc.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_lblcr.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_lc.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_nq.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_rr.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_sed.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_sh.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_wlc.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/net/ipv4/ipvs/ip_vs_wrr.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/ipvs/ip_vs.ko /lib/modules/VERSION/kernel/drivers/usb/serial/ipaq.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/net/ipv4/ipcomp.ko: /lib/modules/VERSION/kernel/net/ipv6/ipcomp6.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/xfrm6_tunnel.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/tunnel6.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv4/ipip.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/tunnel4.ko /lib/modules/VERSION/kernel/drivers/char/ipmi/ipmi_devintf.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/ipmi/ipmi_msghandler.ko /lib/modules/VERSION/kernel/drivers/char/ipmi/ipmi_msghandler.ko: /lib/modules/VERSION/kernel/drivers/char/ipmi/ipmi_poweroff.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/ipmi/ipmi_msghandler.ko /lib/modules/VERSION/kernel/drivers/char/ipmi/ipmi_si.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/ipmi/ipmi_msghandler.ko /lib/modules/VERSION/kernel/drivers/char/ipmi/ipmi_watchdog.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/ipmi/ipmi_msghandler.ko /lib/modules/VERSION/kernel/drivers/infiniband/ulp/ipoib/ipoib_helper.ko: /lib/modules/VERSION/kernel/drivers/scsi/ips.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_CLUSTERIP.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_DSCP.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_ECN.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_LOG.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_MASQUERADE.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_NETMAP.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_REDIRECT.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_REJECT.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_SAME.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_TCPMSS.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_TOS.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_TTL.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_ULOG.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_addrtype.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_ah.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_dscp.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_ecn.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_hashlimit.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_iprange.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_owner.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_recent.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_tos.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/ipt_ttl.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/iptable_filter.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/iptable_mangle.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/iptable_nat.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_nat.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv4/netfilter/iptable_raw.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/ipv6/ipv6.ko: /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/usb/serial/ipw.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/net/wireless/ipw2100.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/net/wireless/ipw2200.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/drivers/media/common/ir-common.ko: /lib/modules/VERSION/kernel/drivers/media/video/ir-kbd-i2c.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/common/ir-common.ko /lib/modules/VERSION/kernel/drivers/usb/serial/ir-usb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/scsi/isci/isci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libsas/libsas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_sas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/firmware/iscsi_ibft.ko: /lib/modules/VERSION/kernel/drivers/scsi/iscsi_tcp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi_tcp.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/isdn/i4l/isdn.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/isdnhdlc.ko: /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/VERSION/kernel/drivers/usb/host/isp116x-hcd.ko: /lib/modules/VERSION/kernel/drivers/hwmon/it87.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/iw_cm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/hw/cxgb3/iw_cxgb3.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/cxgb3/cxgb3.ko /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/infiniband/hw/cxgb4/iw_cxgb4.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/cxgb4/cxgb4.ko /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/hw/nes/iw_nes.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/net/wireless/iwlwifi/iwl3945.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/iwlwifi/iwlcore.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/iwlwifi/iwlagn.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/iwlwifi/iwlcore.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/iwlwifi/iwlcore.ko: /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/ixgb/ixgb.ko: /lib/modules/VERSION/kernel/drivers/net/ixgbe/ixgbe.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/2.6.18-348.el5/kernel/drivers/dca/dca.ko /lib/modules/VERSION/kernel/drivers/net/ixgbevf/ixgbevf.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/fs/jbd/jbd.ko: /lib/modules/VERSION/kernel/fs/jbd2/jbd2.ko: /lib/modules/VERSION/kernel/drivers/mtd/chips/jedec_probe.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/gen_probe.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/fs/jffs2/jffs2.ko: /lib/modules/2.6.18-348.el5/kernel/lib/zlib_deflate/zlib_deflate.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/input/joydev.ko: /lib/modules/VERSION/kernel/drivers/input/joystick/joydump.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/VERSION/kernel/drivers/serial/jsm/jsm.ko: /lib/modules/VERSION/kernel/drivers/hwmon/k10temp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/edac/k8_edac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/edac/edac_mc.ko /lib/modules/VERSION/kernel/drivers/hwmon/k8temp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/usb/net/kaweth.ko: /lib/modules/VERSION/kernel/drivers/block/paride/kbic.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/usb/input/kbtab.ko: /lib/modules/VERSION/kernel/drivers/isdn/capi/kernelcapi.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/keyspan.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/usb/serial/keyspan_pda.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/usb/input/keyspan_remote.ko: /lib/modules/VERSION/kernel/crypto/khazad.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/kl5kusb105.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/usb/serial/kobil_sct.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/media/video/usbvideo/konicawc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/usbvideo/usbvideo.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/crypto/krng.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/rng.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/block/paride/ktti.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/video/kyro/kyrofb.ko: /lib/modules/VERSION/kernel/net/bluetooth/l2cap.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/atm/lanai.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/video/backlight/lcd.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/ldusb.ko: /lib/modules/VERSION/kernel/net/atm/lec.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/leds/ledtrig-heartbeat.ko: /lib/modules/VERSION/kernel/drivers/leds/ledtrig-timer.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/legousbtower.ko: /lib/modules/VERSION/kernel/drivers/ata/libata.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/cxgbi/libcxgbi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi_tcp.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/libfc/libfc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/fcoe/libfcoe.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libfc/libfc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/libiscsi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/libiscsi2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/libiscsi_tcp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/phy/libphy.ko: /lib/modules/VERSION/kernel/drivers/scsi/libsas/libsas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_sas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/input/gameport/lightning.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/VERSION/kernel/drivers/md/linear.ko: /lib/modules/VERSION/kernel/drivers/hwmon/lm63.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm75.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm77.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm78.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm80.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm83.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm85.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm87.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm90.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm92.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/lm93.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/fs/gfs2/locking/dlm/lock_dlm.ko: /lib/modules/2.6.18-348.el5/kernel/fs/gfs2/gfs2.ko /lib/modules/2.6.18-348.el5/kernel/fs/dlm/dlm.ko /lib/modules/2.6.18-348.el5/kernel/fs/configfs/configfs.ko /lib/modules/VERSION/kernel/fs/gfs2/locking/nolock/lock_nolock.ko: /lib/modules/2.6.18-348.el5/kernel/fs/gfs2/gfs2.ko /lib/modules/VERSION/kernel/fs/lockd/lockd.ko: /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/drivers/block/loop.ko: /lib/modules/VERSION/kernel/drivers/char/lp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/scsi/lpfc/lpfc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/phy/lxt.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/net/mac80211/mac80211.ko: /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/machzwd.ko: /lib/modules/VERSION/kernel/drivers/mtd/chips/map_absent.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/map_ram.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/chips/map_rom.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/drivers/net/phy/marvell.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/drivers/hwmon/max1619.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/max6650.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/chips/max6875.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/serial/mct_u232.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/crypto/md4.ko: /lib/modules/VERSION/kernel/crypto/md5.ko: /lib/modules/VERSION/kernel/drivers/usb/image/mdc800.ko: /lib/modules/VERSION/kernel/drivers/net/mdio.ko: /lib/modules/VERSION/kernel/drivers/scsi/megaraid.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/megaraid/megaraid_mbox.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/megaraid/megaraid_mm.ko /lib/modules/VERSION/kernel/drivers/scsi/megaraid/megaraid_mm.ko: /lib/modules/VERSION/kernel/drivers/scsi/megaraid/megaraid_sas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/char/drm/mga.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/crypto/michael_mic.ko: /lib/modules/VERSION/kernel/arch/x86_64/kernel/microcode.ko: /lib/modules/VERSION/kernel/drivers/usb/image/microtek.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/mii.ko: /lib/modules/VERSION/kernel/drivers/input/touchscreen/mk712.ko: /lib/modules/VERSION/kernel/drivers/net/mlx4/mlx4_core.ko: /lib/modules/VERSION/kernel/drivers/net/mlx4/mlx4_en.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mlx4/mlx4_core.ko /lib/modules/VERSION/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mlx4/mlx4_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/mmc/mmc_block.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mmc/mmc_core.ko /lib/modules/VERSION/kernel/drivers/mmc/mmc_core.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/mos7840.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/arch/x86_64/kernel/cpufreq/mperf.ko: /lib/modules/VERSION/kernel/drivers/scsi/mpt2sas/mpt2sas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_sas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/message/fusion/mptbase.ko: /lib/modules/VERSION/kernel/drivers/message/fusion/mptctl.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptbase.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/message/fusion/mptfc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptscsih.ko /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptbase.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/message/fusion/mptlan.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptbase.ko /lib/modules/VERSION/kernel/drivers/message/fusion/mptsas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptscsih.ko /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptbase.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_sas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/message/fusion/mptscsih.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptbase.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/message/fusion/mptspi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptscsih.ko /lib/modules/2.6.18-348.el5/kernel/drivers/message/fusion/mptbase.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_spi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/fs/msdos/msdos.ko: /lib/modules/2.6.18-348.el5/kernel/fs/fat/fat.ko /lib/modules/VERSION/kernel/drivers/media/video/msp3400.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/mtd/mtd_blkdevs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/mtdblock.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtd_blkdevs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/mtdblock_ro.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtd_blkdevs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/mtdchar.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/mtdconcat.ko: /lib/modules/VERSION/kernel/drivers/mtd/mtdcore.ko: /lib/modules/VERSION/kernel/drivers/mtd/mtdpart.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/mtd/devices/mtdram.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/input/touchscreen/mtouch.ko: /lib/modules/VERSION/kernel/drivers/md/multipath.ko: /lib/modules/VERSION/kernel/drivers/scsi/mvsas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libsas/libsas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_sas.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/myri10ge/myri10ge.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/dca/dca.ko /lib/modules/VERSION/kernel/drivers/char/n_hdlc.ko: /lib/modules/VERSION/kernel/drivers/mtd/nand/nand.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand_ids.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand_ecc.ko /lib/modules/VERSION/kernel/drivers/mtd/nand/nand_ecc.ko: /lib/modules/VERSION/kernel/drivers/mtd/nand/nand_ids.ko: /lib/modules/VERSION/kernel/drivers/mtd/nand/nandsim.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand_ids.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/nand/nand_ecc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/net/natsemi.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/navman.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/block/nbd.ko: /lib/modules/VERSION/kernel/drivers/net/ne2k-pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/8390.ko /lib/modules/VERSION/kernel/drivers/usb/net/net1080.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/net/netconsole.ko: /lib/modules/VERSION/kernel/drivers/mtd/maps/netsc520.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/drivers/net/wireless/netwave_cs.ko: /lib/modules/VERSION/kernel/drivers/net/netxen/netxen_nic.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/net/netfilter/nfnetlink.ko: /lib/modules/VERSION/kernel/net/netfilter/nfnetlink_log.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/netfilter/nfnetlink_queue.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/fs/nfs/nfs.ko: /lib/modules/2.6.18-348.el5/kernel/fs/lockd/lockd.ko /lib/modules/2.6.18-348.el5/kernel/fs/nfs_common/nfs_acl.ko /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/fs/nfs_common/nfs_acl.ko: /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/fs/nfsd/nfsd.ko: /lib/modules/2.6.18-348.el5/kernel/fs/exportfs/exportfs.ko /lib/modules/2.6.18-348.el5/kernel/fs/lockd/lockd.ko /lib/modules/2.6.18-348.el5/kernel/fs/nfs_common/nfs_acl.ko /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/drivers/mtd/nftl.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtd_blkdevs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/net/niu.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp1250.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp1251.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp1255.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp737.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp775.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp850.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp852.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp855.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp857.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp860.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp861.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp862.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp863.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp864.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp865.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp866.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp869.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp874.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp932.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp936.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp949.ko: /lib/modules/VERSION/kernel/fs/nls/nls_cp950.ko: /lib/modules/VERSION/kernel/fs/nls/nls_euc-jp.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-1.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-13.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-14.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-15.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-2.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-3.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-4.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-5.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-6.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-7.ko: /lib/modules/VERSION/kernel/fs/nls/nls_iso8859-9.ko: /lib/modules/VERSION/kernel/fs/nls/nls_koi8-r.ko: /lib/modules/VERSION/kernel/fs/nls/nls_koi8-ru.ko: /lib/modules/VERSION/kernel/fs/nls/nls_koi8-u.ko: /lib/modules/VERSION/kernel/fs/nls/nls_utf8.ko: /lib/modules/VERSION/kernel/drivers/net/pcmcia/nmclan_cs.ko: /lib/modules/VERSION/kernel/drivers/input/gameport/ns558.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/VERSION/kernel/drivers/net/ns83820.ko: /lib/modules/VERSION/kernel/drivers/char/nsc_gpio.ko: /lib/modules/VERSION/kernel/drivers/video/nvidia/nvidiafb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/host/ohci-hcd.ko: /lib/modules/VERSION/kernel/drivers/net/tokenring/olympic.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/omninet.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/block/paride/on20.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/block/paride/on26.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/arch/x86_64/oprofile/oprofile.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/option.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/net/wireless/orinoco.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/drivers/net/wireless/orinoco_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/orinoco.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/drivers/net/wireless/orinoco_nortel.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/orinoco.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/drivers/net/wireless/orinoco_pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/orinoco.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/drivers/net/wireless/orinoco_plx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/orinoco.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/drivers/net/wireless/orinoco_tmd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/orinoco.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/drivers/scsi/osst.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/media/video/ov511.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/media/video/ovcamchip/ovcamchip.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/block/paride/paride.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/parport/parport.ko: /lib/modules/VERSION/kernel/drivers/parport/parport_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport_pc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/parport/parport_pc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/parport/parport_serial.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport_pc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/ata/pata_marvell.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/pata_pdc2027x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/pata_sil680.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/pata_sis.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/hwmon/pc87360.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/char/pc8736x_gpio.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/nsc_gpio.ko /lib/modules/VERSION/kernel/drivers/hwmon/pc87427.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/i2c/chips/pca9539.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/block/paride/pcd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/2.6.18-348.el5/kernel/drivers/cdrom/cdrom.ko /lib/modules/VERSION/kernel/drivers/i2c/chips/pcf8574.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/i2c/chips/pcf8591.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/pci/hotplug/pciehp.ko: /lib/modules/VERSION/kernel/drivers/net/pcnet32.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/pcmcia/pcnet_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/8390.ko /lib/modules/VERSION/kernel/drivers/input/misc/pcspkr.ko: /lib/modules/VERSION/kernel/drivers/char/watchdog/pcwd_pci.ko: /lib/modules/VERSION/kernel/drivers/char/watchdog/pcwd_usb.ko: /lib/modules/VERSION/kernel/drivers/block/paride/pd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/pcmcia/pd6729.ko: /lib/modules/VERSION/kernel/drivers/ata/pdc_adma.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/usb/net/pegasus.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/block/paride/pf.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/block/paride/pg.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/usb/misc/phidgetkit.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/phidgetservo.ko: /lib/modules/VERSION/kernel/drivers/block/pktcdvd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cdrom/cdrom.ko /lib/modules/VERSION/kernel/net/core/pktgen.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/pl2303.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/usb/net/plusb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/scsi/pmcraid.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/acpi/power_meter.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/usb/input/powermate.ko: /lib/modules/VERSION/kernel/arch/x86_64/kernel/cpufreq/powernow-k8.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cpufreq/freq_table.ko /lib/modules/2.6.18-348.el5/kernel/arch/x86_64/kernel/cpufreq/mperf.ko /lib/modules/VERSION/kernel/drivers/scsi/ppa.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/char/ppdev.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/net/ppp_async.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/VERSION/kernel/drivers/net/ppp_deflate.ko: /lib/modules/2.6.18-348.el5/kernel/lib/zlib_deflate/zlib_deflate.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/ppp_generic.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/ppp_mppe.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/ppp_synctty.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/net/atm/pppoatm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/net/pppoe.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/pppox.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/pppox.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/ppp_generic.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/wireless/prism54/prism54.ko: /lib/modules/VERSION/kernel/drivers/block/paride/pt.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/block/paride/paride.ko /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/media/video/pvrusb2/pvrusb2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/cx2341x.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/tveeprom.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/pwc/pwc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/usb/serial/qcserial.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/scsi/qla1280.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/qla2xxx/qla2xxx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_fc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/qla3xxx.ko: /lib/modules/VERSION/kernel/drivers/scsi/qla4xxx/qla4xxx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/qlcnic/qlcnic.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/infiniband/ulp/qlgc_vnic/qlgc_vnic.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/drivers/net/qlge/qlge.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/net/phy/qsemi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/drivers/media/video/usbvideo/quickcam_messenger.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/usbvideo/usbvideo.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/char/drm/r128.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/net/r8169.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/char/drm/radeon.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/md/raid0.ko: /lib/modules/VERSION/kernel/drivers/md/raid1.ko: /lib/modules/VERSION/kernel/drivers/md/raid10.ko: /lib/modules/VERSION/kernel/drivers/md/raid456.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/md/xor.ko /lib/modules/VERSION/kernel/drivers/scsi/raid_class.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/rdma_cm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/iw_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_addr.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/infiniband/core/rdma_ucm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/rdma_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/iw_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_addr.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_uverbs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/VERSION/kernel/net/rds/rds.ko: /lib/modules/VERSION/kernel/net/rds/rds_rdma.ko: /lib/modules/2.6.18-348.el5/kernel/net/rds/rds.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/rdma_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/iw_cm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_addr.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/rds/rds_tcp.ko: /lib/modules/2.6.18-348.el5/kernel/net/rds/rds.ko /lib/modules/VERSION/kernel/drivers/mtd/redboot.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/lib/reed_solomon/reed_solomon.ko: /lib/modules/VERSION/kernel/net/bluetooth/rfcomm/rfcomm.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/l2cap.ko /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/mtd/rfd_ftl.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtd_blkdevs.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/net/rfkill/rfkill.ko: /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/usb/misc/rio500.ko: /lib/modules/VERSION/kernel/drivers/video/riva/rivafb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/video/vgastate.ko /lib/modules/VERSION/kernel/drivers/usb/net/rndis_host.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/cdc_ether.ko /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/crypto/rng.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko: /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/net/sunrpc/auth_gss/rpcsec_gss_spkm3.ko: /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt2400pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00pci.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/misc/eeprom_93cx6.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt2500pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00pci.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/misc/eeprom_93cx6.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt2500usb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00usb.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko: /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt2x00pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt2x00usb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt61pci.ko: /lib/modules/2.6.18-348.el5/kernel/lib/crc-itu-t.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00pci.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/misc/eeprom_93cx6.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rt2x00/rt73usb.ko: /lib/modules/2.6.18-348.el5/kernel/lib/crc-itu-t.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00usb.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/rt2x00/rt2x00lib.ko /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-core.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-dev.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-ds1307.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-ds1553.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-ds1672.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-ds1742.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-isl1208.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-lib.ko: /lib/modules/VERSION/kernel/drivers/rtc/rtc-pcf8563.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-pcf8583.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-proc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-rs5c372.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-sysfs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-v3020.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/rtc/rtc-x1205.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/rtc/rtc-lib.ko /lib/modules/VERSION/kernel/drivers/usb/net/rtl8150.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/rtl818x/rtl8180.ko: /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/drivers/misc/eeprom_93cx6.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/VERSION/kernel/drivers/net/wireless/rtl818x/rtl8187.ko: /lib/modules/2.6.18-348.el5/kernel/net/mac80211/mac80211.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/cfg80211.ko /lib/modules/2.6.18-348.el5/kernel/net/rfkill/rfkill.ko /lib/modules/2.6.18-348.el5/kernel/net/wireless/wireless_compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/misc/eeprom_93cx6.ko /lib/modules/VERSION/kernel/drivers/net/s2io.ko: /lib/modules/VERSION/kernel/drivers/media/video/saa6588.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/saa7115.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/saa7127.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/serial/safe_serial.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/ata/sata_inic162x.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_mv.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_nv.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_promise.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_qstor.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_sil.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_sil24.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_sis.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/pata_sis.ko /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_svw.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_sx4.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_uli.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_via.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/ata/sata_vsc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/char/drm/savage.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/video/savage/savagefb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/acpi/sbs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/i2c_ec.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/mtd/maps/sc520cdp.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdconcat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/drivers/mtd/maps/scb2_flash.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/net/sched/sch_atm.ko: /lib/modules/VERSION/kernel/net/sched/sch_cbq.ko: /lib/modules/VERSION/kernel/net/sched/sch_dsmark.ko: /lib/modules/VERSION/kernel/net/sched/sch_gred.ko: /lib/modules/VERSION/kernel/net/sched/sch_hfsc.ko: /lib/modules/VERSION/kernel/net/sched/sch_htb.ko: /lib/modules/VERSION/kernel/net/sched/sch_ingress.ko: /lib/modules/VERSION/kernel/net/sched/sch_netem.ko: /lib/modules/VERSION/kernel/net/sched/sch_prio.ko: /lib/modules/VERSION/kernel/net/sched/sch_red.ko: /lib/modules/VERSION/kernel/net/sched/sch_sfq.ko: /lib/modules/VERSION/kernel/net/sched/sch_tbf.ko: /lib/modules/VERSION/kernel/net/sched/sch_teql.ko: /lib/modules/VERSION/kernel/net/bluetooth/sco.ko: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko /lib/modules/VERSION/kernel/drivers/scsi/device_handler/scsi_dh.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/device_handler/scsi_dh_alua.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/device_handler/scsi_dh_emc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/device_handler/scsi_dh_rdac.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/scsi_mod.ko: /lib/modules/VERSION/kernel/drivers/scsi/scsi_transport_fc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/scsi_transport_iscsi.ko: /lib/modules/VERSION/kernel/drivers/scsi/scsi_transport_iscsi1.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/scsi_transport_iscsi2.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/scsi_transport_sas.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/scsi/scsi_transport_spi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/net/sctp/sctp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/scsi/sd_mod.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/mmc/sdhci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mmc/mmc_core.ko /lib/modules/VERSION/kernel/drivers/media/video/se401.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/isdn/hisax/sedlbauer_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/crypto/seqiv.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/rng.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/serial/serial_cs.ko: /lib/modules/VERSION/kernel/drivers/input/serio/serio_raw.ko: /lib/modules/VERSION/kernel/drivers/input/mouse/sermouse.ko: /lib/modules/VERSION/kernel/crypto/serpent.ko: /lib/modules/VERSION/kernel/drivers/scsi/ses.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/misc/enclosure.ko /lib/modules/VERSION/kernel/drivers/net/sfc/sfc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/algos/i2c-algo-bit.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/mdio.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/VERSION/kernel/drivers/scsi/sg.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/crypto/sha256.ko: /lib/modules/VERSION/kernel/crypto/sha512.ko: /lib/modules/VERSION/kernel/drivers/pci/hotplug/shpchp.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/sierra.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/net/sis190.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/hwmon/sis5595.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/net/sis900.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/usb/misc/sisusbvga/sisusbvga.ko: /lib/modules/VERSION/kernel/drivers/net/skge.ko: /lib/modules/VERSION/kernel/drivers/net/sky2.ko: /lib/modules/VERSION/kernel/drivers/usb/host/sl811-hcd.ko: /lib/modules/VERSION/kernel/drivers/usb/host/sl811_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/host/sl811-hcd.ko /lib/modules/VERSION/kernel/drivers/net/slhc.ko: /lib/modules/VERSION/kernel/drivers/net/slip.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/drivers/net/pcmcia/smc91c92_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/phy/smsc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/drivers/hwmon/smsc47b397.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/smsc47m1.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/smsc47m192.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/sn9c102/sn9c102.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/sound/core/snd.ko: /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/ac97/snd-ac97-codec.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/VERSION/kernel/sound/pci/snd-ad1889.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/VERSION/kernel/sound/core/seq/instr/snd-ainstr-fm.ko: /lib/modules/VERSION/kernel/sound/core/seq/instr/snd-ainstr-simple.ko: /lib/modules/VERSION/kernel/sound/i2c/other/snd-ak4114.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/ac97/snd-ak4531-codec.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/i2c/other/snd-ak4xxx-adda.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/ali5451/snd-ali5451.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/drivers/snd-aloop.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-als300.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-als4000.ko: /lib/modules/2.6.18-348.el5/kernel/sound/isa/sb/snd-sb-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-atiixp.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-atiixp-modem.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/au88x0/snd-au8810.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/au88x0/snd-au8820.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/au88x0/snd-au8830.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-azt3328.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-bt87x.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/ca0106/snd-ca0106.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-cmipci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-cs4281.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/cs46xx/snd-cs46xx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/i2c/snd-cs8427.ko: /lib/modules/2.6.18-348.el5/kernel/sound/i2c/snd-i2c.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/ctxfi/snd-ctxfi.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-darla20.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-darla24.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/drivers/snd-dummy.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-echo3g.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/emu10k1/snd-emu10k1.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/synth/snd-util-mem.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/emu10k1/snd-emu10k1-synth.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/emu10k1/snd-emu10k1.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/synth/emux/snd-emux-synth.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-virmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-emul.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/synth/snd-util-mem.ko /lib/modules/VERSION/kernel/sound/pci/emu10k1/snd-emu10k1x.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/synth/emux/snd-emux-synth.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-virmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-emul.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/synth/snd-util-mem.ko /lib/modules/VERSION/kernel/sound/pci/snd-ens1370.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ak4531-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-ens1371.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-es1938.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-es1968.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-fm801.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/other/snd-tea575x-tuner.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-gina20.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-gina24.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/hda/snd-hda-intel.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/rme9652/snd-hdsp.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/rme9652/snd-hdspm.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/snd-hwdep.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/i2c/snd-i2c.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/ice1712/snd-ice1712.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/other/snd-ak4xxx-adda.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/snd-cs8427.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/snd-i2c.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/ice1712/snd-ice1724.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/other/snd-ak4114.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/other/snd-pt2258.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/snd-i2c.ko /lib/modules/2.6.18-348.el5/kernel/sound/i2c/other/snd-ak4xxx-adda.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko: /lib/modules/2.6.18-348.el5/kernel/sound/i2c/other/snd-ak4xxx-adda.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-indigo.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-indigodj.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-indigoio.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-intel8x0.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-intel8x0m.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/korg1212/snd-korg1212.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-layla20.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-layla24.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-maestro3.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-mia.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/mixart/snd-mixart.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/core/oss/snd-mixer-oss.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/echoaudio/snd-mona.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/drivers/mpu401/snd-mpu401.ko: /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/drivers/snd-mtpav.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/nm256/snd-nm256.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/drivers/opl3/snd-opl3-lib.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/drivers/opl3/snd-opl3-synth.ko: /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-instr.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-emul.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/instr/snd-ainstr-fm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/snd-page-alloc.ko: /lib/modules/VERSION/kernel/sound/core/snd-pcm.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/core/oss/snd-pcm-oss.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/oss/snd-mixer-oss.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/pcxhr/snd-pcxhr.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/i2c/other/snd-pt2258.ko: /lib/modules/2.6.18-348.el5/kernel/sound/i2c/snd-i2c.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/snd-rawmidi.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/riptide/snd-riptide.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-rme32.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/snd-rme96.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/rme9652/snd-rme9652.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/core/snd-rtctimer.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/isa/sb/snd-sb-common.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-device.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-dummy.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-instr.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-midi.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-midi-emul.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-midi-event.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/oss/snd-seq-oss.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/core/seq/snd-seq-virmidi.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-sonicvibes.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/i2c/other/snd-tea575x-tuner.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/sound/core/snd-timer.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/trident/snd-trident.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/synth/snd-util-mem.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/trident/snd-trident-synth.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/trident/snd-trident.ko /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/synth/snd-util-mem.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-instr.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-emul.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/instr/snd-ainstr-simple.ko /lib/modules/VERSION/kernel/sound/usb/snd-usb-audio.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/usb/snd-usb-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/usb/snd-usb-lib.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/usb/usx2y/snd-usb-usx2y.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/usb/snd-usb-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/synth/snd-util-mem.ko: /lib/modules/VERSION/kernel/sound/pci/snd-via82xx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/pci/snd-via82xx-modem.ko: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/drivers/snd-virmidi.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-virmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/sound/drivers/vx/snd-vx-lib.ko: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/vx222/snd-vx222.ko: /lib/modules/2.6.18-348.el5/kernel/sound/drivers/vx/snd-vx-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/VERSION/kernel/sound/pci/ymfpci/snd-ymfpci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/input/gameport/gameport.ko /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/opl3/snd-opl3-lib.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-hwdep.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko /lib/modules/2.6.18-348.el5/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-rawmidi.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/softdog.ko: /lib/modules/VERSION/kernel/sound/soundcore.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/spectrum_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/orinoco.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/wireless/hermes.ko /lib/modules/VERSION/kernel/arch/x86_64/kernel/cpufreq/speedstep-centrino.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/cpufreq/freq_table.ko /lib/modules/VERSION/kernel/drivers/usb/atm/speedtch.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/atm/usbatm.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/fs/squashfs/squashfs.ko: /lib/modules/VERSION/kernel/drivers/scsi/sr_mod.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/2.6.18-348.el5/kernel/drivers/cdrom/cdrom.ko /lib/modules/VERSION/kernel/drivers/scsi/st.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/net/starfire.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/scsi/stex.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/media/video/stv680.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/net/sundance.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/sungem.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/sungem_phy.ko /lib/modules/VERSION/kernel/drivers/net/sungem_phy.ko: /lib/modules/VERSION/kernel/drivers/net/sunhme.ko: /lib/modules/VERSION/kernel/drivers/atm/suni.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/net/sunrpc/sunrpc.ko: /lib/modules/VERSION/kernel/drivers/block/sx8.ko: /lib/modules/VERSION/kernel/drivers/scsi/sym53c8xx_2/sym53c8xx.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_spi.ko /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/char/synclink.ko: /lib/modules/VERSION/kernel/drivers/char/synclink_gt.ko: /lib/modules/VERSION/kernel/drivers/char/synclinkmp.ko: /lib/modules/VERSION/kernel/drivers/isdn/hardware/avm/t1pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1dma.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hardware/avm/b1.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/capi/kernelcapi.ko /lib/modules/VERSION/kernel/net/ipv4/tcp_cubic.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_diag.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/inet_diag.ko /lib/modules/VERSION/kernel/net/ipv4/tcp_highspeed.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_htcp.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_hybla.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_lp.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_scalable.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_vegas.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_veno.ko: /lib/modules/VERSION/kernel/net/ipv4/tcp_westwood.ko: /lib/modules/VERSION/kernel/crypto/tcrypt.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/testmgr.ko /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/media/video/tda7432.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/media/video/tda9875.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/crypto/tea.ko: /lib/modules/VERSION/kernel/drivers/isdn/hisax/teles_cs.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/hisax/hisax.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/VERSION/kernel/crypto/testmgr.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/crypto/testmgr_cipher.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/testmgr.ko /lib/modules/2.6.18-348.el5/kernel/crypto/aead.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/drivers/net/tg3.ko: /lib/modules/VERSION/kernel/crypto/tgr192.ko: /lib/modules/VERSION/kernel/drivers/acpi/thinkpad_acpi.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/video/backlight/backlight.ko /lib/modules/VERSION/kernel/drivers/hwmon/thmc50.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/serial/ti_usb_3410_5052.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/net/tipc/tipc.ko: /lib/modules/VERSION/kernel/drivers/char/tlclk.ko: /lib/modules/VERSION/kernel/drivers/media/video/tlv320aic23b.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/acpi/toshiba_acpi.ko: /lib/modules/VERSION/kernel/drivers/char/tpm/tpm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_bios.ko /lib/modules/VERSION/kernel/drivers/char/tpm/tpm_atmel.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_bios.ko /lib/modules/VERSION/kernel/drivers/char/tpm/tpm_bios.ko: /lib/modules/VERSION/kernel/drivers/char/tpm/tpm_infineon.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_bios.ko /lib/modules/VERSION/kernel/drivers/char/tpm/tpm_nsc.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_bios.ko /lib/modules/VERSION/kernel/drivers/char/tpm/tpm_tis.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm.ko /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_bios.ko /lib/modules/VERSION/kernel/drivers/mtd/maps/ts5500_flash.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdpart.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/mtdcore.ko /lib/modules/2.6.18-348.el5/kernel/drivers/mtd/chips/chipreg.ko /lib/modules/VERSION/kernel/lib/ts_bm.ko: /lib/modules/VERSION/kernel/lib/ts_fsm.ko: /lib/modules/VERSION/kernel/lib/ts_kmp.ko: /lib/modules/VERSION/kernel/drivers/net/tulip/tulip.ko: /lib/modules/VERSION/kernel/drivers/net/tun.ko: /lib/modules/VERSION/kernel/drivers/media/video/tuner.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/net/ipv4/tunnel4.ko: /lib/modules/VERSION/kernel/net/ipv6/tunnel6.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/tux/tux.ko: /lib/modules/2.6.18-348.el5/kernel/lib/zlib_deflate/zlib_deflate.ko /lib/modules/VERSION/kernel/drivers/media/video/tvaudio.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/tveeprom.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/tvp5150.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/input/joystick/twidjoy.ko: /lib/modules/VERSION/kernel/crypto/twofish.ko: /lib/modules/VERSION/kernel/drivers/net/typhoon.ko: /lib/modules/VERSION/kernel/fs/udf/udf.ko: /lib/modules/VERSION/kernel/drivers/usb/atm/ueagle-atm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/atm/usbatm.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/usb/host/uhci-hcd.ko: /lib/modules/VERSION/kernel/drivers/input/misc/uinput.ko: /lib/modules/VERSION/kernel/drivers/uio/uio.ko: /lib/modules/VERSION/kernel/drivers/net/tulip/uli526x.ko: /lib/modules/VERSION/kernel/drivers/media/video/usbvideo/ultracam.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/usbvideo/usbvideo.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/media/video/upd64031a.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/upd64083.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/storage/usb-storage.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko /lib/modules/VERSION/kernel/drivers/isdn/gigaset/usb_gigaset.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/gigaset/gigaset.ko /lib/modules/2.6.18-348.el5/kernel/drivers/isdn/i4l/isdn.ko /lib/modules/2.6.18-348.el5/kernel/drivers/net/slhc.ko /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/VERSION/kernel/drivers/usb/atm/usbatm.ko: /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/usb/misc/usblcd.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/usbled.ko: /lib/modules/VERSION/kernel/drivers/usb/class/usblp.ko: /lib/modules/VERSION/kernel/drivers/usb/net/usbnet.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/usbserial.ko: /lib/modules/VERSION/kernel/drivers/usb/misc/usbtest.ko: /lib/modules/VERSION/kernel/drivers/usb/input/usbtouchscreen.ko: /lib/modules/VERSION/kernel/drivers/media/video/usbvideo/usbvideo.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/usb/misc/uss720.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko /lib/modules/VERSION/kernel/drivers/media/video/uvc/uvcvideo.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/media/video/v4l1-compat.ko: /lib/modules/VERSION/kernel/drivers/media/video/v4l2-common.ko: /lib/modules/VERSION/kernel/fs/vfat/vfat.ko: /lib/modules/2.6.18-348.el5/kernel/fs/fat/fat.ko /lib/modules/VERSION/kernel/drivers/video/vga16fb.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/video/vgastate.ko /lib/modules/VERSION/kernel/drivers/video/vgastate.ko: /lib/modules/VERSION/kernel/drivers/char/drm/via.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/char/drm/drm.ko /lib/modules/VERSION/kernel/drivers/net/via-rhine.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/drivers/net/via-velocity.ko: /lib/modules/2.6.18-348.el5/kernel/lib/crc-ccitt.ko /lib/modules/VERSION/kernel/drivers/hwmon/via686a.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/media/video/usbvideo/vicam.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/acpi/video.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/video/backlight/backlight.ko /lib/modules/VERSION/kernel/drivers/media/video/video-buf.ko: /lib/modules/VERSION/kernel/drivers/media/video/videodev.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/virtio/virtio.ko: /lib/modules/VERSION/kernel/drivers/virtio/virtio_balloon.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/virtio/virtio.ko /lib/modules/VERSION/kernel/drivers/block/virtio_blk.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/virtio/virtio.ko /lib/modules/VERSION/kernel/drivers/char/virtio_console.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/virtio/virtio.ko /lib/modules/VERSION/kernel/drivers/net/virtio_net.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/virtio/virtio.ko /lib/modules/VERSION/kernel/drivers/virtio/virtio_pci.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/virtio/virtio_ring.ko /lib/modules/2.6.18-348.el5/kernel/drivers/virtio/virtio.ko /lib/modules/VERSION/kernel/drivers/virtio/virtio_ring.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/visor.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/net/phy/vitesse.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/phy/libphy.ko /lib/modules/VERSION/kernel/drivers/input/mouse/vsxxxaa.ko: /lib/modules/VERSION/kernel/drivers/hwmon/vt1211.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/vt8231.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/net/vxge/vxge.ko: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko /lib/modules/VERSION/kernel/drivers/hwmon/w83627ehf.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/hwmon/w83627hf.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/w83627hf_wdt.ko: /lib/modules/VERSION/kernel/drivers/hwmon/w83781d.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/w83791d.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/w83792d.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/w83793.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon-vid.ko /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/w83877f_wdt.ko: /lib/modules/VERSION/kernel/drivers/char/watchdog/w83977f_wdt.ko: /lib/modules/VERSION/kernel/drivers/hwmon/w83l785ts.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/hwmon/w83l786ng.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/w9968cf.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/compat_ioctl32.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/usb/input/wacom.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/wavelan_cs.ko: /lib/modules/VERSION/kernel/drivers/mmc/wbsd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/mmc/mmc_core.ko /lib/modules/VERSION/kernel/drivers/char/watchdog/wdt_pci.ko: /lib/modules/VERSION/kernel/drivers/usb/serial/whiteheat.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/serial/usbserial.ko /lib/modules/VERSION/kernel/drivers/net/tulip/winbond-840.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/net/mii.ko /lib/modules/VERSION/kernel/net/wireless/wireless_compat.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/wl3501_cs.ko: /lib/modules/VERSION/kernel/drivers/media/video/wm8739.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/media/video/wm8775.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko /lib/modules/VERSION/kernel/drivers/acpi/wmi.ko: /lib/modules/VERSION/kernel/crypto/wp512.ko: /lib/modules/VERSION/kernel/net/netfilter/x_tables.ko: /lib/modules/VERSION/kernel/crypto/xcbc.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_hash.ko /lib/modules/VERSION/kernel/drivers/xenpv_hvm/balloon/xen-balloon.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/xenpv_hvm/platform-pci/xen-platform-pci.ko /lib/modules/VERSION/kernel/drivers/xenpv_hvm/platform-pci/xen-platform-pci.ko: /lib/modules/VERSION/kernel/drivers/xenpv_hvm/blkfront/xen-vbd.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/xenpv_hvm/platform-pci/xen-platform-pci.ko /lib/modules/VERSION/kernel/drivers/xenpv_hvm/netfront/xen-vnif.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/xenpv_hvm/balloon/xen-balloon.ko /lib/modules/2.6.18-348.el5/kernel/drivers/xenpv_hvm/platform-pci/xen-platform-pci.ko /lib/modules/VERSION/kernel/net/ipv4/xfrm4_esp.ko: /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv4/xfrm4_mode_transport.ko: /lib/modules/VERSION/kernel/net/ipv4/xfrm4_mode_tunnel.ko: /lib/modules/VERSION/kernel/net/ipv4/xfrm4_tunnel.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/tunnel4.ko /lib/modules/VERSION/kernel/net/ipv6/xfrm6_esp.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv6/xfrm6_mode_transport.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/ipv6/xfrm6_mode_tunnel.ko: /lib/modules/VERSION/kernel/net/ipv6/xfrm6_tunnel.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/tunnel6.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/net/xfrm/xfrm_nalgo.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/VERSION/kernel/fs/xfs/xfs.ko: /lib/modules/VERSION/kernel/drivers/net/pcmcia/xirc2ps_cs.ko: /lib/modules/VERSION/kernel/drivers/net/tulip/xircom_cb.ko: /lib/modules/VERSION/kernel/drivers/md/xor.ko: /lib/modules/VERSION/kernel/drivers/usb/input/xpad.ko: /lib/modules/VERSION/kernel/net/netfilter/xt_CLASSIFY.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_CONNMARK.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_CONNSECMARK.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_DSCP.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_MARK.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_NFQUEUE.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_NOTRACK.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_SECMARK.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_comment.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_connbytes.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_connlimit.ko: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_connmark.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/netfilter/xt_conntrack.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/netfilter/xt_dccp.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_dscp.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_esp.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_helper.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/netfilter/xt_length.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_limit.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_mac.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_mark.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_multiport.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_physdev.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/bridge/bridge.ko /lib/modules/VERSION/kernel/net/netfilter/xt_pkttype.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_policy.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_quota.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_realm.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_sctp.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_state.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko /lib/modules/VERSION/kernel/net/netfilter/xt_statistic.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_string.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_tcpmss.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/net/netfilter/xt_tcpudp.ko: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko /lib/modules/VERSION/kernel/crypto/xts.ko: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_blkcipher.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_algapi.ko /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko /lib/modules/2.6.18-348.el5/kernel/crypto/gf128mul.ko /lib/modules/VERSION/kernel/drivers/usb/atm/xusbatm.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/atm/usbatm.ko /lib/modules/2.6.18-348.el5/kernel/net/atm/atm.ko /lib/modules/VERSION/kernel/drivers/usb/net/zaurus.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/cdc_ether.ko /lib/modules/2.6.18-348.el5/kernel/drivers/usb/net/usbnet.ko /lib/modules/VERSION/kernel/drivers/media/video/zc0301/zc0301.ko: /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/videodev.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l1-compat.ko /lib/modules/2.6.18-348.el5/kernel/drivers/media/video/v4l2-common.ko /lib/modules/VERSION/kernel/drivers/net/wireless/zd1201.ko: /lib/modules/VERSION/kernel/drivers/net/wireless/zd1211rw/zd1211rw.ko: /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/softmac/ieee80211softmac.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211.ko /lib/modules/2.6.18-348.el5/kernel/net/ieee80211/ieee80211_crypt.ko /lib/modules/VERSION/kernel/lib/zlib_deflate/zlib_deflate.ko:
Module Size Used by autofs4 62153 3 hidp 83521 2 rfcomm 104681 0 l2cap 89537 10 hidp,rfcomm bluetooth 118725 5 hidp,rfcomm,l2cap lockd 101425 0 sunrpc 203273 2 lockd ip_conntrack_netbios_ns 36033 0 ipt_REJECT 38849 1 xt_state 35265 2 ip_conntrack 92005 2 ip_conntrack_netbios_ns,xt_state nfnetlink 40457 1 ip_conntrack iptable_filter 36161 1 ip_tables 55457 1 iptable_filter ip6t_REJECT 38721 1 xt_tcpudp 36289 12 ip6table_filter 36033 1 ip6_tables 50177 1 ip6table_filter x_tables 50505 6 ipt_REJECT,xt_state,ip_tables,ip6t_REJECT,xt_tcpudp,ip6_tables be2iscsi 95837 0 ib_iser 68161 0 rdma_cm 73301 1 ib_iser ib_cm 71273 1 rdma_cm iw_cm 43593 1 rdma_cm ib_sa 76233 2 rdma_cm,ib_cm ib_mad 72037 2 ib_cm,ib_sa ib_core 107841 6 ib_iser,rdma_cm,ib_cm,iw_cm,ib_sa,ib_mad ib_addr 42697 1 rdma_cm iscsi_tcp 50893 0 bnx2i 82017 0 cnic 86761 1 bnx2i ipv6 438241 18 ip6t_REJECT,rdma_cm,ib_addr,cnic xfrm_nalgo 43333 1 ipv6 crypto_api 42945 1 xfrm_nalgo uio 45777 1 cnic cxgb3i 64849 0 libcxgbi 91597 1 cxgb3i cxgb3 217521 1 cxgb3i 8021q 58961 1 cxgb3 libiscsi_tcp 53573 3 iscsi_tcp,cxgb3i,libcxgbi libiscsi2 77765 7 be2iscsi,ib_iser,iscsi_tcp,bnx2i,cxgb3i,libcxgbi,libiscsi_tcp scsi_transport_iscsi2 73945 8 be2iscsi,ib_iser,iscsi_tcp,bnx2i,libcxgbi,libiscsi2 scsi_transport_iscsi 35017 1 scsi_transport_iscsi2 dm_multipath 58969 0 scsi_dh 42561 1 dm_multipath video 53197 0 backlight 39873 1 video sbs 49921 0 power_meter 47053 0 hwmon 36553 1 power_meter i2c_ec 38593 1 sbs dell_wmi 37601 0 wmi 41985 1 dell_wmi button 40545 0 battery 43849 0 asus_acpi 50917 0 acpi_memhotplug 40517 0 ac 38729 0 parport_pc 62952 0 lp 47121 0 parport 73165 2 parport_pc,lp sg 71033 0 snd_intel8x0 69481 0 snd_ac97_codec 143257 1 snd_intel8x0 ac97_bus 35649 1 snd_ac97_codec snd_seq_dummy 37061 0 snd_seq_oss 65473 0 snd_seq_midi_event 41025 1 snd_seq_oss snd_seq 87777 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event snd_seq_device 41557 3 snd_seq_dummy,snd_seq_oss,snd_seq snd_pcm_oss 77377 0 snd_mixer_oss 49985 1 snd_pcm_oss snd_pcm 117065 3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss i2c_piix4 43725 0 i2c_core 57537 2 i2c_ec,i2c_piix4 tpm_tis 48077 0 ide_cd 73825 0 snd_timer 57161 2 snd_seq,snd_pcm tpm 50273 1 tpm_tis snd 102633 9 snd_intel8x0,snd_ac97_codec,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer soundcore 41825 1 snd snd_page_alloc 44113 2 snd_intel8x0,snd_pcm pcspkr 36289 0 serio_raw 40517 0 e1000 162793 0 tpm_bios 40897 1 tpm cdrom 68713 1 ide_cd dm_raid45 99785 0 dm_message 36289 1 dm_raid45 dm_region_hash 46145 1 dm_raid45 dm_mem_cache 38977 1 dm_raid45 dm_snapshot 52233 0 dm_zero 35265 0 dm_mirror 54737 0 dm_log 44993 3 dm_raid45,dm_region_hash,dm_mirror dm_mod 102417 11 dm_multipath,dm_raid45,dm_snapshot,dm_zero,dm_mirror,dm_log ata_piix 57285 0 ahci 74317 2 libata 210769 2 ata_piix,ahci sd_mod 56513 3 scsi_mod 199641 11 be2iscsi,ib_iser,iscsi_tcp,bnx2i,libcxgbi,libiscsi2,scsi_transport_iscsi2,scsi_dh,sg,libata,sd_mod ext3 169937 2 jbd 95025 1 ext3 uhci_hcd 57433 0 ohci_hcd 56181 0 ehci_hcd 66765 0
filename: /lib/modules/2.6.18-348.el5/kernel/net/8021q/8021q.ko version: 1.8 license: GPL srcversion: 55D139B54B0A0F9B037D805 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5a691b84a64868995112ee4d09e3fc76b73bcd6665cd8c4a14fc913d644c8b3e24009f59ab2cb5ee1f3ea1e9a9223dd884442fbe1f032
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/ac.ko license: GPL description: ACPI AC Adapter Driver author: Paul Diefenbaugh srcversion: 807FCCDFB8445895B66713A depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a648689951126ac109f6c47692c1c2ab53d4d2e81f8923c2b3c51b42430a09587d24e3b371f9b4ad42ca78686b5f14b68870
filename: /lib/modules/2.6.18-348.el5/kernel/sound/ac97_bus.ko license: GPL srcversion: 10DB24586FCE8E7AEB0EA9B depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab36691b84a648689951122ee109f7368539ba3f11f2b21317ad17d6cd81b35a069509f695ca1889c113dc05b8af849cd20cc67316ebd34
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/acpi_memhotplug.ko license: GPL description: Hotplug Mem Driver author: Naveen B S <naveen.b.s@intel.com> srcversion: A63667F01385FAEE41F3BB3 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a648689951128fc09e34871c6f8a1ea3c3e4c3acf341cf083f6e58ab90a0872b2e1d8c8bc88eae0d49531f4923a4c1523
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/ahci.ko version: 3.0 license: GPL description: AHCI SATA low-level driver author: Jeff Garzik srcversion: 9CFD257FE25AEE5B3CA20DB depends: libata vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: skip_host_reset:skip global host reset (0=don't skip, 1=skip) (int) parm: ahci_em_messages:AHCI Enclosure Management Message control (0 = off, 1 = on) (int) parm: marvell_enable:Marvell SATA via AHCI (1 = enabled) (int) module_sig: 883f35050ecab55691b84a648689951123bc0a08ce6d8d78ecde3313f224f8bba7767196dbff70a0964342be746d884a805abf8c3bd692af36a1dc parm ahci_em_messages : 1 parm marvell_enable : 0 parm skip_host_reset : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/asus_acpi.ko license: GPL description: Asus Laptop ACPI Extras Driver author: Julien Lerouge, Karol Kozimor srcversion: 997C59CE97FDD7F11A156BD depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: asus_uid:UID for entries in /proc/acpi/asus. (uint) parm: asus_gid:GID for entries in /proc/acpi/asus. (uint) module_sig: 883f35050ecab4c691b84a648689951126c1509f4ecc8b7bf870ff14b22169a5b79fc6ba9ac9b3809b7635ff6bef88dce98e06dd2c9a53d2226a57e7
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/ata_piix.ko version: 2.12 license: GPL description: SCSI low-level driver for Intel PIIX/ICH ATA controllers author: Andre Hedrick, Alan Cox, Andrzej Krzysztofowicz, Jeff Garzik srcversion: AB4E3B9B7FB3E0844AC0D5B depends: libata vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab55691b84a648689951127ce109f50db4f61e2ec1d862c84dce459e0c68c4ae38409f4ce1ed17e74f6e319e13c72667ca472f6cecc26b
filename: /lib/modules/2.6.18-348.el5/kernel/fs/autofs4/autofs4.ko license: GPL srcversion: 08C691FA48A44717676E8BD depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab2d691b84a64868995112e9f09e3638583091ff2f02a259eb8c4624efb42dd9f509f528a428a8bb28c271a711f142223fe4851398
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/video/backlight/backlight.ko description: Backlight Lowlevel Control Abstraction author: Jamey Hicks <jamey.hicks@hp.com>, Andrew Zabolotny <zap@homelink.ru> license: GPL srcversion: 44D597E718114194B206540 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab39691b84a64868995112a41a09f7c6fc8c08e5df2977c8194b9c1dd2d94da209f7672f9d251cce5748473bd953f47bd84a0729884
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/battery.ko license: GPL description: ACPI Battery Driver author: Paul Diefenbaugh srcversion: A8C54309DE899B1E57CC838 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a64868995112b45309f41478cc37ce16488e93ac14e6761ed6733568d709f7d0fc1971a97164ed3ccbb95908f7657adc769
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/be2iscsi/be2iscsi.ko license: GPL author: Emulex Corporation version: 4.2.162.0r description: Emulex OnceConnectOpen-iSCSI Driver version4.2.162.0r Driver 4.2.162.0r srcversion: 538B2414A49608AC8C890BA depends: libiscsi2,scsi_transport_iscsi2,scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: be_iopoll_budget:int parm: enable_msix:int parm: be_max_phys_size:Maximum Size (In Kilobytes) of physicallycontiguous memory that can be allocated.Range is 16 - 128 (uint) module_sig: 883f35050ecab46691b84a64868995112182b09f7349fd27237af42a8a893fd32d50138652f57009f7fe1d59fda429799b3d6de4dab155fad827c078 parm be_max_phys_size : 64
filename: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/bluetooth.ko license: GPL version: 2.10 description: Bluetooth Core ver 2.10 author: Maxim Krasnyansky <maxk@qualcomm.com>, Marcel Holtmann <marcel@holtmann.org> srcversion: 65C056B2266EAB669590ECA depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5b691b84a64868995112d88509e328828c30be2cc324bdd4ddcfb688944fe292e09d19c3e95393e94d2a1a1ea67442ce71d4da7b6f
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/bnx2i/bnx2i.ko version: 2.7.2.2 license: GPL description: Broadcom NetXtreme II BCM5706/5708/5709/57710/57711/57712/57800/57810/57840 iSCSI Driver author: Anil Veerabhadrappa <anilgv@broadcom.com> and Eddie Wai <eddie.wai@broadcom.com> srcversion: 80C84D21B59C1979A40AEE2 depends: scsi_transport_iscsi2,libiscsi2,scsi_mod,cnic vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: event_coal_min:Event Coalescing Minimum Commands (int) parm: event_coal_div:Event Coalescing Divide Factor (int) parm: en_tcp_dack:Enable TCP Delayed ACK (int) parm: error_mask1:Config FW iSCSI Error Mask #1 (uint) parm: error_mask2:Config FW iSCSI Error Mask #2 (uint) parm: sq_size:Configure SQ size (int) parm: rq_size:Configure RQ size (int) module_sig: 883f35050ecab46691b84a64868995112462109e312eda1dcfc9e558b9f226b69eef4cc29731aff509d1b13de3166f3de046a3988c6a6d98338e48aacf parm en_tcp_dack : 1 parm error_mask1 : 0 parm error_mask2 : 0 parm event_coal_div : 2 parm event_coal_min : 24 parm rq_size : 16 parm sq_size : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/button.ko license: GPL description: ACPI Button Driver author: Paul Diefenbaugh srcversion: 1DE14683A37A03738CB92E9 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a64868995112998f09f5cc8648e3ed05970d98f5c1943602c63142bcec40a0956b9efb83aa21318daa3fe8e94ececcc9e4
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/cdrom/cdrom.ko license: GPL srcversion: 6BF630BA45F849C8E49E66E depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: debug:bool parm: autoclose:bool parm: autoeject:bool parm: lockdoor:bool parm: check_media_type:bool parm: mrw_format_restart:bool module_sig: 883f35050ecab3c691b84a64868995112ed509e3b978026342eb16217e12f475403ef53ebfc590a09b3d68ec55314ca6d8dd40d8113a506c45fc5c11
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/net/cnic.ko version: 2.5.12 license: GPL description: Broadcom NetXtreme II CNIC Driver author: Michael Chan <mchan@broadcom.com> and John(Zongxi) Chen (zongxi@broadcom.com srcversion: ABF88BA2BA883C51839F1C2 depends: uio,ipv6 vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4e691b84a64868995112382009a3c86d2988b172fb5edcc2cc9da42d5ddfbdc7309f51c9455eb7e9d6ccbab137accd2264489212bb
filename: /lib/modules/2.6.18-348.el5/kernel/crypto/crypto_api.ko description: Cryptographic API (backported) license: GPL srcversion: E43D2CB02DCEEE8535CD5E9 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab32691b84a6486899511293a509d1d3d90c3977f3efb10f0c8bd555e93895984a09f5f5baae1d318cb9f3445a7ef7e506cca52eb88be
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/net/cxgb3/cxgb3.ko version: 1.1.3-ko-1 license: Dual BSD/GPL author: Chelsio Communications description: Chelsio T3 Network Driver srcversion: 568DF2BFB125DBBCE1EFE15 depends: 8021q vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: dflt_msg_enable:Chelsio T3 default message enable bitmap (int) parm: msi:whether to use MSI or MSI-X (int) parm: ofld_disable:whether to enable offload at init time or not (int) module_sig: 883f35050ecab53691b84a64868995112e77b0a09ce37f6f522e6cc287c4808e519d17ee791b27440a091d6a2df7fc6359caa6b1573cc21d731c94f9a9 parm dflt_msg_enable : 255 parm msi : 2 parm ofld_disable : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/cxgbi/cxgb3i/cxgb3i.ko license: GPL version: 2.0.0 description: Chelsio T3 iSCSI Driver author: Chelsio Communications, Inc. srcversion: 8EE039A58A936E6E1FAD41B depends: libiscsi2,libcxgbi,libiscsi_tcp,cxgb3 vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: dbg_level:debug flag (default=0) (uint) parm: cxgb3i_rcv_win:TCP receive window in bytes (default=256KB) (int) parm: cxgb3i_snd_win:TCP send window in bytes (default=128KB) (int) parm: cxgb3i_rx_credit_thres:int parm: rx_credit_thres:RX credits return threshold in bytes (default=10KB) parm: cxgb3i_max_connect:Max. # of connections (default=8092) (uint) parm: cxgb3i_sport_base:starting port number (default=20000) (uint) module_sig: 883f35050ecab46691b84a64868995112dd610a0909730e6fae9ba8ff53daddc94ae71bb8b236e09e29273fac4b3faa1d823551514904984d285af parm cxgb3i_max_connect : 8192 parm cxgb3i_rcv_win : 262144 parm cxgb3i_rx_credit_thres : 10240 parm cxgb3i_snd_win : 131072 parm cxgb3i_sport_base : 20000 parm dbg_level : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/dell-wmi.ko license: GPL description: Dell laptop WMI hotkeys driver author: Matthew Garrett <mjg@redhat.com> srcversion: F1A0CD91954A85B12713C71 depends: wmi vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a6486899511269730a0b1c6556fd3311ff19f9fdcb990cb98658f3e131009cb323418e4324783cc6e1f3a66eb8397941726d
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-log.ko license: GPL author: Joe Thornber, Heinz Mauelshagen <dm-devel@redhat.com> description: device-mapper dirty region log srcversion: AE03EC5F3340D49B3DA9561 depends: dm-mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a64868995112c37b09e30617718ba31722185d4c06f581ad6fbf7aa109f466bde643e3bbc709faaf9a23d472741e464e3
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mem-cache.ko license: GPL author: Heinz Mauelshagen <hjm@redhat.com> description: device-mapper dm memory cache srcversion: 694DDE912374B5A629F3E3F depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a648689951128f5d09c96950d849f8b2289d7cd6ea1ffdf6d742b2155509c836cc8fa643adb48ff89066c33133556837e6e0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-message.ko license: GPL author: Heinz Mauelshagen <hjm@redhat.com> description: device-mapper device-mapper target message parser srcversion: CC44DA1427DD3C06A151F01 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab39691b84a64868995112b7c00a0921e22ce307e631f98e775a23d47029e55a59c09f78ebf5e0ebecfe7f57ffce8a0aa96b66b581a57
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mirror.ko license: GPL author: Joe Thornber description: device-mapper mirror target srcversion: 745777D6E890015C6881BB8 depends: dm-mod,dm-log vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a64868995112a6a0a08629312edb14f76837b3560453de575037205309f64a31e2edd5baa86f4436ade78c3d1a939af90
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-mod.ko license: GPL author: Joe Thornber <dm-devel@redhat.com> description: device-mapper driver srcversion: 497676556144BEBC0334536 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: major:The major number of the device mapper (uint) module_sig: 883f35050ecab3a691b84a648689951125b7a0a084f1b39fb55a1e2b189e55ecc1b6bdd8e16b700a08a8ef5f566363762328c3a2df594cc7231b2ace
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-multipath.ko license: GPL author: Sistina Software <dm-devel@redhat.com> description: device-mapper multipath target srcversion: 4BAFD78E7E55F1ECEFAE485 depends: scsi_dh,dm-mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a64868995112e8cb0a0ab5536ac608efe254ea41f098507bd11240f14d0a09399e8f73e659153105981e8311fceb589f710
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-raid45.ko license: GPL author: Heinz Mauelshagen <hjm@redhat.com> description: device-mapper raid4/5 target srcversion: E8386C0747D36CA0C3755AF depends: dm-mod,dm-log,dm-mem-cache,dm-region_hash,dm-message vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab39691b84a64868995112fc5309e34a4ee172f24f3f7234f944971897236cff562d09e3e7617de7cef25fb7eb9c6edc9da6d94ec95f6
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-region_hash.ko license: GPL author: Heinz Mauelshagen <hjm@redhat.com> description: device-mapper region hash srcversion: 68102ECCF2EA9C39147BBD1 depends: dm-log vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a64868995112675609f4860f4da84ea462be971e32eea011666225d4210a0852dfcf9b9e6eb4e1165f8f2a22ffd4ef06f27
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-snapshot.ko license: GPL author: Joe Thornber description: device-mapper snapshot target srcversion: 7FC7E6FCC036097BF90C24D depends: dm-mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a64868995112597f0a0aadec2e9957d1e68672b5af198161d8f1af8e63b09f65421389a28b721f178814ba2b238ea7a1df1
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/md/dm-zero.ko license: GPL description: device-mapper dummy target returning zeros author: Christophe Saout <christophe@saout.de> srcversion: 84CF09E8D3A782C44FD5049 depends: dm-mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3a691b84a6486899511261c0a08d5443bef71f88928ae9c9c58e55a43f354709109f74825bb159cae22587fd3df6fefe5466b689e4
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/net/e1000/e1000.ko version: 7.3.21-k4-3-NAPI license: GPL description: Intel(R) PRO/1000 Network Driver author: Intel Corporation, <linux.nics@intel.com> srcversion: 33E8B555167E9BCC6A1C604 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: TxDescriptors:Number of transmit descriptors (array of int) parm: TxDescPower:Binary exponential size (2^X) of each transmit descriptor (array of int) parm: RxDescriptors:Number of receive descriptors (array of int) parm: Speed:Speed setting (array of int) parm: Duplex:Duplex setting (array of int) parm: AutoNeg:Advertised auto-negotiation setting (array of int) parm: FlowControl:Flow Control setting (array of int) parm: XsumRX:Disable or enable Receive Checksum offload (array of int) parm: TxIntDelay:Transmit Interrupt Delay (array of int) parm: TxAbsIntDelay:Transmit Absolute Interrupt Delay (array of int) parm: RxIntDelay:Receive Interrupt Delay (array of int) parm: RxAbsIntDelay:Receive Absolute Interrupt Delay (array of int) parm: InterruptThrottleRate:Interrupt Throttling Rate (array of int) parm: SmartPowerDownEnable:Enable PHY smart power down (array of int) parm: KumeranLockLoss:Enable Kumeran lock loss workaround (array of int) parm: copybreak:Maximum size of packet that is copied to a new buffer on receive (uint) parm: debug:Debug level (0=none,...,16=all) (int) module_sig: 883f35050ecab4e691b84a64868995112c03f0a0b0fa172524b1e758662ca6da1ce611bb5b9fc57709f6ea4374738c9edabb25b93e937063e3a3b201d parm copybreak : 256
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/host/ehci-hcd.ko license: GPL author: David Brownell description: 10 Dec 2004 USB 2.0 'Enhanced' Host Controller (EHCI) Driver srcversion: 4328061B4585174F0269516 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: log2_irq_thresh:log2 IRQ latency, 1-64 microframes (int) parm: park:park setting; 1-3 back-to-back async packets (uint) module_sig: 883f35050ecab55691b84a6486899511253b309cdf1be81fe59adf86eab9916a38b4be13f1894509e2b8511adf134c8359234de2e62978e92c34cbc parm log2_irq_thresh : 0 parm park : 0
filename: /lib/modules/2.6.18-348.el5/kernel/fs/ext3/ext3.ko license: GPL description: Second Extended Filesystem with journaling extensions author: Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others srcversion: 88830F60313F056DFDC9C04 depends: jbd vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab2d691b84a64868995112105e09f68761cd1475b29e21d5f8058cbadf96abed2d09f7643a52b28af346b2c33c3e1c2a0e4ee0ff8e36
filename: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/hidp/hidp.ko license: GPL version: 1.1 description: Bluetooth HIDP ver 1.1 author: Marcel Holtmann <marcel@holtmann.org> srcversion: F6110A784FD4060F29C39C7 depends: bluetooth,l2cap vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5b691b84a648689951127c909b77cf165d66c0ebadc565a817ba0e83af0eb2e09b45df227ded728d1ae91f237176e457f86dad8f6
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/hwmon/hwmon.ko license: GPL description: hardware monitoring sysfs/class support author: Mark M. Hoffman <mhoffman@lightlink.com> srcversion: E30459EA5FFE823E4C2AB91 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4b691b84a6486899511284b40a090e9d8de4d837725104c973e75885ee4b74891c509e20b2628f5eaf8c5dc8b9a77ecffad85458f48175
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/i2c-core.ko license: GPL description: I2C-Bus main module author: Simon G. Vogl <simon@tk.uni-linz.ac.at> srcversion: 9782F53DA34F82902104D82 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab58691b84a64868995112e1bd09e25ed712e71fb2a356a4a8af453bb769ae6174f0a090e5bf89a2f57f3a162318d5eae8befdf1cd459
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/i2c_ec.ko description: ACPI EC SMBus driver author: Ducrot Bruno license: GPL srcversion: 844C87139477DD9D92E55CF depends: i2c-core vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a64868995112c8c20a0aaadd71b3ef1d8ad9dae73aeece7d2a9af9d8dd09f7e67478a5472ec9b36494f4542235c66c58c698
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/i2c/busses/i2c-piix4.ko license: GPL description: PIIX4 SMBus driver author: Frodo Looijaard <frodol@dds.nl> and Philip Edelbrock <phil@netroedge.com> srcversion: 174D8E8801C7A2770AC2EA5 depends: i2c-core vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: force:Forcibly enable the PIIX4. DANGEROUS! (int) parm: force_addr:Forcibly enable the PIIX4 at the given address. EXTREMELY DANGEROUS! (int) module_sig: 883f35050ecab58691b84a6486899511242240a099eb668b16e6f6afa622b742daafbc7d7f182ab0a08e1b696c70af5ed71189a1bcb94d7feae2692b4
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_addr.ko license: Dual BSD/GPL description: IB Address Translation author: Sean Hefty srcversion: 33459CFE7D6973819C2A7BF depends: ipv6 vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab45691b84a648689951127d9b09f6466d85eef6caa697394cd426e4f1ed419fc23cd09f6e72a6f776a9cd78a06498dd598d5e72c747f1
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_cm.ko license: Dual BSD/GPL description: InfiniBand CM author: Sean Hefty srcversion: 08CBDB36AB5BDE6F83763F9 depends: ib_core,ib_mad,ib_sa vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: max_timeout:Maximum IB CM per message timeout (default=21, or ~8 seconds) (int) module_sig: 883f35050ecab45691b84a6486899511263ad09e32b0daed9d5fd7b1cae5aae8414d56f8296f99a09a2fcfc8f4b23eab56ce96f23b5b48e31dd7cf7c0 parm max_timeout : 21
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_core.ko license: Dual BSD/GPL description: core kernel InfiniBand API author: Roland Dreier srcversion: 0E7872FACE5DE60299B9EEB depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab45691b84a648689951121b3d09d15e686d18c50a95e17fc288b7ab329b448659d9c0a0a17f2423f99e1848a5b460aa3a5db7901acfa9
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/ulp/iser/ib_iser.ko author: Alex Nezhinsky, Dan Bar Dov, Or Gerlitz license: Dual BSD/GPL description: iSER (iSCSI Extensions for RDMA) Datamover v0.1 (May 7th, 2006) srcversion: 63FD796BA1C07A890FCC1C5 depends: libiscsi2,scsi_transport_iscsi2,ib_core,rdma_cm,scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: max_lun:uint parm: debug_level:Enable debug tracing if > 0 (default:disabled) (int) module_sig: 883f35050ecab45691b84a648689951123f5509e28fb244d53f4de56a895d51a9f7eebeb1ae90410a09e233bc2c753c21fe5a3deef9d7ac47a49687 parm debug_level : 0 parm max_lun : 512
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_mad.ko author: Sean Hefty author: Hal Rosenstock description: kernel IB MAD API license: Dual BSD/GPL srcversion: AA0911070E7279E83A38B60 depends: ib_core vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: send_queue_size:Size of send queue in number of work requests (int) parm: recv_queue_size:Size of receive queue in number of work requests (int) module_sig: 883f35050ecab45691b84a6486899511293309cada23e1c926cd3297bf9a1746a3c2b5edf397f0a0a67cb51d27eaeae8bf186be603eaa0948026 parm recv_queue_size : 512 parm send_queue_size : 128
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/ib_sa.ko license: Dual BSD/GPL description: InfiniBand subnet administration query support author: Roland Dreier license: Dual BSD/GPL description: InfiniBand InformInfo & Notice event handling author: Sean Hefty license: Dual BSD/GPL description: InfiniBand subnet administration caching author: Sean Hefty srcversion: BA60C1C82BB1015F82C1B48 depends: ib_core,ib_mad vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: paths_per_dest:Maximum number of paths to retrieve to each destination (DGID). Set to 0 to disable cache. parm: subscribe_inform_info:Subscribe for SA InformInfo/Notice events. parm: lookup_method:Method used to return path records when multiple paths exist to a given destination. parm: mcast_leave_retries:Number of retries for multicast leave requests before giving up module_sig: 883f35050ecab45691b84a648689951126c909f7e5f7d3475ef96a62e88b17fed6d77f73bb91fc709f4528398ecfe14e40515a707d30f9949484f3de4c parm lookup_method : * 0 round robin parm lookup_method : 1 random parm mcast_leave_retries : 3 parm paths_per_dest : 0 parm subscribe_inform_info : Y
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/ide/ide-cd.ko license: GPL description: ATAPI CD-ROM Driver srcversion: 3A764E82B4FF39B71DC91CA depends: cdrom vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: ignore:charp module_sig: 883f35050ecab4c691b84a64868995112484a0a0b05f2d6641f4121462ec980b24633cc85c2dfde09e2261e9b32176d9b6b4edb75c24df79f87e0974d parm ignore : <NULL>
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6_tables.ko description: IPv6 packet filter author: Netfilter Core Team <coreteam@netfilter.org> license: GPL srcversion: 84A8026D4526BC069271000 depends: x_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5b691b84a648689951121ace09f59db162f2c376742b8c319d3e2ca543e469f429509e37b35a35bf64310c3fc25dbf2b2de2499474fa
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6t_REJECT.ko license: GPL description: IP6 tables REJECT target module author: Yasuyuki KOZAKAI <yasuyuki.kozakai@toshiba.co.jp> srcversion: 34EB18CDF9552C0922B414F depends: ipv6,x_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5c691b84a6486899511218ac09d19a18de62c166b9ba37bab82a779b23ea64abf09f5f3ae33413b0d64362690bf56681544b672
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/netfilter/ip6table_filter.ko description: ip6tables filter table author: Netfilter Core Team <coreteam@netfilter.org> license: GPL srcversion: 3E091BB0E38F4A546A76F4A depends: ip6_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: forward:bool module_sig: 883f35050ecab5c691b84a64868995112e39309f6f8dcf1536fa90c4474794fe49b92e58942c0509e295bba0c34f586ffb68cde5c7ce3d1a572adde
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack.ko license: GPL srcversion: C328C656F760BAA0FD72F18 depends: nfnetlink vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5d691b84a64868995112fed09f7c149367d78ee7618488b35c792cc813336a0f109e3a9465d5a22cd0b1702daca8a24259aca982914c parm hashsize : 2047
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_conntrack_netbios_ns.ko license: GPL description: NetBIOS name service broadcast connection tracking helper author: Patrick McHardy <kaber@trash.net> srcversion: 2CD3536046C4DF7C8FE4921 depends: ip_conntrack vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: timeout:timeout for master connection/replies in seconds (uint) module_sig: 883f35050ecab5f691b84a64868995112f7d109f6af88ad6e2a796fbbd5ee01e327239e267d951109f61b6c02972391aaf761f56dba3fb13a8e1ff18eb parm timeout : 3
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ip_tables.ko description: IPv4 packet filter author: Netfilter Core Team <coreteam@netfilter.org> license: GPL srcversion: 74C701D3909A81B51D2C29B depends: x_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5e691b84a648689951125f2409cb2efe6323d44a726e1625013ccbffb13924c09f527fd95ad510a5b6ad7f269114bccd14bc44f4
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/ipt_REJECT.ko description: iptables REJECT target module author: Netfilter Core Team <coreteam@netfilter.org> license: GPL srcversion: 56DCEB21FF6825151060F69 depends: x_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5d691b84a6486899511228e809f7c538b9d314392f121615c111c8dd0b1488eb7280a08314dfcfdd481f71e0df32f7636d2c1d4ec9dd9
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv4/netfilter/iptable_filter.ko description: iptables filter table author: Netfilter Core Team <coreteam@netfilter.org> license: GPL srcversion: DA5D898EA52C1CFD63C36D3 depends: ip_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: forward:bool module_sig: 883f35050ecab5d691b84a64868995112862a09f4e19fad4754b495957ff36bb8a1112fedd632a09f75c9413db66979a348e70d4fb93188ab2566f29
filename: /lib/modules/2.6.18-348.el5/kernel/net/ipv6/ipv6.ko license: GPL description: IPv6 protocol stack for Linux author: Cast of dozens srcversion: 44FBCE193DB64A3517E17FC depends: xfrm_nalgo vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: disable:Disable IPv6 module such that it is non-functional (int) parm: disable_ipv6:Disable IPv6 on all interfaces (int) parm: autoconf:Enable IPv6 address autoconfiguration on all interfaces (int) module_sig: 883f35050ecab5b691b84a64868995112a72d0a091f9feab172ac1f40dcbd45e07325cbc4e24fc09cf5489327769b1355280fcc2ee8cafe688d32849 parm autoconf : 1 parm disable : 0 parm disable_ipv6 : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/iscsi_tcp.ko license: GPL description: iSCSI/TCP data-path author: Mike Christie <michaelc@cs.wisc.edu>, Dmitry Yusupov <dmitry_yus@yahoo.com>, Alex Aizman <itn780@yahoo.com> srcversion: 60BC8BEAADCF2CF55C4F9B0 depends: libiscsi2,libiscsi_tcp,scsi_transport_iscsi2,scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: max_lun:uint parm: debug_iscsi_tcp:Turn on debugging for iscsi_tcp module Set to 1 to turn on, and zero to turn off. Default is off. (int) module_sig: 883f35050ecab47691b84a6486899511255a0a0993b5da7626c6c9b92894fb2bbc0324cf328409e2e4b4aa399592adf8c6624242865dee46953129 parm debug_iscsi_tcp : 0 parm max_lun : 512
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/iw_cm.ko license: Dual BSD/GPL description: iWARP CM author: Tom Tucker srcversion: 2D764D3F2D8167C6AF4BB49 depends: ib_core vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab45691b84a64868995112ab1809f50353204ad28344c0a8c1844144eb7f443ae4c909e364a9b58c9e46db8b87b5c30cf98c08ec23860b5
filename: /lib/modules/2.6.18-348.el5/kernel/fs/jbd/jbd.ko license: GPL srcversion: D2A70FA9B767749DCC352F3 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab2d691b84a64868995112ce7009f41578f57e756b02ef69bcbb69b6ef3f1327716fc09e316eb71c17ea6e455b25153fd5ca5ef67dbf7df
filename: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/l2cap.ko license: GPL version: 2.8 description: Bluetooth L2CAP ver 2.8 author: Maxim Krasnyansky <maxk@qualcomm.com>, Marcel Holtmann <marcel@holtmann.org> srcversion: 694250022D6B471E2D0E1BA depends: bluetooth vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5b691b84a64868995112a72109e2c5c80f68ee61ff74ffa94be4b8b17ff99190a409f7a85b3f5a0444b37fecb8aa03517ee43a81ffe
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/ata/libata.ko version: 3.00 license: GPL description: Library module for ATA devices author: Jeff Garzik srcversion: 0863C323D9227DB9F1EF92C depends: scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: acpi_gtf_filter:filter mask for ACPI _GTF commands, set to filter out (0x1=set xfermode, 0x2=lock/freeze lock) (int) parm: force:Force ATA configurations including cable type, link speed and transfer mode (see Documentation/kernel-parameters.txt for details) (string) parm: atapi_enabled:Enable discovery of ATAPI devices (0=off, 1=on) (int) parm: atapi_dmadir:Enable ATAPI DMADIR bridge support (0=off, 1=on) (int) parm: atapi_passthru16:Enable ATA_16 passthru for ATAPI devices; on by default (0=off, 1=on) (int) parm: fua:FUA support (0=off, 1=on) (int) parm: ignore_hpa:Ignore HPA limit (0=keep BIOS limits, 1=ignore limits, using full disk) (int) parm: dma:DMA enable/disable (0x1==ATA, 0x2==ATAPI, 0x4==CF) (int) parm: ata_probe_timeout:Set ATA probing timeout (seconds) (int) parm: noacpi:Disables the use of ACPI in probe/suspend/resume when set (int) parm: allow_tpm:Permit the use of TPM commands (int) module_sig: 883f35050ecab54691b84a64868995112472309e34ab46171192c82ceb9953cd6823823d355fd4d60a08fe059c0b624f7b2b4a894b59a346e4c1b2c66d parm acpi_gtf_filter : 3 parm allow_tpm : 0 parm ata_probe_timeout : 30000 parm atapi_dmadir : 0 parm atapi_enabled : 1 parm atapi_passthru16 : 1 parm dma : 7 parm fua : 0 parm ignore_hpa : 0 parm noacpi : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/cxgbi/libcxgbi.ko license: GPL version: 0.9.0 description: Chelsio iSCSI driver library author: Chelsio Communications, Inc. srcversion: 56E2DC4C532F87CD0925654 depends: scsi_transport_iscsi2,libiscsi2,libiscsi_tcp,scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: dbg_level:libiscsi debug level (default=0) (uint) module_sig: 883f35050ecab46691b84a64868995112a62a09f66adb52d7fbccea5cd9585cc735f74483509309f61e8cccc434d7e8c392b1bd1aade2e3410d1e7e9 parm dbg_level : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi2.ko license: GPL description: iSCSI library functions author: Mike Christie srcversion: 8E1CBBE99C4C036EA28E73B depends: scsi_transport_iscsi2,scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: debug_libiscsi:Turn on debugging for libiscsi module. Set to 1 to turn on, and zero to turn off. Default is off. (int) module_sig: 883f35050ecab48691b84a648689951125e2e09d1a9d48e9c93cb62eed2bac6fa9e876c4545a23d0a0967522f345128d4d2a24c8165f5a10386e592e parm debug_libiscsi : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/libiscsi_tcp.ko license: GPL description: iSCSI/TCP data-path author: Mike Christie <michaelc@cs.wisc.edu>, Dmitry Yusupov <dmitry_yus@yahoo.com>, Alex Aizman <itn780@yahoo.com> srcversion: 869C604E5499134ED7F8ABE depends: libiscsi2 vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: debug_libiscsi_tcp:Turn on debugging for libiscsi_tcp module. Set to 1 to turn on, and zero to turn off. Default is off. (int) module_sig: 883f35050ecab45691b84a6486899511230e20a090dc40495760a434027ab896593d8e7bbcaaa7e09f6797883ce2314ccf1b91b4ba849527547d22053 parm debug_libiscsi_tcp : 0
filename: /lib/modules/2.6.18-348.el5/kernel/fs/lockd/lockd.ko license: GPL description: NFS file locking service version 0.5. author: Olaf Kirch <okir@monad.swb.de> srcversion: F2B99B384BEBF411A2FE1DD depends: sunrpc vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: nlm_max_connections:uint module_sig: 883f35050ecab2d691b84a64868995112e86509d1aacce23df27eb43efd8dc46ad827715ab728f8d0a096a1e37ee8c1545d3d48ec8d36961bddf98bede parm nlm_grace_period : 0 parm nlm_max_connections : 1024 parm nlm_tcpport : 0 parm nlm_timeout : 10 parm nlm_udpport : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/char/lp.ko license: GPL srcversion: 3B97CBF6A63877A4E026DA9 depends: parport vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: parport:array of charp parm: reset:bool module_sig: 883f35050ecab3a691b84a64868995112b3a709f59b0edfc48b1c16e914c5adcde842ea96e4425709d133aa23f5cb193f992e539beb1bd817c1986c7d3
filename: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/nfnetlink.ko author: Harald Welte <laforge@netfilter.org> license: GPL srcversion: 534CCF99A5723062787C661 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab61691b84a648689951126fcd09f43f8201017c3557c3a1d3a9ef653fb6bf489a6109a253b262fe87668d897ec47fa7282fca795e72c
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/host/ohci-hcd.ko license: GPL description: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver author: Roman Weissgaerber, David Brownell srcversion: 7FCF9760687B187AAFCE959 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: distrust_firmware:true to distrust firmware power/overcurrent setup (bool) parm: no_handshake:true (not default) disables BIOS handshake (bool) module_sig: 883f35050ecab55691b84a64868995112f1c209e3972b43ed027cf9510a52760ccf7d1418c82a509e39721668357579dac96fa867896e3608bb7dd3b
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport.ko license: GPL srcversion: FDA3D21E571EC3B4AE6FB8A depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab58691b84a6486899511239b309e214233e4e4287d9597a0fadc7bdb3316ca8b97c909f533ef53975382d2c964ebb18e1a87b10b59516
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/parport/parport_pc.ko license: GPL description: PC-style parallel port driver author: Phil Blundell, Tim Waugh, others srcversion: 2D16408D75BAA7D8757D719 depends: parport vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: io:Base I/O address (SPP regs) (array of int) parm: io_hi:Base I/O address (ECR) (array of int) parm: irq:IRQ line (array of charp) parm: dma:DMA channel (array of charp) parm: init_mode:Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp) (charp) module_sig: 883e35050ecab58691b84a648689951121b5709f4baaa8491895b2d71c1abcd68d3dfb3269fbbc098abab229312342ef86660493c9f8418e72be8
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/input/misc/pcspkr.ko license: GPL description: PC Speaker beeper driver author: Vojtech Pavlik <vojtech@ucw.cz> srcversion: C5FA9784D87E8EFAEA6C78F depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4d691b84a64868995112887909f74aef6d77f31844d2c659ba8abdc3e9d7a62c3b0a0af32229e9852ebbe5e28dbe861ade96bece73b8
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/power_meter.ko license: GPL description: ACPI 4.0 power meter driver author: Darrick J. Wong <djwong@us.ibm.com> srcversion: 94868F51C7F6F2780306C2A depends: hwmon vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: force_cap_on:Enable power cap even it is unsafe to do so. (bool) module_sig: 883f35050ecab4c691b84a64868995112ebc30a0903e888b203346d1cfff985e9f6e48f99a9c73f909f6aeb61c9de02d1bd95464588ffea2bac1fd847 parm force_cap_on : N
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/infiniband/core/rdma_cm.ko license: Dual BSD/GPL description: Generic RDMA CM Agent author: Sean Hefty srcversion: E10673A76691C863D193724 depends: ib_addr,ib_cm,iw_cm,ib_core,ib_sa,ipv6 vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: tavor_quirk:Tavor performance quirk: limit MTU to 1K if > 0 (int) parm: unify_tcp_port_space:Unify the host TCP and RDMA port space allocation (default=0) (int) parm: cma_response_timeout:CMA_CM_RESPONSE_TIMEOUT default=20 (int) parm: def_prec2sl:Default value for SL priority with RoCE. Valid values 0 - 7 (int) module_sig: 883f35050ecab45691b84a64868995112ddbb09e39c9b82d3c7feda55ffb0fae7ff72be363089ba09e36446de0f32b82c24bb3294b11b43f63437a22 parm cma_response_timeout : 20 parm def_prec2sl : 3 parm tavor_quirk : 0 parm unify_tcp_port_space : 0
filename: /lib/modules/2.6.18-348.el5/kernel/net/bluetooth/rfcomm/rfcomm.ko license: GPL version: 1.8 description: Bluetooth RFCOMM ver 1.8 author: Maxim Krasnyansky <maxk@qualcomm.com>, Marcel Holtmann <marcel@holtmann.org> srcversion: C357E2C843C73D646363D03 depends: bluetooth,l2cap vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: disable_cfc:Disable credit based flow control (bool) parm: channel_mtu:Default MTU for the RFCOMM channel (int) parm: l2cap_mtu:Default MTU for the L2CAP connection (uint) module_sig: 883f35050ecab5b691b84a64868995112eddc09d1f79c0243e5f80434325efdf9ee338438d8c0900a0962462836b4f388c5f3e65a61d5ff9a4c8cfd29 parm channel_mtu : -1 parm disable_cfc : N parm l2cap_mtu : 1013
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/sbs.ko license: GPL description: Smart Battery System ACPI interface driver author: Rich Townsend srcversion: FE0F8A6187358F2A2912AAA depends: i2c_ec vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: capacity_mode:int parm: update_mode:int parm: update_info_mode:int parm: update_time:int parm: update_time2:int module_sig: 883f35050ecab4c691b84a648689951121ea509f63af0c62a5868bf5ed8f4dfde8d9698d4daa82b0a0a07d13a312566d15dd3657bbcd6eb5fc4a9f118 parm capacity_mode : 3 parm update_info_mode : 0 parm update_mode : 2 parm update_time : 60 parm update_time2 : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/device_handler/scsi_dh.ko license: GPL author: Chandra Seetharaman <sekharan@us.ibm.com> description: SCSI device handler srcversion: 1DECADB06C0B0E84EC3305A depends: scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab47691b84a64868995112e0570a09ddc703b1b2b24486c788207e19e23b222e961609f5bc6e7f7caf2ce263b80cd57da9e7b35cf5528e7
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_mod.ko license: GPL description: SCSI core srcversion: 375518ABE87F79792C3C2C9 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: dev_flags:Given scsi_dev_flags=vendor:model:flags[,v:m:f] add black/white list entries for vendor and model with an integer value of flags to the scsi device info list (string) parm: default_dev_flags:scsi default device flag integer value (int) parm: max_luns:last scsi LUN (should be between 1 and 2^32-1) (int) parm: max_report_luns:REPORT LUNS maximum number of LUNS received (should be between 1 and 16384) (int) parm: inq_timeout:Timeout (in seconds) waiting for devices to answer INQUIRY. Default is 5. Some non-compliant devices need more. (int) parm: scsi_logging_level:a bit mask of logging levels (int) module_sig: 883f35050ecab48691b84a64868995112b8b109d1cd4b4beaa6f3fde44832216884c192b5fed4709f41d656e0150e1f34721313fc027dd1560632ab1 parm default_dev_flags : 0 parm inq_timeout : 5 parm max_luns : 512 parm max_report_luns : 511 parm scsi_logging_level : 0
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi.ko version: 2.0-871 license: GPL description: Compat wrapper for iSCSI Transport Interface srcversion: 5E93604F9A0F393DD7F25EC depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab48691b84a648689951122e610a0b069b883bcca37ea568c5853c8ab9c87ec344609b65aeae023aebd4d671280b4a39454b2374c3d
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/scsi_transport_iscsi2.ko version: 2.0-871 license: GPL description: iSCSI Transport Interface author: Mike Christie <michaelc@cs.wisc.edu>, Dmitry Yusupov <dmitry_yus@yahoo.com>, Alex Aizman <itn780@yahoo.com> srcversion: 3B993C9FB8C4D737999AE68 depends: scsi_mod,scsi_transport_iscsi vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab45691b84a648689951122e980a09d6e8e4bdc444c4412f380a1f8c5b48a3b7c757109f701412ba192c7119d0411638e7e0793d4539d964
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/sd_mod.ko license: GPL description: SCSI disk (sd) driver author: Eric Youngdale srcversion: 0A5A6B51F01CF6D959B848E depends: scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab46691b84a6486899511249309f79612cfbfbb54744fb8121714bd4c9c185f73af09f65437fb7b18e190161546d0f928efb719556cb5
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/input/serio/serio_raw.ko license: GPL description: Raw serio driver author: Dmitry Torokhov <dtor@mail.ru> srcversion: 88A8F9C0A668DDBA68F9BF2 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4d691b84a64868995112642e09f67c4819b89e74619994d489199163b4754e8910a097b6a29dca6df08e574a60d21cd9c95ccaad56c5
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/scsi/sg.ko version: 3.5.34 license: GPL description: SCSI generic (sg) driver author: Douglas Gilbert srcversion: F094B907C9369FFBB64EFFD depends: scsi_mod vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: scatter_elem_sz:scatter gather element size (default: max(SG_SCATTER_SZ, PAGE_SIZE)) (int) parm: def_reserved_size:size of buffer reserved for each fd (int) parm: allow_dio:allow direct I/O (default: 0 (disallow)) (int) module_sig: 883f35050ecab47691b84a64868995112ab8d09f5d41eade8d7128116b1c5ca7851ee16cae3e57409e2c41ced51674acb474b5d5836da45afd034cc8b parm allow_dio : 0 parm def_reserved_size : 32768 parm scatter_elem_sz : 32768
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd.ko license: GPL description: Advanced Linux Sound Architecture driver for soundcards. author: Jaroslav Kysela <perex@suse.cz> srcversion: C808996E5FAA92A6228B676 depends: soundcore vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: major:Major # for sound driver. (int) parm: cards_limit:Count of auto-loadable soundcards. (int) module_sig: 883f35050ecab36691b84a648689951123110a0991fa988cc8f2b9d862928558ed49a1068b1d47009f7d6feb1f3af134feb0b3dd3565ff929b17cc5ba parm cards_limit : 1 parm major : 116
filename: /lib/modules/2.6.18-348.el5/kernel/sound/pci/ac97/snd-ac97-codec.ko license: GPL description: Universal interface for Audio Codec '97 author: Jaroslav Kysela <perex@suse.cz> srcversion: 93A77153C2AABF1251E6928 depends: snd,ac97_bus,snd-pcm vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: enable_loopback:Enable AC97 ADC/DAC Loopback Control (bool) module_sig: 883f35050ecab35691b84a64868995112197209e2c55288b825ac56ddd027e587ffe2973f1dae09f6f52d3cdb984a23ba61138ff25fb60c8acf9e2e0 parm enable_loopback : N
filename: /lib/modules/2.6.18-348.el5/kernel/sound/pci/snd-intel8x0.ko license: GPL description: Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; SiS 7012; Ali 5455 author: Jaroslav Kysela <perex@suse.cz> srcversion: 56305AF2C9701A6A6FD5B94 depends: snd-ac97-codec,snd-pcm,snd-page-alloc,snd vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: index:Index value for Intel i8x0 soundcard. (int) parm: id:ID string for Intel i8x0 soundcard. (charp) parm: ac97_clock:AC'97 codec clock (0 = auto-detect). (int) parm: ac97_quirk:AC'97 workaround for strange hardware. (charp) parm: buggy_semaphore:Enable workaround for hardwares with problematic codec semaphores. (bool) parm: buggy_irq:Enable workaround for buggy interrupts on some motherboards. (bool) parm: xbox:Set to 1 for Xbox, if you have problems with the AC'97 codec detection. (bool) parm: spdif_aclink:S/PDIF over AC-link. (int) parm: enable:bool parm: joystick:int module_sig: 883f35050ecab35691b84a648689951127d10a0aaf8ae04f1f1e1bd237e5145728ab02f405fe0a09a3ea7e6f68ef7f25a9e9680e0bf40aaf26edf8 parm ac97_clock : 0 parm ac97_quirk : <NULL> parm buggy_irq : N parm buggy_semaphore : N parm enable : N parm id : <NULL> parm index : 0 parm joystick : 0 parm spdif_aclink : 0 parm xbox : N
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/oss/snd-mixer-oss.ko license: GPL description: Mixer OSS emulation for ALSA. author: Jaroslav Kysela <perex@suse.cz> srcversion: 2B87F1F2056F14F13E54626 depends: snd vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab35691b84a6486899511267810a0ab8a856f395ea2f668c9b6524c5b08af55924d09e2fb4839695494b32e8a069d3ed385a64e4b56ba7
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-page-alloc.ko license: GPL description: Memory allocator for ALSA system. author: Takashi Iwai <tiwai@suse.de>, Jaroslav Kysela <perex@suse.cz> srcversion: F11A038EA496F9198B7F744 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab36691b84a64868995112c64409cba16319894703719f777f84bc13e8384da785a09e3ec2864730fe2ed6e38d3bbee2ee0233966c5a4
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-pcm.ko license: GPL description: Midlevel PCM code for ALSA. author: Jaroslav Kysela <perex@suse.cz>, Abramo Bagnara <abramo@alsa-project.org> srcversion: 1B0FEFB8CF54FBC5CADF559 depends: snd,snd-page-alloc,snd-timer vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: preallocate_dma:Preallocate DMA memory when the PCM devices are initialized. (int) parm: maximum_substreams:Maximum substreams with preallocated DMA memory. (int) module_sig: 883f35050ecab35691b84a648689951126dd409e28a69ddeb89d646ef75f6d2db81cdd61ee1873e09cfe9b5f7d314c17533c49ffebb36f81b764ef0 parm maximum_substreams : 4 parm preallocate_dma : 1
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/oss/snd-pcm-oss.ko license: GPL description: PCM OSS emulation for ALSA. author: Jaroslav Kysela <perex@suse.cz>, Abramo Bagnara <abramo@alsa-project.org> srcversion: 2D3F15094CF5718FC16405E depends: snd-pcm,snd,snd-mixer-oss vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: dsp_map:PCM device number assigned to 1st OSS device. (array of int) parm: adsp_map:PCM device number assigned to 2nd OSS device. (array of int) parm: nonblock_open:Don't block opening busy PCM devices. (bool) module_sig: 883f35050ecab35691b84a64868995112f14f09cd73cefa3ee1e9c96594d86a5be7fc8850a61f3209f72be279d18bb302e65826e3fd4a0afdba57085b7 parm adsp_map : 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 parm dsp_map : 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 parm nonblock_open : Y
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq.ko license: GPL description: Advanced Linux Sound Architecture sequencer. author: Frank van de Pol <fvdpol@coil.demon.nl>, Jaroslav Kysela <perex@suse.cz> srcversion: 724E9B01FE4BC26329F3245 depends: snd,snd-seq-device,snd-timer vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: seq_client_load:The numbers of global (system) clients to load through kmod. (array of int) parm: seq_default_timer_class:The default timer class. (int) parm: seq_default_timer_sclass:The default timer slave class. (int) parm: seq_default_timer_card:The default timer card number. (int) parm: seq_default_timer_device:The default timer device number. (int) parm: seq_default_timer_subdevice:The default timer subdevice number. (int) parm: seq_default_timer_resolution:The default timer resolution in Hz. (int) module_sig: 883f35050ecab36691b84a64868995112ea4209e2c9ba4e291895adea850615c1e4d7b24c2dcf9d60a09288f386ff938adfa65c189bc360467c4ee1d035 parm seq_client_load : 14,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 parm seq_default_timer_card : -1 parm seq_default_timer_class : 1 parm seq_default_timer_device : 1 parm seq_default_timer_resolution : 0 parm seq_default_timer_sclass : 0 parm seq_default_timer_subdevice : 0
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-device.ko license: GPL description: ALSA sequencer device management author: Takashi Iwai <tiwai@suse.de> srcversion: CE8B0C47CE1D0204C68B068 depends: snd vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab36691b84a6486899511257d409e280e618a317973fc09917625c8030d528edeab109d159dc35a4bb9a5afa8f532db06cd21590690b7
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-dummy.ko license: GPL description: ALSA sequencer MIDI-through client author: Takashi Iwai <tiwai@suse.de> srcversion: 423EAF6F2CBD9C43052F0E9 depends: snd-seq,snd-seq-device vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: ports:number of ports to be created (int) parm: duplex:create DUPLEX ports (bool) module_sig: 883f35050ecab36691b84a6486899511295aa0a0822131b9b32aca2c619ee768f86ac8402a5019c309b5b6601cc11ec5f7aa9ea5768488c5bc75883892 parm duplex : N parm ports : 1
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/snd-seq-midi-event.ko license: GPL description: MIDI byte <-> sequencer event coder author: Takashi Iwai <tiwai@suse.de>, Jaroslav Kysela <perex@suse.cz> srcversion: CDFB142CD45AC79176DD6F6 depends: snd-seq vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab36691b84a648689951122e8a09f6547af11516a46b3276c7448c411a666306dfe3b09f6ecda3d3d54967b2144d4067c79d1a96961c3f
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/seq/oss/snd-seq-oss.ko license: GPL description: OSS-compatible sequencer module author: Takashi Iwai <tiwai@suse.de> srcversion: 73084089714A51A425C6D7D depends: snd-seq,snd-seq-midi-event,snd-seq-device,snd vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: maxqlen:maximum queue length (int) parm: seq_oss_debug:debug option (int) module_sig: 883f35050ecab36691b84a64868995112e1e909e2792e1bd1f6b81dc816bc6f15576b5f8fd3821e009f789cd2f8ffc629791cda2942514a17e4228a5dec parm maxqlen : 1024 parm seq_oss_debug : 0
filename: /lib/modules/2.6.18-348.el5/kernel/sound/core/snd-timer.ko license: GPL description: ALSA timer interface author: Jaroslav Kysela <perex@suse.cz>, Takashi Iwai <tiwai@suse.de> srcversion: DBCB6A8C3F4B9CDA9FCE370 depends: snd vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: timer_limit:Maximum global timers in system. (int) module_sig: 883f35050ecab35691b84a64868995112a72809a2d27870228c4f4e7a6c498494aef3ab1708e09f61fab66415ba26bf435ed5be3c49110a87e4858 parm timer_limit : 2
filename: /lib/modules/2.6.18-348.el5/kernel/sound/soundcore.ko license: GPL author: Alan Cox description: Core sound module srcversion: 548AA54AF08207316C104F8 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab36691b84a64868995112328b0a096cafe2e533b9bcfedcfc095cac8de2d898e38f09e2020e55f443960b783d64320ee32ce672eec113a
filename: /lib/modules/2.6.18-348.el5/kernel/net/sunrpc/sunrpc.ko license: GPL srcversion: 24BF4682817CF766A3067A7 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: min_resvport:portnr parm: max_resvport:portnr parm: tcp_slot_table_entries:slot_table_size parm: udp_slot_table_entries:slot_table_size module_sig: 883f35050ecab62691b84a648689951126d4d09d158655b4f4c027f2ff76f1717b6f261d2fe75e09f4af4d052684886cad07962c3c4507982167f609a parm max_resvport : 1023 parm min_resvport : 665 parm tcp_slot_table_entries : 16 parm udp_slot_table_entries : 16
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm.ko license: GPL version: 2.0 description: TPM Driver author: Leendert van Doorn (leendert@watson.ibm.com) srcversion: F71F26D12F13CED7BE056D7 depends: tpm_bios vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3b691b84a648689951122c3709e3397f48be068f41be88e9ea88bd812dad3115bcb0a0951f568f882a2f0384ca1bdc6d4d8916d7cfcb7
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_bios.ko license: GPL srcversion: E18F5773A2D02602DE1CEBF depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab3b691b84a64868995112dbb80a0af131e85ce4ba662bcec53819dfa45a1238aeed0a093ac46e61fe1c9312544385b470fc5746feda3
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/char/tpm/tpm_tis.ko license: GPL version: 2.0 description: TPM Driver author: Leendert van Doorn (leendert@watson.ibm.com) srcversion: F5403694466AA910963A8E8 depends: tpm vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 parm: interrupts:Enable interrupts (bool) parm: hid:Set additional specific HID for this driver to probe (string) parm: force:Force device probe rather than using ACPI entry (bool) module_sig: 883f35050ecab3b691b84a648689951129b490a0ad8b529effd696c2876481e874f222d4d461a209f4037059397bee369b287f5f8435e39a9085be parm force : N parm interrupts : Y
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/usb/host/uhci-hcd.ko license: GPL description: USB Universal Host Controller Interface driver author: Linus 'Frodo Rabbit' Torvalds, Johannes Erdfelt, Randy Dunlap, Georg Acher, Deti Fliegl, Thomas Sailer, Roman Weissgaerber, Alan Stern srcversion: C2D6BC74F9C873EB90ABBC7 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab55691b84a648689951127bd09cdbb842ffd40394d9ea6d313abd4bb213e6899009f7721afe4978fa91543fe3fd352b3ad3b15bcebfe
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/uio/uio.ko license: GPL v2 srcversion: A7DD6D4DF6759DC8B14B9E7 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4e691b84a6486899511275b509e3daacbffba84a704aec2be2f396dbf88592e909b4e8482a57d87e525b62ff209c8b0427bd0fd3b
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/video.ko license: GPL description: ACPI Video Driver author: Bruno Ducrot srcversion: 10F5EBF049C559FE92947CC depends: backlight vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a64868995112906f0a08e62aefde57ce1f587e033e02446bb3e522886d809f5737aaf150c76569954411979a01945d3cb42e
filename: /lib/modules/2.6.18-348.el5/kernel/drivers/acpi/wmi.ko license: GPL description: ACPI-WMI Mapping Driver author: Carlos Corbacho srcversion: 863FD2B7B992531362527DA depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab4c691b84a64868995112cfe509e384e28a204ea69a988959803aeff36f682982d109f6475139801bacf6ce46feebb0111a39ec3974a
filename: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/x_tables.ko description: [ip,ip6,arp]_tables backend module author: Harald Welte <laforge@netfilter.org> license: GPL srcversion: CCA9CA162C4C5007D758B81 depends: vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab61691b84a64868995112a0c0a093e1d4ccbef91c25ba507ad58731927535ebbf6d0a095dc5b236f1b1e0cf11d55c5ba41a90f98ba1c4
filename: /lib/modules/2.6.18-348.el5/kernel/net/xfrm/xfrm_nalgo.ko license: GPL srcversion: ACB808E256EE13D4DE0E78E depends: crypto_api vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab5a691b84a64868995112a21709f612571a58b9ad2b4979695ace9665a9654697c20a09ac23e84cc3d12334599d5a2438d16bfa9ac4a
filename: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/xt_state.ko description: ip[6]_tables connection tracking state match module author: Rusty Russell <rusty@rustcorp.com.au> license: GPL srcversion: F6B91ACBD0E26C745A2ECB5 depends: x_tables,ip_conntrack vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab60691b84a64868995112b8910a080101e57dec791d7a1b54f5d99f3cd52ba3b5f50a0b177188648a46ad821e9337992711b6c215aaf
filename: /lib/modules/2.6.18-348.el5/kernel/net/netfilter/xt_tcpudp.ko license: GPL description: x_tables match for TCP and UDP, supports IPv4 and IPv6 srcversion: D00D5BCAE1B7A8479654A07 depends: x_tables vermagic: 2.6.18-348.el5 SMP mod_unload gcc-4.1 module_sig: 883f35050ecab61691b84a64868995112bb8109f768bbff2f6812da056b8f645e562115d8bdfdf9609e2abc416145671bf81c48fad39a44e12d09a66a0
parm nr_uarts : 4 parm share_irqs : 1
parm debug : 0 parm debug_ratelimit : 1
parm immediate_undock : Y
parm debug : N parm panicblink : 500
parm noraid : 0
parm brl_nbchords : 1 parm brl_timeout : 300
parm start_dirty_degraded : 0 parm start_ro : 0
parm tap_time : 200 parm xres : 1024 parm yres : 768
parm debug : N parm debug_acpi : N
parm io_speed : 0
parm cis_speed : 300 parm cis_width : 0 parm reset_time : 10 parm resume_delay : 20 parm setup_delay : 10 parm shutdown_delay : 3 parm unreset_check : 10 parm unreset_delay : 10 parm unreset_limit : 30 parm vcc_settle : 40
parm intel_via_libata : 0
parm printk_time : 0
parm bm_history : 4294967295 parm ignore_ppc : -1 parm max_cstate : 8
parm proto : auto parm proto : parm rate : 100 parm resetafter : 5 parm resolution : 200 parm resync_time : 0 parm smartscroll : Y
parm probe_mem : 1
parm beta : 819 parm fast_convergence : 1 parm initial_ssthresh : 0 parm low_window : 14 parm max_increment : 16 parm smooth_part : 20
parm blinkenlights : N parm initial_descriptor_timeout : 5000 parm old_scheme_first : N parm usbfs_snoop : N parm use_both_schemes : Y
parm mousepoll : 0
parm disable_clkrun : N parm isa_probe : Y parm pwr_irqs_off : N
filename:/boot/config-2.6.18-348.el5 CONFIG_X86_64=y CONFIG_64BIT=y CONFIG_X86=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_HAVE_GET_USER_PAGES_FAST=y CONFIG_SEMAPHORE_SLEEPERS=y CONFIG_MMU=y CONFIG_RWSEM_GENERIC_SPINLOCK=y CONFIG_GENERIC_HWEIGHT=y CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_X86_CMPXCHG=y CONFIG_EARLY_PRINTK=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_DMI=y CONFIG_AUDIT_ARCH=y CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" CONFIG_EXPERIMENTAL=y CONFIG_LOCK_KERNEL=y CONFIG_INIT_ENV_ARG_LIMIT=32 CONFIG_LOCALVERSION="" CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_POSIX_MQUEUE=y CONFIG_BSD_PROCESS_ACCT=y CONFIG_TASKSTATS=y CONFIG_TASK_DELAY_ACCT=y CONFIG_TASK_IO_ACCOUNTING=y CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y CONFIG_CPUSETS=y CONFIG_RELAY=y CONFIG_INITRAMFS_SOURCE="" CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_UID16=y CONFIG_TASK_XACCT=y CONFIG_SYSCTL=y CONFIG_KALLSYMS=y CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS_EXTRA_PASS=y CONFIG_HOTPLUG=y CONFIG_PRINTK=y CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y CONFIG_ANON_INODES=y CONFIG_EPOLL=y CONFIG_EVENTFD=y CONFIG_SHMEM=y CONFIG_SLAB=y CONFIG_VM_EVENT_COUNTERS=y CONFIG_TRACEPOINTS=y CONFIG_MARKERS=y CONFIG_RT_MUTEXES=y CONFIG_BASE_SMALL=0 CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y CONFIG_MODVERSIONS=y CONFIG_MODULE_SRCVERSION_ALL=y CONFIG_MODULE_SIG=y CONFIG_KMOD=y CONFIG_STOP_MACHINE=y CONFIG_PTRACE=y CONFIG_UTRACE=y CONFIG_LBD=y CONFIG_BLK_DEV_IO_TRACE=y CONFIG_LSF=y CONFIG_IOSCHED_NOOP=y CONFIG_IOSCHED_AS=y CONFIG_IOSCHED_DEADLINE=y CONFIG_IOSCHED_CFQ=y CONFIG_DEFAULT_CFQ=y CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_X86_PC=y CONFIG_GENERIC_CPU=y CONFIG_X86_L1_CACHE_BYTES=128 CONFIG_X86_L1_CACHE_SHIFT=7 CONFIG_X86_INTERNODE_CACHE_BYTES=128 CONFIG_X86_TSC=y CONFIG_X86_GOOD_APIC=y CONFIG_MICROCODE=m CONFIG_X86_MSR=y CONFIG_X86_CPUID=y CONFIG_X86_HT=y CONFIG_X86_IO_APIC=y CONFIG_X86_LOCAL_APIC=y CONFIG_MTRR=y CONFIG_SMP=y CONFIG_SCHED_SMT=y CONFIG_SCHED_MC=y CONFIG_PREEMPT_VOLUNTARY=y CONFIG_PREEMPT_BKL=y CONFIG_PREEMPT_NOTIFIERS=y CONFIG_NUMA=y CONFIG_K8_NUMA=y CONFIG_NODES_SHIFT=6 CONFIG_X86_64_ACPI_NUMA=y CONFIG_ARCH_DISCONTIGMEM_ENABLE=y CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_MEMORY_PROBE=y CONFIG_SELECT_MEMORY_MODEL=y CONFIG_SPARSEMEM_MANUAL=y CONFIG_SPARSEMEM=y CONFIG_NEED_MULTIPLE_NODES=y CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_MEMORY_HOTPLUG=y CONFIG_MEMORY_HOTPLUG_SPARSE=y CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_MIGRATION=y CONFIG_RESOURCES_64BIT=y CONFIG_MMU_NOTIFIER=y CONFIG_MMU_NOTIFIER_TABSZ=512 CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y CONFIG_NR_CPUS=255 CONFIG_HOTPLUG_CPU=y CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y CONFIG_TRACK_DIRTY_PAGES=y CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_TICK_DIVIDER=y CONFIG_IOMMU=y CONFIG_CALGARY_IOMMU=y CONFIG_AMD_IOMMU=y CONFIG_IOMMU_HELPER=y CONFIG_SWIOTLB=y CONFIG_X86_MCE=y CONFIG_X86_MCE_INTEL=y CONFIG_X86_MCE_AMD=y CONFIG_KEXEC=y CONFIG_CRASH_DUMP=y CONFIG_HZ_1000=y CONFIG_HZ=1000 CONFIG_REORDER=y CONFIG_K8_NB=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_ISA_DMA_API=y CONFIG_GENERIC_PENDING_IRQ=y CONFIG_PM=y CONFIG_PM_LEGACY=y CONFIG_SOFTWARE_SUSPEND=y CONFIG_PM_STD_PARTITION="" CONFIG_SUSPEND_SMP=y CONFIG_ACPI=y CONFIG_ACPI_SLEEP=y CONFIG_ACPI_SLEEP_PROC_FS=y CONFIG_ACPI_AC=m CONFIG_ACPI_BATTERY=m CONFIG_ACPI_BUTTON=m CONFIG_ACPI_VIDEO=m CONFIG_ACPI_FAN=y CONFIG_ACPI_DOCK=y CONFIG_ACPI_PROCESSOR=y CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_THERMAL=y CONFIG_ACPI_NUMA=y CONFIG_ACPI_WMI=m CONFIG_ACPI_ASUS=m CONFIG_ACPI_TOSHIBA=m CONFIG_ACPI_POWER_METER=m CONFIG_ACPI_BLACKLIST_YEAR=0 CONFIG_ACPI_EC=y CONFIG_ACPI_POWER=y CONFIG_ACPI_SYSTEM=y CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=y CONFIG_ACPI_HOTPLUG_MEMORY=m CONFIG_ACPI_SBS=m CONFIG_DELL_WMI=m CONFIG_THINKPAD_ACPI=m CONFIG_THINKPAD_ACPI_BAY=y CONFIG_THINKPAD_ACPI_VIDEO=y CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_TABLE=m CONFIG_CPU_FREQ_DEBUG=y CONFIG_CPU_FREQ_STAT=m CONFIG_CPU_FREQ_STAT_DETAILS=y CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_PERFORMANCE=y CONFIG_CPU_FREQ_GOV_POWERSAVE=m CONFIG_CPU_FREQ_GOV_USERSPACE=y CONFIG_CPU_FREQ_GOV_ONDEMAND=m CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m CONFIG_X86_POWERNOW_K8=m CONFIG_X86_POWERNOW_K8_ACPI=y CONFIG_X86_SPEEDSTEP_CENTRINO=m CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y CONFIG_X86_ACPI_CPUFREQ=m CONFIG_PCI=y CONFIG_PCI_DIRECT=y CONFIG_PCI_MMCONFIG=y CONFIG_VIRTIO=m CONFIG_VIRTIO_RING=m CONFIG_VIRTIO_PCI=m CONFIG_VIRTIO_BALLOON=m CONFIG_IOMMU_API=y CONFIG_DMAR=y CONFIG_DMAR_GFX_WA=y CONFIG_DMAR_FLOPPY_WA=y CONFIG_PCIEPORTBUS=y CONFIG_HOTPLUG_PCI_PCIE=m CONFIG_PCIEAER=y CONFIG_PCIE_ECRC=y CONFIG_PCIEAER_INJECT=m CONFIG_PCI_DOMAINS=y CONFIG_PCI_MSI=y CONFIG_PCI_STUB=y CONFIG_PCI_IOV=y CONFIG_PCCARD=y CONFIG_PCMCIA=y CONFIG_PCMCIA_LOAD_CIS=y CONFIG_PCMCIA_IOCTL=y CONFIG_CARDBUS=y CONFIG_YENTA=y CONFIG_YENTA_O2=y CONFIG_YENTA_RICOH=y CONFIG_YENTA_TI=y CONFIG_YENTA_ENE_TUNE=y CONFIG_YENTA_TOSHIBA=y CONFIG_PD6729=m CONFIG_PCCARD_NONSTATIC=y CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_FAKE=m CONFIG_HOTPLUG_PCI_ACPI=m CONFIG_HOTPLUG_PCI_ACPI_IBM=m CONFIG_HOTPLUG_PCI_SHPC=m CONFIG_BINFMT_ELF=y CONFIG_BINFMT_MISC=y CONFIG_IA32_EMULATION=y CONFIG_COMPAT=y CONFIG_SYSVIPC_COMPAT=y CONFIG_NET=y CONFIG_PACKET=y CONFIG_PACKET_MMAP=y CONFIG_UNIX=y CONFIG_XFRM=y CONFIG_XFRM_NALGO=m CONFIG_XFRM_USER=y CONFIG_NET_KEY=m CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y CONFIG_ASK_IP_FIB_HASH=y CONFIG_IP_FIB_HASH=y CONFIG_IP_MULTIPLE_TABLES=y CONFIG_IP_ROUTE_FWMARK=y CONFIG_IP_ROUTE_MULTIPATH=y CONFIG_IP_ROUTE_VERBOSE=y CONFIG_NET_IPIP=m CONFIG_NET_IPGRE=m CONFIG_NET_IPGRE_BROADCAST=y CONFIG_IP_MROUTE=y CONFIG_IP_PIMSM_V1=y CONFIG_IP_PIMSM_V2=y CONFIG_SYN_COOKIES=y CONFIG_INET_AH=m CONFIG_INET_ESP=m CONFIG_INET_IPCOMP=m CONFIG_INET_XFRM_TUNNEL=m CONFIG_INET_TUNNEL=m CONFIG_INET_XFRM_MODE_TRANSPORT=m CONFIG_INET_XFRM_MODE_TUNNEL=m CONFIG_INET_DIAG=m CONFIG_INET_TCP_DIAG=m CONFIG_TCP_CONG_ADVANCED=y CONFIG_TCP_CONG_BIC=y CONFIG_TCP_CONG_CUBIC=m CONFIG_TCP_CONG_WESTWOOD=m CONFIG_TCP_CONG_HTCP=m CONFIG_TCP_CONG_HSTCP=m CONFIG_TCP_CONG_HYBLA=m CONFIG_TCP_CONG_VEGAS=m CONFIG_TCP_CONG_SCALABLE=m CONFIG_TCP_CONG_LP=m CONFIG_TCP_CONG_VENO=m CONFIG_INET_LRO=y CONFIG_IP_VS=m CONFIG_IP_VS_TAB_BITS=12 CONFIG_IP_VS_PROTO_TCP=y CONFIG_IP_VS_PROTO_UDP=y CONFIG_IP_VS_PROTO_ESP=y CONFIG_IP_VS_PROTO_AH=y CONFIG_IP_VS_RR=m CONFIG_IP_VS_WRR=m CONFIG_IP_VS_LC=m CONFIG_IP_VS_WLC=m CONFIG_IP_VS_LBLC=m CONFIG_IP_VS_LBLCR=m CONFIG_IP_VS_DH=m CONFIG_IP_VS_SH=m CONFIG_IP_VS_SED=m CONFIG_IP_VS_NQ=m CONFIG_IP_VS_FTP=m CONFIG_IPV6=m CONFIG_IPV6_PRIVACY=y CONFIG_IPV6_ROUTER_PREF=y CONFIG_IPV6_ROUTE_INFO=y CONFIG_IPV6_OPTIMISTIC_DAD=y CONFIG_INET6_AH=m CONFIG_INET6_ESP=m CONFIG_INET6_IPCOMP=m CONFIG_INET6_XFRM_TUNNEL=m CONFIG_INET6_TUNNEL=m CONFIG_INET6_XFRM_MODE_TRANSPORT=m CONFIG_INET6_XFRM_MODE_TUNNEL=m CONFIG_IPV6_TUNNEL=m CONFIG_IPV6_MULTIPLE_TABLES=y CONFIG_IPV6_ROUTE_FWMARK=y CONFIG_NETWORK_SECMARK=y CONFIG_NETFILTER=y CONFIG_BRIDGE_NETFILTER=y CONFIG_NETFILTER_NETLINK=m CONFIG_NETFILTER_NETLINK_QUEUE=m CONFIG_NETFILTER_NETLINK_LOG=m CONFIG_NETFILTER_XTABLES=m CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m CONFIG_NETFILTER_XT_TARGET_CONNMARK=m CONFIG_NETFILTER_XT_TARGET_MARK=m CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m CONFIG_NETFILTER_XT_TARGET_NOTRACK=m CONFIG_NETFILTER_XT_TARGET_SECMARK=m CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m CONFIG_NETFILTER_XT_TARGET_DSCP=m CONFIG_NETFILTER_XT_MATCH_COMMENT=m CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m CONFIG_NETFILTER_XT_MATCH_CONNMARK=m CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m CONFIG_NETFILTER_XT_MATCH_DCCP=m CONFIG_NETFILTER_XT_MATCH_DSCP=m CONFIG_NETFILTER_XT_MATCH_ESP=m CONFIG_NETFILTER_XT_MATCH_HELPER=m CONFIG_NETFILTER_XT_MATCH_LENGTH=m CONFIG_NETFILTER_XT_MATCH_LIMIT=m CONFIG_NETFILTER_XT_MATCH_MAC=m CONFIG_NETFILTER_XT_MATCH_MARK=m CONFIG_NETFILTER_XT_MATCH_POLICY=m CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m CONFIG_NETFILTER_XT_MATCH_QUOTA=m CONFIG_NETFILTER_XT_MATCH_REALM=m CONFIG_NETFILTER_XT_MATCH_SCTP=m CONFIG_NETFILTER_XT_MATCH_STATE=m CONFIG_NETFILTER_XT_MATCH_STATISTIC=m CONFIG_NETFILTER_XT_MATCH_STRING=m CONFIG_NETFILTER_XT_MATCH_TCPMSS=m CONFIG_IP_NF_CONNTRACK=m CONFIG_IP_NF_CT_ACCT=y CONFIG_IP_NF_CONNTRACK_MARK=y CONFIG_IP_NF_CONNTRACK_SECMARK=y CONFIG_IP_NF_CONNTRACK_EVENTS=y CONFIG_IP_NF_CONNTRACK_NETLINK=m CONFIG_IP_NF_CT_PROTO_SCTP=m CONFIG_IP_NF_FTP=m CONFIG_IP_NF_IRC=m CONFIG_IP_NF_NETBIOS_NS=m CONFIG_IP_NF_TFTP=m CONFIG_IP_NF_AMANDA=m CONFIG_IP_NF_PPTP=m CONFIG_IP_NF_H323=m CONFIG_IP_NF_SIP=m CONFIG_IP_NF_QUEUE=m CONFIG_IP_NF_IPTABLES=m CONFIG_IP_NF_MATCH_IPRANGE=m CONFIG_IP_NF_MATCH_TOS=m CONFIG_IP_NF_MATCH_RECENT=m CONFIG_IP_NF_MATCH_ECN=m CONFIG_IP_NF_MATCH_DSCP=m CONFIG_IP_NF_MATCH_AH=m CONFIG_IP_NF_MATCH_TTL=m CONFIG_IP_NF_MATCH_OWNER=m CONFIG_IP_NF_MATCH_ADDRTYPE=m CONFIG_IP_NF_MATCH_HASHLIMIT=m CONFIG_IP_NF_FILTER=m CONFIG_IP_NF_TARGET_REJECT=m CONFIG_IP_NF_TARGET_LOG=m CONFIG_IP_NF_TARGET_ULOG=m CONFIG_IP_NF_TARGET_TCPMSS=m CONFIG_IP_NF_NAT=m CONFIG_IP_NF_NAT_NEEDED=y CONFIG_IP_NF_TARGET_MASQUERADE=m CONFIG_IP_NF_TARGET_REDIRECT=m CONFIG_IP_NF_TARGET_NETMAP=m CONFIG_IP_NF_TARGET_SAME=m CONFIG_IP_NF_NAT_SNMP_BASIC=m CONFIG_IP_NF_NAT_IRC=m CONFIG_IP_NF_NAT_FTP=m CONFIG_IP_NF_NAT_TFTP=m CONFIG_IP_NF_NAT_AMANDA=m CONFIG_IP_NF_NAT_PPTP=m CONFIG_IP_NF_NAT_H323=m CONFIG_IP_NF_NAT_SIP=m CONFIG_IP_NF_MANGLE=m CONFIG_IP_NF_TARGET_TOS=m CONFIG_IP_NF_TARGET_ECN=m CONFIG_IP_NF_TARGET_DSCP=m CONFIG_IP_NF_TARGET_TTL=m CONFIG_IP_NF_TARGET_CLUSTERIP=m CONFIG_IP_NF_RAW=m CONFIG_IP_NF_ARPTABLES=m CONFIG_IP_NF_ARPFILTER=m CONFIG_IP_NF_ARP_MANGLE=m CONFIG_IP6_NF_QUEUE=m CONFIG_IP6_NF_IPTABLES=m CONFIG_IP6_NF_MATCH_RT=m CONFIG_IP6_NF_MATCH_OPTS=m CONFIG_IP6_NF_MATCH_FRAG=m CONFIG_IP6_NF_MATCH_HL=m CONFIG_IP6_NF_MATCH_OWNER=m CONFIG_IP6_NF_MATCH_IPV6HEADER=m CONFIG_IP6_NF_MATCH_AH=m CONFIG_IP6_NF_MATCH_EUI64=m CONFIG_IP6_NF_FILTER=m CONFIG_IP6_NF_TARGET_LOG=m CONFIG_IP6_NF_TARGET_REJECT=m CONFIG_IP6_NF_MANGLE=m CONFIG_IP6_NF_TARGET_HL=m CONFIG_IP6_NF_RAW=m CONFIG_BRIDGE_NF_EBTABLES=m CONFIG_BRIDGE_EBT_BROUTE=m CONFIG_BRIDGE_EBT_T_FILTER=m CONFIG_BRIDGE_EBT_T_NAT=m CONFIG_BRIDGE_EBT_802_3=m CONFIG_BRIDGE_EBT_AMONG=m CONFIG_BRIDGE_EBT_ARP=m CONFIG_BRIDGE_EBT_IP=m CONFIG_BRIDGE_EBT_LIMIT=m CONFIG_BRIDGE_EBT_MARK=m CONFIG_BRIDGE_EBT_PKTTYPE=m CONFIG_BRIDGE_EBT_STP=m CONFIG_BRIDGE_EBT_VLAN=m CONFIG_BRIDGE_EBT_ARPREPLY=m CONFIG_BRIDGE_EBT_DNAT=m CONFIG_BRIDGE_EBT_MARK_T=m CONFIG_BRIDGE_EBT_REDIRECT=m CONFIG_BRIDGE_EBT_SNAT=m CONFIG_BRIDGE_EBT_LOG=m CONFIG_BRIDGE_EBT_ULOG=m CONFIG_IP_DCCP=m CONFIG_INET_DCCP_DIAG=m CONFIG_IP_DCCP_ACKVEC=y CONFIG_IP_DCCP_CCID2=m CONFIG_IP_DCCP_CCID3=m CONFIG_IP_DCCP_TFRC_LIB=m CONFIG_IP_SCTP=m CONFIG_SCTP_HMAC_MD5=y CONFIG_RDS=m CONFIG_RDS_RDMA=m CONFIG_RDS_TCP=m CONFIG_TIPC=m CONFIG_ATM=m CONFIG_ATM_CLIP=m CONFIG_ATM_LANE=m CONFIG_ATM_BR2684=m CONFIG_BRIDGE=m CONFIG_BRIDGE_IGMP_SNOOPING=y CONFIG_VLAN_8021Q=m CONFIG_LLC=y CONFIG_NET_SCHED=y CONFIG_NET_SCH_CLK_GETTIMEOFDAY=y CONFIG_NET_SCH_CBQ=m CONFIG_NET_SCH_HTB=m CONFIG_NET_SCH_HFSC=m CONFIG_NET_SCH_ATM=m CONFIG_NET_SCH_PRIO=m CONFIG_NET_SCH_RED=m CONFIG_NET_SCH_SFQ=m CONFIG_NET_SCH_TEQL=m CONFIG_NET_SCH_TBF=m CONFIG_NET_SCH_GRED=m CONFIG_NET_SCH_DSMARK=m CONFIG_NET_SCH_NETEM=m CONFIG_NET_SCH_INGRESS=m CONFIG_NET_CLS=y CONFIG_NET_CLS_BASIC=m CONFIG_NET_CLS_TCINDEX=m CONFIG_NET_CLS_ROUTE4=m CONFIG_NET_CLS_ROUTE=y CONFIG_NET_CLS_FW=m CONFIG_NET_CLS_U32=m CONFIG_CLS_U32_PERF=y CONFIG_CLS_U32_MARK=y CONFIG_NET_CLS_RSVP=m CONFIG_NET_CLS_RSVP6=m CONFIG_NET_EMATCH=y CONFIG_NET_EMATCH_STACK=32 CONFIG_NET_EMATCH_CMP=m CONFIG_NET_EMATCH_NBYTE=m CONFIG_NET_EMATCH_U32=m CONFIG_NET_EMATCH_META=m CONFIG_NET_EMATCH_TEXT=m CONFIG_NET_CLS_ACT=y CONFIG_NET_ACT_POLICE=m CONFIG_NET_ACT_GACT=m CONFIG_GACT_PROB=y CONFIG_NET_ACT_MIRRED=m CONFIG_NET_ACT_IPT=m CONFIG_NET_ACT_PEDIT=m CONFIG_NET_ACT_SIMP=m CONFIG_NET_CLS_IND=y CONFIG_NET_ESTIMATOR=y CONFIG_NET_PKTGEN=m CONFIG_NET_DROP_MONITOR=y CONFIG_BT=m CONFIG_BT_L2CAP=m CONFIG_BT_SCO=m CONFIG_BT_RFCOMM=m CONFIG_BT_RFCOMM_TTY=y CONFIG_BT_BNEP=m CONFIG_BT_BNEP_MC_FILTER=y CONFIG_BT_BNEP_PROTO_FILTER=y CONFIG_BT_CMTP=m CONFIG_BT_HIDP=m CONFIG_BT_HCIUSB=m CONFIG_BT_HCIUSB_SCO=y CONFIG_BT_HCIUART=m CONFIG_BT_HCIUART_H4=y CONFIG_BT_HCIUART_BCSP=y CONFIG_BT_HCIBCM203X=m CONFIG_BT_HCIBPA10X=m CONFIG_BT_HCIBFUSB=m CONFIG_BT_HCIDTL1=m CONFIG_BT_HCIBT3C=m CONFIG_BT_HCIBLUECARD=m CONFIG_BT_HCIBTUART=m CONFIG_BT_HCIVHCI=m CONFIG_TUX=m CONFIG_TUX_EXTCGI=y CONFIG_TUX_EXTENDED_LOG=y CONFIG_NETLABEL=y CONFIG_FIB_RULES=y CONFIG_CFG80211=m CONFIG_CFG80211_INTERNAL_REGDB=y CONFIG_WIRELESS_EXT=y CONFIG_WIRELESS_COMPAT=m CONFIG_MAC80211=m CONFIG_MAC80211_RC_MINSTREL=y CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y CONFIG_MAC80211_RC_DEFAULT="minstrel" CONFIG_MAC80211_LEDS=y CONFIG_IEEE80211=m CONFIG_IEEE80211_CRYPT_WEP=m CONFIG_IEEE80211_CRYPT_CCMP=m CONFIG_IEEE80211_CRYPT_TKIP=m CONFIG_IEEE80211_SOFTMAC=m CONFIG_IEEE80211_SOFTMAC_DEBUG=y CONFIG_RFKILL=m CONFIG_RFKILL_LEDS=y CONFIG_STANDALONE=y CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_FW_LOADER=y CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y CONFIG_MTD=m CONFIG_MTD_CONCAT=m CONFIG_MTD_PARTITIONS=y CONFIG_MTD_REDBOOT_PARTS=m CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 CONFIG_MTD_CMDLINE_PARTS=y CONFIG_MTD_CHAR=m CONFIG_MTD_BLOCK=m CONFIG_MTD_BLOCK_RO=m CONFIG_FTL=m CONFIG_NFTL=m CONFIG_NFTL_RW=y CONFIG_RFD_FTL=m CONFIG_MTD_CFI=m CONFIG_MTD_JEDECPROBE=m CONFIG_MTD_GEN_PROBE=m CONFIG_MTD_MAP_BANK_WIDTH_1=y CONFIG_MTD_MAP_BANK_WIDTH_2=y CONFIG_MTD_MAP_BANK_WIDTH_4=y CONFIG_MTD_CFI_I1=y CONFIG_MTD_CFI_I2=y CONFIG_MTD_CFI_INTELEXT=m CONFIG_MTD_CFI_AMDSTD=m CONFIG_MTD_CFI_STAA=m CONFIG_MTD_CFI_UTIL=m CONFIG_MTD_RAM=m CONFIG_MTD_ROM=m CONFIG_MTD_ABSENT=m CONFIG_MTD_SC520CDP=m CONFIG_MTD_NETSC520=m CONFIG_MTD_TS5500=m CONFIG_MTD_SCB2_FLASH=m CONFIG_MTD_MTDRAM=m CONFIG_MTDRAM_TOTAL_SIZE=4096 CONFIG_MTDRAM_ERASE_SIZE=128 CONFIG_MTD_BLOCK2MTD=m CONFIG_MTD_NAND=m CONFIG_MTD_NAND_ECC_SMC=y CONFIG_MTD_NAND_IDS=m CONFIG_MTD_NAND_DISKONCHIP=m CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 CONFIG_MTD_NAND_NANDSIM=m CONFIG_PARPORT=m CONFIG_PARPORT_PC=m CONFIG_PARPORT_SERIAL=m CONFIG_PARPORT_PC_PCMCIA=m CONFIG_PARPORT_NOT_PC=y CONFIG_PARPORT_1284=y CONFIG_PNP=y CONFIG_PNPACPI=y CONFIG_BLK_DEV_FD=m CONFIG_PARIDE=m CONFIG_PARIDE_PARPORT=m CONFIG_PARIDE_PD=m CONFIG_PARIDE_PCD=m CONFIG_PARIDE_PF=m CONFIG_PARIDE_PT=m CONFIG_PARIDE_PG=m CONFIG_PARIDE_ATEN=m CONFIG_PARIDE_BPCK=m CONFIG_PARIDE_COMM=m CONFIG_PARIDE_DSTR=m CONFIG_PARIDE_FIT2=m CONFIG_PARIDE_FIT3=m CONFIG_PARIDE_EPAT=m CONFIG_PARIDE_EPATC8=y CONFIG_PARIDE_EPIA=m CONFIG_PARIDE_FRIQ=m CONFIG_PARIDE_FRPW=m CONFIG_PARIDE_KBIC=m CONFIG_PARIDE_KTTI=m CONFIG_PARIDE_ON20=m CONFIG_PARIDE_ON26=m CONFIG_BLK_CPQ_DA=m CONFIG_BLK_CPQ_CISS_DA=m CONFIG_CISS_SCSI_TAPE=y CONFIG_BLK_DEV_DAC960=m CONFIG_BLK_DEV_LOOP=m CONFIG_BLK_DEV_CRYPTOLOOP=m CONFIG_BLK_DEV_NBD=m CONFIG_BLK_DEV_SX8=m CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=16384 CONFIG_BLK_DEV_INITRD=y CONFIG_CDROM_PKTCDVD=m CONFIG_CDROM_PKTCDVD_BUFFERS=8 CONFIG_ATA_OVER_ETH=m CONFIG_VIRTIO_BLK=m CONFIG_IDE=y CONFIG_BLK_DEV_IDE=y CONFIG_BLK_DEV_IDEDISK=y CONFIG_IDEDISK_MULTI_MODE=y CONFIG_BLK_DEV_IDECS=m CONFIG_BLK_DEV_IDECD=m CONFIG_BLK_DEV_IDEFLOPPY=y CONFIG_BLK_DEV_IDESCSI=m CONFIG_IDE_TASK_IOCTL=y CONFIG_IDE_GENERIC=y CONFIG_BLK_DEV_IDEPNP=y CONFIG_BLK_DEV_IDEPCI=y CONFIG_IDEPCI_SHARE_IRQ=y CONFIG_BLK_DEV_GENERIC=y CONFIG_BLK_DEV_IDEDMA_PCI=y CONFIG_IDEDMA_PCI_AUTO=y CONFIG_BLK_DEV_AEC62XX=y CONFIG_BLK_DEV_ALI15X3=y CONFIG_BLK_DEV_AMD74XX=y CONFIG_BLK_DEV_ATIIXP=y CONFIG_BLK_DEV_CMD64X=y CONFIG_BLK_DEV_HPT34X=y CONFIG_BLK_DEV_HPT366=y CONFIG_BLK_DEV_PIIX=y CONFIG_BLK_DEV_IT821X=y CONFIG_BLK_DEV_PDC202XX_OLD=y CONFIG_BLK_DEV_PDC202XX_NEW=y CONFIG_BLK_DEV_SVWKS=y CONFIG_BLK_DEV_SIIMAGE=y CONFIG_BLK_DEV_SIS5513=y CONFIG_BLK_DEV_VIA82CXXX=y CONFIG_BLK_DEV_IDEDMA=y CONFIG_IDEDMA_AUTO=y CONFIG_RAID_ATTRS=m CONFIG_SCSI=m CONFIG_SCSI_DMA=y CONFIG_SCSI_NETLINK=y CONFIG_SCSI_PROC_FS=y CONFIG_BLK_DEV_SD=m CONFIG_CHR_DEV_ST=m CONFIG_CHR_DEV_OSST=m CONFIG_BLK_DEV_SR=m CONFIG_BLK_DEV_SR_VENDOR=y CONFIG_CHR_DEV_SG=m CONFIG_CHR_DEV_SCH=m CONFIG_SCSI_ENCLOSURE=m CONFIG_SCSI_MULTI_LUN=y CONFIG_SCSI_CONSTANTS=y CONFIG_SCSI_LOGGING=y CONFIG_SCSI_SPI_ATTRS=m CONFIG_SCSI_FC_ATTRS=m CONFIG_SCSI_ISCSI_ATTRS=m CONFIG_SCSI_ISCSI1_ATTRS=m CONFIG_SCSI_ISCSI2_ATTRS=m CONFIG_SCSI_SAS_ATTRS=m CONFIG_SCSI_SAS_LIBSAS=m CONFIG_SCSI_SAS_ATA=y CONFIG_LIBFC=m CONFIG_HYPERV_STORAGE=m CONFIG_LIBFCOE=m CONFIG_FCOE=m CONFIG_LIBISCSI1=m CONFIG_ISCSI_TCP=m CONFIG_SCSI_CXGB3_ISCSI=m CONFIG_SCSI_CXGB4_ISCSI=m CONFIG_SCSI_BNX2_ISCSI=m CONFIG_BE2ISCSI=m CONFIG_BLK_DEV_3W_XXXX_RAID=m CONFIG_SCSI_3W_9XXX=m CONFIG_SCSI_3W_SAS=m CONFIG_SCSI_ACARD=m CONFIG_SCSI_AACRAID=m CONFIG_SCSI_MVSAS=m CONFIG_SCSI_AIC7XXX=m CONFIG_AIC7XXX_CMDS_PER_DEVICE=4 CONFIG_AIC7XXX_RESET_DELAY_MS=15000 CONFIG_AIC7XXX_DEBUG_MASK=0 CONFIG_SCSI_AIC7XXX_OLD=m CONFIG_SCSI_AIC79XX=m CONFIG_AIC79XX_CMDS_PER_DEVICE=4 CONFIG_AIC79XX_RESET_DELAY_MS=15000 CONFIG_AIC79XX_DEBUG_MASK=0 CONFIG_SCSI_AIC94XX=m CONFIG_SCSI_ARCMSR=m CONFIG_MEGARAID_NEWGEN=y CONFIG_MEGARAID_MM=m CONFIG_MEGARAID_MAILBOX=m CONFIG_MEGARAID_LEGACY=m CONFIG_MEGARAID_SAS=m CONFIG_SCSI_MPT2SAS=m CONFIG_SCSI_MPT2SAS_MAX_SGE=128 CONFIG_SCSI_MPT2SAS_LOGGING=y CONFIG_SCSI_HPTIOP=m CONFIG_FCOE_FNIC=m CONFIG_SCSI_GDTH=m CONFIG_SCSI_ISCI=m CONFIG_SCSI_IPS=m CONFIG_SCSI_INITIO=m CONFIG_SCSI_PPA=m CONFIG_SCSI_IMM=m CONFIG_SCSI_STEX=m CONFIG_SCSI_SYM53C8XX_2=m CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 CONFIG_SCSI_SYM53C8XX_MMIO=y CONFIG_SCSI_QLOGIC_1280=m CONFIG_SCSI_QLA_FC=m CONFIG_SCSI_QLA_ISCSI=m CONFIG_SCSI_LPFC=m CONFIG_SCSI_DC395x=m CONFIG_SCSI_BFA_FC=m CONFIG_SCSI_PMCRAID=m CONFIG_SCSI_DH=m CONFIG_SCSI_DH_EMC=m CONFIG_SCSI_DH_RDAC=m CONFIG_SCSI_DH_ALUA=m CONFIG_ATA=m CONFIG_ATA_ACPI=y CONFIG_SATA_PMP=y CONFIG_SATA_AHCI=m CONFIG_SATA_SIL24=m CONFIG_ATA_SFF=y CONFIG_SATA_SVW=m CONFIG_ATA_PIIX=m CONFIG_SATA_MV=m CONFIG_SATA_NV=m CONFIG_PDC_ADMA=m CONFIG_SATA_QSTOR=m CONFIG_SATA_PROMISE=m CONFIG_SATA_SX4=m CONFIG_SATA_SIL=m CONFIG_SATA_SIS=m CONFIG_SATA_ULI=m CONFIG_SATA_VIA=m CONFIG_SATA_VITESSE=m CONFIG_SATA_INIC162X=m CONFIG_PATA_MARVELL=m CONFIG_PATA_PDC2027X=m CONFIG_PATA_SIL680=m CONFIG_PATA_SIS=m CONFIG_ATA_INTEL_COMBINED=y CONFIG_MD=y CONFIG_BLK_DEV_MD=y CONFIG_MD_LINEAR=m CONFIG_MD_RAID0=m CONFIG_MD_RAID1=m CONFIG_MD_RAID10=m CONFIG_MD_RAID456=m CONFIG_MD_RAID5_RESHAPE=y CONFIG_MD_MULTIPATH=m CONFIG_MD_FAULTY=m CONFIG_BLK_DEV_DM=m CONFIG_DM_CRYPT=m CONFIG_DM_SNAPSHOT=m CONFIG_DM_MIRROR=m CONFIG_DM_ZERO=m CONFIG_DM_MULTIPATH=m CONFIG_DM_MULTIPATH_EMC=m CONFIG_DM_MULTIPATH_RDAC=m CONFIG_DM_MULTIPATH_HP=m CONFIG_DM_RAID45=m CONFIG_DM_UEVENT=y CONFIG_FUSION=y CONFIG_FUSION_SPI=m CONFIG_FUSION_FC=m CONFIG_FUSION_SAS=m CONFIG_FUSION_MAX_SGE=128 CONFIG_FUSION_CTL=m CONFIG_FUSION_LAN=m CONFIG_FUSION_LOGGING=y CONFIG_FIREWIRE=m CONFIG_FIREWIRE_OHCI=m CONFIG_FIREWIRE_OHCI_DEBUG=y CONFIG_FIREWIRE_SBP2=m CONFIG_I2O=m CONFIG_I2O_EXT_ADAPTEC=y CONFIG_I2O_EXT_ADAPTEC_DMA64=y CONFIG_I2O_CONFIG=m CONFIG_I2O_CONFIG_OLD_IOCTL=y CONFIG_I2O_BUS=m CONFIG_I2O_BLOCK=m CONFIG_I2O_SCSI=m CONFIG_I2O_PROC=m CONFIG_NETDEVICES=y CONFIG_IFB=m CONFIG_DUMMY=m CONFIG_BONDING=m CONFIG_TUN=m CONFIG_PHYLIB=m CONFIG_MARVELL_PHY=m CONFIG_DAVICOM_PHY=m CONFIG_QSEMI_PHY=m CONFIG_LXT_PHY=m CONFIG_CICADA_PHY=m CONFIG_VITESSE_PHY=m CONFIG_SMSC_PHY=m CONFIG_FIXED_PHY=m CONFIG_FIXED_MII_10_FDX=y CONFIG_FIXED_MII_100_FDX=y CONFIG_NET_ETHERNET=y CONFIG_MII=m CONFIG_HAPPYMEAL=m CONFIG_SUNGEM=m CONFIG_CASSINI=m CONFIG_NET_VENDOR_3COM=y CONFIG_VORTEX=m CONFIG_TYPHOON=m CONFIG_NET_TULIP=y CONFIG_DE2104X=m CONFIG_TULIP=m CONFIG_TULIP_MMIO=y CONFIG_DE4X5=m CONFIG_WINBOND_840=m CONFIG_DM9102=m CONFIG_ULI526X=m CONFIG_PCMCIA_XIRCOM=m CONFIG_NET_PCI=y CONFIG_PCNET32=m CONFIG_AMD8111_ETH=m CONFIG_AMD8111E_NAPI=y CONFIG_ADAPTEC_STARFIRE=m CONFIG_ADAPTEC_STARFIRE_NAPI=y CONFIG_B44=m CONFIG_FORCEDETH=m CONFIG_E100=m CONFIG_FEALNX=m CONFIG_NATSEMI=m CONFIG_NE2K_PCI=m CONFIG_8139CP=m CONFIG_8139TOO=m CONFIG_8139TOO_8129=y CONFIG_SIS900=m CONFIG_EPIC100=m CONFIG_SUNDANCE=m CONFIG_VIA_RHINE=m CONFIG_VIA_RHINE_MMIO=y CONFIG_VIA_RHINE_NAPI=y CONFIG_NET_POCKET=y CONFIG_ACENIC=m CONFIG_DL2K=m CONFIG_E1000=m CONFIG_E1000_NAPI=y CONFIG_E1000E=m CONFIG_ATL1E=m CONFIG_IGB=m CONFIG_IGBVF=m CONFIG_IGB_DCA=y CONFIG_NS83820=m CONFIG_R8169=m CONFIG_R8169_VLAN=y CONFIG_SIS190=m CONFIG_SKGE=m CONFIG_SKY2=m CONFIG_VIA_VELOCITY=m CONFIG_TIGON3=m CONFIG_BNX2=m CONFIG_CNIC=m CONFIG_QLA3XXX=m CONFIG_MDIO=m CONFIG_CHELSIO_T1=m CONFIG_CHELSIO_T3=m CONFIG_CHELSIO_T4_DEPENDS=y CONFIG_CHELSIO_T4=m CONFIG_IXGBE=m CONFIG_IXGBE_DCA=y CONFIG_IXGBEVF=m CONFIG_IXGB=m CONFIG_IXGB_NAPI=y CONFIG_S2IO=m CONFIG_S2IO_NAPI=y CONFIG_VXGE=m CONFIG_MYRI10GE=m CONFIG_ENIC=m CONFIG_MYRI10GE_DCA=y CONFIG_NETXEN_NIC=m CONFIG_NIU=m CONFIG_BNX2X=m CONFIG_MLX4_EN=m CONFIG_QLCNIC=m CONFIG_QLGE=m CONFIG_MLX4_CORE=m CONFIG_MLX4_DEBUG=y CONFIG_BE2NET=m CONFIG_BNA=m CONFIG_SFC=m CONFIG_SFC_MTD=y CONFIG_SFC_MCDI_MON=y CONFIG_TR=y CONFIG_IBMOL=m CONFIG_3C359=m CONFIG_NET_RADIO=y CONFIG_NET_WIRELESS_RTNETLINK=y CONFIG_PCMCIA_WAVELAN=m CONFIG_PCMCIA_NETWAVE=m CONFIG_IPW2100=m CONFIG_IPW2100_MONITOR=y CONFIG_IPW2200=m CONFIG_IPW2200_MONITOR=y CONFIG_IPW2200_RADIOTAP=y CONFIG_IPW2200_PROMISCUOUS=y CONFIG_IPW2200_QOS=y CONFIG_AIRO=m CONFIG_HERMES=m CONFIG_PLX_HERMES=m CONFIG_TMD_HERMES=m CONFIG_NORTEL_HERMES=m CONFIG_PCI_HERMES=m CONFIG_ATMEL=m CONFIG_PCI_ATMEL=m CONFIG_PCMCIA_HERMES=m CONFIG_PCMCIA_SPECTRUM=m CONFIG_AIRO_CS=m CONFIG_PCMCIA_ATMEL=m CONFIG_PCMCIA_WL3501=m CONFIG_PRISM54=m CONFIG_USB_ZD1201=m CONFIG_RTL8180=m CONFIG_RTL8187=m CONFIG_RTL8187_LEDS=y CONFIG_HOSTAP=m CONFIG_HOSTAP_FIRMWARE=y CONFIG_HOSTAP_FIRMWARE_NVRAM=y CONFIG_HOSTAP_PLX=m CONFIG_HOSTAP_PCI=m CONFIG_HOSTAP_CS=m CONFIG_BCM43XX=m CONFIG_BCM43XX_DEBUG=y CONFIG_BCM43XX_DMA=y CONFIG_BCM43XX_PIO=y CONFIG_BCM43XX_DMA_AND_PIO_MODE=y CONFIG_ZD1211RW=m CONFIG_NET_WIRELESS=y CONFIG_ATH_COMMON=m CONFIG_ATH5K=m CONFIG_ATH9K=m CONFIG_IWLWIFI=m CONFIG_IWLWIFI_LEDS=y CONFIG_IWLAGN=m CONFIG_IWL4965=y CONFIG_IWL5000=y CONFIG_IWL3945=m CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y CONFIG_RT2X00=m CONFIG_RT2400PCI=m CONFIG_RT2500PCI=m CONFIG_RT61PCI=m CONFIG_RT2500USB=m CONFIG_RT73USB=m CONFIG_RT2X00_LIB_PCI=m CONFIG_RT2X00_LIB_USB=m CONFIG_RT2X00_LIB=m CONFIG_RT2X00_LIB_FIRMWARE=y CONFIG_RT2X00_LIB_CRYPTO=y CONFIG_RT2X00_LIB_LEDS=y CONFIG_NET_PCMCIA=y CONFIG_PCMCIA_3C589=m CONFIG_PCMCIA_3C574=m CONFIG_PCMCIA_FMVJ18X=m CONFIG_PCMCIA_PCNET=m CONFIG_PCMCIA_NMCLAN=m CONFIG_PCMCIA_SMC91C92=m CONFIG_PCMCIA_XIRC2PS=m CONFIG_PCMCIA_AXNET=m CONFIG_ATM_TCP=m CONFIG_ATM_LANAI=m CONFIG_ATM_ENI=m CONFIG_ATM_FIRESTREAM=m CONFIG_ATM_IDT77252=m CONFIG_ATM_IDT77252_USE_SUNI=y CONFIG_ATM_AMBASSADOR=m CONFIG_ATM_HORIZON=m CONFIG_ATM_FORE200E_MAYBE=m CONFIG_ATM_HE=m CONFIG_FDDI=y CONFIG_PPP=m CONFIG_PPP_MULTILINK=y CONFIG_PPP_FILTER=y CONFIG_PPP_ASYNC=m CONFIG_PPP_SYNC_TTY=m CONFIG_PPP_DEFLATE=m CONFIG_PPP_MPPE=m CONFIG_PPPOE=m CONFIG_PPPOATM=m CONFIG_SLIP=m CONFIG_SLIP_COMPRESSED=y CONFIG_SLIP_SMART=y CONFIG_NET_FC=y CONFIG_NETCONSOLE=m CONFIG_NETPOLL=y CONFIG_NETPOLL_TRAP=y CONFIG_NET_POLL_CONTROLLER=y CONFIG_VIRTIO_NET=m CONFIG_HYPERV_NET=m CONFIG_ISDN=m CONFIG_ISDN_I4L=m CONFIG_ISDN_PPP=y CONFIG_ISDN_PPP_VJ=y CONFIG_ISDN_MPP=y CONFIG_IPPP_FILTER=y CONFIG_ISDN_AUDIO=y CONFIG_ISDN_TTY_FAX=y CONFIG_ISDN_DIVERSION=m CONFIG_ISDN_DRV_HISAX=m CONFIG_HISAX_EURO=y CONFIG_DE_AOC=y CONFIG_HISAX_NO_SENDCOMPLETE=y CONFIG_HISAX_NO_LLC=y CONFIG_HISAX_NO_KEYPAD=y CONFIG_HISAX_1TR6=y CONFIG_HISAX_NI1=y CONFIG_HISAX_MAX_CARDS=8 CONFIG_HISAX_16_3=y CONFIG_HISAX_TELESPCI=y CONFIG_HISAX_S0BOX=y CONFIG_HISAX_FRITZPCI=y CONFIG_HISAX_AVM_A1_PCMCIA=y CONFIG_HISAX_ELSA=y CONFIG_HISAX_DIEHLDIVA=y CONFIG_HISAX_SEDLBAUER=y CONFIG_HISAX_NETJET=y CONFIG_HISAX_NETJET_U=y CONFIG_HISAX_NICCY=y CONFIG_HISAX_BKM_A4T=y CONFIG_HISAX_SCT_QUADRO=y CONFIG_HISAX_GAZEL=y CONFIG_HISAX_HFC_PCI=y CONFIG_HISAX_W6692=y CONFIG_HISAX_HFC_SX=y CONFIG_HISAX_ENTERNOW_PCI=y CONFIG_HISAX_SEDLBAUER_CS=m CONFIG_HISAX_ELSA_CS=m CONFIG_HISAX_AVM_A1_CS=m CONFIG_HISAX_TELES_CS=m CONFIG_HISAX_ST5481=m CONFIG_HISAX_HFC4S8S=m CONFIG_HISAX_FRITZ_PCIPNP=m CONFIG_HISAX_HDLC=y CONFIG_ISDN_DRV_GIGASET=m CONFIG_GIGASET_BASE=m CONFIG_GIGASET_M105=m CONFIG_ISDN_CAPI=m CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y CONFIG_ISDN_CAPI_MIDDLEWARE=y CONFIG_ISDN_CAPI_CAPI20=m CONFIG_ISDN_CAPI_CAPIFS_BOOL=y CONFIG_ISDN_CAPI_CAPIFS=m CONFIG_ISDN_CAPI_CAPIDRV=m CONFIG_CAPI_AVM=y CONFIG_ISDN_DRV_AVMB1_B1PCI=m CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m CONFIG_ISDN_DRV_AVMB1_AVM_CS=m CONFIG_ISDN_DRV_AVMB1_T1PCI=m CONFIG_ISDN_DRV_AVMB1_C4=m CONFIG_INPUT=y CONFIG_INPUT_POLLDEV=m CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 CONFIG_INPUT_JOYDEV=m CONFIG_INPUT_EVDEV=y CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y CONFIG_MOUSE_SERIAL=m CONFIG_MOUSE_VSXXXAA=m CONFIG_INPUT_JOYSTICK=y CONFIG_JOYSTICK_TWIDJOY=m CONFIG_JOYSTICK_JOYDUMP=m CONFIG_INPUT_TOUCHSCREEN=y CONFIG_TOUCHSCREEN_GUNZE=m CONFIG_TOUCHSCREEN_ELO=m CONFIG_TOUCHSCREEN_MTOUCH=m CONFIG_TOUCHSCREEN_MK712=m CONFIG_INPUT_MISC=y CONFIG_INPUT_PCSPKR=m CONFIG_INPUT_UINPUT=m CONFIG_SERIO=y CONFIG_SERIO_I8042=y CONFIG_SERIO_SERPORT=y CONFIG_SERIO_LIBPS2=y CONFIG_SERIO_RAW=m CONFIG_GAMEPORT=m CONFIG_GAMEPORT_NS558=m CONFIG_GAMEPORT_L4=m CONFIG_GAMEPORT_EMU10K1=m CONFIG_GAMEPORT_FM801=m CONFIG_VT=y CONFIG_VT_CONSOLE=y CONFIG_HW_CONSOLE=y CONFIG_VT_HW_CONSOLE_BINDING=y CONFIG_SERIAL_NONSTANDARD=y CONFIG_CYCLADES=m CONFIG_SYNCLINK=m CONFIG_SYNCLINKMP=m CONFIG_SYNCLINK_GT=m CONFIG_N_HDLC=m CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_SERIAL_8250_PCI=y CONFIG_SERIAL_8250_PNP=y CONFIG_SERIAL_8250_CS=m CONFIG_SERIAL_8250_NR_UARTS=64 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 CONFIG_SERIAL_8250_EXTENDED=y CONFIG_SERIAL_8250_MANY_PORTS=y CONFIG_SERIAL_8250_SHARE_IRQ=y CONFIG_SERIAL_8250_DETECT_IRQ=y CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y CONFIG_SERIAL_JSM=m CONFIG_UNIX98_PTYS=y CONFIG_LEGACY_PTYS=y CONFIG_CRASH=m CONFIG_LEGACY_PTY_COUNT=0 CONFIG_PRINTER=m CONFIG_LP_CONSOLE=y CONFIG_PPDEV=m CONFIG_VIRTIO_CONSOLE=m CONFIG_IPMI_HANDLER=m CONFIG_IPMI_PANIC_EVENT=y CONFIG_IPMI_PANIC_STRING=y CONFIG_IPMI_DEVICE_INTERFACE=m CONFIG_IPMI_SI=m CONFIG_IPMI_WATCHDOG=m CONFIG_IPMI_POWEROFF=m CONFIG_WATCHDOG=y CONFIG_SOFT_WATCHDOG=m CONFIG_ALIM1535_WDT=m CONFIG_ALIM7101_WDT=m CONFIG_IBMASR=m CONFIG_I6300ESB_WDT=m CONFIG_I8XX_TCO=m CONFIG_W83627HF_WDT=m CONFIG_W83877F_WDT=m CONFIG_W83977F_WDT=m CONFIG_MACHZ_WDT=m CONFIG_PCIPCWATCHDOG=m CONFIG_WDTPCI=m CONFIG_WDT_501_PCI=y CONFIG_USBPCWATCHDOG=m CONFIG_HW_RANDOM=y CONFIG_HW_RANDOM_INTEL=m CONFIG_HW_RANDOM_AMD=m CONFIG_NVRAM=y CONFIG_RTC=y CONFIG_DTLK=m CONFIG_AGP=y CONFIG_AGP_AMD64=y CONFIG_AGP_INTEL=y CONFIG_AGP_SIS=y CONFIG_AGP_VIA=y CONFIG_DRM=m CONFIG_DRM_R128=m CONFIG_DRM_RADEON=m CONFIG_DRM_I810=m CONFIG_DRM_I830=m CONFIG_DRM_I915=m CONFIG_DRM_MGA=m CONFIG_DRM_VIA=m CONFIG_DRM_SAVAGE=m CONFIG_CARDMAN_4000=m CONFIG_CARDMAN_4040=m CONFIG_PC8736x_GPIO=m CONFIG_NSC_GPIO=m CONFIG_RAW_DRIVER=y CONFIG_MAX_RAW_DEVS=8192 CONFIG_HPET=y CONFIG_HANGCHECK_TIMER=m CONFIG_TCG_TPM=m CONFIG_TCG_TIS=m CONFIG_TCG_NSC=m CONFIG_TCG_ATMEL=m CONFIG_TCG_INFINEON=m CONFIG_TELCLOCK=m CONFIG_I2C=m CONFIG_I2C_CHARDEV=m CONFIG_I2C_ALGOBIT=m CONFIG_I2C_ALGOPCF=m CONFIG_I2C_ALGOPCA=m CONFIG_I2C_AMD756=m CONFIG_I2C_AMD756_S4882=m CONFIG_I2C_AMD8111=m CONFIG_I2C_I801=m CONFIG_I2C_PIIX4=m CONFIG_I2C_ISA=m CONFIG_I2C_NFORCE2=m CONFIG_I2C_PARPORT=m CONFIG_I2C_PARPORT_LIGHT=m CONFIG_I2C_PROSAVAGE=m CONFIG_I2C_SAVAGE4=m CONFIG_I2C_SIS96X=m CONFIG_I2C_STUB=m CONFIG_I2C_VIA=m CONFIG_I2C_VIAPRO=m CONFIG_I2C_VOODOO3=m CONFIG_SENSORS_DS1337=m CONFIG_SENSORS_DS1374=m CONFIG_SENSORS_EEPROM=m CONFIG_SENSORS_PCF8574=m CONFIG_SENSORS_PCA9539=m CONFIG_SENSORS_PCF8591=m CONFIG_SENSORS_MAX6875=m CONFIG_HWMON=m CONFIG_HWMON_VID=m CONFIG_SENSORS_ABITUGURU=m CONFIG_SENSORS_ABITUGURU3=m CONFIG_SENSORS_AD7418=m CONFIG_SENSORS_ADM1021=m CONFIG_SENSORS_ADM1025=m CONFIG_SENSORS_ADM1026=m CONFIG_SENSORS_ADM1029=m CONFIG_SENSORS_ADM1031=m CONFIG_SENSORS_ADM9240=m CONFIG_SENSORS_ADT7470=m CONFIG_SENSORS_ADT7473=m CONFIG_SENSORS_K8TEMP=m CONFIG_SENSORS_K10TEMP=m CONFIG_SENSORS_ASB100=m CONFIG_SENSORS_ATXP1=m CONFIG_SENSORS_DS1621=m CONFIG_SENSORS_I5K_AMB=m CONFIG_SENSORS_F71805F=m CONFIG_SENSORS_F71882FG=m CONFIG_SENSORS_F75375S=m CONFIG_SENSORS_FSCHER=m CONFIG_SENSORS_FSCPOS=m CONFIG_SENSORS_FSCHMD=m CONFIG_SENSORS_GL518SM=m CONFIG_SENSORS_GL520SM=m CONFIG_SENSORS_CORETEMP=m CONFIG_SENSORS_IBMPEX=m CONFIG_SENSORS_IT87=m CONFIG_SENSORS_LM63=m CONFIG_SENSORS_LM75=m CONFIG_SENSORS_LM77=m CONFIG_SENSORS_LM78=m CONFIG_SENSORS_LM80=m CONFIG_SENSORS_LM83=m CONFIG_SENSORS_LM85=m CONFIG_SENSORS_LM87=m CONFIG_SENSORS_LM90=m CONFIG_SENSORS_LM92=m CONFIG_SENSORS_LM93=m CONFIG_SENSORS_MAX1619=m CONFIG_SENSORS_MAX6650=m CONFIG_SENSORS_PC87360=m CONFIG_SENSORS_PC87427=m CONFIG_SENSORS_SIS5595=m CONFIG_SENSORS_DME1737=m CONFIG_SENSORS_SMSC47M1=m CONFIG_SENSORS_SMSC47M192=m CONFIG_SENSORS_SMSC47B397=m CONFIG_SENSORS_ADS7828=m CONFIG_SENSORS_THMC50=m CONFIG_SENSORS_VIA686A=m CONFIG_SENSORS_VT1211=m CONFIG_SENSORS_VT8231=m CONFIG_SENSORS_W83781D=m CONFIG_SENSORS_W83791D=m CONFIG_SENSORS_W83792D=m CONFIG_SENSORS_W83793=m CONFIG_SENSORS_W83L785TS=m CONFIG_SENSORS_W83L786NG=m CONFIG_SENSORS_W83627HF=m CONFIG_SENSORS_W83627EHF=m CONFIG_SENSORS_HDAPS=m CONFIG_SENSORS_APPLESMC=m CONFIG_EEPROM_93CX6=m CONFIG_HP_ILO=m CONFIG_ENCLOSURE_SERVICES=m CONFIG_VIDEO_DEV=m CONFIG_VIDEO_V4L1=y CONFIG_VIDEO_V4L1_COMPAT=y CONFIG_VIDEO_V4L2=y CONFIG_VIDEO_BT848=m CONFIG_VIDEO_SAA6588=m CONFIG_VIDEO_CPIA2=m CONFIG_VIDEO_MSP3400=m CONFIG_VIDEO_CS53L32A=m CONFIG_VIDEO_TLV320AIC23B=m CONFIG_VIDEO_WM8775=m CONFIG_VIDEO_WM8739=m CONFIG_VIDEO_CX2341X=m CONFIG_VIDEO_CX25840=m CONFIG_VIDEO_SAA711X=m CONFIG_VIDEO_SAA7127=m CONFIG_VIDEO_UPD64031A=m CONFIG_VIDEO_UPD64083=m CONFIG_USB_VIDEO_CLASS=m CONFIG_VIDEO_PVRUSB2=m CONFIG_VIDEO_PVRUSB2_24XXX=y CONFIG_VIDEO_PVRUSB2_SYSFS=y CONFIG_VIDEO_EM28XX=m CONFIG_VIDEO_USBVIDEO=m CONFIG_USB_VICAM=m CONFIG_USB_IBMCAM=m CONFIG_USB_KONICAWC=m CONFIG_USB_QUICKCAM_MESSENGER=m CONFIG_USB_ET61X251=m CONFIG_VIDEO_OVCAMCHIP=m CONFIG_USB_W9968CF=m CONFIG_USB_OV511=m CONFIG_USB_SE401=m CONFIG_USB_SN9C102=m CONFIG_USB_STV680=m CONFIG_USB_ZC0301=m CONFIG_USB_PWC=m CONFIG_USB_DSBR=m CONFIG_VIDEO_TUNER=m CONFIG_VIDEO_BUF=m CONFIG_VIDEO_BTCX=m CONFIG_VIDEO_IR=m CONFIG_VIDEO_TVEEPROM=m CONFIG_USB_DABUSB=m CONFIG_FB=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y CONFIG_FB_CIRRUS=m CONFIG_FB_VGA16=m CONFIG_FB_VESA=y CONFIG_FB_NVIDIA=m CONFIG_FB_NVIDIA_I2C=y CONFIG_FB_RIVA=m CONFIG_FB_INTEL=m CONFIG_FB_SAVAGE=m CONFIG_FB_SAVAGE_I2C=y CONFIG_FB_SAVAGE_ACCEL=y CONFIG_FB_KYRO=m CONFIG_VGA_CONSOLE=y CONFIG_VGACON_SOFT_SCROLLBACK=y CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 CONFIG_VIDEO_SELECT=y CONFIG_DUMMY_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE=y CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y CONFIG_FONT_8x8=y CONFIG_FONT_8x16=y CONFIG_LOGO=y CONFIG_LOGO_LINUX_CLUT224=y CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_BACKLIGHT_CLASS_DEVICE=m CONFIG_BACKLIGHT_DEVICE=y CONFIG_LCD_CLASS_DEVICE=m CONFIG_LCD_DEVICE=y CONFIG_SOUND=m CONFIG_SND=m CONFIG_SND_TIMER=m CONFIG_SND_PCM=m CONFIG_SND_HWDEP=m CONFIG_SND_RAWMIDI=m CONFIG_SND_SEQUENCER=m CONFIG_SND_SEQ_DUMMY=m CONFIG_SND_OSSEMUL=y CONFIG_SND_MIXER_OSS=m CONFIG_SND_PCM_OSS=m CONFIG_SND_PCM_OSS_PLUGINS=y CONFIG_SND_SEQUENCER_OSS=y CONFIG_SND_RTCTIMER=m CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y CONFIG_SND_DYNAMIC_MINORS=y CONFIG_SND_VERBOSE_PROCFS=y CONFIG_SND_VMASTER=y CONFIG_SND_MPU401_UART=m CONFIG_SND_OPL3_LIB=m CONFIG_SND_VX_LIB=m CONFIG_SND_AC97_CODEC=m CONFIG_SND_DUMMY=m CONFIG_SND_VIRMIDI=m CONFIG_SND_MTPAV=m CONFIG_SND_MPU401=m CONFIG_SND_AD1889=m CONFIG_SND_ALS300=m CONFIG_SND_ALS4000=m CONFIG_SND_ALI5451=m CONFIG_SND_ATIIXP=m CONFIG_SND_ATIIXP_MODEM=m CONFIG_SND_AU8810=m CONFIG_SND_AU8820=m CONFIG_SND_AU8830=m CONFIG_SND_AZT3328=m CONFIG_SND_BT87X=m CONFIG_SND_CA0106=m CONFIG_SND_CMIPCI=m CONFIG_SND_CS4281=m CONFIG_SND_CS46XX=m CONFIG_SND_CS46XX_NEW_DSP=y CONFIG_SND_CTXFI=m CONFIG_SND_DARLA20=m CONFIG_SND_GINA20=m CONFIG_SND_LAYLA20=m CONFIG_SND_DARLA24=m CONFIG_SND_GINA24=m CONFIG_SND_LAYLA24=m CONFIG_SND_MONA=m CONFIG_SND_MIA=m CONFIG_SND_ECHO3G=m CONFIG_SND_INDIGO=m CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m CONFIG_SND_EMU10K1=m CONFIG_SND_EMU10K1X=m CONFIG_SND_ENS1370=m CONFIG_SND_ENS1371=m CONFIG_SND_ES1938=m CONFIG_SND_ES1968=m CONFIG_SND_FM801=m CONFIG_SND_FM801_TEA575X_BOOL=y CONFIG_SND_FM801_TEA575X=m CONFIG_SND_HDA_POWER_SAVE=y CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 CONFIG_SND_HDA_HWDEP=y CONFIG_SND_HDA_RECONFIG=y CONFIG_SND_HDA_INPUT_BEEP=y CONFIG_SND_HDA_GENERIC=y CONFIG_SND_HDA_INTEL=m CONFIG_SND_HDSP=m CONFIG_SND_HDSPM=m CONFIG_SND_ICE1712=m CONFIG_SND_ICE1724=m CONFIG_SND_INTEL8X0=m CONFIG_SND_INTEL8X0M=m CONFIG_SND_KORG1212=m CONFIG_SND_MAESTRO3=m CONFIG_SND_MIXART=m CONFIG_SND_NM256=m CONFIG_SND_PCXHR=m CONFIG_SND_RIPTIDE=m CONFIG_SND_RME32=m CONFIG_SND_RME96=m CONFIG_SND_RME9652=m CONFIG_SND_SONICVIBES=m CONFIG_SND_TRIDENT=m CONFIG_SND_VIA82XX=m CONFIG_SND_VIA82XX_MODEM=m CONFIG_SND_VX222=m CONFIG_SND_YMFPCI=m CONFIG_SND_USB_AUDIO=m CONFIG_SND_USB_USX2Y=m CONFIG_AC97_BUS=m CONFIG_USB_ARCH_HAS_HCD=y CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y CONFIG_USB_DEVICEFS=y CONFIG_USB_EHCI_HCD=m CONFIG_USB_EHCI_SPLIT_ISO=y CONFIG_USB_EHCI_ROOT_HUB_TT=y CONFIG_USB_EHCI_TT_NEWSCHED=y CONFIG_USB_ISP116X_HCD=m CONFIG_USB_OHCI_HCD=m CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_UHCI_HCD=m CONFIG_USB_SL811_HCD=m CONFIG_USB_SL811_CS=m CONFIG_USB_ACM=m CONFIG_USB_PRINTER=m CONFIG_USB_STORAGE=m CONFIG_USB_STORAGE_DATAFAB=y CONFIG_USB_STORAGE_FREECOM=y CONFIG_USB_STORAGE_ISD200=y CONFIG_USB_STORAGE_DPCM=y CONFIG_USB_STORAGE_USBAT=y CONFIG_USB_STORAGE_SDDR09=y CONFIG_USB_STORAGE_SDDR55=y CONFIG_USB_STORAGE_JUMPSHOT=y CONFIG_USB_STORAGE_ALAUDA=y CONFIG_USB_HID=y CONFIG_HIDRAW=y CONFIG_USB_HIDINPUT=y CONFIG_HID_FF=y CONFIG_HID_PID=y CONFIG_LOGITECH_FF=y CONFIG_THRUSTMASTER_FF=y CONFIG_USB_HIDDEV=y CONFIG_USB_AIPTEK=m CONFIG_USB_WACOM=m CONFIG_USB_ACECAD=m CONFIG_USB_KBTAB=m CONFIG_USB_POWERMATE=m CONFIG_USB_TOUCHSCREEN=m CONFIG_USB_TOUCHSCREEN_EGALAX=y CONFIG_USB_TOUCHSCREEN_PANJIT=y CONFIG_USB_TOUCHSCREEN_3M=y CONFIG_USB_TOUCHSCREEN_ITM=y CONFIG_USB_XPAD=m CONFIG_USB_ATI_REMOTE=m CONFIG_USB_ATI_REMOTE2=m CONFIG_USB_KEYSPAN_REMOTE=m CONFIG_USB_APPLETOUCH=m CONFIG_USB_MDC800=m CONFIG_USB_MICROTEK=m CONFIG_USB_CATC=m CONFIG_USB_KAWETH=m CONFIG_USB_PEGASUS=m CONFIG_USB_RTL8150=m CONFIG_USB_USBNET=m CONFIG_USB_NET_AX8817X=m CONFIG_USB_NET_CDCETHER=m CONFIG_USB_NET_CDC_EEM=m CONFIG_USB_NET_DM9601=m CONFIG_USB_NET_GL620A=m CONFIG_USB_NET_NET1080=m CONFIG_USB_NET_PLUSB=m CONFIG_USB_NET_RNDIS_HOST=m CONFIG_USB_NET_CDC_SUBSET=m CONFIG_USB_ALI_M5632=y CONFIG_USB_AN2720=y CONFIG_USB_BELKIN=y CONFIG_USB_ARMLINUX=y CONFIG_USB_EPSON2888=y CONFIG_USB_NET_ZAURUS=m CONFIG_USB_MON=y CONFIG_USB_USS720=m CONFIG_USB_SERIAL=m CONFIG_USB_SERIAL_GENERIC=y CONFIG_USB_SERIAL_AIRPRIME=m CONFIG_USB_SERIAL_ARK3116=m CONFIG_USB_SERIAL_BELKIN=m CONFIG_USB_SERIAL_WHITEHEAT=m CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m CONFIG_USB_SERIAL_CP2101=m CONFIG_USB_SERIAL_CYPRESS_M8=m CONFIG_USB_SERIAL_EMPEG=m CONFIG_USB_SERIAL_FTDI_SIO=m CONFIG_USB_SERIAL_FUNSOFT=m CONFIG_USB_SERIAL_VISOR=m CONFIG_USB_SERIAL_IPAQ=m CONFIG_USB_SERIAL_IR=m CONFIG_USB_SERIAL_EDGEPORT=m CONFIG_USB_SERIAL_EDGEPORT_TI=m CONFIG_USB_SERIAL_GARMIN=m CONFIG_USB_SERIAL_IPW=m CONFIG_USB_SERIAL_KEYSPAN_PDA=m CONFIG_USB_SERIAL_KEYSPAN=m CONFIG_USB_SERIAL_KEYSPAN_MPR=y CONFIG_USB_SERIAL_KEYSPAN_USA28=y CONFIG_USB_SERIAL_KEYSPAN_USA28X=y CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y CONFIG_USB_SERIAL_KEYSPAN_USA19=y CONFIG_USB_SERIAL_KEYSPAN_USA18X=y CONFIG_USB_SERIAL_KEYSPAN_USA19W=y CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y CONFIG_USB_SERIAL_KEYSPAN_USA49W=y CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y CONFIG_USB_SERIAL_KLSI=m CONFIG_USB_SERIAL_KOBIL_SCT=m CONFIG_USB_SERIAL_MCT_U232=m CONFIG_USB_SERIAL_MOS7840=m CONFIG_USB_SERIAL_NAVMAN=m CONFIG_USB_SERIAL_PL2303=m CONFIG_USB_SERIAL_QUALCOMM=m CONFIG_USB_SERIAL_HP4X=m CONFIG_USB_SERIAL_SAFE=m CONFIG_USB_SERIAL_SAFE_PADDED=y CONFIG_USB_SERIAL_SIERRAWIRELESS=m CONFIG_USB_SERIAL_TI=m CONFIG_USB_SERIAL_CYBERJACK=m CONFIG_USB_SERIAL_XIRCOM=m CONFIG_USB_SERIAL_OPTION=m CONFIG_USB_SERIAL_OMNINET=m CONFIG_USB_EZUSB=y CONFIG_USB_EMI62=m CONFIG_USB_EMI26=m CONFIG_USB_AUERSWALD=m CONFIG_USB_RIO500=m CONFIG_USB_LEGOTOWER=m CONFIG_USB_LCD=m CONFIG_USB_LED=m CONFIG_USB_PHIDGETKIT=m CONFIG_USB_PHIDGETSERVO=m CONFIG_USB_IDMOUSE=m CONFIG_USB_APPLEDISPLAY=m CONFIG_USB_SISUSBVGA=m CONFIG_USB_SISUSBVGA_CON=y CONFIG_USB_LD=m CONFIG_USB_TEST=m CONFIG_USB_ATM=m CONFIG_USB_SPEEDTOUCH=m CONFIG_USB_CXACRU=m CONFIG_USB_UEAGLEATM=m CONFIG_USB_XUSBATM=m CONFIG_MMC=m CONFIG_MMC_BLOCK=m CONFIG_MMC_SDHCI=m CONFIG_MMC_WBSD=m CONFIG_NEW_LEDS=y CONFIG_LEDS_CLASS=y CONFIG_LEDS_TRIGGERS=y CONFIG_LEDS_TRIGGER_TIMER=m CONFIG_LEDS_TRIGGER_IDE_DISK=y CONFIG_LEDS_TRIGGER_HEARTBEAT=m CONFIG_INFINIBAND=m CONFIG_INFINIBAND_USER_MAD=m CONFIG_INFINIBAND_USER_ACCESS=m CONFIG_INFINIBAND_USER_MEM=y CONFIG_INFINIBAND_ADDR_TRANS=y CONFIG_INFINIBAND_MTHCA=m CONFIG_INFINIBAND_MTHCA_DEBUG=y CONFIG_INFINIBAND_IPATH=m CONFIG_INFINIBAND_CXGB3=m CONFIG_INFINIBAND_CXGB4=m CONFIG_INFINIBAND_NES=m CONFIG_INFINIBAND_QIB=m CONFIG_MLX4_INFINIBAND=m CONFIG_INFINIBAND_IPOIB=m CONFIG_INFINIBAND_IPOIB_CM=y CONFIG_INFINIBAND_IPOIB_DEBUG=y CONFIG_INFINIBAND_SRP=m CONFIG_INFINIBAND_ISER=m CONFIG_INFINIBAND_SDP=m CONFIG_INFINIBAND_SDP_DEBUG=y CONFIG_INFINIBAND_SDP_DEBUG_DATA=y CONFIG_INFINIBAND_QLGC_VNIC=m CONFIG_INFINIBAND_MADEYE=m CONFIG_EDAC=y CONFIG_EDAC_DECODE_MCE=y CONFIG_EDAC_MM_EDAC=m CONFIG_EDAC_MCE=y CONFIG_EDAC_E752X=m CONFIG_EDAC_I3000=m CONFIG_EDAC_I3200=m CONFIG_EDAC_I5000=m CONFIG_EDAC_I5400=m CONFIG_EDAC_I7CORE=m CONFIG_EDAC_K8=m CONFIG_EDAC_AMD64=m CONFIG_EDAC_POLL=y CONFIG_EDAC_I7300=m CONFIG_RTC_LIB=m CONFIG_RTC_CLASS=m CONFIG_RTC_INTF_SYSFS=m CONFIG_RTC_INTF_PROC=m CONFIG_RTC_INTF_DEV=m CONFIG_RTC_DRV_X1205=m CONFIG_RTC_DRV_DS1307=m CONFIG_RTC_DRV_DS1553=m CONFIG_RTC_DRV_ISL1208=m CONFIG_RTC_DRV_DS1672=m CONFIG_RTC_DRV_DS1742=m CONFIG_RTC_DRV_PCF8563=m CONFIG_RTC_DRV_PCF8583=m CONFIG_RTC_DRV_RS5C372=m CONFIG_RTC_DRV_V3020=m CONFIG_DMA_ENGINE=m CONFIG_INTEL_IOATDMA=m CONFIG_DCA=m CONFIG_DMA_ENGINE_V3=y CONFIG_NET_DMA=y CONFIG_INTEL_IOATDMA_V3=m CONFIG_UIO=m CONFIG_HYPERV=m CONFIG_HYPERV_UTILS=m CONFIG_HID_BASE_HV=m CONFIG_HID_HYPERV_MOUSE=m CONFIG_EDD=m CONFIG_DELL_RBU=m CONFIG_DCDBAS=m CONFIG_ISCSI_IBFT_FIND=y CONFIG_ISCSI_IBFT=m CONFIG_EXT2_FS=y CONFIG_EXT2_FS_XATTR=y CONFIG_EXT2_FS_POSIX_ACL=y CONFIG_EXT2_FS_SECURITY=y CONFIG_EXT2_FS_XIP=y CONFIG_FS_XIP=y CONFIG_EXT3_FS=m CONFIG_EXT3_FS_XATTR=y CONFIG_EXT3_FS_POSIX_ACL=y CONFIG_EXT3_FS_SECURITY=y CONFIG_EXT4_FS=m CONFIG_EXT4DEV_COMPAT=y CONFIG_EXT4_FS_XATTR=y CONFIG_EXT4_FS_POSIX_ACL=y CONFIG_EXT4_FS_SECURITY=y CONFIG_EXT4_DEBUG=y CONFIG_JBD=m CONFIG_JBD2=m CONFIG_FS_MBCACHE=y CONFIG_FS_POSIX_ACL=y CONFIG_XFS_FS=m CONFIG_XFS_QUOTA=y CONFIG_XFS_POSIX_ACL=y CONFIG_GFS2_FS=m CONFIG_GFS2_FS_LOCKING_NOLOCK=m CONFIG_GFS2_FS_LOCKING_DLM=m CONFIG_INOTIFY=y CONFIG_INOTIFY_USER=y CONFIG_QUOTA=y CONFIG_QFMT_V2=y CONFIG_QUOTACTL=y CONFIG_DNOTIFY=y CONFIG_AUTOFS4_FS=m CONFIG_FUSE_FS=m CONFIG_FSCACHE=m CONFIG_ISO9660_FS=y CONFIG_JOLIET=y CONFIG_ZISOFS=y CONFIG_ZISOFS_FS=y CONFIG_UDF_FS=m CONFIG_UDF_NLS=y CONFIG_CACHEFILES=m CONFIG_CACHEFILES_DEBUG=y CONFIG_FAT_FS=m CONFIG_MSDOS_FS=m CONFIG_VFAT_FS=m CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="ascii" CONFIG_PROC_FS=y CONFIG_PROC_KCORE=y CONFIG_PROC_VMCORE=y CONFIG_SYSFS=y CONFIG_TMPFS=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y CONFIG_RAMFS=y CONFIG_CONFIGFS_FS=m CONFIG_ECRYPT_FS=m CONFIG_HFS_FS=m CONFIG_HFSPLUS_FS=m CONFIG_JFFS2_FS=m CONFIG_JFFS2_FS_DEBUG=0 CONFIG_JFFS2_FS_WRITEBUFFER=y CONFIG_JFFS2_SUMMARY=y CONFIG_JFFS2_ZLIB=y CONFIG_JFFS2_RTIME=y CONFIG_CRAMFS=m CONFIG_SQUASHFS=m CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 CONFIG_VXFS_FS=m CONFIG_NFS_FS=m CONFIG_NFS_V3=y CONFIG_NFS_V3_ACL=y CONFIG_NFS_V4=y CONFIG_NFS_DIRECTIO=y CONFIG_NFSD=m CONFIG_NFSD_V3=y CONFIG_NFSD_V3_ACL=y CONFIG_NFSD_V4=y CONFIG_NFSD_TCP=y CONFIG_LOCKD=m CONFIG_LOCKD_V4=y CONFIG_EXPORTFS=m CONFIG_NFS_ACL_SUPPORT=m CONFIG_NFS_COMMON=y CONFIG_SUNRPC=m CONFIG_SUNRPC_GSS=m CONFIG_RPCSEC_GSS_KRB5=m CONFIG_RPCSEC_GSS_SPKM3=m CONFIG_CIFS=m CONFIG_CIFS_STATS=y CONFIG_CIFS_WEAK_PW_HASH=y CONFIG_CIFS_XATTR=y CONFIG_CIFS_POSIX=y CONFIG_CIFS_EXPERIMENTAL=y CONFIG_CIFS_UPCALL=y CONFIG_CIFS_DFS_UPCALL=y CONFIG_PARTITION_ADVANCED=y CONFIG_OSF_PARTITION=y CONFIG_AMIGA_PARTITION=y CONFIG_MAC_PARTITION=y CONFIG_MSDOS_PARTITION=y CONFIG_BSD_DISKLABEL=y CONFIG_MINIX_SUBPARTITION=y CONFIG_SOLARIS_X86_PARTITION=y CONFIG_UNIXWARE_DISKLABEL=y CONFIG_SGI_PARTITION=y CONFIG_SUN_PARTITION=y CONFIG_KARMA_PARTITION=y CONFIG_EFI_PARTITION=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="utf8" CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_CODEPAGE_737=m CONFIG_NLS_CODEPAGE_775=m CONFIG_NLS_CODEPAGE_850=m CONFIG_NLS_CODEPAGE_852=m CONFIG_NLS_CODEPAGE_855=m CONFIG_NLS_CODEPAGE_857=m CONFIG_NLS_CODEPAGE_860=m CONFIG_NLS_CODEPAGE_861=m CONFIG_NLS_CODEPAGE_862=m CONFIG_NLS_CODEPAGE_863=m CONFIG_NLS_CODEPAGE_864=m CONFIG_NLS_CODEPAGE_865=m CONFIG_NLS_CODEPAGE_866=m CONFIG_NLS_CODEPAGE_869=m CONFIG_NLS_CODEPAGE_936=m CONFIG_NLS_CODEPAGE_950=m CONFIG_NLS_CODEPAGE_932=m CONFIG_NLS_CODEPAGE_949=m CONFIG_NLS_CODEPAGE_874=m CONFIG_NLS_ISO8859_8=m CONFIG_NLS_CODEPAGE_1250=m CONFIG_NLS_CODEPAGE_1251=m CONFIG_NLS_ASCII=y CONFIG_NLS_ISO8859_1=m CONFIG_NLS_ISO8859_2=m CONFIG_NLS_ISO8859_3=m CONFIG_NLS_ISO8859_4=m CONFIG_NLS_ISO8859_5=m CONFIG_NLS_ISO8859_6=m CONFIG_NLS_ISO8859_7=m CONFIG_NLS_ISO8859_9=m CONFIG_NLS_ISO8859_13=m CONFIG_NLS_ISO8859_14=m CONFIG_NLS_ISO8859_15=m CONFIG_NLS_KOI8_R=m CONFIG_NLS_KOI8_U=m CONFIG_NLS_UTF8=m CONFIG_DLM=m CONFIG_DLM_DEBUG=y CONFIG_PROFILING=y CONFIG_OPROFILE=m CONFIG_HAVE_OPTPROBES=y CONFIG_KPROBES=y CONFIG_OPTPROBES=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_MAGIC_SYSRQ=y CONFIG_DEBUG_KERNEL=y CONFIG_LOG_BUF_SHIFT=19 CONFIG_DETECT_SOFTLOCKUP=y CONFIG_DETECT_HUNG_TASK=y CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 CONFIG_SCHEDSTATS=y CONFIG_DEBUG_INFO=y CONFIG_DEBUG_FS=y CONFIG_DEBUG_LIST=y CONFIG_BOOT_DELAY=y CONFIG_SAMPLES=y CONFIG_SAMPLE_MARKERS=m CONFIG_SAMPLE_TRACEPOINTS=m CONFIG_DEBUG_RODATA=y CONFIG_DEBUG_STACKOVERFLOW=y CONFIG_X86_DECODER_SELFTEST=y CONFIG_KEYS=y CONFIG_KEYS_DEBUG_PROC_KEYS=y CONFIG_SECURITY=y CONFIG_SECURITY_NETWORK=y CONFIG_SECURITY_NETWORK_XFRM=y CONFIG_SECURITY_CAPABILITIES=y CONFIG_LSM_MMAP_MIN_ADDR=4096 CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_BOOTPARAM=y CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1 CONFIG_SECURITY_SELINUX_DISABLE=y CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 CONFIG_SECURITY_SELINUX_ENABLE_SECMARK_DEFAULT=y CONFIG_CRYPTO=y CONFIG_CRYPTO_API=m CONFIG_CRYPTO_FIPS=y CONFIG_CRYPTO_ALGAPI=m CONFIG_CRYPTO_AEAD=m CONFIG_CRYPTO_BLKCIPHER=m CONFIG_CRYPTO_SEQIV=m CONFIG_CRYPTO_HASH=m CONFIG_CRYPTO_RNG=m CONFIG_CRYPTO_MANAGER=m CONFIG_CRYPTO_HMAC=y CONFIG_CRYPTO_NHMAC=m CONFIG_CRYPTO_XCBC=m CONFIG_CRYPTO_GF128MUL=m CONFIG_CRYPTO_NULL=m CONFIG_CRYPTO_MD4=m CONFIG_CRYPTO_MD5=m CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=m CONFIG_CRYPTO_SHA512=m CONFIG_CRYPTO_WP512=m CONFIG_CRYPTO_TGR192=m CONFIG_CRYPTO_ECB=m CONFIG_CRYPTO_CBC=m CONFIG_CRYPTO_CTR=m CONFIG_CRYPTO_CCM=m CONFIG_CRYPTO_DES=m CONFIG_CRYPTO_BLOWFISH=m CONFIG_CRYPTO_TWOFISH=m CONFIG_CRYPTO_SERPENT=m CONFIG_CRYPTO_AES=m CONFIG_CRYPTO_AES_X86_64=m CONFIG_CRYPTO_CAST5=m CONFIG_CRYPTO_CAST6=m CONFIG_CRYPTO_TEA=m CONFIG_CRYPTO_ARC4=m CONFIG_CRYPTO_KHAZAD=m CONFIG_CRYPTO_ANUBIS=m CONFIG_CRYPTO_DEFLATE=m CONFIG_CRYPTO_MICHAEL_MIC=m CONFIG_CRYPTO_CRC32C=y CONFIG_CRYPTO_TEST=m CONFIG_CRYPTO_AUTHENC=m CONFIG_CRYPTO_SIGNATURE=y CONFIG_CRYPTO_SIGNATURE_DSA=y CONFIG_CRYPTO_MPILIB=y CONFIG_CRYPTO_XTS=m CONFIG_CRYPTO_ANSI_CPRNG=m CONFIG_XEN_BLKDEV_FRONTEND=m CONFIG_XEN_NETDEV_FRONTEND=m CONFIG_XEN_PV_ON_HVM=y CONFIG_CRC_CCITT=m CONFIG_CRC16=m CONFIG_CRC_ITU_T=m CONFIG_CRC32=y CONFIG_LIBCRC32C=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=m CONFIG_GENERIC_ALLOCATOR=y CONFIG_REED_SOLOMON=m CONFIG_REED_SOLOMON_DEC16=y CONFIG_TEXTSEARCH=y CONFIG_TEXTSEARCH_KMP=m CONFIG_TEXTSEARCH_BM=m CONFIG_TEXTSEARCH_FSM=m CONFIG_PLIST=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y
kernel.acct = 4 2 30 kernel.acpi_video_flags = 0 kernel.blk_iopoll = 1 kernel.bootloader_type = 113 kernel.cad_pid = 1 kernel.cap-bound = -257 kernel.compat-log = 1 kernel.core_pattern = core kernel.core_uses_pid = 1 kernel.ctrl-alt-del = 0 kernel.dmesg_restrict = 0 kernel.domainname = (none) kernel.exec-shield = 1 kernel.hostname = centos59 kernel.hotplug = kernel.hung_task_check_count = 4194304 kernel.hung_task_panic = 0 kernel.hung_task_timeout_secs = 120 kernel.keys.maxbytes = 20000 kernel.keys.maxkeys = 200 kernel.keys.root_maxbytes = 20000 kernel.keys.root_maxkeys = 200 kernel.max_lock_depth = 1024 kernel.modprobe = /sbin/modprobe kernel.modules_disabled = 0 kernel.msgmax = 65536 kernel.msgmnb = 65536 kernel.ngroups_max = 65536 kernel.nmi_watchdog = 1 kernel.osrelease = 2.6.18-348.el5 kernel.ostype = Linux kernel.overflowgid = 65534 kernel.overflowuid = 65534 kernel.panic = 0 kernel.panic_on_oops = 1 kernel.panic_on_unrecovered_nmi = 0 kernel.pid_max = 32768 kernel.print-fatal-signals = 0 kernel.pty.max = 4096 kernel.real-root-dev = 0 kernel.sched_interactive = 2 kernel.sem = 250 32000 32 128 kernel.shmall = 4294967296 kernel.shmmax = 68719476736 kernel.shmmni = 4096 kernel.softlockup_panic = 0 kernel.softlockup_thresh = 60 kernel.sysrq = 0 kernel.unknown_nmi_panic = 0 kernel.version = #1 SMP Tue Jan 8 17:53:53 EST 2013 kernel.vsyscall64 = 1
Filesystem 1K-blocks Used Available Use% Mounted on /dev/mapper/VolGroup00-LogVol00 6983168 1921020 4701700 30% / /dev/sda1 101086 12976 82891 14% /boot tmpfs 254864 0 254864 0% /dev/shm
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw) /dev/sda1 on /boot type ext3 (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) proc on /proc type proc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) sysfs on /sys type sysfs (rw) tmpfs on /dev/shm type tmpfs (rw)
<?xml version="1.0" ?> <autofs_ldap_sasl_conf usetls="no" tlsrequired="no" authrequired="no" />
ext3 ext2 nodev proc nodev devpts iso9660 vfat hfs hfsplus
[defaults] base_features = sparse_super,filetype,resize_inode,dir_index blocksize = 4096 inode_ratio = 8192 [fs_types] small = { blocksize = 1024 inode_ratio = 4096 } floppy = { blocksize = 1024 } news = { inode_ratio = 4096 } largefile = { inode_ratio = 1048576 } largefile4 = { inode_ratio = 4194304 }
/dev/VolGroup00/LogVol00 / ext3 defaults 1 1 /dev/VolGroup00/LogVol01 swap swap defaults 0 0 LABEL=/boot /boot ext3 defaults 1 2 devpts /dev/pts devpts gid=5,mode=620 0 0 proc /proc proc defaults 0 0 sysfs /sys sysfs defaults 0 0 tmpfs /dev/shm tmpfs defaults 0 0
/misc /etc/auto.misc /net -hosts +auto.master
cd -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom
Filesystem 1024-blocks Used Available Capacity Mounted on /dev/mapper/VolGroup00-LogVol00 6983168 1921024 4701696 30% / Filesystem Inodes IUsed IFree IUse% Mounted on /dev/mapper/VolGroup00-LogVol00 1802240 67684 1734556 4% / dumpe2fs: dumpe2fs 1.39 (29-May-2006) dumpe2fs: Filesystem volume name: <none> dumpe2fs: Last mounted on: <not available> dumpe2fs: Filesystem UUID: 008ec227-1c15-4ea4-bc2c-d2d8b139eede dumpe2fs: Filesystem magic number: 0xEF53 dumpe2fs: Filesystem revision #: 1 (dynamic) dumpe2fs: Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super large_file dumpe2fs: Default mount options: user_xattr acl dumpe2fs: Filesystem state: clean dumpe2fs: Errors behavior: Continue dumpe2fs: Filesystem OS type: Linux dumpe2fs: Block size: 4096 dumpe2fs: Fragment size: 4096 dumpe2fs: Blocks per group: 32768 dumpe2fs: Fragments per group: 32768 dumpe2fs: Inodes per group: 32768 dumpe2fs: Inode blocks per group: 1024 dumpe2fs: Filesystem created: Wed Sep 18 21:19:28 2013 dumpe2fs: Check interval: 0 (<none>) dumpe2fs: Reserved blocks uid: 0 (user root) dumpe2fs: Reserved blocks gid: 0 (group root) dumpe2fs: First inode: 11 dumpe2fs: Inode size: 128 dumpe2fs: Journal inode: 8 dumpe2fs: First orphan inode: 1511117 dumpe2fs: Default directory hash: tea dumpe2fs: Directory Hash Seed: 00d3ed01-5ed9-44d3-be6e-5549962dba2e dumpe2fs: Journal backup: inode blocks dumpe2fs: Journal size: 128M dumpe2fs:
Filesystem 1024-blocks Used Available Capacity Mounted on /dev/sda1 101086 12976 82891 14% /boot Filesystem Inodes IUsed IFree IUse% Mounted on /dev/sda1 26104 35 26069 1% /boot dumpe2fs: dumpe2fs 1.39 (29-May-2006) dumpe2fs: Filesystem volume name: /boot dumpe2fs: Last mounted on: <not available> dumpe2fs: Filesystem UUID: 7fc3fcd7-26ca-4180-b5c1-04cafb468666 dumpe2fs: Filesystem magic number: 0xEF53 dumpe2fs: Filesystem revision #: 1 (dynamic) dumpe2fs: Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super dumpe2fs: Default mount options: user_xattr acl dumpe2fs: Filesystem state: clean dumpe2fs: Errors behavior: Continue dumpe2fs: Filesystem OS type: Linux dumpe2fs: Block size: 1024 dumpe2fs: Fragment size: 1024 dumpe2fs: Blocks per group: 8192 dumpe2fs: Fragments per group: 8192 dumpe2fs: Inodes per group: 2008 dumpe2fs: Inode blocks per group: 251 dumpe2fs: Filesystem created: Wed Sep 18 21:19:30 2013 dumpe2fs: Check interval: 0 (<none>) dumpe2fs: Reserved blocks uid: 0 (user root) dumpe2fs: Reserved blocks gid: 0 (group root) dumpe2fs: First inode: 11 dumpe2fs: Inode size: 128 dumpe2fs: Journal inode: 8 dumpe2fs: Default directory hash: tea dumpe2fs: Directory Hash Seed: fa6138eb-c92d-4d95-bd8c-525109a025e0 dumpe2fs: Journal backup: inode blocks dumpe2fs: Journal size: 4114k dumpe2fs:
Filesystem 1024-blocks Used Available Capacity Mounted on tmpfs 254864 0 254864 0% /dev/shm Filesystem Inodes IUsed IFree IUse% Mounted on tmpfs 63716 1 63715 1% /dev/shm
LVM2: VolGroup00 0 MB
vgdisplay --- Volume group --- vgdisplay VG Name VolGroup00 vgdisplay System ID vgdisplay Format lvm2 vgdisplay Metadata Areas 1 vgdisplay VG Access read/write vgdisplay VG Status resizable vgdisplay MAX LV 0 vgdisplay Cur LV 2 vgdisplay Open LV 2 vgdisplay Max PV 0 vgdisplay Cur PV 1 vgdisplay Act PV 1 vgdisplay VG Size 7.88 GB vgdisplay PE Size 32.00 MB vgdisplay Total PE 252 vgdisplay Alloc PE / Size 252 / 7.88 GB vgdisplay Free PE / Size 0 / 0 vgdisplay VG UUID PZmf3u-RROq-5BxF-MeBb-fsYT-lCHG-D6iyEg vgdisplay
/dev/sda2 0 MB total 0 MB
LV FS-type Size Mountpoint LogVol00 ext3 7040 MB / LogVol01 - 1024 MB swap
LogVol00 Logical extent 0 to 219: LogVol00 Type linear LogVol00 Physical volume /dev/sda2 LogVol00 Physical extents 0 to 219 LogVol01 Logical extent 0 to 31: LogVol01 Type linear LogVol01 Physical volume /dev/sda2 LogVol01 Physical extents 220 to 251
LV Name /dev/VolGroup00/LogVol00 VG Name VolGroup00 LV UUID 1QKJWc-Zfdm-ye1H-rniY-14Dj-UkEg-Zx8kKb LV Write Access read/write LV Status available # open 1 LV Size 6.88 GB Current LE 220 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 253:0 device file /dev/VolGroup00/LogVol00 -> /dev/mapper/VolGroup00-LogVol00 device file brw-rw---- 1 root disk 253, 0 /dev/mapper/VolGroup00-LogVol00
LV Name /dev/VolGroup00/LogVol01 VG Name VolGroup00 LV UUID Dq9jpq-DOIn-0TYo-cMi0-I2H3-tq8c-Zeugty LV Write Access read/write LV Status available # open 1 LV Size 1.00 GB Current LE 32 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 253:1 device file /dev/VolGroup00/LogVol01 -> /dev/mapper/VolGroup00-LogVol01 device file brw-rw---- 1 root disk 253, 1 /dev/mapper/VolGroup00-LogVol01
PV Name /dev/sda2 VG Name VolGroup00 PV Size 7.90 GB / not usable 23.41 MB Allocatable yes (but full) PE Size (KByte) 32768 Total PE 252 Free PE 0 Allocated PE 252 PV UUID iVe4gT-gu8Y-1GGJ-ZUno-HE2B-93XX-z7otB9
LV Path Devices LSize Maj Min KMaj KMin LV UUID Origin LogVol00 /dev/VolGroup00/LogVol00 /dev/sda2(0) 6.88G -1 -1 253 0 1QKJWc-Zfdm-ye1H-rniY-14Dj-UkEg-Zx8kKb LogVol01 /dev/VolGroup00/LogVol01 /dev/sda2(220) 1.00G -1 -1 253 1 Dq9jpq-DOIn-0TYo-cMi0-I2H3-tq8c-Zeugty
devices { dir="/dev" scan="/dev" obtain_device_list_from_udev=1 preferred_names=[] filter="a/.*/" cache_dir="/etc/lvm/cache" cache_file_prefix="" write_cache_state=1 sysfs_scan=1 multipath_component_detection=1 md_component_detection=1 md_chunk_alignment=1 default_data_alignment=0 data_alignment_detection=1 data_alignment=0 data_alignment_offset_detection=1 ignore_suspended_devices=0 disable_after_error_count=0 require_restorefile_with_uuid=1 pv_min_size=2048 issue_discards=0 } dmeventd { mirror_library="libdevmapper-event-lvm2mirror.so" snapshot_library="libdevmapper-event-lvm2snapshot.so" } activation { checks=0 udev_sync=1 udev_rules=1 verify_udev_operations=0 missing_stripe_filler="error" reserved_stack=256 reserved_memory=8192 process_priority=-18 mirror_region_size=512 readahead="auto" mirror_log_fault_policy="allocate" mirror_image_fault_policy="remove" snapshot_autoextend_threshold=100 snapshot_autoextend_percent=20 use_mlockall=0 monitoring=1 polling_interval=15 } global { umask=63 test=0 units="h" si_unit_consistency=0 activation=1 proc="/proc" locking_type=1 wait_for_locks=1 fallback_to_clustered_locking=1 fallback_to_local_locking=1 locking_dir="/var/lock/lvm" prioritise_write_locks=1 abort_on_internal_errors=0 detect_internal_vg_cache_corruption=0 metadata_read_only=0 } shell { history_size=100 } backup { backup=1 backup_dir="/etc/lvm/backup" archive=1 archive_dir="/etc/lvm/archive" retain_min=10 retain_days=30 } log { verbose=0 syslog=1 overwrite=0 level=0 indent=1 command_names=0 prefix=" " } version: LVM version: 2.02.88(2)-RHEL5 (2012-01-20) version: Library version: 1.02.67-RHEL5 (2011-10-14) version: Driver version: 4.11.6
State: ACTIVE Read Ahead: 256 Tables present: LIVE Open count: 1 Event number: 0 Major, minor: 253, 1 Number of targets: 1 UUID: LVM-PZmf3uRROq5BxFMeBbfsYTlCHGD6iyEgDq9jpqDOIn0TYocMi0I2H3tq8cZeugty
State: ACTIVE Read Ahead: 256 Tables present: LIVE Open count: 1 Event number: 0 Major, minor: 253, 0 Number of targets: 1 UUID: LVM-PZmf3uRROq5BxFMeBbfsYTlCHGD6iyEg1QKJWcZfdmye1HrniY14DjUkEgZx8kKb
devices { dir = "/dev" scan = [ "/dev" ] obtain_device_list_from_udev = 1 preferred_names = [ ] filter = [ "a/.*/" ] cache_dir = "/etc/lvm/cache" cache_file_prefix = "" write_cache_state = 1 sysfs_scan = 1 multipath_component_detection = 1 md_component_detection = 1 md_chunk_alignment = 1 default_data_alignment = 0 data_alignment_detection = 1 data_alignment = 0 data_alignment_offset_detection = 1 ignore_suspended_devices = 0 disable_after_error_count = 0 require_restorefile_with_uuid = 1 pv_min_size = 2048 issue_discards = 0 } log { verbose = 0 syslog = 1 overwrite = 0 level = 0 indent = 1 command_names = 0 prefix = " " } backup { backup = 1 backup_dir = "/etc/lvm/backup" archive = 1 archive_dir = "/etc/lvm/archive" retain_min = 10 retain_days = 30 } shell { history_size = 100 } global { umask = 077 test = 0 units = "h" si_unit_consistency = 0 activation = 1 proc = "/proc" locking_type = 1 wait_for_locks = 1 fallback_to_clustered_locking = 1 fallback_to_local_locking = 1 locking_dir = "/var/lock/lvm" prioritise_write_locks = 1 abort_on_internal_errors = 0 detect_internal_vg_cache_corruption = 0 metadata_read_only = 0 } activation { checks = 0 udev_sync = 1 udev_rules = 1 verify_udev_operations = 0 missing_stripe_filler = "error" reserved_stack = 256 reserved_memory = 8192 process_priority = -18 mirror_region_size = 512 readahead = "auto" mirror_log_fault_policy = "allocate" mirror_image_fault_policy = "remove" snapshot_autoextend_threshold = 100 snapshot_autoextend_percent = 20 use_mlockall = 0 monitoring = 1 polling_interval = 15 } dmeventd { mirror_library = "libdevmapper-event-lvm2mirror.so" snapshot_library = "libdevmapper-event-lvm2snapshot.so" }
[server] browse-domains=0pointer.de, zeroconf.org use-ipv4=yes use-ipv6=yes [wide-area] enable-wide-area=yes [publish] [reflector] [rlimits] rlimit-core=0 rlimit-data=4194304 rlimit-fsize=0 rlimit-nofile=30 rlimit-stack=4194304 rlimit-nproc=3
The result of SIOCGIFFLAGS on lo is 49. The result of SIOCGIFADDR is 7f.00.00.01. The result of SIOCGIFHWADDR is type 772 00:00:00:00:00:00. The result of SIOCGIFFLAGS on eth0 is 1043. The result of SIOCGIFADDR is ffffffc0.ffffffa8.00.ffffffc1. The result of SIOCGIFHWADDR is type 1 08:00:27:e8:7a:02. The result of SIOCGIFFLAGS on eth1 is 1043. The result of SIOCGIFADDR is ffffffc0.ffffffa8.38.1a. The result of SIOCGIFHWADDR is type 1 08:00:27:f7:cf:17.
conf-dir=/etc/dnsmasq.d
Server: 213.46.228.196 Address: 213.46.228.196#53 ** server can't find centos59: NXDOMAIN
version: BIND 9.3.6-P1-RedHat-9.3.6-20.P1.el5_8.5
127.0.0.1 localhost.localdomain localhost ::1 localhost6.localdomain6 localhost6 192.168.56.10 centos64 192.168.56.26 centos59 192.168.56.39 fc27srv 192.168.56.45 fc29srv
[General] [Mapping] Nobody-User = nobody Nobody-Group = nobody [Translation] Method = nsswitch [Static]
passwd: files shadow: files group: files hosts: files dns bootparams: nisplus [NOTFOUND=return] files ethers: files netmasks: files networks: files protocols: files rpc: files services: files netgroup: nisplus publickey: nisplus automount: files nisplus aliases: files nisplus sudoers: files ldap
server-user nscd debug-level 0 paranoia no enable-cache passwd yes positive-time-to-live passwd 600 negative-time-to-live passwd 20 suggested-size passwd 211 check-files passwd yes persistent passwd yes shared passwd yes max-db-size passwd 33554432 auto-propagate passwd yes enable-cache group yes positive-time-to-live group 3600 negative-time-to-live group 60 suggested-size group 211 check-files group yes persistent group yes shared group yes max-db-size group 33554432 auto-propagate group yes enable-cache hosts yes positive-time-to-live hosts 3600 negative-time-to-live hosts 20 suggested-size hosts 211 check-files hosts yes persistent hosts yes shared hosts yes max-db-size hosts 33554432
lock
ip 0 IP # internet protocol, pseudo protocol number hopopt 0 HOPOPT # hop-by-hop options for ipv6 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'') st 5 ST # ST datagram mode 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 Tranfer 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 # Encap 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 # 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 vrrp 112 VRRP # Virtual Router 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 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 crdup 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 udplite 136 UDPLite mpls-in-ip 137 MPLS-in-IP
portmapper 100000 portmap sunrpc rpcbind rstatd 100001 rstat rup perfmeter rstat_svc 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 bootparam 100026 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 ypxfrd 100069 rpc.ypxfrd bugtraqd 100071 kerbd 100078 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 ufsd pcnfsd 150001 pcnfs amd 300019 amq sgi_fam 391002 fam bwnfsd 545580417 fypxfrd 600100069 freebsd-ypxfrd
waitretry = 10
0001: ; generated by /sbin/dhclient-script 0002: search arnhem.chello.nl 0003: nameserver 213.46.228.196 0004: nameserver 62.179.104.196
com2sec notConfigUser default public group notConfigGroup v1 notConfigUser group notConfigGroup v2c notConfigUser view systemview included .1.3.6.1.2.1.1 view systemview included .1.3.6.1.2.1.25.1.1 access notConfigGroup "" any noauth exact systemview none none syslocation Unknown (edit /etc/snmp/snmpd.conf) syscontact Root <root@localhost> (configure /etc/snmp/snmp.local.conf) pass .1.3.6.1.4.1.4413.4.1 /usr/bin/ucd5820stat
rtmp 1/ddp # Routing Table Maintenance Protocol tcpmux 1/tcp # TCP port service multiplexer tcpmux 1/udp # TCP port service multiplexer 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 systat 11/udp users daytime 13/tcp daytime 13/udp netstat 15/tcp # (was once asssigned, no more) qotd 17/tcp quote qotd 17/udp quote msp 18/tcp # message send protocol msp 18/udp # message send protocol chargen 19/tcp ttytst source chargen 19/udp ttytst source ftp-data 20/tcp ftp-data 20/udp ftp 21/tcp ftp 21/udp fsp fspd ssh 22/tcp # SSH Remote Login Protocol ssh 22/udp # SSH Remote Login Protocol telnet 23/tcp telnet 23/udp lmtp 24/tcp # LMTP Mail Delivery lmtp 24/udp # LMTP Mail Delivery smtp 25/tcp mail smtp 25/udp mail 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 rlp 39/udp resource # resource location graphics 41/tcp # Graphics graphics 41/udp # Graphics nameserver 42/tcp name # IEN 116 nameserver 42/udp name # IEN 116 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 # name-domain server domain 53/udp 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 # BOOTP server bootps 67/udp bootpc 68/tcp dhcpc # BOOTP client bootpc 68/udp dhcpc tftp 69/tcp tftp 69/udp gopher 70/tcp # Internet Gopher 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 vettcp 78/udp # vettcp finger 79/tcp finger 79/udp http 80/tcp www www-http # WorldWideWeb HTTP http 80/udp www www-http # HyperText Transfer Protocol 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 mfcobol 86/tcp # Micro Focus Cobol mfcobol 86/udp # Micro Focus Cobol kerberos 88/tcp kerberos5 krb5 # Kerberos v5 kerberos 88/udp kerberos5 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 linuxconf 98/tcp # Linuxconf HTML access metagram 99/tcp # Metagram Relay metagram 99/udp # Metagram Relay newacct 100/tcp # [unauthorized use] hostname 101/tcp hostnames # usually from sri-nic hostname 101/udp hostnames # usually from sri-nic iso-tsap 102/tcp tsap # part of ISODE. 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 # also used by CSO name server csnet-ns 105/udp cso poppassd 106/tcp # Eudora poppassd 106/udp # Eudora rtelnet 107/tcp # Remote Telnet rtelnet 107/udp snagas 108/tcp # SNA Gateway Access Server snagas 108/udp # SNA Gateway Access Server pop2 109/tcp pop-2 postoffice # POP version 2 pop2 109/udp pop-2 pop3 110/tcp pop-3 # POP version 3 pop3 110/udp pop-3 sunrpc 111/tcp portmapper # RPC 4.0 portmapper TCP sunrpc 111/udp portmapper # RPC 4.0 portmapper UDP mcidas 112/tcp # McIDAS Data Transmission Protocol mcidas 112/udp # McIDAS Data Transmission Protocol auth 113/tcp authentication tap ident auth 113/udp authentication tap ident sftp 115/tcp sftp 115/udp ansanotify 116/tcp # ANSA REX Notify ansanotify 116/udp # ANSA REX Notify uucp-path 117/tcp uucp-path 117/udp sqlserv 118/tcp # SQL Services sqlserv 118/udp # SQL Services nntp 119/tcp readnews untp # USENET News Transfer Protocol nntp 119/udp readnews untp # USENET News Transfer Protocol cfdptkt 120/tcp # CFDPTKT cfdptkt 120/udp # CFDPTKT erpc 121/tcp # Encore Expedited Remote Pro.Call erpc 121/udp # Encore Expedited Remote Pro.Call smakynet 122/tcp # SMAKYNET smakynet 122/udp # SMAKYNET ntp 123/tcp 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 nxedit 126/tcp # NXEdit nxedit 126/udp # NXEdit 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 epmap 135/tcp # DCE endpoint resolution epmap 135/udp # DCE endpoint resolution profile 136/tcp # PROFILE Naming System profile 136/udp # PROFILE Naming System netbios-ns 137/tcp # NETBIOS Name Service netbios-ns 137/udp netbios-dgm 138/tcp # NETBIOS Datagram Service netbios-dgm 138/udp netbios-ssn 139/tcp # NETBIOS session service netbios-ssn 139/udp 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 # Interim Mail Access Proto v2 imap 143/udp imap2 uma 144/tcp # Universal Management Architecture uma 144/udp # Universal Management Architecture uaac 145/tcp # UAAC Protocol uaac 145/udp # UAAC Protocol iso-tp0 146/tcp # ISO-IP0 iso-tp0 146/udp # ISO-IP0 iso-ip 147/tcp # ISO-IP iso-ip 147/udp # ISO-IP jargon 148/tcp # Jargon jargon 148/udp # Jargon aed-512 149/tcp # AED 512 Emulation Service aed-512 149/udp # AED 512 Emulation Service sql-net 150/tcp # SQL-NET sql-net 150/udp # SQL-NET hems 151/tcp # HEMS hems 151/udp # HEMS bftp 152/tcp # Background File Transfer Program bftp 152/udp # Background File Transfer Program sgmp 153/tcp # SGMP sgmp 153/udp # SGMP netsc-prod 154/tcp # NETSC netsc-prod 154/udp # NETSC netsc-dev 155/tcp # NETSC netsc-dev 155/udp # NETSC 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 nss-routing 159/udp # NSS-Routing sgmp-traps 160/tcp # SGMP-TRAPS sgmp-traps 160/udp # SGMP-TRAPS snmp 161/tcp # Simple Net Mgmt Proto snmp 161/udp # Simple Net Mgmt Proto snmptrap 162/udp snmp-trap # Traps for SNMP cmip-man 163/tcp # ISO mgmt over IP (CMOT) cmip-man 163/udp cmip-agent 164/tcp cmip-agent 164/udp 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 namp 167/udp # NAMP rsvd 168/tcp # RSVD rsvd 168/udp # RSVD send 169/tcp # SEND send 169/udp # SEND 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 xyplex-mux 173/udp # Xyplex mailq 174/tcp # MAILQ mailq 174/udp # MAILQ vmnet 175/tcp # VMNET vmnet 175/udp # VMNET genrad-mux 176/tcp # GENRAD-MUX genrad-mux 176/udp # GENRAD-MUX xdmcp 177/tcp # X Display Mgr. Control Proto xdmcp 177/udp nextstep 178/tcp NeXTStep NextStep # NeXTStep window nextstep 178/udp NeXTStep NextStep # server bgp 179/tcp # Border Gateway Proto. bgp 179/udp ris 180/tcp # Intergraph ris 180/udp # Intergraph unify 181/tcp # Unify unify 181/udp # Unify audit 182/tcp # Unisys Audit SITP audit 182/udp # Unisys Audit SITP ocbinder 183/tcp # OCBinder ocbinder 183/udp # OCBinder ocserver 184/tcp # OCServer ocserver 184/udp # OCServer remote-kis 185/tcp # Remote-KIS remote-kis 185/udp # Remote-KIS 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 # Gateway Access Control Protocol prospero 191/tcp # Cliff Neuman's Prospero prospero 191/udp 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 irc 194/udp 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 # SNMP Unix Multiplexer smux 199/udp src 200/tcp # IBM System Resource Controller src 200/udp # IBM System Resource Controller at-rtmp 201/tcp # AppleTalk routing at-rtmp 201/udp at-nbp 202/tcp # AppleTalk name binding at-nbp 202/udp at-3 203/tcp # AppleTalk Unused at-3 203/udp # AppleTalk Unused at-echo 204/tcp # AppleTalk echo at-echo 204/udp at-5 205/tcp # AppleTalk Unused at-5 205/udp # AppleTalk Unused at-zis 206/tcp # AppleTalk zone information at-zis 206/udp 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 # Quick Mail Transfer Protocol qmtp 209/udp # Quick Mail Transfer Protocol z39.50 210/tcp z3950 wais # NISO Z39.50 database z39.50 210/udp z3950 wais 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 ipx 213/udp vmpwscs 214/tcp # VM PWSCS vmpwscs 214/udp # VM PWSCS softpc 215/tcp # Insignia Solutions softpc 215/udp # Insignia Solutions CAIlic 216/tcp # Computer Associates Int'l License Server CAIlic 216/udp # 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 imap3 220/udp # 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 masqdialer 224/udp # masqdialer direct 242/tcp # Direct direct 242/udp # Direct sur-meas 243/tcp # Survey Measurement sur-meas 243/udp # Survey Measurement inbusiness 244/tcp # inbusiness inbusiness 244/udp # inbusiness link 245/tcp ttylink link 245/udp ttylink 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 bhfhs 248/udp # bhfhs set 257/tcp # Secure Electronic Transaction set 257/udp # Secure Electronic Transaction yak-chat 258/tcp # Yak Winsock Personal Chat yak-chat 258/udp # Yak Winsock Personal Chat esro-gen 259/tcp # Efficient Short Remote Operations esro-gen 259/udp # Efficient Short Remote Operations openport 260/tcp # Openport openport 260/udp # Openport nsiiops 261/tcp # IIOP Name Service over TLS/SSL nsiiops 261/udp # IIOP Name Service over TLS/SSL arcisdms 262/tcp # Arcisdms arcisdms 262/udp # Arcisdms hdap 263/tcp # HDAP hdap 263/udp # HDAP bgmp 264/tcp # BGMP bgmp 264/udp # BGMP 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 http-mgmt 280/udp # http-mgmt personal-link 281/tcp # Personal Link personal-link 281/udp # Personal Link cableport-ax 282/tcp # Cable Port A/X cableport-ax 282/udp # Cable Port A/X rescap 283/tcp # rescap rescap 283/udp # rescap corerjd 284/tcp # corerjd corerjd 284/udp # corerjd fxp 286/tcp # FXP Communication fxp 286/udp # FXP Communication k-block 287/tcp # K-BLOCK k-block 287/udp # K-BLOCK novastorbakcup 308/tcp # Novastor Backup novastorbakcup 308/udp # Novastor Backup entrusttime 309/tcp # EntrustTime entrusttime 309/udp # EntrustTime bhmds 310/tcp # bhmds bhmds 310/udp # bhmds asip-webadmin 311/tcp # AppleShare IP WebAdmin asip-webadmin 311/udp # AppleShare IP WebAdmin vslmp 312/tcp # VSLMP vslmp 312/udp # VSLMP magenta-logic 313/tcp # Magenta Logic magenta-logic 313/udp # Magenta Logic opalis-robot 314/tcp # Opalis Robot opalis-robot 314/udp # Opalis Robot dpsi 315/tcp # DPSI dpsi 315/udp # DPSI decauth 316/tcp # decAuth decauth 316/udp # decAuth zannet 317/tcp # Zannet zannet 317/udp # Zannet 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 pip 321/udp # PIP rtsps 322/tcp # RTSPS rtsps 322/udp # RTSPS 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 mftp 349/udp # mftp matip-type-a 350/tcp # MATIP Type A matip-type-a 350/udp # MATIP Type A bhoetty 351/tcp # bhoetty (added 5/21/97) bhoetty 351/udp # bhoetty matip-type-b 351/tcp # MATIP Type B matip-type-b 351/udp # MATIP Type B bhoedap4 352/tcp # bhoedap4 (added 5/21/97) bhoedap4 352/udp # bhoedap4 dtag-ste-sb 352/tcp # DTAG (assigned long ago) dtag-ste-sb 352/udp # DTAG ndsauth 353/tcp # NDSAUTH ndsauth 353/udp # NDSAUTH bh611 354/tcp # bh611 bh611 354/udp # bh611 datex-asn 355/tcp # DATEX-ASN datex-asn 355/udp # DATEX-ASN cloanto-net-1 356/tcp # Cloanto Net 1 cloanto-net-1 356/udp # Cloanto Net 1 bhevent 357/tcp # bhevent bhevent 357/udp # bhevent shrinkwrap 358/tcp # Shrinkwrap shrinkwrap 358/udp # Shrinkwrap nsrmp 359/tcp # Network Security Risk Management Protocol nsrmp 359/udp # Network Security Risk Management Protocol scoi2odialog 360/tcp # scoi2odialog scoi2odialog 360/udp # scoi2odialog semantix 361/tcp # Semantix semantix 361/udp # Semantix srssend 362/tcp # SRS Send srssend 362/udp # SRS Send rsvp_tunnel 363/tcp rsvp_tunnel 363/udp aurora-cmgr 364/tcp # Aurora CMGR aurora-cmgr 364/udp # Aurora CMGR dtk 365/tcp # DTK dtk 365/udp # DTK odmr 366/tcp # odmr required by fetchmail odmr 366/udp # odmr required by fetchmail mortgageware 367/tcp # MortgageWare mortgageware 367/udp # MortgageWare qbikgdp 368/tcp # QbikGDP qbikgdp 368/udp # QbikGDP rpc2portmap 369/tcp rpc2portmap 369/udp # Coda portmapper codaauth2 370/tcp codaauth2 370/udp # Coda authentication server clearcase 371/tcp # Clearcase clearcase 371/udp # Clearcase ulistproc 372/tcp ulistserv # UNIX Listserv ulistproc 372/udp ulistserv legent-1 373/tcp # Legent Corporation legent-1 373/udp # Legent Corporation legent-2 374/tcp # Legent Corporation legent-2 374/udp # Legent Corporation hassle 375/tcp # Hassle hassle 375/udp # Hassle 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 unidata-ldm 388/udp # Unidata LDM ldap 389/tcp ldap 389/udp uis 390/tcp # UIS uis 390/udp # UIS 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 meta5 393/tcp # Meta5 meta5 393/udp # Meta5 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 kryptolan 398/udp # Kryptolan iso-tsap-c2 399/tcp # ISO Transport Class 2 Non-Control over TCP iso-tsap-c2 399/udp # ISO Transport Class 2 Non-Control over UDP 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 decap 403/udp # decap nced 404/tcp # nced nced 404/udp # nced ncld 405/tcp # ncld ncld 405/udp # ncld imsp 406/tcp # Interactive Mail Support Protocol imsp 406/udp # Interactive Mail Support Protocol timbuktu 407/tcp # Timbuktu timbuktu 407/udp # Timbuktu 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 # Storage Management Services Protocol smsp 413/udp # Storage Management Services Protocol infoseek 414/tcp # InfoSeek infoseek 414/udp # InfoSeek bnet 415/tcp # BNet bnet 415/udp # BNet silverplatter 416/tcp # Silverplatter silverplatter 416/udp # Silverplatter onmux 417/tcp # Onmux onmux 417/udp # Onmux hyper-g 418/tcp # Hyper-G hyper-g 418/udp # Hyper-G ariel1 419/tcp # Ariel 1 ariel1 419/udp # Ariel 1 smpte 420/tcp # SMPTE smpte 420/udp # SMPTE ariel2 421/tcp # Ariel 2 ariel2 421/udp # Ariel 2 ariel3 422/tcp # Ariel 3 ariel3 422/udp # Ariel 3 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 icad-el 425/udp # ICAD smartsdp 426/tcp # smartsdp smartsdp 426/udp # smartsdp svrloc 427/tcp # Server Location Protocl svrloc 427/udp # Server Location Protocl ocs_cmu 428/tcp # OCS_CMU ocs_cmu 428/udp # OCS_CMU ocs_amu 429/tcp # OCS_AMU ocs_amu 429/udp # OCS_AMU utmpsd 430/tcp # UTMPSD utmpsd 430/udp # UTMPSD utmpcd 431/tcp # UTMPCD utmpcd 431/udp # UTMPCD iasd 432/tcp # IASD iasd 432/udp # IASD nnsp 433/tcp # NNSP nnsp 433/udp # NNSP mobileip-agent 434/tcp mobileip-agent 434/udp mobilip-mn 435/tcp mobilip-mn 435/udp dna-cml 436/tcp # DNA-CML dna-cml 436/udp # DNA-CML comscm 437/tcp # comscm comscm 437/udp # comscm dsfgw 438/tcp # dsfgw dsfgw 438/udp # dsfgw dasp 439/tcp # dasp Thomas Obermair dasp 439/udp # dasp tommy@inlab.m.eunet.de sgcp 440/tcp # sgcp sgcp 440/udp # sgcp decvms-sysmgt 441/tcp # decvms-sysmgt decvms-sysmgt 441/udp # decvms-sysmgt cvc_hostd 442/tcp # cvc_hostd cvc_hostd 442/udp # cvc_hostd https 443/tcp # MCom https 443/udp # MCom 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-Remote Relational Database Access ddm-rdb 446/udp # DDM-Remote Relational Database Access ddm-dfm 447/tcp # DDM-Distributed File Management ddm-dfm 447/udp # DDM-Distributed File Management ddm-ssl 448/tcp # DDM-Remote DB Access Using Secure Sockets ddm-ssl 448/udp # DDM-Remote DB Access Using Secure Sockets as-servermap 449/tcp # AS Server Mapper as-servermap 449/udp # AS Server Mapper tserver 450/tcp # Computer Supported Telecomunication Applications tserver 450/udp # Computer Supported Telecomunication Applications 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-tcp macon-udp 456/udp # macon-udp scohelp 457/tcp # scohelp scohelp 457/udp # scohelp appleqtc 458/tcp # apple quick time appleqtc 458/udp # apple quick time ampr-rcmd 459/tcp # ampr-rcmd ampr-rcmd 459/udp # ampr-rcmd skronk 460/tcp # skronk skronk 460/udp # skronk datasurfsrv 461/tcp # DataRampSrv datasurfsrv 461/udp # DataRampSrv datasurfsrvsec 462/tcp # DataRampSrvSec datasurfsrvsec 462/udp # DataRampSrvSec alpes 463/tcp # alpes alpes 463/udp # alpes kpasswd 464/tcp kpwd # Kerberos "passwd" kpasswd 464/udp kpwd # Kerberos "passwd" smtps 465/tcp # SMTP over SSL (TLS) digital-vrc 466/tcp # digital-vrc digital-vrc 466/udp # digital-vrc mylex-mapd 467/tcp # mylex-mapd mylex-mapd 467/udp # mylex-mapd photuris 468/tcp photuris 468/udp rcp 469/tcp # Radio Control Protocol rcp 469/udp # Radio Control Protocol scx-proxy 470/tcp # scx-proxy scx-proxy 470/udp # scx-proxy mondex 471/tcp # Mondex mondex 471/udp # Mondex ljk-login 472/tcp # ljk-login ljk-login 472/udp # ljk-login hybrid-pop 473/tcp # hybrid-pop hybrid-pop 473/udp # hybrid-pop tn-tl-w1 474/tcp # tn-tl-w1 tn-tl-w2 474/udp # tn-tl-w2 tcpnethaspsrv 475/tcp # tcpnethaspsrv tcpnethaspsrv 475/udp # tcpnethaspsrv tn-tl-fd1 476/tcp # tn-tl-fd1 tn-tl-fd1 476/udp # tn-tl-fd1 ss7ns 477/tcp # ss7ns ss7ns 477/udp # ss7ns spsc 478/tcp # spsc spsc 478/udp # spsc iafserver 479/tcp # iafserver iafserver 479/udp # iafserver iafdbase 480/tcp # iafdbase iafdbase 480/udp # iafdbase ph 481/tcp # Ph service ph 481/udp # Ph service bgs-nsi 482/tcp # bgs-nsi bgs-nsi 482/udp # bgs-nsi ulpnet 483/tcp # ulpnet ulpnet 483/udp # ulpnet 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 avian 486/udp # avian saft 487/tcp # Simple Asynchronous File Transfer saft 487/udp # Simple Asynchronous File Transfer gss-http 488/tcp gss-http 488/udp nest-protocol 489/tcp # nest-protocol nest-protocol 489/udp # nest-protocol micom-pfs 490/tcp # micom-pfs micom-pfs 490/udp # micom-pfs go-login 491/tcp # go-login go-login 491/udp # go-login 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 pov-ray 494/udp # POV-Ray intecourier 495/tcp # intecourier intecourier 495/udp # intecourier pim-rp-disc 496/tcp pim-rp-disc 496/udp dantz 497/tcp # dantz dantz 497/udp # dantz siam 498/tcp # siam siam 498/udp # siam iso-ill 499/tcp # ISO ILL Protocol iso-ill 499/udp # ISO ILL Protocol isakmp 500/tcp isakmp 500/udp stmf 501/tcp # STMF stmf 501/udp # STMF asa-appl-proto 502/tcp # asa-appl-proto asa-appl-proto 502/udp # asa-appl-proto intrinsa 503/tcp # Intrinsa intrinsa 503/udp # Intrinsa citadel 504/tcp # citadel citadel 504/udp # citadel mailbox-lm 505/tcp # mailbox-lm mailbox-lm 505/udp # mailbox-lm ohimsrv 506/tcp # ohimsrv ohimsrv 506/udp # ohimsrv crs 507/tcp # crs crs 507/udp # crs xvttp 508/tcp # xvttp xvttp 508/udp # xvttp snare 509/tcp # snare snare 509/udp # snare fcp 510/tcp # FirstClass Protocol fcp 510/udp # FirstClass Protocol passgo 511/tcp # PassGo passgo 511/udp # PassGo biff 512/udp comsat exec 512/tcp login 513/tcp who 513/udp whod shell 514/tcp cmd # no passwords used syslog 514/udp printer 515/tcp spooler # line printer spooler printer 515/udp spooler # line printer spooler videotex 516/tcp # videotex videotex 516/udp # videotex talk 517/udp ntalk 518/udp utime 519/tcp unixtime utime 519/udp unixtime efs 520/tcp router 520/udp route routed # RIP ripng 521/tcp ripng 521/udp ulp 522/tcp # ULP ulp 522/udp # ULP ibm-db2 523/tcp # IBM-DB2 ibm-db2 523/udp # IBM-DB2 ncp 524/tcp # NCP ncp 524/udp # NCP timed 525/tcp timeserver timed 525/udp timeserver tempo 526/tcp 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 irc-serv 529/udp # IRC-SERV courier 530/tcp rpc conference 531/tcp chat netnews 532/tcp 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 opalis-rdv 536/udp # opalis-rdv nmsp 537/tcp # Networked Media Streaming Protocol nmsp 537/udp # Networked Media Streaming Protocol gdomap 538/tcp # GNUstep distributed objects gdomap 538/udp # GNUstep distributed objects apertus-ldp 539/tcp # Apertus Technologies Load Determination apertus-ldp 539/udp # Apertus Technologies Load Determination uucp 540/tcp uucpd # uucp daemon uucp-rlogin 541/tcp # uucp-rlogin uucp-rlogin 541/udp # uucp-rlogin commerce 542/tcp # commerce commerce 542/udp # commerce klogin 543/tcp # Kerberized `rlogin' (v5) kshell 544/tcp krcmd # Kerberized `rsh' (v5) appleqtcsrvr 545/tcp # appleqtcsrvr appleqtcsrvr 545/udp # appleqtcsrvr dhcpv6-client 546/tcp dhcpv6-client 546/udp dhcpv6-server 547/tcp dhcpv6-server 547/udp afpovertcp 548/tcp # AFP over TCP afpovertcp 548/udp # AFP over TCP idfp 549/tcp # IDFP idfp 549/udp # IDFP new-rwho 550/tcp # new-who new-rwho 550/udp # new-who cybercash 551/tcp # cybercash cybercash 551/udp # cybercash devshr-nts 552/tcp # DeviceShare devshr-nts 552/udp # DeviceShare pirp 553/tcp # pirp pirp 553/udp # pirp 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_server rfs # Brunhoff remote filesystem openvms-sysipc 557/tcp # openvms-sysipc openvms-sysipc 557/udp # openvms-sysipc sdnskmp 558/tcp # SDNSKMP sdnskmp 558/udp # SDNSKMP teedtap 559/tcp # TEEDTAP teedtap 559/udp # TEEDTAP 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 # NNTP over SSL nntps 563/udp # NNTP over 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 streettalk 566/udp # streettalk banyan-rpc 567/tcp # banyan-rpc banyan-rpc 567/udp # banyan-rpc 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 meter 571/tcp # udemon meter 571/udp # udemon sonar 572/tcp # sonar sonar 572/udp # sonar banyan-vip 573/tcp # banyan-vip banyan-vip 573/udp # banyan-vip ftp-agent 574/tcp # FTP Software Agent System ftp-agent 574/udp # FTP Software Agent System vemmi 575/tcp # VEMMI vemmi 575/udp # VEMMI ipcd 576/tcp # ipcd ipcd 576/udp # ipcd vnas 577/tcp # vnas vnas 577/udp # vnas ipdd 578/tcp # ipdd ipdd 578/udp # ipdd decbsrv 579/tcp # decbsrv decbsrv 579/udp # decbsrv sntp-heartbeat 580/tcp # SNTP HEARTBEAT sntp-heartbeat 580/udp # SNTP HEARTBEAT bdp 581/tcp # Bundle Discovery Protocol bdp 581/udp # Bundle Discovery Protocol scc-security 582/tcp # SCC Security scc-security 582/udp # SCC Security philips-vc 583/tcp # Philips Video-Conferencing philips-vc 583/udp # Philips Video-Conferencing keyserver 584/tcp # Key Server keyserver 584/udp # Key Server imap4-ssl 585/tcp # IMAP4+SSL (use 993 instead) imap4-ssl 585/udp # IMAP4+SSL (use 993 instead) password-chg 586/tcp # Password Change password-chg 586/udp # Password Change submission 587/tcp msa # mail message submission submission 587/udp msa # mail message submission cal 588/tcp # CAL cal 588/udp # CAL eyelink 589/tcp # EyeLink eyelink 589/udp # EyeLink tns-cml 590/tcp # TNS CML tns-cml 590/udp # TNS CML eudora-set 592/tcp # Eudora Set eudora-set 592/udp # Eudora Set http-rpc-epmap 593/tcp # HTTP RPC Ep Map http-rpc-epmap 593/udp # HTTP RPC Ep Map tpip 594/tcp # TPIP tpip 594/udp # TPIP cab-protocol 595/tcp # CAB Protocol cab-protocol 595/udp # CAB Protocol smsd 596/tcp # SMSD smsd 596/udp # SMSD 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 idxp 603/udp # IDXP tunnel 604/tcp # TUNNEL tunnel 604/udp # TUNNEL 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 nqs 607/udp # nqs sift-uft 608/tcp # Sender-Initiated/Unsolicited File Transfer sift-uft 608/udp # Sender-Initiated/Unsolicited File Transfer npmp-trap 609/tcp # npmp-trap npmp-trap 609/udp # npmp-trap npmp-local 610/tcp dqs313_qmaster # npmp-local / DQS npmp-local 610/udp dqs313_qmaster # npmp-local / DQS npmp-gui 611/tcp dqs313_execd # npmp-gui / DQS npmp-gui 611/udp dqs313_execd # npmp-gui / DQS hmmp-ind 612/tcp dqs313_intercell # HMMP Indication / DQS hmmp-ind 612/udp dqs313_intercell # HMMP Indication / DQS hmmp-op 613/tcp # HMMP Operation hmmp-op 613/udp # HMMP Operation sshell 614/tcp # SSLshell sshell 614/udp # SSLshell sco-inetmgr 615/tcp # Internet Configuration Manager sco-inetmgr 615/udp # Internet Configuration Manager gii 616/tcp # gated interactive interface sco-dtmgr 617/tcp # SCO Desktop Administration Server sco-dtmgr 617/udp # SCO Desktop Administration Server dei-icda 618/tcp # DEI-ICDA dei-icda 618/udp # DEI-ICDA 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 collaborator 622/udp # Collaborator 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 asia 626/udp # ASIA passgo-tivoli 627/tcp # PassGo Tivoli passgo-tivoli 627/udp # PassGo Tivoli qmqp 628/tcp # QMQP qmqp 628/udp # QMQP 3com-amp3 629/tcp # 3Com AMP3 3com-amp3 629/udp # 3Com AMP3 rda 630/tcp # RDA rda 630/udp # RDA ipp 631/tcp # Internet Printing Protocol ipp 631/udp # Internet Printing Protocol bmpp 632/tcp # bmpp bmpp 632/udp # bmpp servstat 633/tcp # Service Status update (Sterling Software) servstat 633/udp # Service Status update (Sterling Software) ginad 634/tcp # ginad ginad 634/udp # ginad rlzdbase 635/tcp # RLZ DBase rlzdbase 635/udp # RLZ DBase ldaps 636/tcp # LDAP over SSL ldaps 636/udp # LDAP over SSL lanserver 637/tcp # lanserver lanserver 637/udp # lanserver mcns-sec 638/tcp # mcns-sec mcns-sec 638/udp # mcns-sec msdp 639/tcp # MSDP msdp 639/udp # MSDP entrust-sps 640/tcp # entrust-sps entrust-sps 640/udp # entrust-sps repcmd 641/tcp # repcmd repcmd 641/udp # repcmd 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 dwr 644/udp # dwr pssc 645/tcp # PSSC pssc 645/udp # PSSC ldp 646/tcp # LDP ldp 646/udp # LDP 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 obex 650/udp # OBEX ieee-mms 651/tcp # IEEE MMS ieee-mms 651/udp # IEEE MMS hello-port 652/tcp # HELLO_PORT hello-port 652/udp # HELLO_PORT repscmd 653/tcp # RepCmd repscmd 653/udp # RepCmd aodv 654/tcp # AODV aodv 654/udp # AODV tinc 655/tcp # TINC tinc 655/udp # TINC spmp 656/tcp # SPMP spmp 656/udp # SPMP rmc 657/tcp # RMC rmc 657/udp # RMC tenfold 658/tcp # TenFold tenfold 658/udp # TenFold mac-srvr-admin 660/tcp # MacOS Server Admin mac-srvr-admin 660/udp # MacOS Server Admin hap 661/tcp # HAP hap 661/udp # HAP pftp 662/tcp # PFTP pftp 662/udp # PFTP 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 mecomm 668/udp # MeComm meregister 669/tcp # MeRegister meregister 669/udp # MeRegister vacdsm-sws 670/tcp # VACDSM-SWS vacdsm-sws 670/udp # VACDSM-SWS vacdsm-app 671/tcp # VACDSM-APP vacdsm-app 671/udp # VACDSM-APP vpps-qua 672/tcp # VPPS-QUA vpps-qua 672/udp # VPPS-QUA cimplex 673/tcp # CIMPLEX cimplex 673/udp # CIMPLEX acap 674/tcp acap 674/udp dctp 675/tcp # DCTP dctp 675/udp # DCTP 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 mrm 679/udp # MRM entrust-aaas 680/tcp # entrust-aaas entrust-aaas 680/udp # entrust-aaas entrust-aams 681/tcp # entrust-aams entrust-aams 681/udp # entrust-aams xfr 682/tcp # XFR xfr 682/udp # XFR 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 asipregistry 687/udp # asipregistry realm-rusd 688/tcp # ApplianceWare managment protocol realm-rusd 688/udp # ApplianceWare managment protocol nmap 689/tcp # NMAP nmap 689/udp # NMAP vatp 690/tcp # VATP vatp 690/udp # VATP 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 connendp 693/udp # connendp ha-cluster 694/tcp # Heartbeat HA-cluster ha-cluster 694/udp # Heartbeat HA-cluster ieee-mms-ssl 695/tcp # IEEE-MMS-SSL ieee-mms-ssl 695/udp # IEEE-MMS-SSL rushd 696/tcp # RUSHD rushd 696/udp # RUSHD uuidgen 697/tcp # UUIDGEN uuidgen 697/udp # UUIDGEN olsr 698/tcp # OLSR olsr 698/udp # OLSR 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 silc 706/udp # SILC borland-dsj 707/tcp # Borland DSJ borland-dsj 707/udp # Borland DSJ entrust-kmsh 709/tcp # Entrust Key Management Service Handler entrust-kmsh 709/udp # Entrust Key Management Service Handler 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 tbrpf 712/udp # TBRPF 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 netgw 741/udp # netGW 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 `kadmin' (v5) kerberos-iv 750/tcp kerberos4 kerberos-sec kdc kerberos-iv 750/udp kerberos4 kerberos-sec kdc kerberos_master 751/tcp # Kerberos authentication kerberos_master 751/udp # Kerberos authentication passwd_server 752/udp # Kerberos passwd server rrh 753/tcp rrh 753/udp krb5_prop 754/tcp # Kerberos slave propagation nlogin 758/tcp nlogin 758/udp con 759/tcp con 759/udp krbupdate 760/tcp kreg # Kerberos registration 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 # Network dictionary webster 765/udp phonebook 767/tcp # Network phonebook phonebook 767/udp 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 omirr 808/tcp omirrd # online mirror omirr 808/udp omirrd # online mirror fcp-udp 810/tcp # FCP fcp-udp 810/udp # FCP Datagram itm-mcell-s 828/tcp # itm-mcell-s itm-mcell-s 828/udp # itm-mcell-s pkix-3-ca-ra 829/tcp # PKIX-3 CA/RA pkix-3-ca-ra 829/udp # PKIX-3 CA/RA dhcp-failover2 847/tcp # dhcp-failover 2 dhcp-failover2 847/udp # dhcp-failover 2 gdoi 848/tcp # GDOI gdoi 848/udp # GDOI iscsi 860/tcp # iSCSI iscsi 860/udp # iSCSI supfilesrv 871/tcp # SUP server rsync 873/tcp # rsync rsync 873/udp # rsync 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 accessbuilder 888/udp # AccessBuilder cddbp 888/tcp # CD Database Protocol omginitialrefs 900/tcp # OMG Initial Refs omginitialrefs 900/udp # OMG Initial Refs swat 901/tcp # Samba Web Administration Tool ideafarm-chat 902/tcp # IDEAFARM-CHAT ideafarm-chat 902/udp # IDEAFARM-CHAT ideafarm-catch 903/tcp # IDEAFARM-CATCH ideafarm-catch 903/udp # IDEAFARM-CATCH xact-backup 911/tcp # xact-backup xact-backup 911/udp # xact-backup 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 # rndc control sockets (BIND 9) rndc 953/udp # rndc control sockets (BIND 9) ftps-data 989/tcp # ftp protocol, data, over TLS/SSL ftps-data 989/udp # ftp protocol, data, over TLS/SSL ftps 990/tcp # ftp protocol, control, over TLS/SSL ftps 990/udp # ftp protocol, control, over TLS/SSL nas 991/tcp # Netnews Administration System nas 991/udp # Netnews Administration System telnets 992/tcp telnets 992/udp imaps 993/tcp # IMAP over SSL imaps 993/udp # IMAP over SSL ircs 994/tcp ircs 994/udp pop3s 995/tcp # POP-3 over SSL pop3s 995/udp # POP-3 over SSL vsinet 996/tcp # vsinet vsinet 996/udp # vsinet 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 surf 1010/udp # surf blackjack 1025/tcp # network blackjack blackjack 1025/udp # network blackjack cap 1026/tcp # Calender Access Protocol cap 1026/udp # Calender Access Protocol solid-mux 1029/tcp # Solid Mux Server solid-mux 1029/udp # Solid Mux Server 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 netinfo-local 1033/tcp # local netinfo port netinfo-local 1033/udp # local netinfo port activesync 1034/tcp # ActiveSync Notifications activesync 1034/udp # ActiveSync Notifications mxxrlogin 1035/tcp # MX-XR RPC mxxrlogin 1035/udp # MX-XR RPC nsstp 1036/tcp # Nebula Secure Segment Transfer Protocol nsstp 1036/udp # Nebula Secure Segment Transfer Protocol ams 1037/tcp # AMS ams 1037/udp # AMS mtqp 1038/tcp # Message Tracking Query Protocol mtqp 1038/udp # Message Tracking Query Protocol sbl 1039/tcp # Streamlined Blackhole sbl 1039/udp # Streamlined Blackhole netarx 1040/tcp # Netarx netarx 1040/udp # Netarx danf-ak2 1041/tcp # AK2 Product danf-ak2 1041/udp # AK2 Product afrog 1042/tcp # Subnet Roaming afrog 1042/udp # Subnet Roaming boinc-client 1043/tcp # BOINC Client Control boinc-client 1043/udp # BOINC Client Control dcutility 1044/tcp # Dev Consortium Utility dcutility 1044/udp # Dev Consortium Utility fpitp 1045/tcp # Fingerprint Image Transfer Protocol fpitp 1045/udp # Fingerprint Image Transfer Protocol wfremotertm 1046/tcp # WebFilter Remote Monitor wfremotertm 1046/udp # WebFilter Remote Monitor neod1 1047/tcp # Sun's NEO Object Request Broker neod1 1047/udp # Sun's NEO Object Request Broker neod2 1048/tcp # Sun's NEO Object Request Broker neod2 1048/udp # Sun's NEO Object Request Broker td-postman 1049/tcp # Tobit David Postman VPMN td-postman 1049/udp # Tobit David Postman VPMN cma 1050/tcp # CORBA Management Agent cma 1050/udp # CORBA Management Agent optima-vnet 1051/tcp # Optima VNET optima-vnet 1051/udp # Optima VNET ddt 1052/tcp # Dynamic DNS Tools ddt 1052/udp # Dynamic DNS Tools remote-as 1053/tcp # Remote Assistant (RA) remote-as 1053/udp # Remote Assistant (RA) brvread 1054/tcp # BRVREAD brvread 1054/udp # BRVREAD ansyslmd 1055/tcp # ANSYS - License Manager ansyslmd 1055/udp # ANSYS - License Manager vfo 1056/tcp # VFO vfo 1056/udp # VFO startron 1057/tcp # STARTRON startron 1057/udp # STARTRON nim 1058/tcp # nim nim 1058/udp # nim nimreg 1059/tcp # nimreg nimreg 1059/udp # nimreg polestar 1060/tcp # POLESTAR polestar 1060/udp # POLESTAR kiosk 1061/tcp # KIOSK kiosk 1061/udp # KIOSK veracity 1062/tcp # Veracity veracity 1062/udp # Veracity kyoceranetdev 1063/tcp # KyoceraNetDev kyoceranetdev 1063/udp # KyoceraNetDev jstel 1064/tcp # JSTEL jstel 1064/udp # JSTEL syscomlan 1065/tcp # SYSCOMLAN syscomlan 1065/udp # SYSCOMLAN fpo-fns 1066/tcp # FPO-FNS fpo-fns 1066/udp # FPO-FNS 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. cognex-insight 1069/tcp # COGNEX-INSIGHT cognex-insight 1069/udp # COGNEX-INSIGHT gmrupdateserv 1070/tcp # GMRUpdateSERV gmrupdateserv 1070/udp # GMRUpdateSERV bsquare-voip 1071/tcp # BSQUARE-VOIP bsquare-voip 1071/udp # BSQUARE-VOIP cardax 1072/tcp # CARDAX cardax 1072/udp # CARDAX bridgecontrol 1073/tcp # Bridge Control bridgecontrol 1073/udp # Bridge Control fastechnologlm 1074/tcp # FASTechnologies License Manager fastechnologlm 1074/udp # FASTechnologies License Manager rdrmshc 1075/tcp # RDRMSHC rdrmshc 1075/udp # RDRMSHC dab-sti-c 1076/tcp # DAB STI-C dab-sti-c 1076/udp # DAB STI-C imgames 1077/tcp # IMGames imgames 1077/udp # IMGames avocent-proxy 1078/tcp # Avocent Proxy Protocol avocent-proxy 1078/udp # Avocent Proxy Protocol asprovatalk 1079/tcp # ASPROVATalk asprovatalk 1079/udp # ASPROVATalk socks 1080/tcp # socks proxy server socks 1080/udp # socks proxy server pvuniwien 1081/tcp # PVUNIWIEN pvuniwien 1081/udp # PVUNIWIEN amt-esd-prot 1082/tcp # AMT-ESD-PROT amt-esd-prot 1082/udp # AMT-ESD-PROT 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 cplscrambler-lg 1086/tcp # CPL Scrambler Logging cplscrambler-lg 1086/udp # CPL Scrambler Logging cplscrambler-in 1087/tcp # CPL Scrambler Internal cplscrambler-in 1087/udp # CPL Scrambler Internal cplscrambler-al 1088/tcp # CPL Scrambler Alarm Log cplscrambler-al 1088/udp # CPL Scrambler Alarm Log ff-annunc 1089/tcp # FF Annunciation ff-annunc 1089/udp # FF Annunciation ff-fms 1090/tcp # FF Fieldbus Message Specification ff-fms 1090/udp # FF Fieldbus Message Specification ff-sm 1091/tcp # FF System Management ff-sm 1091/udp # FF System Management obrpd 1092/tcp # Open Business Reporting Protocol obrpd 1092/udp # Open Business Reporting Protocol proofd 1093/tcp # PROOFD proofd 1093/udp # PROOFD rootd 1094/tcp # ROOTD rootd 1094/udp # ROOTD nicelink 1095/tcp # NICELink nicelink 1095/udp # NICELink cnrprotocol 1096/tcp # Common Name Resolution Protocol cnrprotocol 1096/udp # Common Name Resolution Protocol sunclustermgr 1097/tcp # Sun Cluster Manager sunclustermgr 1097/udp # Sun Cluster Manager rmiactivation 1098/tcp # RMI Activation rmiactivation 1098/udp # RMI Activation rmiregistry 1099/tcp # RMI Registry rmiregistry 1099/udp # RMI Registry mctp 1100/tcp # MCTP mctp 1100/udp # MCTP pt2-discover 1101/tcp # PT2-DISCOVER pt2-discover 1101/udp # PT2-DISCOVER adobeserver-1 1102/tcp # ADOBE SERVER 1 adobeserver-1 1102/udp # ADOBE SERVER 1 adobeserver-2 1103/tcp # ADOBE SERVER 2 adobeserver-2 1103/udp # ADOBE SERVER 2 xrl 1104/tcp # XRL xrl 1104/udp # XRL ftranhc 1105/tcp # FTRANHC ftranhc 1105/udp # FTRANHC isoipsigport-1 1106/tcp # ISOIPSIGPORT-1 isoipsigport-1 1106/udp # ISOIPSIGPORT-1 isoipsigport-2 1107/tcp # ISOIPSIGPORT-2 isoipsigport-2 1107/udp # ISOIPSIGPORT-2 ratio-adp 1108/tcp # ratio-adp ratio-adp 1108/udp # ratio-adp kpop 1109/tcp # Pop with Kerberos nfsd-keepalive 1110/udp # Client status info nfsd-status 1110/tcp # Cluster status info lmsocialserver 1111/tcp # LM Social Server lmsocialserver 1111/udp # LM Social Server icp 1112/tcp # Intelligent Communication Protocol icp 1112/udp # Intelligent Communication Protocol ltp-deepspace 1113/tcp # Licklider Transmission Pr ltp-deepspace 1113/udp # Licklider Transmission Pr mini-sql 1114/tcp # Mini SQL mini-sql 1114/udp # Mini SQL ardus-trns 1115/tcp # ARDUS Transfer ardus-trns 1115/udp # ARDUS Transfer ardus-cntl 1116/tcp # ARDUS Control ardus-cntl 1116/udp # ARDUS Control ardus-mtrns 1117/tcp # ARDUS Multicast Transfer ardus-mtrns 1117/udp # ARDUS Multicast Transfer sacred 1118/tcp # SACRED sacred 1118/udp # SACRED bnetgame 1119/tcp # Battle.net Chat/Game Protocol bnetgame 1119/udp # Battle.net Chat/Game Protocol bnetfile 1120/tcp # Battle.net File Transfer Protocol bnetfile 1120/udp # Battle.net File Transfer Protocol rmpp 1121/tcp # Datalode RMPP rmpp 1121/udp # Datalode RMPP availant-mgr 1122/tcp # availant-mgr availant-mgr 1122/udp # availant-mgr murray 1123/tcp # Murray murray 1123/udp # Murray hpvmmcontrol 1124/tcp # HP VMM Control hpvmmcontrol 1124/udp # HP VMM Control hpvmmagent 1125/tcp # HP VMM Agent hpvmmagent 1125/udp # HP VMM Agent hpvmmdata 1126/tcp # HP VMM Agent hpvmmdata 1126/udp # HP VMM Agent supfiledbg 1127/tcp # SUP debugging autonoc 1140/tcp # AutoNOC Network Operations Protocol autonoc 1140/udp # AutoNOC Network Operations Protocol mxomss 1141/tcp # User Message Service mxomss 1141/udp # User Message Service edtools 1142/tcp # User Discovery Service edtools 1142/udp # User Discovery Service fuscript 1144/tcp # Fusion Script fuscript 1144/udp # Fusion Script x9-icue 1145/tcp # X9 iCue Show Control x9-icue 1145/udp # X9 iCue Show Control audit-transfer 1146/tcp # audit transfer audit-transfer 1146/udp # audit transfer capioverlan 1147/tcp # CAPIoverLAN capioverlan 1147/udp # CAPIoverLAN elfiq-repl 1148/tcp # Elfiq Replication Service elfiq-repl 1148/udp # Elfiq Replication Service bvtsonar 1149/tcp # BVT Sonar Service bvtsonar 1149/udp # BVT Sonar Service blaze 1150/tcp # Blaze File Server blaze 1150/udp # Blaze File Server unizensus 1151/tcp # Unizensus Login Server unizensus 1151/udp # Unizensus Login Server winpoplanmess 1152/tcp # Winpopup LAN Messenger winpoplanmess 1152/udp # Winpopup LAN Messenger c1222-acse 1153/tcp # ANSI C12.22 Port c1222-acse 1153/udp # ANSI C12.22 Port resacommunity 1154/tcp # Community Service resacommunity 1154/udp # Community Service nfa 1155/tcp # Network File Access nfa 1155/udp # Network File Access iascontrol-oms 1156/tcp # iasControl OMS iascontrol-oms 1156/udp # iasControl OMS iascontrol 1157/tcp # Oracle iASControl iascontrol 1157/udp # Oracle iASControl dbcontrol-oms 1158/tcp # dbControl OMS dbcontrol-oms 1158/udp # dbControl OMS oracle-oms 1159/tcp # Oracle OMS oracle-oms 1159/udp # Oracle OMS olsv 1160/tcp # DB Lite Mult-User Server olsv 1160/udp # DB Lite Mult-User Server health-polling 1161/tcp # Health Polling health-polling 1161/udp # Health Polling health-trap 1162/tcp # Health Trap health-trap 1162/udp # Health Trap sddp 1163/tcp # SmartDialer Data Protocol sddp 1163/udp # SmartDialer Data Protocol qsm-proxy 1164/tcp # QSM Proxy Service qsm-proxy 1164/udp # QSM Proxy Service qsm-gui 1165/tcp # QSM GUI Service qsm-gui 1165/udp # QSM GUI Service qsm-remote 1166/tcp # QSM RemoteExec qsm-remote 1166/udp # QSM RemoteExec vchat 1168/tcp # VChat Conference Service vchat 1168/udp # VChat Conference Service tripwire 1169/tcp # TRIPWIRE tripwire 1169/udp # TRIPWIRE atc-lm 1170/tcp # AT+C License Manager atc-lm 1170/udp # AT+C License Manager atc-appserver 1171/tcp # AT+C FmiApplicationServer atc-appserver 1171/udp # AT+C FmiApplicationServer dnap 1172/tcp # DNA Protocol dnap 1172/udp # DNA Protocol d-cinema-rrp 1173/tcp # D-Cinema Request-Response d-cinema-rrp 1173/udp # D-Cinema Request-Response fnet-remote-ui 1174/tcp # FlashNet Remote Admin fnet-remote-ui 1174/udp # FlashNet Remote Admin dossier 1175/tcp # Dossier Server dossier 1175/udp # Dossier Server indigo-server 1176/tcp # Indigo Home Server indigo-server 1176/udp # Indigo Home Server dkmessenger 1177/tcp # DKMessenger Protocol dkmessenger 1177/udp # DKMessenger Protocol skkserv 1178/tcp # SKK Japanese input method b2n 1179/tcp # Backup To Neighbor b2n 1179/udp # Backup To Neighbor mc-client 1180/tcp # Millicent Client Proxy mc-client 1180/udp # Millicent Client Proxy 3comnetman 1181/tcp # 3Com Net Management 3comnetman 1181/udp # 3Com Net Management accelenet 1182/tcp # AcceleNet Control accelenet 1182/udp # AcceleNet Control llsurfup-http 1183/tcp # LL Surfup HTTP llsurfup-http 1183/udp # LL Surfup HTTP llsurfup-https 1184/tcp # LL Surfup HTTPS llsurfup-https 1184/udp # LL Surfup HTTPS catchpole 1185/tcp # Catchpole port catchpole 1185/udp # Catchpole port mysql-cluster 1186/tcp # MySQL Cluster Manager mysql-cluster 1186/udp # MySQL Cluster Manager alias 1187/tcp # Alias Service alias 1187/udp # Alias Service hp-webadmin 1188/tcp # HP Web Admin hp-webadmin 1188/udp # HP Web Admin unet 1189/tcp # Unet Connection unet 1189/udp # Unet Connection commlinx-avl 1190/tcp # CommLinx GPS / AVL System commlinx-avl 1190/udp # CommLinx GPS / AVL System gpfs 1191/tcp # General Parallel File System gpfs 1191/udp # General Parallel File System caids-sensor 1192/tcp # caids sensors channel caids-sensor 1192/udp # caids sensors channel fiveacross 1193/tcp # Five Across Server fiveacross 1193/udp # Five Across Server openvpn 1194/tcp # OpenVPN openvpn 1194/udp # OpenVPN rsf-1 1195/tcp # RSF-1 clustering rsf-1 1195/udp # RSF-1 clustering netmagic 1196/tcp # Network Magic netmagic 1196/udp # Network Magic carrius-rshell 1197/tcp # Carrius Remote Access carrius-rshell 1197/udp # Carrius Remote Access cajo-discovery 1198/tcp # cajo reference discovery cajo-discovery 1198/udp # cajo reference discovery dmidi 1199/tcp # DMIDI dmidi 1199/udp # DMIDI scol 1200/tcp # SCOL scol 1200/udp # SCOL nucleus-sand 1201/tcp # Nucleus Sand nucleus-sand 1201/udp # Nucleus Sand caiccipc 1202/tcp # caiccipc caiccipc 1202/udp # caiccipc ssslic-mgr 1203/tcp # License Validation ssslic-mgr 1203/udp # License Validation ssslog-mgr 1204/tcp # Log Request Listener ssslog-mgr 1204/udp # Log Request Listener accord-mgc 1205/tcp # Accord-MGC accord-mgc 1205/udp # Accord-MGC anthony-data 1206/tcp # Anthony Data anthony-data 1206/udp # Anthony Data metasage 1207/tcp # MetaSage metasage 1207/udp # MetaSage seagull-ais 1208/tcp # SEAGULL AIS seagull-ais 1208/udp # SEAGULL AIS ipcd3 1209/tcp # IPCD3 ipcd3 1209/udp # IPCD3 eoss 1210/tcp # EOSS eoss 1210/udp # EOSS groove-dpp 1211/tcp # Groove DPP groove-dpp 1211/udp # Groove DPP lupa 1212/tcp # lupa lupa 1212/udp # lupa mpc-lifenet 1213/tcp # MPC LIFENET mpc-lifenet 1213/udp # MPC LIFENET kazaa 1214/tcp # KAZAA kazaa 1214/udp # KAZAA scanstat-1 1215/tcp # scanSTAT 1.0 scanstat-1 1215/udp # scanSTAT 1.0 etebac5 1216/tcp # ETEBAC 5 etebac5 1216/udp # ETEBAC 5 hpss-ndapi 1217/tcp # HPSS-NDAPI hpss-ndapi 1217/udp # HPSS-NDAPI aeroflight-ads 1218/tcp # AeroFlight-ADs aeroflight-ads 1218/udp # AeroFlight-ADs aeroflight-ret 1219/tcp # AeroFlight-Ret aeroflight-ret 1219/udp # AeroFlight-Ret qt-serveradmin 1220/tcp # QT SERVER ADMIN qt-serveradmin 1220/udp # QT SERVER ADMIN sweetware-apps 1221/tcp # SweetWARE Apps sweetware-apps 1221/udp # SweetWARE Apps nerv 1222/tcp # SNI R&D network nerv 1222/udp # SNI R&D network tgp 1223/tcp # TGP tgp 1223/udp # TGP vpnz 1224/tcp # VPNz vpnz 1224/udp # VPNz slinkysearch 1225/tcp # SLINKYSEARCH slinkysearch 1225/udp # SLINKYSEARCH stgxfws 1226/tcp # STGXFWS stgxfws 1226/udp # STGXFWS dns2go 1227/tcp # DNS2Go dns2go 1227/udp # DNS2Go florence 1228/tcp # FLORENCE florence 1228/udp # FLORENCE novell-zfs 1229/tcp # Novell ZFS novell-zfs 1229/udp # Novell ZFS periscope 1230/tcp # Periscope periscope 1230/udp # Periscope menandmice-lpm 1231/tcp # menandmice-lpm menandmice-lpm 1231/udp # menandmice-lpm univ-appserver 1233/tcp # Universal App Server univ-appserver 1233/udp # Universal App Server search-agent 1234/tcp # Infoseek Search Agent search-agent 1234/udp # Infoseek Search Agent mosaicsyssvc1 1235/tcp # mosaicsyssvc1 mosaicsyssvc1 1235/udp # mosaicsyssvc1 bvcontrol 1236/tcp rmtcfg # Daniel J. Walsh, Gracilis Packeten remote config server bvcontrol 1236/udp # Daniel J. Walsh tsdos390 1237/tcp # tsdos390 tsdos390 1237/udp # tsdos390 hacl-qs 1238/tcp # hacl-qs hacl-qs 1238/udp # hacl-qs nmsd 1239/tcp # NMSD nmsd 1239/udp # NMSD instantia 1240/tcp # Instantia instantia 1240/udp # Instantia nessus 1241/tcp # nessus nessus 1241/udp # nessus nmasoverip 1242/tcp # NMAS over IP nmasoverip 1242/udp # NMAS over IP serialgateway 1243/tcp # SerialGateway serialgateway 1243/udp # SerialGateway isbconference1 1244/tcp # isbconference1 isbconference1 1244/udp # isbconference1 isbconference2 1245/tcp # isbconference2 isbconference2 1245/udp # isbconference2 payrouter 1246/tcp # payrouter payrouter 1246/udp # payrouter visionpyramid 1247/tcp # VisionPyramid visionpyramid 1247/udp # VisionPyramid hermes 1248/tcp # hermes hermes 1248/udp # hermes mesavistaco 1249/tcp # Mesa Vista Co mesavistaco 1249/udp # Mesa Vista Co swldy-sias 1250/tcp # swldy-sias swldy-sias 1250/udp # swldy-sias servergraph 1251/tcp # servergraph servergraph 1251/udp # servergraph bspne-pcc 1252/tcp # bspne-pcc bspne-pcc 1252/udp # bspne-pcc q55-pcc 1253/tcp # q55-pcc q55-pcc 1253/udp # q55-pcc de-noc 1254/tcp # de-noc de-noc 1254/udp # de-noc de-cache-query 1255/tcp # de-cache-query de-cache-query 1255/udp # de-cache-query de-server 1256/tcp # de-server de-server 1256/udp # de-server shockwave2 1257/tcp # Shockwave 2 shockwave2 1257/udp # Shockwave 2 opennl 1258/tcp # Open Network Library opennl 1258/udp # Open Network Library opennl-voice 1259/tcp # Open Network Library Voice opennl-voice 1259/udp # Open Network Library Voice ibm-ssd 1260/tcp # ibm-ssd ibm-ssd 1260/udp # ibm-ssd mpshrsv 1261/tcp # mpshrsv mpshrsv 1261/udp # mpshrsv qnts-orb 1262/tcp # QNTS-ORB qnts-orb 1262/udp # QNTS-ORB dka 1263/tcp # dka dka 1263/udp # dka prat 1264/tcp # PRAT prat 1264/udp # PRAT dssiapi 1265/tcp # DSSIAPI dssiapi 1265/udp # DSSIAPI dellpwrappks 1266/tcp # DELLPWRAPPKS dellpwrappks 1266/udp # DELLPWRAPPKS epc 1267/tcp # eTrust Policy Compliance epc 1267/udp # eTrust Policy Compliance propel-msgsys 1268/tcp # PROPEL-MSGSYS propel-msgsys 1268/udp # PROPEL-MSGSYS watilapp 1269/tcp # WATiLaPP watilapp 1269/udp # WATiLaPP opsmgr 1270/tcp # Microsoft Operations Manager opsmgr 1270/udp # Microsoft Operations Manager excw 1271/tcp # eXcW excw 1271/udp # eXcW cspmlockmgr 1272/tcp # CSPMLockMgr cspmlockmgr 1272/udp # CSPMLockMgr emc-gateway 1273/tcp # EMC-Gateway emc-gateway 1273/udp # EMC-Gateway t1distproc 1274/tcp # t1distproc t1distproc 1274/udp # t1distproc ivcollector 1275/tcp # ivcollector ivcollector 1275/udp # ivcollector ivmanager 1276/tcp # ivmanager ivmanager 1276/udp # ivmanager miva-mqs 1277/tcp # mqs miva-mqs 1277/udp # mqs dellwebadmin-1 1278/tcp # Dell Web Admin 1 dellwebadmin-1 1278/udp # Dell Web Admin 1 dellwebadmin-2 1279/tcp # Dell Web Admin 2 dellwebadmin-2 1279/udp # Dell Web Admin 2 pictrography 1280/tcp # Pictrography pictrography 1280/udp # Pictrography healthd 1281/tcp # healthd healthd 1281/udp # healthd emperion 1282/tcp # Emperion emperion 1282/udp # Emperion productinfo 1283/tcp # ProductInfo productinfo 1283/udp # ProductInfo iee-qfx 1284/tcp # IEE-QFX iee-qfx 1284/udp # IEE-QFX neoiface 1285/tcp # neoiface neoiface 1285/udp # neoiface netuitive 1286/tcp # netuitive netuitive 1286/udp # netuitive routematch 1287/tcp # RouteMatch Com routematch 1287/udp # RouteMatch Com navbuddy 1288/tcp # NavBuddy navbuddy 1288/udp # NavBuddy jwalkserver 1289/tcp # JWalkServer jwalkserver 1289/udp # JWalkServer winjaserver 1290/tcp # WinJaServer winjaserver 1290/udp # WinJaServer seagulllms 1291/tcp # SEAGULLLMS seagulllms 1291/udp # SEAGULLLMS dsdn 1292/tcp # dsdn dsdn 1292/udp # dsdn pkt-krb-ipsec 1293/tcp # PKT-KRB-IPSec pkt-krb-ipsec 1293/udp # PKT-KRB-IPSec cmmdriver 1294/tcp # CMMdriver cmmdriver 1294/udp # CMMdriver ehtp 1295/tcp # End-by-Hop Transmission Protocol ehtp 1295/udp # End-by-Hop Transmission Protocol dproxy 1296/tcp # dproxy dproxy 1296/udp # dproxy sdproxy 1297/tcp # sdproxy sdproxy 1297/udp # sdproxy lpcp 1298/tcp # lpcp lpcp 1298/udp # lpcp hp-sci 1299/tcp # hp-sci hp-sci 1299/udp # hp-sci h323hostcallsc 1300/tcp # H323 Host Call Secure h323hostcallsc 1300/udp # H323 Host Call Secure ci3-software-1 1301/tcp # CI3-Software-1 ci3-software-1 1301/udp # CI3-Software-1 ci3-software-2 1302/tcp # CI3-Software-2 ci3-software-2 1302/udp # CI3-Software-2 sftsrv 1303/tcp # sftsrv sftsrv 1303/udp # sftsrv boomerang 1304/tcp # Boomerang boomerang 1304/udp # Boomerang pe-mike 1305/tcp # pe-mike pe-mike 1305/udp # pe-mike re-conn-proto 1306/tcp # RE-Conn-Proto re-conn-proto 1306/udp # RE-Conn-Proto pacmand 1307/tcp # Pacmand pacmand 1307/udp # Pacmand odsi 1308/tcp # Optical Domain Service Interconnect (ODSI) odsi 1308/udp # Optical Domain Service Interconnect (ODSI) jtag-server 1309/tcp # JTAG server jtag-server 1309/udp # JTAG server husky 1310/tcp # Husky husky 1310/udp # Husky rxmon 1311/tcp # RxMon rxmon 1311/udp # RxMon sti-envision 1312/tcp # STI Envision sti-envision 1312/udp # STI Envision xtel 1313/tcp # french minitel pdps 1314/tcp # Photoscript Distributed Printing System pdps 1314/udp # Photoscript Distributed Printing System els 1315/tcp # E.L.S., Event Listener Service els 1315/udp # E.L.S., Event Listener Service exbit-escp 1316/tcp # Exbit-ESCP exbit-escp 1316/udp # Exbit-ESCP vrts-ipcserver 1317/tcp # vrts-ipcserver vrts-ipcserver 1317/udp # vrts-ipcserver krb5gatekeeper 1318/tcp # krb5gatekeeper krb5gatekeeper 1318/udp # krb5gatekeeper panja-icsp 1319/tcp # Panja-ICSP panja-icsp 1319/udp # Panja-ICSP panja-axbnet 1320/tcp # Panja-AXBNET panja-axbnet 1320/udp # Panja-AXBNET novation 1322/tcp # Novation novation 1322/udp # Novation brcd 1323/tcp # brcd brcd 1323/udp # brcd delta-mcp 1324/tcp # delta-mcp delta-mcp 1324/udp # delta-mcp dx-instrument 1325/tcp # DX-Instrument dx-instrument 1325/udp # DX-Instrument wimsic 1326/tcp # WIMSIC wimsic 1326/udp # WIMSIC ultrex 1327/tcp # Ultrex ultrex 1327/udp # Ultrex ewall 1328/tcp # EWALL ewall 1328/udp # EWALL netdb-export 1329/tcp # netdb-export netdb-export 1329/udp # netdb-export streetperfect 1330/tcp # StreetPerfect streetperfect 1330/udp # StreetPerfect intersan 1331/tcp # intersan intersan 1331/udp # intersan pcia-rxp-b 1332/tcp # PCIA RXP-B pcia-rxp-b 1332/udp # PCIA RXP-B passwrd-policy 1333/tcp # Password Policy passwrd-policy 1333/udp # Password Policy writesrv 1334/tcp # writesrv writesrv 1334/udp # writesrv digital-notary 1335/tcp # Digital Notary Protocol digital-notary 1335/udp # Digital Notary Protocol ischat 1336/tcp # Instant Service Chat ischat 1336/udp # Instant Service Chat menandmice-dns 1337/tcp # menandmice DNS menandmice-dns 1337/udp # menandmice DNS wmc-log-svc 1338/tcp # WMC-log-svr wmc-log-svc 1338/udp # WMC-log-svr kjtsiteserver 1339/tcp # kjtsiteserver kjtsiteserver 1339/udp # kjtsiteserver naap 1340/tcp # NAAP naap 1340/udp # NAAP qubes 1341/tcp # QuBES qubes 1341/udp # QuBES esbroker 1342/tcp # ESBroker esbroker 1342/udp # ESBroker re101 1343/tcp # re101 re101 1343/udp # re101 icap 1344/tcp # ICAP icap 1344/udp # ICAP vpjp 1345/tcp # VPJP vpjp 1345/udp # VPJP 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 XSIP-network 1354/tcp # Five Across XSIP Network XSIP-network 1354/udp # Five Across XSIP Network 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 connlcli 1358/udp # CONNLCLI ftsrv 1359/tcp # FTSRV ftsrv 1359/udp # FTSRV mimer 1360/tcp # MIMER mimer 1360/udp # MIMER linx 1361/tcp # LinX linx 1361/udp # LinX timeflies 1362/tcp # TimeFlies timeflies 1362/udp # TimeFlies 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 dcs 1367/udp # DCS screencast 1368/tcp # ScreenCast screencast 1368/udp # ScreenCast 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 chromagrafx 1373/udp # Chromagrafx molly 1374/tcp # EPI Software Systems molly 1374/udp # EPI Software Systems bytex 1375/tcp # Bytex bytex 1375/udp # Bytex 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 udt_os 1382/tcp # udt_os udt_os 1382/udp # udt_os 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 innosys 1412/udp # InnoSys innosys-acl 1413/tcp # Innosys-ACL innosys-acl 1413/udp # Innosys-ACL ibm-mqseries 1414/tcp # IBM MQSeries ibm-mqseries 1414/udp # IBM MQSeries dbstar 1415/tcp # DBStar dbstar 1415/udp # DBStar 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 sais 1426/tcp # Satellite-data Acquisition System 1 sais 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 ibm-cics 1435/udp # IBM CICS saism 1436/tcp # Satellite-data Acquisition System 2 saism 1436/udp # Satellite-data Acquisition System 2 tabula 1437/tcp # Tabula tabula 1437/udp # Tabula 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 peport 1449/udp # PEport 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 dca 1456/udp # DCA 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 nucleus 1463/udp # Nucleus 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 csdmbase 1467/udp # CSDMBASE csdm 1468/tcp # CSDM csdm 1468/udp # CSDM 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 openmath 1473/tcp # OpenMath openmath 1473/udp # OpenMath telefinder 1474/tcp # Telefinder telefinder 1474/udp # Telefinder taligent-lm 1475/tcp # Taligent License Manager taligent-lm 1475/udp # Taligent License Manager clvm-cfg 1476/tcp # clvm-cfg clvm-cfg 1476/udp # clvm-cfg ms-sna-server 1477/tcp # ms-sna-server ms-sna-server 1477/udp # ms-sna-server ms-sna-base 1478/tcp # ms-sna-base ms-sna-base 1478/udp # ms-sna-base dberegister 1479/tcp # dberegister dberegister 1479/udp # dberegister pacerforum 1480/tcp # PacerForum pacerforum 1480/udp # PacerForum airs 1481/tcp # AIRS airs 1481/udp # AIRS 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 lansource 1485/udp # LANSource nms_topo_serv 1486/tcp # nms_topo_serv nms_topo_serv 1486/udp # nms_topo_serv localinfosrvr 1487/tcp # LocalInfoSrvr localinfosrvr 1487/udp # LocalInfoSrvr docstor 1488/tcp # DocStor docstor 1488/udp # DocStor dmdocbroker 1489/tcp # dmdocbroker dmdocbroker 1489/udp # dmdocbroker insitu-conf 1490/tcp # insitu-conf insitu-conf 1490/udp # insitu-conf anynetgateway 1491/tcp # anynetgateway anynetgateway 1491/udp # anynetgateway stone-design-1 1492/tcp # stone-design-1 stone-design-1 1492/udp # stone-design-1 netmap_lm 1493/tcp # netmap_lm netmap_lm 1493/udp # netmap_lm ica 1494/tcp # Citrix ICA Client ica 1494/udp # Citrix ICA Client cvc 1495/tcp # cvc cvc 1495/udp # cvc liberty-lm 1496/tcp # liberty-lm liberty-lm 1496/udp # liberty-lm rfx-lm 1497/tcp # rfx-lm rfx-lm 1497/udp # rfx-lm sybase-sqlany 1498/tcp # Sybase SQL Any sybase-sqlany 1498/udp # Sybase SQL Any 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 saiscm 1501/tcp # Satellite-data Acquisition System 3 saiscm 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 symplex 1507/udp # symplex diagmond 1508/tcp # diagmond diagmond 1508/udp # diagmond 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 3l-l1 1511/udp # 3l-l1 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 ifor-protocol 1515/udp # ifor-protocol 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 ricardo-lm 1522/tcp # Ricardo North America License Manager ricardo-lm 1522/udp # Ricardo North America License Manager cichild-lm 1523/tcp # cichild cichild-lm 1523/udp # cichild ingreslock 1524/tcp ingreslock 1524/udp prospero-np 1525/tcp # Prospero non-privileged prospero-np 1525/udp 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 # micautoreg mciautoreg 1528/udp # micautoreg support 1529/tcp prmsd gnatsd # GNATS, cygnus bug tracker rap-service 1530/tcp # rap-service rap-service 1530/udp # rap-service rap-listen 1531/tcp # rap-listen rap-listen 1531/udp # rap-listen miroconnect 1532/tcp # miroconnect miroconnect 1532/udp # miroconnect virtual-places 1533/tcp # Virtual Places Software virtual-places 1533/udp # Virtual Places Software micromuse-lm 1534/tcp # micromuse-lm micromuse-lm 1534/udp # micromuse-lm ampr-info 1535/tcp # ampr-info ampr-info 1535/udp # ampr-info ampr-inter 1536/tcp # ampr-inter ampr-inter 1536/udp # ampr-inter sdsc-lm 1537/tcp # isi-lm sdsc-lm 1537/udp # isi-lm 3ds-lm 1538/tcp # 3ds-lm 3ds-lm 1538/udp # 3ds-lm intellistor-lm 1539/tcp # Intellistor License Manager intellistor-lm 1539/udp # Intellistor License Manager rds 1540/tcp # rds rds 1540/udp # rds rds2 1541/tcp # rds2 rds2 1541/udp # rds2 gridgen-elmd 1542/tcp # gridgen-elmd gridgen-elmd 1542/udp # gridgen-elmd simba-cs 1543/tcp # simba-cs simba-cs 1543/udp # simba-cs aspeclmd 1544/tcp # aspeclmd aspeclmd 1544/udp # aspeclmd vistium-share 1545/tcp # vistium-share vistium-share 1545/udp # vistium-share abbaccuray 1546/tcp # abbaccuray abbaccuray 1546/udp # abbaccuray laplink 1547/tcp # laplink laplink 1547/udp # laplink 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 hecmtl-db 1551/udp # HECMTL-DB pciarray 1552/tcp # pciarray pciarray 1552/udp # pciarray sna-cs 1553/tcp # sna-cs sna-cs 1553/udp # sna-cs caci-lm 1554/tcp # CACI Products Company License Manager caci-lm 1554/udp # CACI Products Company License Manager livelan 1555/tcp # livelan livelan 1555/udp # livelan veritas_pbx 1556/tcp # VERITAS Private Branch Exchange veritas_pbx 1556/udp # VERITAS Private Branch Exchange arbortext-lm 1557/tcp # ArborText License Manager arbortext-lm 1557/udp # ArborText License Manager xingmpeg 1558/tcp # xingmpeg xingmpeg 1558/udp # xingmpeg web2host 1559/tcp # web2host web2host 1559/udp # web2host asci-val 1560/tcp # ASCI-RemoteSHADOW asci-val 1560/udp # ASCI-RemoteSHADOW facilityview 1561/tcp # facilityview facilityview 1561/udp # facilityview pconnectmgr 1562/tcp # pconnectmgr pconnectmgr 1562/udp # pconnectmgr cadabra-lm 1563/tcp # Cadabra License Manager cadabra-lm 1563/udp # Cadabra License Manager pay-per-view 1564/tcp # Pay-Per-View pay-per-view 1564/udp # Pay-Per-View winddlb 1565/tcp # WinDD winddlb 1565/udp # WinDD corelvideo 1566/tcp # CORELVIDEO corelvideo 1566/udp # CORELVIDEO jlicelmd 1567/tcp # jlicelmd jlicelmd 1567/udp # jlicelmd tsspmap 1568/tcp # tsspmap tsspmap 1568/udp # tsspmap ets 1569/tcp # ets ets 1569/udp # ets orbixd 1570/tcp # orbixd orbixd 1570/udp # orbixd rdb-dbs-disp 1571/tcp # Oracle Remote Data Base rdb-dbs-disp 1571/udp # Oracle Remote Data Base chip-lm 1572/tcp # Chipcom License Manager chip-lm 1572/udp # Chipcom License Manager itscomm-ns 1573/tcp # itscomm-ns itscomm-ns 1573/udp # itscomm-ns mvel-lm 1574/tcp # mvel-lm mvel-lm 1574/udp # mvel-lm oraclenames 1575/tcp # oraclenames oraclenames 1575/udp # oraclenames moldflow-lm 1576/tcp # moldflow-lm moldflow-lm 1576/udp # moldflow-lm hypercube-lm 1577/tcp # hypercube-lm hypercube-lm 1577/udp # hypercube-lm jacobus-lm 1578/tcp # Jacobus License Manager jacobus-lm 1578/udp # Jacobus License Manager ioc-sea-lm 1579/tcp # ioc-sea-lm ioc-sea-lm 1579/udp # ioc-sea-lm tn-tl-r1 1580/tcp # tn-tl-r1 tn-tl-r2 1580/udp # tn-tl-r2 mil-2045-47001 1581/tcp # MIL-2045-47001 mil-2045-47001 1581/udp # MIL-2045-47001 msims 1582/tcp # MSIMS msims 1582/udp # MSIMS simbaexpress 1583/tcp # simbaexpress simbaexpress 1583/udp # simbaexpress tn-tl-fd2 1584/tcp # tn-tl-fd2 tn-tl-fd2 1584/udp # tn-tl-fd2 intv 1585/tcp # intv intv 1585/udp # intv ibm-abtact 1586/tcp # ibm-abtact ibm-abtact 1586/udp # ibm-abtact pra_elmd 1587/tcp # pra_elmd pra_elmd 1587/udp # pra_elmd triquest-lm 1588/tcp # triquest-lm triquest-lm 1588/udp # triquest-lm vqp 1589/tcp # VQP vqp 1589/udp # VQP gemini-lm 1590/tcp # gemini-lm gemini-lm 1590/udp # gemini-lm ncpm-pm 1591/tcp # ncpm-pm ncpm-pm 1591/udp # ncpm-pm commonspace 1592/tcp # commonspace commonspace 1592/udp # commonspace mainsoft-lm 1593/tcp # mainsoft-lm mainsoft-lm 1593/udp # mainsoft-lm sixtrak 1594/tcp # sixtrak sixtrak 1594/udp # sixtrak radio 1595/tcp # radio radio 1595/udp # radio radio-bc 1596/udp # radio-bc radio-sm 1596/tcp # radio-sm orbplus-iiop 1597/tcp # orbplus-iiop orbplus-iiop 1597/udp # orbplus-iiop picknfs 1598/tcp # picknfs picknfs 1598/udp # picknfs simbaservices 1599/tcp # simbaservices simbaservices 1599/udp # simbaservices issd 1600/tcp issd 1600/udp aas 1601/tcp # aas aas 1601/udp # aas inspect 1602/tcp # inspect inspect 1602/udp # inspect picodbc 1603/tcp # pickodbc picodbc 1603/udp # pickodbc icabrowser 1604/tcp # icabrowser icabrowser 1604/udp # icabrowser slp 1605/tcp # Salutation Manager (Salutation Protocol) slp 1605/udp # Salutation Manager (Salutation Protocol) slm-api 1606/tcp # Salutation Manager (SLM-API) slm-api 1606/udp # Salutation Manager (SLM-API) stt 1607/tcp # stt stt 1607/udp # stt smart-lm 1608/tcp # Smart Corp. License Manager smart-lm 1608/udp # Smart Corp. License Manager isysg-lm 1609/tcp # isysg-lm isysg-lm 1609/udp # isysg-lm taurus-wh 1610/tcp # taurus-wh taurus-wh 1610/udp # taurus-wh ill 1611/tcp # Inter Library Loan ill 1611/udp # Inter Library Loan netbill-trans 1612/tcp # NetBill Transaction Server netbill-trans 1612/udp # NetBill Transaction Server netbill-keyrep 1613/tcp # NetBill Key Repository netbill-keyrep 1613/udp # NetBill Key Repository netbill-cred 1614/tcp # NetBill Credential Server netbill-cred 1614/udp # NetBill Credential Server netbill-auth 1615/tcp # NetBill Authorization Server netbill-auth 1615/udp # NetBill Authorization Server netbill-prod 1616/tcp # NetBill Product Server netbill-prod 1616/udp # NetBill Product Server nimrod-agent 1617/tcp # Nimrod Inter-Agent Communication nimrod-agent 1617/udp # Nimrod Inter-Agent Communication skytelnet 1618/tcp # skytelnet skytelnet 1618/udp # skytelnet xs-openstorage 1619/tcp # xs-openstorage xs-openstorage 1619/udp # xs-openstorage faxportwinport 1620/tcp # faxportwinport faxportwinport 1620/udp # faxportwinport softdataphone 1621/tcp # softdataphone softdataphone 1621/udp # softdataphone ontime 1622/tcp # ontime ontime 1622/udp # ontime jaleosnd 1623/tcp # jaleosnd jaleosnd 1623/udp # jaleosnd udp-sr-port 1624/tcp # udp-sr-port udp-sr-port 1624/udp # udp-sr-port svs-omagent 1625/tcp # svs-omagent svs-omagent 1625/udp # svs-omagent shockwave 1626/tcp # Shockwave shockwave 1626/udp # Shockwave t128-gateway 1627/tcp # T.128 Gateway t128-gateway 1627/udp # T.128 Gateway lontalk-norm 1628/tcp # LonTalk normal lontalk-norm 1628/udp # LonTalk normal lontalk-urgnt 1629/tcp # LonTalk urgent lontalk-urgnt 1629/udp # LonTalk urgent oraclenet8cman 1630/tcp # Oracle Net8 Cman oraclenet8cman 1630/udp # Oracle Net8 Cman visitview 1631/tcp # Visit view visitview 1631/udp # Visit view pammratc 1632/tcp # PAMMRATC pammratc 1632/udp # PAMMRATC pammrpc 1633/tcp # PAMMRPC pammrpc 1633/udp # PAMMRPC loaprobe 1634/tcp # Log On America Probe loaprobe 1634/udp # Log On America Probe edb-server1 1635/tcp # EDB Server 1 edb-server1 1635/udp # EDB Server 1 cncp 1636/tcp # CableNet Control Protocol cncp 1636/udp # CableNet Control Protocol cnap 1637/tcp # CableNet Admin Protocol cnap 1637/udp # CableNet Admin Protocol cnip 1638/tcp # CableNet Info Protocol cnip 1638/udp # CableNet Info Protocol cert-initiator 1639/tcp # cert-initiator cert-initiator 1639/udp # cert-initiator cert-responder 1640/tcp # cert-responder cert-responder 1640/udp # cert-responder invision 1641/tcp # InVision invision 1641/udp # InVision isis-am 1642/tcp # isis-am isis-am 1642/udp # isis-am isis-ambc 1643/tcp # isis-ambc isis-ambc 1643/udp # isis-ambc saiseh 1644/tcp # Satellite-data Acquisition System 4 datametrics 1645/tcp old-radius # datametrics / old radius entry datametrics 1645/udp old-radius # datametrics / old radius entry sa-msg-port 1646/tcp old-radacct # sa-msg-port / old radacct entry sa-msg-port 1646/udp old-radacct # sa-msg-port / old radacct entry rsap 1647/tcp # rsap rsap 1647/udp # rsap concurrent-lm 1648/tcp # concurrent-lm concurrent-lm 1648/udp # concurrent-lm kermit 1649/tcp kermit 1649/udp nkd 1650/tcp # nkdn nkd 1650/udp # nkd shiva_confsrvr 1651/tcp # shiva_confsrvr shiva_confsrvr 1651/udp # shiva_confsrvr xnmp 1652/tcp # xnmp xnmp 1652/udp # xnmp alphatech-lm 1653/tcp # alphatech-lm alphatech-lm 1653/udp # alphatech-lm stargatealerts 1654/tcp # stargatealerts stargatealerts 1654/udp # stargatealerts dec-mbadmin 1655/tcp # dec-mbadmin dec-mbadmin 1655/udp # dec-mbadmin dec-mbadmin-h 1656/tcp # dec-mbadmin-h dec-mbadmin-h 1656/udp # dec-mbadmin-h fujitsu-mmpdc 1657/tcp # fujitsu-mmpdc fujitsu-mmpdc 1657/udp # fujitsu-mmpdc sixnetudr 1658/tcp # sixnetudr sixnetudr 1658/udp # sixnetudr sg-lm 1659/tcp # Silicon Grail License Manager sg-lm 1659/udp # Silicon Grail License Manager skip-mc-gikreq 1660/tcp # skip-mc-gikreq skip-mc-gikreq 1660/udp # skip-mc-gikreq netview-aix-1 1661/tcp # netview-aix-1 netview-aix-1 1661/udp # netview-aix-1 netview-aix-2 1662/tcp # netview-aix-2 netview-aix-2 1662/udp # netview-aix-2 netview-aix-3 1663/tcp # netview-aix-3 netview-aix-3 1663/udp # netview-aix-3 netview-aix-4 1664/tcp # netview-aix-4 netview-aix-4 1664/udp # netview-aix-4 netview-aix-5 1665/tcp # netview-aix-5 netview-aix-5 1665/udp # netview-aix-5 netview-aix-6 1666/tcp # netview-aix-6 netview-aix-6 1666/udp # netview-aix-6 netview-aix-7 1667/tcp # netview-aix-7 netview-aix-7 1667/udp # netview-aix-7 netview-aix-8 1668/tcp # netview-aix-8 netview-aix-8 1668/udp # netview-aix-8 netview-aix-9 1669/tcp # netview-aix-9 netview-aix-9 1669/udp # netview-aix-9 netview-aix-10 1670/tcp # netview-aix-10 netview-aix-10 1670/udp # netview-aix-10 netview-aix-11 1671/tcp # netview-aix-11 netview-aix-11 1671/udp # netview-aix-11 netview-aix-12 1672/tcp # netview-aix-12 netview-aix-12 1672/udp # netview-aix-12 proshare-mc-1 1673/tcp # Intel Proshare Multicast proshare-mc-1 1673/udp # Intel Proshare Multicast proshare-mc-2 1674/tcp # Intel Proshare Multicast proshare-mc-2 1674/udp # Intel Proshare Multicast pdp 1675/tcp # Pacific Data Products pdp 1675/udp # Pacific Data Products netcomm1 1676/tcp # netcomm1 netcomm2 1676/udp # netcomm2 groupwise 1677/tcp # groupwise groupwise 1677/udp # groupwise prolink 1678/tcp # prolink prolink 1678/udp # prolink darcorp-lm 1679/tcp # darcorp-lm darcorp-lm 1679/udp # darcorp-lm microcom-sbp 1680/tcp # microcom-sbp microcom-sbp 1680/udp # microcom-sbp sd-elmd 1681/tcp # sd-elmd sd-elmd 1681/udp # sd-elmd lanyon-lantern 1682/tcp # lanyon-lantern lanyon-lantern 1682/udp # lanyon-lantern ncpm-hip 1683/tcp # ncpm-hip ncpm-hip 1683/udp # ncpm-hip snaresecure 1684/tcp # SnareSecure snaresecure 1684/udp # SnareSecure n2nremote 1685/tcp # n2nremote n2nremote 1685/udp # n2nremote cvmon 1686/tcp # cvmon cvmon 1686/udp # cvmon nsjtp-ctrl 1687/tcp # nsjtp-ctrl nsjtp-ctrl 1687/udp # nsjtp-ctrl nsjtp-data 1688/tcp # nsjtp-data nsjtp-data 1688/udp # nsjtp-data firefox 1689/tcp # firefox firefox 1689/udp # firefox ng-umds 1690/tcp # ng-umds ng-umds 1690/udp # ng-umds empire-empuma 1691/tcp # empire-empuma empire-empuma 1691/udp # empire-empuma sstsys-lm 1692/tcp # sstsys-lm sstsys-lm 1692/udp # sstsys-lm rrirtr 1693/tcp # rrirtr rrirtr 1693/udp # rrirtr rrimwm 1694/tcp # rrimwm rrimwm 1694/udp # rrimwm rrilwm 1695/tcp # rrilwm rrilwm 1695/udp # rrilwm rrifmm 1696/tcp # rrifmm rrifmm 1696/udp # rrifmm rrisat 1697/tcp # rrisat rrisat 1697/udp # rrisat rsvp-encap-1 1698/tcp # RSVP-ENCAPSULATION-1 rsvp-encap-1 1698/udp # RSVP-ENCAPSULATION-1 rsvp-encap-2 1699/tcp # RSVP-ENCAPSULATION-2 rsvp-encap-2 1699/udp # RSVP-ENCAPSULATION-2 mps-raft 1700/tcp # mps-raft mps-raft 1700/udp # mps-raft l2tp 1701/tcp l2f l2tp 1701/udp l2f deskshare 1702/tcp # deskshare deskshare 1702/udp # deskshare hb-engine 1703/tcp # hb-engine hb-engine 1703/udp # hb-engine bcs-broker 1704/tcp # bcs-broker bcs-broker 1704/udp # bcs-broker slingshot 1705/tcp # slingshot slingshot 1705/udp # slingshot jetform 1706/tcp # jetform jetform 1706/udp # jetform vdmplay 1707/tcp # vdmplay vdmplay 1707/udp # vdmplay gat-lmd 1708/tcp # gat-lmd gat-lmd 1708/udp # gat-lmd centra 1709/tcp # centra centra 1709/udp # centra impera 1710/tcp # impera impera 1710/udp # impera pptconference 1711/tcp # pptconference pptconference 1711/udp # pptconference registrar 1712/tcp # resource monitoring service registrar 1712/udp # resource monitoring service conferencetalk 1713/tcp # ConferenceTalk conferencetalk 1713/udp # ConferenceTalk sesi-lm 1714/tcp # sesi-lm sesi-lm 1714/udp # sesi-lm houdini-lm 1715/tcp # houdini-lm houdini-lm 1715/udp # houdini-lm xmsg 1716/tcp # xmsg xmsg 1716/udp # xmsg fj-hdnet 1717/tcp # fj-hdnet fj-hdnet 1717/udp # fj-hdnet h323gatedisc 1718/tcp h323gatedisc 1718/udp h323gatestat 1719/tcp h323gatestat 1719/udp h323hostcall 1720/tcp h323hostcall 1720/udp caicci 1721/tcp # caicci caicci 1721/udp # caicci hks-lm 1722/tcp # HKS License Manager hks-lm 1722/udp # HKS License Manager pptp 1723/tcp # pptp pptp 1723/udp # pptp csbphonemaster 1724/tcp # csbphonemaster csbphonemaster 1724/udp # csbphonemaster iden-ralp 1725/tcp # iden-ralp iden-ralp 1725/udp # iden-ralp iberiagames 1726/tcp # IBERIAGAMES iberiagames 1726/udp # IBERIAGAMES winddx 1727/tcp # winddx winddx 1727/udp # winddx telindus 1728/tcp # TELINDUS telindus 1728/udp # TELINDUS citynl 1729/tcp # CityNL License Management citynl 1729/udp # CityNL License Management roketz 1730/tcp # roketz roketz 1730/udp # roketz msiccp 1731/tcp # MSICCP msiccp 1731/udp # MSICCP proxim 1732/tcp # proxim proxim 1732/udp # proxim siipat 1733/tcp # SIMS - SIIPAT Protocol for Alarm Transmission siipat 1733/udp # SIMS - SIIPAT Protocol for Alarm Transmission cambertx-lm 1734/tcp # Camber Corporation License Management cambertx-lm 1734/udp # Camber Corporation License Management privatechat 1735/tcp # PrivateChat privatechat 1735/udp # PrivateChat street-stream 1736/tcp # street-stream street-stream 1736/udp # street-stream ultimad 1737/tcp # ultimad ultimad 1737/udp # ultimad gamegen1 1738/tcp # GameGen1 gamegen1 1738/udp # GameGen1 webaccess 1739/tcp # webaccess webaccess 1739/udp # webaccess encore 1740/tcp # encore encore 1740/udp # encore cisco-net-mgmt 1741/tcp # cisco-net-mgmt cisco-net-mgmt 1741/udp # cisco-net-mgmt 3Com-nsd 1742/tcp # 3Com-nsd 3Com-nsd 1742/udp # 3Com-nsd cinegrfx-lm 1743/tcp # Cinema Graphics License Manager cinegrfx-lm 1743/udp # Cinema Graphics License Manager ncpm-ft 1744/tcp # ncpm-ft ncpm-ft 1744/udp # ncpm-ft remote-winsock 1745/tcp # remote-winsock remote-winsock 1745/udp # remote-winsock ftrapid-1 1746/tcp # ftrapid-1 ftrapid-1 1746/udp # ftrapid-1 ftrapid-2 1747/tcp # ftrapid-2 ftrapid-2 1747/udp # ftrapid-2 oracle-em1 1748/tcp # oracle-em1 oracle-em1 1748/udp # oracle-em1 aspen-services 1749/tcp # aspen-services aspen-services 1749/udp # aspen-services sslp 1750/tcp # Simple Socket Library's PortMaster sslp 1750/udp # Simple Socket Library's PortMaster swiftnet 1751/tcp # SwiftNet swiftnet 1751/udp # SwiftNet lofr-lm 1752/tcp # Leap of Faith Research License Manager lofr-lm 1752/udp # Leap of Faith Research License Manager oracle-em2 1754/tcp # oracle-em2 oracle-em2 1754/udp # oracle-em2 ms-streaming 1755/tcp # ms-streaming ms-streaming 1755/udp # ms-streaming capfast-lmd 1756/tcp # capfast-lmd capfast-lmd 1756/udp # capfast-lmd cnhrp 1757/tcp # cnhrp cnhrp 1757/udp # cnhrp tftp-mcast 1758/tcp tftp-mcast 1758/udp mtftp 1759/udp www-ldap-gw 1760/tcp # www-ldap-gw www-ldap-gw 1760/udp # www-ldap-gw cft-0 1761/tcp # cft-0 cft-0 1761/udp # cft-0 cft-1 1762/tcp # cft-1 cft-1 1762/udp # cft-1 cft-2 1763/tcp # cft-2 cft-2 1763/udp # cft-2 cft-3 1764/tcp # cft-3 cft-3 1764/udp # cft-3 cft-4 1765/tcp # cft-4 cft-4 1765/udp # cft-4 cft-5 1766/tcp # cft-5 cft-5 1766/udp # cft-5 cft-6 1767/tcp # cft-6 cft-6 1767/udp # cft-6 cft-7 1768/tcp # cft-7 cft-7 1768/udp # cft-7 bmc-net-adm 1769/tcp # bmc-net-adm bmc-net-adm 1769/udp # bmc-net-adm bmc-net-svc 1770/tcp # bmc-net-svc bmc-net-svc 1770/udp # bmc-net-svc vaultbase 1771/tcp # vaultbase vaultbase 1771/udp # vaultbase essweb-gw 1772/tcp # EssWeb Gateway essweb-gw 1772/udp # EssWeb Gateway kmscontrol 1773/tcp # KMSControl kmscontrol 1773/udp # KMSControl global-dtserv 1774/tcp # global-dtserv global-dtserv 1774/udp # global-dtserv femis 1776/tcp # Federal Emergency Management Information System femis 1776/udp # Federal Emergency Management Information System powerguardian 1777/tcp # powerguardian powerguardian 1777/udp # powerguardian prodigy-intrnet 1778/tcp # prodigy-internet prodigy-intrnet 1778/udp # prodigy-internet pharmasoft 1779/tcp # pharmasoft pharmasoft 1779/udp # pharmasoft dpkeyserv 1780/tcp # dpkeyserv dpkeyserv 1780/udp # dpkeyserv answersoft-lm 1781/tcp # answersoft-lm answersoft-lm 1781/udp # answersoft-lm hp-hcip 1782/tcp # hp-hcip hp-hcip 1782/udp # hp-hcip finle-lm 1784/tcp # Finle License Manager finle-lm 1784/udp # Finle License Manager windlm 1785/tcp # Wind River Systems License Manager windlm 1785/udp # Wind River Systems License Manager funk-logger 1786/tcp # funk-logger funk-logger 1786/udp # funk-logger funk-license 1787/tcp # funk-license funk-license 1787/udp # funk-license psmond 1788/tcp # psmond psmond 1788/udp # psmond hello 1789/tcp hello 1789/udp ea1 1791/tcp # EA1 ea1 1791/udp # EA1 ibm-dt-2 1792/tcp # ibm-dt-2 ibm-dt-2 1792/udp # ibm-dt-2 rsc-robot 1793/tcp # rsc-robot rsc-robot 1793/udp # rsc-robot cera-bcm 1794/tcp # cera-bcm cera-bcm 1794/udp # cera-bcm dpi-proxy 1795/tcp # dpi-proxy dpi-proxy 1795/udp # dpi-proxy vocaltec-admin 1796/tcp # Vocaltec Server Administration vocaltec-admin 1796/udp # Vocaltec Server Administration etp 1798/tcp # Event Transfer Protocol etp 1798/udp # Event Transfer Protocol netrisk 1799/tcp # NETRISK netrisk 1799/udp # NETRISK ansys-lm 1800/tcp # ANSYS-License manager ansys-lm 1800/udp # ANSYS-License manager msmq 1801/tcp # Microsoft Message Que msmq 1801/udp # Microsoft Message Que concomp1 1802/tcp # ConComp1 concomp1 1802/udp # ConComp1 hp-hcip-gwy 1803/tcp # HP-HCIP-GWY hp-hcip-gwy 1803/udp # HP-HCIP-GWY enl 1804/tcp # ENL enl 1804/udp # ENL enl-name 1805/tcp # ENL-Name enl-name 1805/udp # ENL-Name musiconline 1806/tcp # Musiconline musiconline 1806/udp # Musiconline fhsp 1807/tcp # Fujitsu Hot Standby Protocol fhsp 1807/udp # Fujitsu Hot Standby Protocol oracle-vp2 1808/tcp # Oracle-VP2 oracle-vp2 1808/udp # Oracle-VP2 oracle-vp1 1809/tcp # Oracle-VP1 oracle-vp1 1809/udp # Oracle-VP1 jerand-lm 1810/tcp # Jerand License Manager jerand-lm 1810/udp # Jerand License Manager scientia-sdb 1811/tcp # Scientia-SDB scientia-sdb 1811/udp # Scientia-SDB radius 1812/tcp # Radius radius 1812/udp # Radius radius-acct 1813/tcp radacct # Radius Accounting radius-acct 1813/udp radacct # Radius Accounting tdp-suite 1814/tcp # TDP Suite tdp-suite 1814/udp # TDP Suite mmpft 1815/tcp # MMPFT mmpft 1815/udp # MMPFT harp 1816/tcp # HARP harp 1816/udp # HARP rkb-oscs 1817/tcp # RKB-OSCS rkb-oscs 1817/udp # RKB-OSCS etftp 1818/tcp # Enhanced Trivial File Transfer Protocol etftp 1818/udp # Enhanced Trivial File Transfer Protocol plato-lm 1819/tcp # Plato License Manager plato-lm 1819/udp # Plato License Manager mcagent 1820/tcp # mcagent mcagent 1820/udp # mcagent donnyworld 1821/tcp # donnyworld donnyworld 1821/udp # donnyworld es-elmd 1822/tcp # es-elmd es-elmd 1822/udp # es-elmd unisys-lm 1823/tcp # Unisys Natural Language License Manager unisys-lm 1823/udp # Unisys Natural Language License Manager metrics-pas 1824/tcp # metrics-pas metrics-pas 1824/udp # metrics-pas direcpc-video 1825/tcp # DirecPC Video direcpc-video 1825/udp # DirecPC Video ardt 1826/tcp # ARDT ardt 1826/udp # ARDT asi 1827/tcp # ASI asi 1827/udp # ASI itm-mcell-u 1828/tcp # itm-mcell-u itm-mcell-u 1828/udp # itm-mcell-u optika-emedia 1829/tcp # Optika eMedia optika-emedia 1829/udp # Optika eMedia net8-cman 1830/tcp # Oracle Net8 CMan Admin net8-cman 1830/udp # Oracle Net8 CMan Admin myrtle 1831/tcp # Myrtle myrtle 1831/udp # Myrtle tht-treasure 1832/tcp # ThoughtTreasure tht-treasure 1832/udp # ThoughtTreasure udpradio 1833/tcp # udpradio udpradio 1833/udp # udpradio ardusuni 1834/tcp # ARDUS Unicast ardusuni 1834/udp # ARDUS Unicast ardusmul 1835/tcp # ARDUS Multicast ardusmul 1835/udp # ARDUS Multicast ste-smsc 1836/tcp # ste-smsc ste-smsc 1836/udp # ste-smsc csoft1 1837/tcp # csoft1 csoft1 1837/udp # csoft1 talnet 1838/tcp # TALNET talnet 1838/udp # TALNET netopia-vo1 1839/tcp # netopia-vo1 netopia-vo1 1839/udp # netopia-vo1 netopia-vo2 1840/tcp # netopia-vo2 netopia-vo2 1840/udp # netopia-vo2 netopia-vo3 1841/tcp # netopia-vo3 netopia-vo3 1841/udp # netopia-vo3 netopia-vo4 1842/tcp # netopia-vo4 netopia-vo4 1842/udp # netopia-vo4 netopia-vo5 1843/tcp # netopia-vo5 netopia-vo5 1843/udp # netopia-vo5 direcpc-dll 1844/tcp # DirecPC-DLL direcpc-dll 1844/udp # DirecPC-DLL altalink 1845/tcp # altalink altalink 1845/udp # altalink tunstall-pnc 1846/tcp # Tunstall PNC tunstall-pnc 1846/udp # Tunstall PNC slp-notify 1847/tcp # SLP Notification slp-notify 1847/udp # SLP Notification fjdocdist 1848/tcp # fjdocdist fjdocdist 1848/udp # fjdocdist alpha-sms 1849/tcp # ALPHA-SMS alpha-sms 1849/udp # ALPHA-SMS gsi 1850/tcp # GSI gsi 1850/udp # GSI ctcd 1851/tcp # ctcd ctcd 1851/udp # ctcd virtual-time 1852/tcp # Virtual Time virtual-time 1852/udp # Virtual Time vids-avtp 1853/tcp # VIDS-AVTP vids-avtp 1853/udp # VIDS-AVTP buddy-draw 1854/tcp # Buddy Draw buddy-draw 1854/udp # Buddy Draw fiorano-rtrsvc 1855/tcp # Fiorano RtrSvc fiorano-rtrsvc 1855/udp # Fiorano RtrSvc fiorano-msgsvc 1856/tcp # Fiorano MsgSvc fiorano-msgsvc 1856/udp # Fiorano MsgSvc datacaptor 1857/tcp # DataCaptor datacaptor 1857/udp # DataCaptor privateark 1858/tcp # PrivateArk privateark 1858/udp # PrivateArk gammafetchsvr 1859/tcp # Gamma Fetcher Server gammafetchsvr 1859/udp # Gamma Fetcher Server sunscalar-svc 1860/tcp # SunSCALAR Services sunscalar-svc 1860/udp # SunSCALAR Services lecroy-vicp 1861/tcp # LeCroy VICP lecroy-vicp 1861/udp # LeCroy VICP techra-server 1862/tcp # techra-server techra-server 1862/udp # techra-server msnp 1863/tcp # MSNP msnp 1863/udp # MSNP paradym-31port 1864/tcp # Paradym 31 Port paradym-31port 1864/udp # Paradym 31 Port entp 1865/tcp # ENTP entp 1865/udp # ENTP swrmi 1866/tcp # swrmi swrmi 1866/udp # swrmi udrive 1867/tcp # UDRIVE udrive 1867/udp # UDRIVE viziblebrowser 1868/tcp # VizibleBrowser viziblebrowser 1868/udp # VizibleBrowser yestrader 1869/tcp # YesTrader yestrader 1869/udp # YesTrader sunscalar-dns 1870/tcp # SunSCALAR DNS Service sunscalar-dns 1870/udp # SunSCALAR DNS Service canocentral0 1871/tcp # Cano Central 0 canocentral0 1871/udp # Cano Central 0 canocentral1 1872/tcp # Cano Central 1 canocentral1 1872/udp # Cano Central 1 fjmpjps 1873/tcp # Fjmpjps fjmpjps 1873/udp # Fjmpjps fjswapsnp 1874/tcp # Fjswapsnp fjswapsnp 1874/udp # Fjswapsnp westell-stats 1875/tcp # westell stats westell-stats 1875/udp # westell stats ewcappsrv 1876/tcp # ewcappsrv ewcappsrv 1876/udp # ewcappsrv hp-webqosdb 1877/tcp # hp-webqosdb hp-webqosdb 1877/udp # hp-webqosdb drmsmc 1878/tcp # drmsmc drmsmc 1878/udp # drmsmc nettgain-nms 1879/tcp # NettGain NMS nettgain-nms 1879/udp # NettGain NMS vsat-control 1880/tcp # Gilat VSAT Control vsat-control 1880/udp # Gilat VSAT Control ibm-mqseries2 1881/tcp # IBM WebSphere MQ Everyplace ibm-mqseries2 1881/udp # IBM WebSphere MQ Everyplace ecsqdmn 1882/tcp # ecsqdmn ecsqdmn 1882/udp # ecsqdmn ibm-mqisdp 1883/tcp # IBM MQSeries SCADA ibm-mqisdp 1883/udp # IBM MQSeries SCADA idmaps 1884/tcp # Internet Distance Map Svc idmaps 1884/udp # Internet Distance Map Svc vrtstrapserver 1885/tcp # Veritas Trap Server vrtstrapserver 1885/udp # Veritas Trap Server leoip 1886/tcp # Leonardo over IP leoip 1886/udp # Leonardo over IP filex-lport 1887/tcp # FileX Listening Port filex-lport 1887/udp # FileX Listening Port ncconfig 1888/tcp # NC Config Port ncconfig 1888/udp # NC Config Port unify-adapter 1889/tcp # Unify Web Adapter Service unify-adapter 1889/udp # Unify Web Adapter Service wilkenlistener 1890/tcp # wilkenListener wilkenlistener 1890/udp # wilkenListener childkey-notif 1891/tcp # ChildKey Notification childkey-notif 1891/udp # ChildKey Notification childkey-ctrl 1892/tcp # ChildKey Control childkey-ctrl 1892/udp # ChildKey Control elad 1893/tcp # ELAD Protocol elad 1893/udp # ELAD Protocol o2server-port 1894/tcp # O2Server Port o2server-port 1894/udp # O2Server Port b-novative-ls 1896/tcp # b-novative license server b-novative-ls 1896/udp # b-novative license server metaagent 1897/tcp # MetaAgent metaagent 1897/udp # MetaAgent cymtec-port 1898/tcp # Cymtec secure management cymtec-port 1898/udp # Cymtec secure management mc2studios 1899/tcp # MC2Studios mc2studios 1899/udp # MC2Studios ssdp 1900/tcp # SSDP ssdp 1900/udp # SSDP fjicl-tep-a 1901/tcp # Fujitsu ICL Terminal Emulator Program A fjicl-tep-a 1901/udp # Fujitsu ICL Terminal Emulator Program A fjicl-tep-b 1902/tcp # Fujitsu ICL Terminal Emulator Program B fjicl-tep-b 1902/udp # Fujitsu ICL Terminal Emulator Program B linkname 1903/tcp # Local Link Name Resolution linkname 1903/udp # Local Link Name Resolution fjicl-tep-c 1904/tcp # Fujitsu ICL Terminal Emulator Program C fjicl-tep-c 1904/udp # Fujitsu ICL Terminal Emulator Program C sugp 1905/tcp # Secure UP.Link Gateway Protocol sugp 1905/udp # Secure UP.Link Gateway Protocol tpmd 1906/tcp # TPortMapperReq tpmd 1906/udp # TPortMapperReq intrastar 1907/tcp # IntraSTAR intrastar 1907/udp # IntraSTAR dawn 1908/tcp # Dawn dawn 1908/udp # Dawn global-wlink 1909/tcp # Global World Link global-wlink 1909/udp # Global World Link ultrabac 1910/tcp # UltraBac Software communications port ultrabac 1910/udp # UltraBac Software communications port mtp 1911/tcp # mtp 1911/udp # rhp-iibp 1912/tcp # rhp-iibp rhp-iibp 1912/udp # rhp-iibp armadp 1913/tcp # armadp armadp 1913/udp # armadp elm-momentum 1914/tcp # Elm-Momentum elm-momentum 1914/udp # Elm-Momentum facelink 1915/tcp # FACELINK facelink 1915/udp # FACELINK persona 1916/tcp # Persoft Persona persona 1916/udp # Persoft Persona noagent 1917/tcp # nOAgent noagent 1917/udp # nOAgent can-nds 1918/tcp # Candle Directory Service - NDS can-nds 1918/udp # Candle Directory Service - NDS can-dch 1919/tcp # Candle Directory Service - DCH can-dch 1919/udp # Candle Directory Service - DCH can-ferret 1920/tcp # Candle Directory Service - FERRET can-ferret 1920/udp # Candle Directory Service - FERRET noadmin 1921/tcp # NoAdmin noadmin 1921/udp # NoAdmin tapestry 1922/tcp # Tapestry tapestry 1922/udp # Tapestry spice 1923/tcp # SPICE spice 1923/udp # SPICE xiip 1924/tcp # XIIP xiip 1924/udp # XIIP discovery-port 1925/tcp # Surrogate Discovery Port discovery-port 1925/udp # Surrogate Discovery Port egs 1926/tcp # Evolution Game Server egs 1926/udp # Evolution Game Server videte-cipc 1927/tcp # Videte CIPC Port videte-cipc 1927/udp # Videte CIPC Port emsd-port 1928/tcp # Expnd Maui Srvr Dscovr emsd-port 1928/udp # Expnd Maui Srvr Dscovr bandwiz-system 1929/tcp # Bandwiz System - Server bandwiz-system 1929/udp # Bandwiz System - Server driveappserver 1930/tcp # Drive AppServer driveappserver 1930/udp # Drive AppServer amdsched 1931/tcp # AMD SCHED amdsched 1931/udp # AMD SCHED ctt-broker 1932/tcp # CTT Broker ctt-broker 1932/udp # CTT Broker xmapi 1933/tcp # IBM LM MT Agent xmapi 1933/udp # IBM LM MT Agent xaapi 1934/tcp # IBM LM Appl Agent xaapi 1934/udp # IBM LM Appl Agent macromedia-fcs 1935/tcp # Macromedia Flash Communications Server MX macromedia-fcs 1935/udp # Macromedia Flash Communications server MX jetcmeserver 1936/tcp # JetCmeServer Server Port jetcmeserver 1936/udp # JetCmeServer Server Port jwserver 1937/tcp # JetVWay Server Port jwserver 1937/udp # JetVWay Server Port jwclient 1938/tcp # JetVWay Client Port jwclient 1938/udp # JetVWay Client Port jvserver 1939/tcp # JetVision Server Port jvserver 1939/udp # JetVision Server Port jvclient 1940/tcp # JetVision Client Port jvclient 1940/udp # JetVision Client Port dic-aida 1941/tcp # DIC-Aida dic-aida 1941/udp # DIC-Aida res 1942/tcp # Real Enterprise Service res 1942/udp # Real Enterprise Service beeyond-media 1943/tcp # Beeyond Media beeyond-media 1943/udp # Beeyond Media close-combat 1944/tcp # close-combat close-combat 1944/udp # close-combat dialogic-elmd 1945/tcp # dialogic-elmd dialogic-elmd 1945/udp # dialogic-elmd tekpls 1946/tcp # tekpls tekpls 1946/udp # tekpls hlserver 1947/tcp # hlserver hlserver 1947/udp # hlserver eye2eye 1948/tcp # eye2eye eye2eye 1948/udp # eye2eye ismaeasdaqlive 1949/tcp # ISMA Easdaq Live ismaeasdaqlive 1949/udp # ISMA Easdaq Live ismaeasdaqtest 1950/tcp # ISMA Easdaq Test ismaeasdaqtest 1950/udp # ISMA Easdaq Test bcs-lmserver 1951/tcp # bcs-lmserver bcs-lmserver 1951/udp # bcs-lmserver mpnjsc 1952/tcp # mpnjsc mpnjsc 1952/udp # mpnjsc rapidbase 1953/tcp # Rapid Base rapidbase 1953/udp # Rapid Base abr-basic 1954/tcp # ABR-Basic Data abr-basic 1954/udp # ABR-Basic Data abr-secure 1955/tcp # ABR-Secure Data abr-secure 1955/udp # ABR-Secure Data vrtl-vmf-ds 1956/tcp # Vertel VMF DS vrtl-vmf-ds 1956/udp # Vertel VMF DS unix-status 1957/tcp # unix-status unix-status 1957/udp # unix-status dxadmind 1958/tcp # CA Administration Daemon dxadmind 1958/udp # CA Administration Daemon simp-all 1959/tcp # SIMP Channel simp-all 1959/udp # SIMP Channel nasmanager 1960/tcp # Merit DAC NASmanager nasmanager 1960/udp # Merit DAC NASmanager bts-appserver 1961/tcp # BTS APPSERVER bts-appserver 1961/udp # BTS APPSERVER biap-mp 1962/tcp # BIAP-MP biap-mp 1962/udp # BIAP-MP webmachine 1963/tcp # WebMachine webmachine 1963/udp # WebMachine solid-e-engine 1964/tcp # SOLID E ENGINE solid-e-engine 1964/udp # SOLID E ENGINE tivoli-npm 1965/tcp # Tivoli NPM tivoli-npm 1965/udp # Tivoli NPM slush 1966/tcp # Slush slush 1966/udp # Slush sns-quote 1967/tcp # SNS Quote sns-quote 1967/udp # SNS Quote lipsinc 1968/tcp # LIPSinc lipsinc 1968/udp # LIPSinc lipsinc1 1969/tcp # LIPSinc 1 lipsinc1 1969/udp # LIPSinc 1 netop-rc 1970/tcp # NetOp Remote Control netop-rc 1970/udp # NetOp Remote Control netop-school 1971/tcp # NetOp School netop-school 1971/udp # NetOp School intersys-cache 1972/tcp # Cache intersys-cache 1972/udp # Cache dlsrap 1973/tcp # Data Link Switching Remote Access Protocol dlsrap 1973/udp # Data Link Switching Remote Access Protocol drp 1974/tcp # DRP drp 1974/udp # DRP tcoflashagent 1975/tcp # TCO Flash Agent tcoflashagent 1975/udp # TCO Flash Agent tcoregagent 1976/tcp # TCO Reg Agent tcoregagent 1976/udp # TCO Reg Agent tcoaddressbook 1977/tcp # TCO Address Book tcoaddressbook 1977/udp # TCO Address Book unisql 1978/tcp # UniSQL unisql 1978/udp # UniSQL unisql-java 1979/tcp # UniSQL Java unisql-java 1979/udp # UniSQL Java pearldoc-xact 1980/tcp # PearlDoc XACT pearldoc-xact 1980/udp # PearlDoc XACT p2pq 1981/tcp # p2pQ p2pq 1981/udp # p2pQ estamp 1982/tcp # Evidentiary Timestamp estamp 1982/udp # Evidentiary Timestamp lhtp 1983/tcp # Loophole Test Protocol lhtp 1983/udp # Loophole Test Protocol bb 1984/tcp # BB bb 1984/udp # BB hsrp 1985/tcp # Cisco Hot Standby Router Protocol hsrp 1985/udp # Cisco Hot Standby Router Protocol licensedaemon 1986/tcp licensedaemon 1986/udp 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 ipsendmsg 1992/udp # IPsendmsg 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 sieve 2000/tcp # Sieve Mail Filter Daemon sieve 2000/udp # Sieve Mail Filter Daemon dc 2001/tcp wizard 2001/udp # curry globe 2002/tcp globe 2002/udp cfinger 2003/tcp # GNU Finger emce 2004/udp # CCWS mm conf mailbox 2004/tcp berknet 2005/tcp oracle 2005/udp invokator 2006/tcp raid-cd 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-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 hsrpv6 2029/tcp # Hot Standby Router Protocol IPv6 hsrpv6 2029/udp # Hot Standby Router Protocol IPv6 device2 2030/tcp device2 2030/udp mobrien-chat 2031/tcp # mobrien-chat mobrien-chat 2031/udp # mobrien-chat blackboard 2032/tcp blackboard 2032/udp glogger 2033/tcp glogger 2033/udp scoremgr 2034/tcp scoremgr 2034/udp imsldoc 2035/tcp imsldoc 2035/udp e-dpnet 2036/tcp # Ethernet WS DP network e-dpnet 2036/udp # Ethernet WS DP network p2plus 2037/tcp # P2plus Application Server p2plus 2037/udp # P2plus Application Server objectmanager 2038/tcp objectmanager 2038/udp prizma 2039/tcp # Prizma Monitoring Service prizma 2039/udp # Prizma Monitoring Service lam 2040/tcp lam 2040/udp interbase 2041/tcp interbase 2041/udp isis 2042/tcp # isis isis 2042/udp # isis isis-bcast 2043/tcp # isis-bcast isis-bcast 2043/udp # isis-bcast 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 nfs 2049/tcp nfsd nfs 2049/udp nfsd av-emb-config 2050/tcp # Avaya EMB Config Port av-emb-config 2050/udp # Avaya EMB Config Port epnsdp 2051/tcp # EPNSDP epnsdp 2051/udp # EPNSDP clearvisn 2052/tcp # clearVisn Services Port clearvisn 2052/udp # clearVisn Services Port knetd 2053/tcp # Kerberos de-multiplexor weblogin 2054/tcp # Weblogin Port weblogin 2054/udp # Weblogin Port iop 2055/tcp # Iliad-Odyssey Protocol iop 2055/udp # Iliad-Odyssey Protocol omnisky 2056/tcp # OmniSky Port omnisky 2056/udp # OmniSky Port rich-cp 2057/tcp # Rich Content Protocol rich-cp 2057/udp # Rich Content Protocol newwavesearch 2058/tcp # NewWaveSearchables RMI newwavesearch 2058/udp # NewWaveSearchables RMI bmc-messaging 2059/tcp # BMC Messaging Service bmc-messaging 2059/udp # BMC Messaging Service teleniumdaemon 2060/tcp # Telenium Daemon IF teleniumdaemon 2060/udp # Telenium Daemon IF netmount 2061/tcp # NetMount netmount 2061/udp # NetMount icg-swp 2062/tcp # ICG SWP Port icg-swp 2062/udp # ICG SWP Port icg-bridge 2063/tcp # ICG Bridge Port icg-bridge 2063/udp # ICG Bridge Port icg-iprelay 2064/tcp # ICG IP Relay Port icg-iprelay 2064/udp # ICG IP Relay Port 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 avauthsrvprtcl 2068/tcp # Avocent AuthSrv Protocol avauthsrvprtcl 2068/udp # Avocent AuthSrv Protocol event-port 2069/tcp # HTTP Event Port event-port 2069/udp # HTTP Event Port ah-esp-encap 2070/tcp # AH and ESP Encapsulated in UDP packet ah-esp-encap 2070/udp # AH and ESP Encapsulated in UDP packet acp-port 2071/tcp # Axon Control Protocol acp-port 2071/udp # Axon Control Protocol msync 2072/tcp # GlobeCast mSync msync 2072/udp # GlobeCast mSync gxs-data-port 2073/tcp # DataReel Database Socket gxs-data-port 2073/udp # DataReel Database Socket vrtl-vmf-sa 2074/tcp # Vertel VMF SA vrtl-vmf-sa 2074/udp # Vertel VMF SA newlixengine 2075/tcp # Newlix ServerWare Engine newlixengine 2075/udp # Newlix ServerWare Engine newlixconfig 2076/tcp # Newlix JSPConfig newlixconfig 2076/udp # Newlix JSPConfig trellisagt 2077/tcp # TrelliSoft Agent trellisagt 2077/udp # TrelliSoft Agent trellissvr 2078/tcp # TrelliSoft Server trellissvr 2078/udp # TrelliSoft Server idware-router 2079/tcp # IDWARE Router Port idware-router 2079/udp # IDWARE Router Port autodesk-nlm 2080/tcp # Autodesk NLM (FLEXlm) autodesk-nlm 2080/udp # Autodesk NLM (FLEXlm) kme-trap-port 2081/tcp # KME PRINTER TRAP PORT kme-trap-port 2081/udp # KME PRINTER TRAP PORT infowave 2082/tcp # Infowave Mobility Server infowave 2082/udp # Infowave Mobiltiy Server radsec 2083/tcp # Secure Radius Service radsec 2083/udp # Secure Radius Service sunclustergeo 2084/tcp # SunCluster Geographic sunclustergeo 2084/udp # SunCluster Geographic ada-cip 2085/tcp # ADA Control ada-cip 2085/udp # ADA Control gnunet 2086/tcp # GNUnet gnunet 2086/udp # GNUnet eli 2087/tcp # ELI - Event Logging Integration eli 2087/udp # ELI - Event Logging Integration ip-blf 2088/tcp # IP Busy Lamp Field ip-blf 2088/udp # IP Busy Lamp Field sep 2089/tcp # Security Encapsulation Protocol - SEP sep 2089/udp # Security Encapsulation Protocol - SEP lrp 2090/tcp # Load Report Protocol lrp 2090/udp # Load Report Protocol prp 2091/tcp # PRP prp 2091/udp # PRP descent3 2092/tcp # Descent 3 descent3 2092/udp # Descent 3 nbx-cc 2093/tcp # NBX CC nbx-cc 2093/udp # NBX CC nbx-au 2094/tcp # NBX AU nbx-au 2094/udp # NBX AU nbx-ser 2095/tcp # NBX SER nbx-ser 2095/udp # NBX SER nbx-dir 2096/tcp # NBX DIR nbx-dir 2096/udp # NBX DIR jetformpreview 2097/tcp # Jet Form Preview jetformpreview 2097/udp # Jet Form Preview dialog-port 2098/tcp # Dialog Port dialog-port 2098/udp # Dialog Port h2250-annex-g 2099/tcp # H.225.0 Annex G h2250-annex-g 2099/udp # H.225.0 Annex G amiganetfs 2100/tcp # Amiga Network Filesystem amiganetfs 2100/udp # Amiga Network Filesystem rtcm-sc104 2101/tcp # rtcm-sc104 rtcm-sc104 2101/udp # rtcm-sc104 zephyr-srv 2102/tcp # Zephyr server zephyr-srv 2102/udp # Zephyr server zephyr-clt 2103/tcp # Zephyr serv-hm connection zephyr-clt 2103/udp # Zephyr serv-hm connection zephyr-hm 2104/tcp # Zephyr hostmanager zephyr-hm 2104/udp # Zephyr hostmanager eklogin 2105/tcp # Kerberos encrypted rlogin mzap 2106/tcp # MZAP mzap 2106/udp # MZAP bintec-admin 2107/tcp # BinTec Admin bintec-admin 2107/udp # BinTec Admin comcam 2108/tcp # Comcam comcam 2108/udp # Comcam ergolight 2109/tcp # Ergolight ergolight 2109/udp # Ergolight umsp 2110/tcp # UMSP umsp 2110/udp # UMSP dsatp 2111/tcp # DSATP dsatp 2111/udp # DSATP idonix-metanet 2112/tcp # Idonix MetaNet idonix-metanet 2112/udp # Idonix MetaNet hsl-storm 2113/tcp # HSL StoRM hsl-storm 2113/udp # HSL StoRM newheights 2114/tcp # NEWHEIGHTS newheights 2114/udp # NEWHEIGHTS kdm 2115/tcp # Key Distribution Manager kdm 2115/udp # Key Distribution Manager ccowcmr 2116/tcp # CCOWCMR ccowcmr 2116/udp # CCOWCMR mentaclient 2117/tcp # MENTACLIENT mentaclient 2117/udp # MENTACLIENT mentaserver 2118/tcp # MENTASERVER mentaserver 2118/udp # MENTASERVER gsigatekeeper 2119/tcp # GSIGATEKEEPER gsigatekeeper 2119/udp # GSIGATEKEEPER qencp 2120/tcp # Quick Eagle Networks CP qencp 2120/udp # Quick Eagle Networks CP scientia-ssdb 2121/tcp # SCIENTIA-SSDB scientia-ssdb 2121/udp # SCIENTIA-SSDB caupc-remote 2122/tcp # CauPC Remote Control caupc-remote 2122/udp # CauPC Remote Control gtp-control 2123/tcp # GTP-Control Plane (3GPP) gtp-control 2123/udp # GTP-Control Plane (3GPP) elatelink 2124/tcp # ELATELINK elatelink 2124/udp # ELATELINK lockstep 2125/tcp # LOCKSTEP lockstep 2125/udp # LOCKSTEP pktcable-cops 2126/tcp # PktCable-COPS pktcable-cops 2126/udp # PktCable-COPS index-pc-wb 2127/tcp # INDEX-PC-WB index-pc-wb 2127/udp # INDEX-PC-WB net-steward 2128/tcp # Net Steward Control net-steward 2128/udp # Net Steward Control cs-live 2129/tcp # cs-live.com cs-live 2129/udp # cs-live.com swc-xds 2130/tcp # SWC-XDS swc-xds 2130/udp # SWC-XDS avantageb2b 2131/tcp # Avantageb2b avantageb2b 2131/udp # Avantageb2b avail-epmap 2132/tcp # AVAIL-EPMAP avail-epmap 2132/udp # AVAIL-EPMAP zymed-zpp 2133/tcp # ZYMED-ZPP zymed-zpp 2133/udp # ZYMED-ZPP avenue 2134/tcp # AVENUE avenue 2134/udp # AVENUE gris 2135/tcp # Grid Resource Information Server gris 2135/udp # Grid Resource Information Server appworxsrv 2136/tcp # APPWORXSRV appworxsrv 2136/udp # APPWORXSRV connect 2137/tcp # CONNECT connect 2137/udp # CONNECT unbind-cluster 2138/tcp # UNBIND-CLUSTER unbind-cluster 2138/udp # UNBIND-CLUSTER ias-auth 2139/tcp # IAS-AUTH ias-auth 2139/udp # IAS-AUTH ias-reg 2140/tcp # IAS-REG ias-reg 2140/udp # IAS-REG ias-admind 2141/tcp # IAS-ADMIND ias-admind 2141/udp # IAS-ADMIND tdm-over-ip 2142/tcp # TDM-OVER-IP tdm-over-ip 2142/udp # TDM-OVER-IP lv-jc 2143/tcp # Live Vault Job Control lv-jc 2143/udp # Live Vault Job Control lv-ffx 2144/tcp # Live Vault Fast Object Transfer lv-ffx 2144/udp # Live Vault Fast Object Transfer lv-pici 2145/tcp # Live Vault Remote Diagnostic Console Support lv-pici 2145/udp # Live Vault Remote Diagnostic Console Support lv-not 2146/tcp # Live Vault Admin Event Notification lv-not 2146/udp # Live Vault Admin Event Notification lv-auth 2147/tcp # Live Vault Authentication lv-auth 2147/udp # Live Vault Authentication veritas-ucl 2148/tcp # VERITAS UNIVERSAL COMMUNICATION LAYER veritas-ucl 2148/udp # VERITAS UNIVERSAL COMMUNICATION LAYER acptsys 2149/tcp # ACPTSYS acptsys 2149/udp # ACPTSYS ninstall 2150/tcp # ninstall service ninstall 2150/udp # ninstall service docent 2151/tcp # DOCENT docent 2151/udp # DOCENT gtp-user 2152/tcp # GTP-User Plane (3GPP) gtp-user 2152/udp # GTP-User Plane (3GPP) gdbremote 2159/tcp # GDB Remote Debug Port gdbremote 2159/udp # GDB Remote Debug Port apc-2160 2160/tcp # APC 2160 apc-2160 2160/udp # APC 2160 apc-2161 2161/tcp # APC 2161 apc-2161 2161/udp # APC 2161 navisphere 2162/tcp # Navisphere navisphere 2162/udp # Navisphere navisphere-sec 2163/tcp # Navisphere Secure navisphere-sec 2163/udp # Navisphere Secure ddns-v3 2164/tcp # Dynamic DNS Version 3 ddns-v3 2164/udp # Dynamic DNS Version 3 x-bone-api 2165/tcp # X-Bone API x-bone-api 2165/udp # X-Bone API iwserver 2166/tcp # iwserver iwserver 2166/udp # iwserver raw-serial 2167/tcp # Raw Async Serial Link raw-serial 2167/udp # Raw Async Serial Link easy-soft-mux 2168/tcp # easy-soft Multiplexer easy-soft-mux 2168/udp # easy-soft Multiplexer archisfcp 2169/tcp # ArchisFCP archisfcp 2169/udp # ArchisFCP eyetv 2170/tcp # EyeTV Server Port eyetv 2170/udp # EyeTV Server Port msfw-storage 2171/tcp # MS Firewall Storage msfw-storage 2171/udp # MS Firewall Storage msfw-s-storage 2172/tcp # MS Firewall SecureStorage msfw-s-storage 2172/udp # MS Firewall SecureStorage msfw-replica 2173/tcp # MS Firewall Replication msfw-replica 2173/udp # MS Firewall Replication msfw-array 2174/tcp # MS Firewall Intra Array msfw-array 2174/udp # MS Firewall Intra Array airsync 2175/tcp # Microsoft Desktop AirSync Protocol airsync 2175/udp # Microsoft Desktop AirSync Protocol rapi 2176/tcp # Microsoft ActiveSync Remote API rapi 2176/udp # Microsoft ActiveSync Remote API qwave 2177/tcp # qWAVE Bandwidth Estimate qwave 2177/udp # qWAVE Bandwidth Estimate bitspeer 2178/tcp # Peer Services for BITS bitspeer 2178/udp # Peer Services for BITS mc-gt-srv 2180/tcp # Millicent Vendor Gateway Server mc-gt-srv 2180/udp # Millicent Vendor Gateway Server eforward 2181/tcp # eforward eforward 2181/udp # eforward cgn-stat 2182/tcp # CGN status cgn-stat 2182/udp # CGN status cgn-config 2183/tcp # Code Green configuration cgn-config 2183/udp # Code Green configuration nvd 2184/tcp # NVD User nvd 2184/udp # NVD User onbase-dds 2185/tcp # OnBase Distributed Disk Services onbase-dds 2185/udp # OnBase Distributed Disk Services tivoconnect 2190/tcp # TiVoConnect Beacon tivoconnect 2190/udp # TiVoConnect Beacon tvbus 2191/tcp # TvBus Messaging tvbus 2191/udp # TvBus Messaging asdis 2192/tcp # ASDIS software management asdis 2192/udp # ASDIS software management mnp-exchange 2197/tcp # MNP data exchange mnp-exchange 2197/udp # MNP data exchange onehome-remote 2198/tcp # OneHome Remote Access onehome-remote 2198/udp # OneHome Remote Access onehome-help 2199/tcp # OneHome Service Port onehome-help 2199/udp # OneHome Service Port ici 2200/tcp # ICI ici 2200/udp # ICI ats 2201/tcp # Advanced Training System Program ats 2201/udp # Advanced Training System Program imtc-map 2202/tcp # Int. Multimedia Teleconferencing Cosortium imtc-map 2202/udp # Int. Multimedia Teleconferencing Cosortium b2-runtime 2203/tcp # b2 Runtime Protocol b2-runtime 2203/udp # b2 Runtime Protocol b2-license 2204/tcp # b2 License Server b2-license 2204/udp # b2 License Server jps 2205/tcp # Java Presentation Server jps 2205/udp # Java Presentation Server hpocbus 2206/tcp # HP OpenCall bus hpocbus 2206/udp # HP OpenCall bus kali 2213/tcp # Kali kali 2213/udp # Kali rpi 2214/tcp # RDQ Protocol Interface rpi 2214/udp # RDQ Protocol Interface ipcore 2215/tcp # IPCore.co.za GPRS ipcore 2215/udp # IPCore.co.za GPRS netiq-ncap 2219/tcp # NetIQ NCAP Protocol netiq-ncap 2219/udp # NetIQ NCAP Protocol netiq 2220/tcp # NetIQ End2End netiq 2220/udp # NetIQ End2End rockwell-csp1 2221/tcp # Rockwell CSP1 rockwell-csp1 2221/udp # Rockwell CSP1 rockwell-csp2 2222/tcp # Rockwell CSP2 rockwell-csp2 2222/udp # Rockwell CSP2 rockwell-csp3 2223/tcp # Rockwell CSP3 rockwell-csp3 2223/udp # Rockwell CSP3 ehome-ms 2228/tcp # eHome Message Server ehome-ms 2228/udp # eHome Message Server ivs-video 2232/tcp # IVS Video default ivs-video 2232/udp # IVS Video default infocrypt 2233/tcp # INFOCRYPT infocrypt 2233/udp # INFOCRYPT directplay 2234/tcp # DirectPlay directplay 2234/udp # DirectPlay sercomm-wlink 2235/tcp # Sercomm-WLink sercomm-wlink 2235/udp # Sercomm-WLink nani 2236/tcp # Nani nani 2236/udp # Nani optech-port1-lm 2237/tcp # Optech Port1 License Manager optech-port1-lm 2237/udp # Optech Port1 License Manager aviva-sna 2238/tcp # AVIVA SNA SERVER aviva-sna 2238/udp # AVIVA SNA SERVER imagequery 2239/tcp # Image Query imagequery 2239/udp # Image Query recipe 2240/tcp # RECIPe recipe 2240/udp # RECIPe ivsd 2241/tcp # IVS Daemon ivsd 2241/udp # IVS Daemon foliocorp 2242/tcp # Folio Remote Server foliocorp 2242/udp # Folio Remote Server magicom 2243/tcp # Magicom Protocol magicom 2243/udp # Magicom Protocol nmsserver 2244/tcp # NMS Server nmsserver 2244/udp # NMS Server hao 2245/tcp # HaO hao 2245/udp # HaO pc-mta-addrmap 2246/tcp # PacketCable MTA Addr Map pc-mta-addrmap 2246/udp # PacketCable MTA Addr Map ums 2248/tcp # User Management Service ums 2248/udp # User Management Service rfmp 2249/tcp # RISO File Manager Protocol rfmp 2249/udp # RISO File Manager Protocol remote-collab 2250/tcp # remote-collab remote-collab 2250/udp # remote-collab dif-port 2251/tcp # Distributed Framework Port dif-port 2251/udp # Distributed Framework Port njenet-ssl 2252/tcp # NJENET using SSL njenet-ssl 2252/udp # NJENET using SSL dtv-chan-req 2253/tcp # DTV Channel Request dtv-chan-req 2253/udp # DTV Channel Request seispoc 2254/tcp # Seismic P.O.C. Port seispoc 2254/udp # Seismic P.O.C. Port vrtp 2255/tcp # VRTP - ViRtue Transfer Protocol vrtp 2255/udp # VRTP - ViRtue Transfer Protocol pcc-mfp 2256/tcp # PCC MFP pcc-mfp 2256/udp # PCC MFP apc-2260 2260/tcp # APC 2260 apc-2260 2260/udp # APC 2260 comotionmaster 2261/tcp # CoMotion Master Server comotionmaster 2261/udp # CoMotion Master Server comotionback 2262/tcp # CoMotion Backup Server comotionback 2262/udp # CoMotion Backup Server mfserver 2266/tcp # M-Files Server mfserver 2266/udp # M-files Server ontobroker 2267/tcp # OntoBroker ontobroker 2267/udp # OntoBroker amt 2268/tcp # AMT amt 2268/udp # AMT mikey 2269/tcp # MIKEY mikey 2269/udp # MIKEY starschool 2270/tcp # starSchool starschool 2270/udp # starSchool mmcals 2271/tcp # Secure Meeting Maker Scheduling mmcals 2271/udp # Secure Meeting Maker Scheduling mmcal 2272/tcp # Meeting Maker Scheduling mmcal 2272/udp # Meeting Maker Scheduling mysql-im 2273/tcp # MySQL Instance Manager mysql-im 2273/udp # MySQL Instance Manager pcttunnell 2274/tcp # PCTTunneller pcttunnell 2274/udp # PCTTunneller ibridge-data 2275/tcp # iBridge Conferencing ibridge-data 2275/udp # iBridge Conferencing ibridge-mgmt 2276/tcp # iBridge Management ibridge-mgmt 2276/udp # iBridge Management bluectrlproxy 2277/tcp # Bt device control proxy bluectrlproxy 2277/udp # Bt device control proxy xmquery 2279/tcp # xmquery xmquery 2279/udp # xmquery lnvpoller 2280/tcp # LNVPOLLER lnvpoller 2280/udp # LNVPOLLER lnvconsole 2281/tcp # LNVCONSOLE lnvconsole 2281/udp # LNVCONSOLE lnvalarm 2282/tcp # LNVALARM lnvalarm 2282/udp # LNVALARM lnvstatus 2283/tcp # LNVSTATUS lnvstatus 2283/udp # LNVSTATUS lnvmaps 2284/tcp # LNVMAPS lnvmaps 2284/udp # LNVMAPS lnvmailmon 2285/tcp # LNVMAILMON lnvmailmon 2285/udp # LNVMAILMON nas-metering 2286/tcp # NAS-Metering nas-metering 2286/udp # NAS-Metering dna 2287/tcp # DNA dna 2287/udp # DNA netml 2288/tcp # NETML netml 2288/udp # NETML dict-lookup 2289/tcp # Lookup dict server dict-lookup 2289/udp # Lookup dict server sonus-logging 2290/tcp # Sonus Logging Services sonus-logging 2290/udp # Sonus Logging Services konshus-lm 2294/tcp # Konshus License Manager (FLEX) konshus-lm 2294/udp # Konshus License Manager (FLEX) advant-lm 2295/tcp # Advant License Manager advant-lm 2295/udp # Advant License Manager theta-lm 2296/tcp # Theta License Manager (Rainbow) theta-lm 2296/udp # Theta License Manager (Rainbow) d2k-datamover1 2297/tcp # D2K DataMover 1 d2k-datamover1 2297/udp # D2K DataMover 1 d2k-datamover2 2298/tcp # D2K DataMover 2 d2k-datamover2 2298/udp # D2K DataMover 2 pc-telecommute 2299/tcp # PC Telecommute pc-telecommute 2299/udp # PC Telecommute cvmmon 2300/tcp # CVMMON cvmmon 2300/udp # CVMMON cpq-wbem 2301/tcp # Compaq HTTP cpq-wbem 2301/udp # Compaq HTTP binderysupport 2302/tcp # Bindery Support binderysupport 2302/udp # Bindery Support proxy-gateway 2303/tcp # Proxy Gateway proxy-gateway 2303/udp # Proxy Gateway attachmate-uts 2304/tcp # Attachmate UTS attachmate-uts 2304/udp # Attachmate UTS mt-scaleserver 2305/tcp # MT ScaleServer mt-scaleserver 2305/udp # MT ScaleServer tappi-boxnet 2306/tcp # TAPPI BoxNet tappi-boxnet 2306/udp # TAPPI BoxNet pehelp 2307/tcp # pehelp pehelp 2307/udp # pehelp sdhelp 2308/tcp # sdhelp sdhelp 2308/udp # sdhelp sdserver 2309/tcp # SD Server sdserver 2309/udp # SD Server sdclient 2310/tcp # SD Client sdclient 2310/udp # SD Client messageservice 2311/tcp # Message Service messageservice 2311/udp # Message Service iapp 2313/tcp # IAPP (Inter Access Point Protocol) iapp 2313/udp # IAPP (Inter Access Point Protocol) cr-websystems 2314/tcp # CR WebSystems cr-websystems 2314/udp # CR WebSystems precise-sft 2315/tcp # Precise Sft. precise-sft 2315/udp # Precise Sft. sent-lm 2316/tcp # SENT License Manager sent-lm 2316/udp # SENT License Manager attachmate-g32 2317/tcp # Attachmate G32 attachmate-g32 2317/udp # Attachmate G32 cadencecontrol 2318/tcp # Cadence Control cadencecontrol 2318/udp # Cadence Control infolibria 2319/tcp # InfoLibria infolibria 2319/udp # InfoLibria siebel-ns 2320/tcp # Siebel NS siebel-ns 2320/udp # Siebel NS rdlap 2321/tcp # RDLAP rdlap 2321/udp # RDLAP ofsd 2322/tcp # ofsd ofsd 2322/udp # ofsd 3d-nfsd 2323/tcp # 3d-nfsd 3d-nfsd 2323/udp # 3d-nfsd cosmocall 2324/tcp # Cosmocall cosmocall 2324/udp # Cosmocall designspace-lm 2325/tcp # Design Space License Management designspace-lm 2325/udp # Design Space License Management idcp 2326/tcp # IDCP idcp 2326/udp # IDCP xingcsm 2327/tcp # xingcsm xingcsm 2327/udp # xingcsm netrix-sftm 2328/tcp # Netrix SFTM netrix-sftm 2328/udp # Netrix SFTM tscchat 2330/tcp # TSCCHAT tscchat 2330/udp # TSCCHAT agentview 2331/tcp # AGENTVIEW agentview 2331/udp # AGENTVIEW rcc-host 2332/tcp # RCC Host rcc-host 2332/udp # RCC Host snapp 2333/tcp # SNAPP snapp 2333/udp # SNAPP ace-client 2334/tcp # ACE Client Auth ace-client 2334/udp # ACE Client Auth ace-proxy 2335/tcp # ACE Proxy ace-proxy 2335/udp # ACE Proxy appleugcontrol 2336/tcp # Apple UG Control appleugcontrol 2336/udp # Apple UG Control ideesrv 2337/tcp # ideesrv ideesrv 2337/udp # ideesrv norton-lambert 2338/tcp # Norton Lambert norton-lambert 2338/udp # Norton Lambert 3com-webview 2339/tcp # 3Com WebView 3com-webview 2339/udp # 3Com WebView wrs_registry 2340/tcp # WRS Registry wrs_registry 2340/udp # WRS Registry xiostatus 2341/tcp # XIO Status xiostatus 2341/udp # XIO Status manage-exec 2342/tcp # Seagate Manage Exec manage-exec 2342/udp # Seagate Manage Exec nati-logos 2343/tcp # nati logos nati-logos 2343/udp # nati logos fcmsys 2344/tcp # fcmsys fcmsys 2344/udp # fcmsys dbm 2345/tcp # dbm dbm 2345/udp # dbm redstorm_join 2346/tcp # Game Connection Port redstorm_join 2346/udp # Game Connection Port redstorm_find 2347/tcp # Game Announcement and Location redstorm_find 2347/udp # Game Announcement and Location redstorm_info 2348/tcp # Information to query for game status redstorm_info 2348/udp # Information to query for game status redstorm_diag 2349/tcp # Diagnostics Port redstorm_diag 2349/udp # Diagnostics Port psbserver 2350/tcp # psbserver psbserver 2350/udp # psbserver psrserver 2351/tcp # psrserver psrserver 2351/udp # psrserver pslserver 2352/tcp # pslserver pslserver 2352/udp # pslserver pspserver 2353/tcp # pspserver pspserver 2353/udp # pspserver psprserver 2354/tcp # psprserver psprserver 2354/udp # psprserver psdbserver 2355/tcp # psdbserver psdbserver 2355/udp # psdbserver gxtelmd 2356/tcp # GXT License Managemant gxtelmd 2356/udp # GXT License Managemant unihub-server 2357/tcp # UniHub Server unihub-server 2357/udp # UniHub Server futrix 2358/tcp # Futrix futrix 2358/udp # Futrix flukeserver 2359/tcp # FlukeServer flukeserver 2359/udp # FlukeServer nexstorindltd 2360/tcp # NexstorIndLtd nexstorindltd 2360/udp # NexstorIndLtd tl1 2361/tcp # TL1 tl1 2361/udp # TL1 digiman 2362/tcp # digiman digiman 2362/udp # digiman mediacntrlnfsd 2363/tcp # Media Central NFSD mediacntrlnfsd 2363/udp # Media Central NFSD oi-2000 2364/tcp # OI-2000 oi-2000 2364/udp # OI-2000 dbref 2365/tcp # dbref dbref 2365/udp # dbref qip-login 2366/tcp # qip-login qip-login 2366/udp # qip-login service-ctrl 2367/tcp # Service Control service-ctrl 2367/udp # Service Control opentable 2368/tcp # OpenTable opentable 2368/udp # OpenTable acs2000-dsp 2369/tcp # ACS2000 DSP acs2000-dsp 2369/udp # ACS2000 DSP l3-hbmon 2370/tcp # L3-HBMon l3-hbmon 2370/udp # L3-HBMon worldwire 2371/tcp # Compaq WorldWire Port worldwire 2371/udp # Compaq WorldWire Port compaq-https 2381/tcp # Compaq HTTPS compaq-https 2381/udp # Compaq HTTPS ms-olap3 2382/tcp # Microsoft OLAP ms-olap3 2382/udp # Microsoft OLAP ms-olap4 2383/tcp # Microsoft OLAP ms-olap4 2383/udp # Microsoft OLAP sd-capacity 2384/udp # SD-CAPACITY sd-request 2384/tcp # SD-REQUEST sd-data 2385/tcp # SD-DATA sd-data 2385/udp # SD-DATA virtualtape 2386/tcp # Virtual Tape virtualtape 2386/udp # Virtual Tape vsamredirector 2387/tcp # VSAM Redirector vsamredirector 2387/udp # VSAM Redirector mynahautostart 2388/tcp # MYNAH AutoStart mynahautostart 2388/udp # MYNAH AutoStart ovsessionmgr 2389/tcp # OpenView Session Mgr ovsessionmgr 2389/udp # OpenView Session Mgr rsmtp 2390/tcp # RSMTP rsmtp 2390/udp # RSMTP 3com-net-mgmt 2391/tcp # 3COM Net Management 3com-net-mgmt 2391/udp # 3COM Net Management tacticalauth 2392/tcp # Tactical Auth tacticalauth 2392/udp # Tactical Auth ms-olap1 2393/tcp # MS OLAP 1 ms-olap1 2393/udp # MS OLAP 1 ms-olap2 2394/tcp # MS OLAP 2 ms-olap2 2394/udp # MS OLAP 2 lan900_remote 2395/tcp # LAN900 Remote lan900_remote 2395/udp # LAN900 Remote wusage 2396/tcp # Wusage wusage 2396/udp # Wusage ncl 2397/tcp # NCL ncl 2397/udp # NCL orbiter 2398/tcp # Orbiter orbiter 2398/udp # Orbiter fmpro-fdal 2399/tcp # FileMaker, Inc. - Data Access Layer fmpro-fdal 2399/udp # FileMaker, Inc. - Data Access Layer opequus-server 2400/tcp # OpEquus Server opequus-server 2400/udp # OpEquus Server cvspserver 2401/tcp # CVS client/server operations cvspserver 2401/udp # CVS client/server operations taskmaster2000 2402/tcp # TaskMaster 2000 Server taskmaster2000 2402/udp # TaskMaster 2000 Server taskmaster2000 2403/tcp # TaskMaster 2000 Web taskmaster2000 2403/udp # TaskMaster 2000 Web iec-104 2404/tcp # IEC 60870-5-104 process control over IP iec-104 2404/udp # IEC 60870-5-104 process control over IP trc-netpoll 2405/tcp # TRC Netpoll trc-netpoll 2405/udp # TRC Netpoll jediserver 2406/tcp # JediServer jediserver 2406/udp # JediServer orion 2407/tcp # Orion orion 2407/udp # Orion optimanet 2408/tcp # OptimaNet optimanet 2408/udp # OptimaNet sns-protocol 2409/tcp # SNS Protocol sns-protocol 2409/udp # SNS Protocol vrts-registry 2410/tcp # VRTS Registry vrts-registry 2410/udp # VRTS Registry netwave-ap-mgmt 2411/tcp # Netwave AP Management netwave-ap-mgmt 2411/udp # Netwave AP Management cdn 2412/tcp # CDN cdn 2412/udp # CDN orion-rmi-reg 2413/tcp # orion-rmi-reg orion-rmi-reg 2413/udp # orion-rmi-reg beeyond 2414/tcp # Beeyond beeyond 2414/udp # Beeyond codima-rtp 2415/tcp # Codima Remote Transaction Protocol codima-rtp 2415/udp # Codima Remote Transaction Protocol rmtserver 2416/tcp # RMT Server rmtserver 2416/udp # RMT Server composit-server 2417/tcp # Composit Server composit-server 2417/udp # Composit Server cas 2418/tcp # cas cas 2418/udp # cas attachmate-s2s 2419/tcp # Attachmate S2S attachmate-s2s 2419/udp # Attachmate S2S dslremote-mgmt 2420/tcp # DSL Remote Management dslremote-mgmt 2420/udp # DSL Remote Management g-talk 2421/tcp # G-Talk g-talk 2421/udp # G-Talk crmsbits 2422/tcp # CRMSBITS crmsbits 2422/udp # CRMSBITS rnrp 2423/tcp # RNRP rnrp 2423/udp # RNRP kofax-svr 2424/tcp # KOFAX-SVR kofax-svr 2424/udp # KOFAX-SVR fjitsuappmgr 2425/tcp # Fujitsu App Manager fjitsuappmgr 2425/udp # Fujitsu App Manager mgcp-gateway 2427/tcp # Media Gateway Control Protocol Gateway mgcp-gateway 2427/udp # Media Gateway Control Protocol Gateway ott 2428/tcp # One Way Trip Time ott 2428/udp # One Way Trip Time ft-role 2429/tcp # FT-ROLE ft-role 2429/udp # FT-ROLE venus 2430/tcp # codacon port venus 2430/udp # Venus callback/wbc interface venus-se 2431/tcp # tcp side effects venus-se 2431/udp # udp sftp side effect codasrv 2432/tcp # not used codasrv 2432/udp # server port codasrv-se 2433/tcp # tcp side effects codasrv-se 2433/udp # udp sftp side effectQ pxc-epmap 2434/tcp # pxc-epmap pxc-epmap 2434/udp # pxc-epmap optilogic 2435/tcp # OptiLogic optilogic 2435/udp # OptiLogic topx 2436/tcp # TOP/X topx 2436/udp # TOP/X unicontrol 2437/tcp # UniControl unicontrol 2437/udp # UniControl sybasedbsynch 2439/tcp # SybaseDBSynch sybasedbsynch 2439/udp # SybaseDBSynch spearway 2440/tcp # Spearway Lockers spearway 2440/udp # Spearway Lockers pvsw-inet 2441/tcp # Pervasive I*net Data Server pvsw-inet 2441/udp # Pervasive I*net Data Server netangel 2442/tcp # Netangel netangel 2442/udp # Netangel powerclientcsf 2443/tcp # PowerClient Central Storage Facility powerclientcsf 2443/udp # PowerClient Central Storage Facility btpp2sectrans 2444/tcp # BT PP2 Sectrans btpp2sectrans 2444/udp # BT PP2 Sectrans dtn1 2445/tcp # DTN1 dtn1 2445/udp # DTN1 bues_service 2446/tcp # bues_service bues_service 2446/udp # bues_service ovwdb 2447/tcp # OpenView NNM daemon ovwdb 2447/udp # OpenView NNM daemon hpppssvr 2448/tcp # hpppsvr hpppssvr 2448/udp # hpppsvr ratl 2449/tcp # RATL ratl 2449/udp # RATL netadmin 2450/tcp # netadmin netadmin 2450/udp # netadmin netchat 2451/tcp # netchat netchat 2451/udp # netchat snifferclient 2452/tcp # SnifferClient snifferclient 2452/udp # SnifferClient madge-ltd 2453/tcp # madge ltd madge-ltd 2453/udp # madge ltd indx-dds 2454/tcp # IndX-DDS indx-dds 2454/udp # IndX-DDS wago-io-system 2455/tcp # WAGO-IO-SYSTEM wago-io-system 2455/udp # WAGO-IO-SYSTEM altav-remmgt 2456/tcp # altav-remmgt altav-remmgt 2456/udp # altav-remmgt rapido-ip 2457/tcp # Rapido_IP rapido-ip 2457/udp # Rapido_IP griffin 2458/tcp # griffin griffin 2458/udp # griffin community 2459/tcp # Community community 2459/udp # Community ms-theater 2460/tcp # ms-theater ms-theater 2460/udp # ms-theater qadmifoper 2461/tcp # qadmifoper qadmifoper 2461/udp # qadmifoper qadmifevent 2462/tcp # qadmifevent qadmifevent 2462/udp # qadmifevent symbios-raid 2463/tcp # Symbios Raid symbios-raid 2463/udp # Symbios Raid direcpc-si 2464/tcp # DirecPC SI direcpc-si 2464/udp # DirecPC SI lbm 2465/tcp # Load Balance Management lbm 2465/udp # Load Balance Management lbf 2466/tcp # Load Balance Forwarding lbf 2466/udp # Load Balance Forwarding high-criteria 2467/tcp # High Criteria high-criteria 2467/udp # High Criteria qip-msgd 2468/tcp # qip_msgd qip-msgd 2468/udp # qip_msgd mti-tcs-comm 2469/tcp # MTI-TCS-COMM mti-tcs-comm 2469/udp # MTI-TCS-COMM taskman-port 2470/tcp # taskman port taskman-port 2470/udp # taskman port seaodbc 2471/tcp # SeaODBC seaodbc 2471/udp # SeaODBC c3 2472/tcp # C3 c3 2472/udp # C3 aker-cdp 2473/tcp # Aker-cdp aker-cdp 2473/udp # Aker-cdp vitalanalysis 2474/tcp # Vital Analysis vitalanalysis 2474/udp # Vital Analysis ace-server 2475/tcp # ACE Server ace-server 2475/udp # ACE Server ace-svr-prop 2476/tcp # ACE Server Propagation ace-svr-prop 2476/udp # ACE Server Propagation ssm-cvs 2477/tcp # SecurSight Certificate Valifation Service ssm-cvs 2477/udp # SecurSight Certificate Valifation Service ssm-cssps 2478/tcp # SecurSight Authentication Server (SSL) ssm-cssps 2478/udp # SecurSight Authentication Server (SSL) ssm-els 2479/tcp # SecurSight Event Logging Server (SSL) ssm-els 2479/udp # SecurSight Event Logging Server (SSL) lingwood 2480/tcp # Lingwood's Detail lingwood 2480/udp # Lingwood's Detail giop 2481/tcp # Oracle GIOP giop 2481/udp # Oracle GIOP giop-ssl 2482/tcp # Oracle GIOP SSL giop-ssl 2482/udp # Oracle GIOP SSL ttc 2483/tcp # Oracle TTC ttc 2483/udp # Oracle TTC ttc-ssl 2484/tcp # Oracle TTC SSL ttc-ssl 2484/udp # Oracle TTC SSL netobjects1 2485/tcp # Net Objects1 netobjects1 2485/udp # Net Objects1 netobjects2 2486/tcp # Net Objects2 netobjects2 2486/udp # Net Objects2 pns 2487/tcp # Policy Notice Service pns 2487/udp # Policy Notice Service moy-corp 2488/tcp # Moy Corporation moy-corp 2488/udp # Moy Corporation tsilb 2489/tcp # TSILB tsilb 2489/udp # TSILB qip-qdhcp 2490/tcp # qip_qdhcp qip-qdhcp 2490/udp # qip_qdhcp conclave-cpp 2491/tcp # Conclave CPP conclave-cpp 2491/udp # Conclave CPP groove 2492/tcp # GROOVE groove 2492/udp # GROOVE talarian-mqs 2493/tcp # Talarian MQS talarian-mqs 2493/udp # Talarian MQS bmc-ar 2494/tcp # BMC AR bmc-ar 2494/udp # BMC AR fast-rem-serv 2495/tcp # Fast Remote Services fast-rem-serv 2495/udp # Fast Remote Services dirgis 2496/tcp # DIRGIS dirgis 2496/udp # DIRGIS quaddb 2497/tcp # Quad DB quaddb 2497/udp # Quad DB odn-castraq 2498/tcp # ODN-CasTraq odn-castraq 2498/udp # ODN-CasTraq 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 kentrox-prot 2502/tcp # Kentrox Protocol kentrox-prot 2502/udp # Kentrox Protocol nms-dpnss 2503/tcp # NMS-DPNSS nms-dpnss 2503/udp # NMS-DPNSS wlbs 2504/tcp # WLBS wlbs 2504/udp # WLBS ppcontrol 2505/tcp # PowerPlay Control ppcontrol 2505/udp # PowerPlay Control jbroker 2506/tcp # jbroker jbroker 2506/udp # jbroker spock 2507/tcp # spock spock 2507/udp # spock jdatastore 2508/tcp # JDataStore jdatastore 2508/udp # JDataStore fjmpss 2509/tcp # fjmpss fjmpss 2509/udp # fjmpss fjappmgrbulk 2510/tcp # fjappmgrbulk fjappmgrbulk 2510/udp # fjappmgrbulk metastorm 2511/tcp # Metastorm metastorm 2511/udp # Metastorm citrixima 2512/tcp # Citrix IMA citrixima 2512/udp # Citrix IMA citrixadmin 2513/tcp # Citrix ADMIN citrixadmin 2513/udp # Citrix ADMIN facsys-ntp 2514/tcp # Facsys NTP facsys-ntp 2514/udp # Facsys NTP facsys-router 2515/tcp # Facsys Router facsys-router 2515/udp # Facsys Router maincontrol 2516/tcp # Main Control maincontrol 2516/udp # Main Control call-sig-trans 2517/tcp # H.323 Annex E call signaling transport call-sig-trans 2517/udp # H.323 Annex E call signaling transport willy 2518/tcp # Willy willy 2518/udp # Willy globmsgsvc 2519/tcp # globmsgsvc globmsgsvc 2519/udp # globmsgsvc pvsw 2520/tcp # Pervasive Listener pvsw 2520/udp # Pervasive Listener adaptecmgr 2521/tcp # Adaptec Manager adaptecmgr 2521/udp # Adaptec Manager windb 2522/tcp # WinDb windb 2522/udp # WinDb qke-llc-v3 2523/tcp # Qke LLC V.3 qke-llc-v3 2523/udp # Qke LLC V.3 optiwave-lm 2524/tcp # Optiwave License Management optiwave-lm 2524/udp # Optiwave License Management ms-v-worlds 2525/tcp # MS V-Worlds ms-v-worlds 2525/udp # MS V-Worlds ema-sent-lm 2526/tcp # EMA License Manager ema-sent-lm 2526/udp # EMA License Manager iqserver 2527/tcp # IQ Server iqserver 2527/udp # IQ Server ncr_ccl 2528/tcp # NCR CCL ncr_ccl 2528/udp # NCR CCL utsftp 2529/tcp # UTS FTP utsftp 2529/udp # UTS FTP vrcommerce 2530/tcp # VR Commerce vrcommerce 2530/udp # VR Commerce ito-e-gui 2531/tcp # ITO-E GUI ito-e-gui 2531/udp # ITO-E GUI ovtopmd 2532/tcp # OVTOPMD ovtopmd 2532/udp # OVTOPMD snifferserver 2533/tcp # SnifferServer snifferserver 2533/udp # SnifferServer combox-web-acc 2534/tcp # Combox Web Access combox-web-acc 2534/udp # Combox Web Access madcap 2535/tcp # MADCAP madcap 2535/udp # MADCAP btpp2audctr1 2536/tcp # btpp2audctr1 btpp2audctr1 2536/udp # btpp2audctr1 upgrade 2537/tcp # Upgrade Protocol upgrade 2537/udp # Upgrade Protocol vnwk-prapi 2538/tcp # vnwk-prapi vnwk-prapi 2538/udp # vnwk-prapi vsiadmin 2539/tcp # VSI Admin vsiadmin 2539/udp # VSI Admin lonworks 2540/tcp # LonWorks lonworks 2540/udp # LonWorks lonworks2 2541/tcp # LonWorks2 lonworks2 2541/udp # LonWorks2 davinci 2542/tcp # daVinci Presenter davinci 2542/udp # daVinci Presenter reftek 2543/tcp # REFTEK reftek 2543/udp # REFTEK novell-zen 2544/tcp # Novell ZEN novell-zen 2544/udp # Novell ZEN sis-emt 2545/tcp # sis-emt sis-emt 2545/udp # sis-emt vytalvaultbrtp 2546/tcp # vytalvaultbrtp vytalvaultbrtp 2546/udp # vytalvaultbrtp vytalvaultvsmp 2547/tcp # vytalvaultvsmp vytalvaultvsmp 2547/udp # vytalvaultvsmp vytalvaultpipe 2548/tcp # vytalvaultpipe vytalvaultpipe 2548/udp # vytalvaultpipe ipass 2549/tcp # IPASS ipass 2549/udp # IPASS ads 2550/tcp # ADS ads 2550/udp # ADS isg-uda-server 2551/tcp # ISG UDA Server isg-uda-server 2551/udp # ISG UDA Server call-logging 2552/tcp # Call Logging call-logging 2552/udp # Call Logging efidiningport 2553/tcp # efidiningport efidiningport 2553/udp # efidiningport vcnet-link-v10 2554/tcp # VCnet-Link v10 vcnet-link-v10 2554/udp # VCnet-Link v10 compaq-wcp 2555/tcp # Compaq WCP compaq-wcp 2555/udp # Compaq WCP nicetec-nmsvc 2556/tcp # nicetec-nmsvc nicetec-nmsvc 2556/udp # nicetec-nmsvc nicetec-mgmt 2557/tcp # nicetec-mgmt nicetec-mgmt 2557/udp # nicetec-mgmt pclemultimedia 2558/tcp # PCLE Multi Media pclemultimedia 2558/udp # PCLE Multi Media lstp 2559/tcp # LSTP lstp 2559/udp # LSTP labrat 2560/tcp # labrat labrat 2560/udp # labrat mosaixcc 2561/tcp # MosaixCC mosaixcc 2561/udp # MosaixCC delibo 2562/tcp # Delibo delibo 2562/udp # Delibo cti-redwood 2563/tcp # CTI Redwood cti-redwood 2563/udp # CTI Redwood hp-3000-telnet 2564/tcp # HP 3000 NS/VT block mode telnet coord-svr 2565/tcp # Coordinator Server coord-svr 2565/udp # Coordinator Server pcs-pcw 2566/tcp # pcs-pcw pcs-pcw 2566/udp # pcs-pcw clp 2567/tcp # Cisco Line Protocol clp 2567/udp # Cisco Line Protocol spamtrap 2568/tcp # SPAM TRAP spamtrap 2568/udp # SPAM TRAP sonuscallsig 2569/tcp # Sonus Call Signal sonuscallsig 2569/udp # Sonus Call Signal hs-port 2570/tcp # HS Port hs-port 2570/udp # HS Port cecsvc 2571/tcp # CECSVC cecsvc 2571/udp # CECSVC ibp 2572/tcp # IBP ibp 2572/udp # IBP trustestablish 2573/tcp # Trust Establish trustestablish 2573/udp # Trust Establish blockade-bpsp 2574/tcp # Blockade BPSP blockade-bpsp 2574/udp # Blockade BPSP hl7 2575/tcp # HL7 hl7 2575/udp # HL7 tclprodebugger 2576/tcp # TCL Pro Debugger tclprodebugger 2576/udp # TCL Pro Debugger scipticslsrvr 2577/tcp # Scriptics Lsrvr scipticslsrvr 2577/udp # Scriptics Lsrvr rvs-isdn-dcp 2578/tcp # RVS ISDN DCP rvs-isdn-dcp 2578/udp # RVS ISDN DCP mpfoncl 2579/tcp # mpfoncl mpfoncl 2579/udp # mpfoncl tributary 2580/tcp # Tributary tributary 2580/udp # Tributary argis-te 2581/tcp # ARGIS TE argis-te 2581/udp # ARGIS TE argis-ds 2582/tcp # ARGIS DS argis-ds 2582/udp # ARGIS DS mon 2583/tcp # MON mon 2583/udp # MON cyaserv 2584/tcp # cyaserv cyaserv 2584/udp # cyaserv netx-server 2585/tcp # NETX Server netx-server 2585/udp # NETX Server netx-agent 2586/tcp # NETX Agent netx-agent 2586/udp # NETX Agent masc 2587/tcp # MASC masc 2587/udp # MASC privilege 2588/tcp # Privilege privilege 2588/udp # Privilege quartus-tcl 2589/tcp # quartus tcl quartus-tcl 2589/udp # quartus tcl idotdist 2590/tcp # idotdist idotdist 2590/udp # idotdist maytagshuffle 2591/tcp # Maytag Shuffle maytagshuffle 2591/udp # Maytag Shuffle netrek 2592/tcp # netrek netrek 2592/udp # netrek mns-mail 2593/tcp # MNS Mail Notice Service mns-mail 2593/udp # MNS Mail Notice Service dts 2594/tcp # Data Base Server dts 2594/udp # Data Base Server worldfusion1 2595/tcp # World Fusion 1 worldfusion1 2595/udp # World Fusion 1 worldfusion2 2596/tcp # World Fusion 2 worldfusion2 2596/udp # World Fusion 2 homesteadglory 2597/tcp # Homestead Glory homesteadglory 2597/udp # Homestead Glory citriximaclient 2598/tcp # Citrix MA Client citriximaclient 2598/udp # Citrix MA Client snapd 2599/tcp # Snap Discovery snapd 2599/udp # Snap Discovery hpstgmgr 2600/tcp zebrasrv # HPSTGMGR hpstgmgr 2600/udp # HPSTGMGR discp-client 2601/tcp zebra # discp client discp-client 2601/udp # discp client discp-server 2602/tcp ripd # discp server discp-server 2602/udp # discp server servicemeter 2603/tcp ripngd # Service Meter servicemeter 2603/udp # Service Meter nsc-ccs 2604/tcp ospfd # NSC CCS nsc-ccs 2604/udp # NSC CCS nsc-posa 2605/tcp bgpd # NSC POSA nsc-posa 2605/udp # NSC POSA netmon 2606/tcp ospf6d # Dell Netmon netmon 2606/udp # Dell Netmon connection 2607/tcp # Dell Connection connection 2607/udp # Dell Connection wag-service 2608/tcp # Wag Service wag-service 2608/udp # Wag Service system-monitor 2609/tcp # System Monitor system-monitor 2609/udp # System Monitor versa-tek 2610/tcp # VersaTek versa-tek 2610/udp # VersaTek lionhead 2611/tcp # LIONHEAD lionhead 2611/udp # LIONHEAD qpasa-agent 2612/tcp # Qpasa Agent qpasa-agent 2612/udp # Qpasa Agent smntubootstrap 2613/tcp # SMNTUBootstrap smntubootstrap 2613/udp # SMNTUBootstrap neveroffline 2614/tcp # Never Offline neveroffline 2614/udp # Never Offline firepower 2615/tcp # firepower firepower 2615/udp # firepower appswitch-emp 2616/tcp # appswitch-emp appswitch-emp 2616/udp # appswitch-emp cmadmin 2617/tcp # Clinical Context Managers cmadmin 2617/udp # Clinical Context Managers priority-e-com 2618/tcp # Priority E-Com priority-e-com 2618/udp # Priority E-Com bruce 2619/tcp # bruce bruce 2619/udp # bruce lpsrecommender 2620/tcp # LPSRecommender lpsrecommender 2620/udp # LPSRecommender miles-apart 2621/tcp # Miles Apart Jukebox Server miles-apart 2621/udp # Miles Apart Jukebox Server metricadbc 2622/tcp # MetricaDBC metricadbc 2622/udp # MetricaDBC lmdp 2623/tcp # LMDP lmdp 2623/udp # LMDP aria 2624/tcp # Aria aria 2624/udp # Aria blwnkl-port 2625/tcp # Blwnkl Port blwnkl-port 2625/udp # Blwnkl Port gbjd816 2626/tcp # gbjd816 gbjd816 2626/udp # gbjd816 moshebeeri 2627/tcp # Moshe Beeri moshebeeri 2627/udp # Moshe Beeri dict 2628/tcp # RFC 2229 dict 2628/udp # RFC 2229 sitaraserver 2629/tcp # Sitara Server sitaraserver 2629/udp # Sitara Server sitaramgmt 2630/tcp # Sitara Management sitaramgmt 2630/udp # Sitara Management sitaradir 2631/tcp # Sitara Dir sitaradir 2631/udp # Sitara Dir irdg-post 2632/tcp # IRdg Post irdg-post 2632/udp # IRdg Post interintelli 2633/tcp # InterIntelli interintelli 2633/udp # InterIntelli pk-electronics 2634/tcp # PK Electronics pk-electronics 2634/udp # PK Electronics backburner 2635/tcp # Back Burner backburner 2635/udp # Back Burner solve 2636/tcp # Solve solve 2636/udp # Solve imdocsvc 2637/tcp # Import Document Service imdocsvc 2637/udp # Import Document Service sybaseanywhere 2638/tcp # Sybase Anywhere sybaseanywhere 2638/udp # Sybase Anywhere aminet 2639/tcp # AMInet aminet 2639/udp # AMInet sai_sentlm 2640/tcp # Sabbagh Associates Licence Manager sai_sentlm 2640/udp # Sabbagh Associates Licence Manager hdl-srv 2641/tcp # HDL Server hdl-srv 2641/udp # HDL Server tragic 2642/tcp # Tragic tragic 2642/udp # Tragic gte-samp 2643/tcp # GTE-SAMP gte-samp 2643/udp # GTE-SAMP travsoft-ipx-t 2644/tcp # Travsoft IPX Tunnel travsoft-ipx-t 2644/udp # Travsoft IPX Tunnel novell-ipx-cmd 2645/tcp # Novell IPX CMD novell-ipx-cmd 2645/udp # Novell IPX CMD and-lm 2646/tcp # AND License Manager and-lm 2646/udp # AND License Manager syncserver 2647/tcp # SyncServer syncserver 2647/udp # SyncServer upsnotifyprot 2648/tcp # Upsnotifyprot upsnotifyprot 2648/udp # Upsnotifyprot vpsipport 2649/tcp # VPSIPPORT vpsipport 2649/udp # VPSIPPORT eristwoguns 2650/tcp # eristwoguns eristwoguns 2650/udp # eristwoguns ebinsite 2651/tcp # EBInSite ebinsite 2651/udp # EBInSite interpathpanel 2652/tcp # InterPathPanel interpathpanel 2652/udp # InterPathPanel sonus 2653/tcp # Sonus sonus 2653/udp # Sonus corel_vncadmin 2654/tcp # Corel VNC Admin corel_vncadmin 2654/udp # Corel VNC Admin unglue 2655/tcp # UNIX Nt Glue unglue 2655/udp # UNIX Nt Glue kana 2656/tcp # Kana kana 2656/udp # Kana sns-dispatcher 2657/tcp # SNS Dispatcher sns-dispatcher 2657/udp # SNS Dispatcher sns-admin 2658/tcp # SNS Admin sns-admin 2658/udp # SNS Admin sns-query 2659/tcp # SNS Query sns-query 2659/udp # SNS Query gcmonitor 2660/tcp # GC Monitor gcmonitor 2660/udp # GC Monitor olhost 2661/tcp # OLHOST olhost 2661/udp # OLHOST bintec-capi 2662/tcp # BinTec-CAPI bintec-capi 2662/udp # BinTec-CAPI bintec-tapi 2663/tcp # BinTec-TAPI bintec-tapi 2663/udp # BinTec-TAPI patrol-mq-gm 2664/tcp # Patrol for MQ GM patrol-mq-gm 2664/udp # Patrol for MQ GM patrol-mq-nm 2665/tcp # Patrol for MQ NM patrol-mq-nm 2665/udp # Patrol for MQ NM extensis 2666/tcp # extensis extensis 2666/udp # extensis alarm-clock-s 2667/tcp # Alarm Clock Server alarm-clock-s 2667/udp # Alarm Clock Server alarm-clock-c 2668/tcp # Alarm Clock Client alarm-clock-c 2668/udp # Alarm Clock Client toad 2669/tcp # TOAD toad 2669/udp # TOAD tve-announce 2670/tcp # TVE Announce tve-announce 2670/udp # TVE Announce newlixreg 2671/tcp # newlixreg newlixreg 2671/udp # newlixreg nhserver 2672/tcp # nhserver nhserver 2672/udp # nhserver firstcall42 2673/tcp # First Call 42 firstcall42 2673/udp # First Call 42 ewnn 2674/tcp # ewnn ewnn 2674/udp # ewnn ttc-etap 2675/tcp # TTC ETAP ttc-etap 2675/udp # TTC ETAP simslink 2676/tcp # SIMSLink simslink 2676/udp # SIMSLink gadgetgate1way 2677/tcp # Gadget Gate 1 Way gadgetgate1way 2677/udp # Gadget Gate 1 Way gadgetgate2way 2678/tcp # Gadget Gate 2 Way gadgetgate2way 2678/udp # Gadget Gate 2 Way syncserverssl 2679/tcp # Sync Server SSL syncserverssl 2679/udp # Sync Server SSL pxc-sapxom 2680/tcp # pxc-sapxom pxc-sapxom 2680/udp # pxc-sapxom mpnjsomb 2681/tcp # mpnjsomb mpnjsomb 2681/udp # mpnjsomb ncdloadbalance 2683/tcp # NCDLoadBalance ncdloadbalance 2683/udp # NCDLoadBalance mpnjsosv 2684/tcp # mpnjsosv mpnjsosv 2684/udp # mpnjsosv mpnjsocl 2685/tcp # mpnjsocl mpnjsocl 2685/udp # mpnjsocl mpnjsomg 2686/tcp # mpnjsomg mpnjsomg 2686/udp # mpnjsomg pq-lic-mgmt 2687/tcp # pq-lic-mgmt pq-lic-mgmt 2687/udp # pq-lic-mgmt md-cg-http 2688/tcp # md-cf-http md-cg-http 2688/udp # md-cf-http fastlynx 2689/tcp # FastLynx fastlynx 2689/udp # FastLynx hp-nnm-data 2690/tcp # HP NNM Embedded Database hp-nnm-data 2690/udp # HP NNM Embedded Database itinternet 2691/tcp # ITInternet ISM Server itinternet 2691/udp # ITInternet ISM Server admins-lms 2692/tcp # Admins LMS admins-lms 2692/udp # Admins LMS pwrsevent 2694/tcp # pwrsevent pwrsevent 2694/udp # pwrsevent vspread 2695/tcp # VSPREAD vspread 2695/udp # VSPREAD unifyadmin 2696/tcp # Unify Admin unifyadmin 2696/udp # Unify Admin oce-snmp-trap 2697/tcp # Oce SNMP Trap Port oce-snmp-trap 2697/udp # Oce SNMP Trap Port mck-ivpip 2698/tcp # MCK-IVPIP mck-ivpip 2698/udp # MCK-IVPIP csoft-plusclnt 2699/tcp # Csoft Plus Client csoft-plusclnt 2699/udp # Csoft Plus Client tqdata 2700/tcp # tqdata tqdata 2700/udp # tqdata sms-rcinfo 2701/tcp # SMS RCINFO sms-rcinfo 2701/udp # SMS RCINFO sms-xfer 2702/tcp # SMS XFER sms-xfer 2702/udp # SMS XFER sms-chat 2703/tcp # SMS CHAT sms-chat 2703/udp # SMS CHAT sms-remctrl 2704/tcp # SMS REMCTRL sms-remctrl 2704/udp # SMS REMCTRL sds-admin 2705/tcp # SDS Admin sds-admin 2705/udp # SDS Admin ncdmirroring 2706/tcp # NCD Mirroring ncdmirroring 2706/udp # NCD Mirroring emcsymapiport 2707/tcp # EMCSYMAPIPORT emcsymapiport 2707/udp # EMCSYMAPIPORT banyan-net 2708/tcp # Banyan-Net banyan-net 2708/udp # Banyan-Net supermon 2709/tcp # Supermon supermon 2709/udp # Supermon sso-service 2710/tcp # SSO Service sso-service 2710/udp # SSO Service sso-control 2711/tcp # SSO Control sso-control 2711/udp # SSO Control aocp 2712/tcp # Axapta Object Communication Protocol aocp 2712/udp # Axapta Object Communication Protocol raven1 2713/tcp # Raven1 raven1 2713/udp # Raven1 raven2 2714/tcp # Raven2 raven2 2714/udp # Raven2 hpstgmgr2 2715/tcp # HPSTGMGR2 hpstgmgr2 2715/udp # HPSTGMGR2 inova-ip-disco 2716/tcp # Inova IP Disco inova-ip-disco 2716/udp # Inova IP Disco pn-requester 2717/tcp # PN REQUESTER pn-requester 2717/udp # PN REQUESTER pn-requester2 2718/tcp # PN REQUESTER 2 pn-requester2 2718/udp # PN REQUESTER 2 scan-change 2719/tcp # Scan & Change scan-change 2719/udp # Scan & Change wkars 2720/tcp # wkars wkars 2720/udp # wkars smart-diagnose 2721/tcp # Smart Diagnose smart-diagnose 2721/udp # Smart Diagnose proactivesrvr 2722/tcp # Proactive Server proactivesrvr 2722/udp # Proactive Server watchdognt 2723/tcp # WatchDog NT watchdognt 2723/udp # WatchDog NT qotps 2724/tcp # qotps qotps 2724/udp # qotps msolap-ptp2 2725/tcp # MSOLAP PTP2 msolap-ptp2 2725/udp # MSOLAP PTP2 tams 2726/tcp # TAMS tams 2726/udp # TAMS mgcp-callagent 2727/tcp # Media Gateway Control Protocol Call Agent mgcp-callagent 2727/udp # Media Gateway Control Protocol Call Agent sqdr 2728/tcp # SQDR sqdr 2728/udp # SQDR tcim-control 2729/tcp # TCIM Control tcim-control 2729/udp # TCIM Control nec-raidplus 2730/tcp # NEC RaidPlus nec-raidplus 2730/udp # NEC RaidPlus fyre-messanger 2731/tcp # Fyre Messanger fyre-messanger 2731/udp # Fyre Messagner g5m 2732/tcp # G5M g5m 2732/udp # G5M signet-ctf 2733/tcp # Signet CTF signet-ctf 2733/udp # Signet CTF ccs-software 2734/tcp # CCS Software ccs-software 2734/udp # CCS Software netiq-mc 2735/tcp # NetIQ Monitor Console netiq-mc 2735/udp # NetIQ Monitor Console radwiz-nms-srv 2736/tcp # RADWIZ NMS SRV radwiz-nms-srv 2736/udp # RADWIZ NMS SRV srp-feedback 2737/tcp # SRP Feedback srp-feedback 2737/udp # SRP Feedback ndl-tcp-ois-gw 2738/tcp # NDL TCP-OSI Gateway ndl-tcp-ois-gw 2738/udp # NDL TCP-OSI Gateway tn-timing 2739/tcp # TN Timing tn-timing 2739/udp # TN Timing alarm 2740/tcp # Alarm alarm 2740/udp # Alarm tsb 2741/tcp # TSB tsb 2741/udp # TSB tsb2 2742/tcp # TSB2 tsb2 2742/udp # TSB2 murx 2743/tcp # murx murx 2743/udp # murx honyaku 2744/tcp # honyaku honyaku 2744/udp # honyaku urbisnet 2745/tcp # URBISNET urbisnet 2745/udp # URBISNET cpudpencap 2746/tcp # CPUDPENCAP cpudpencap 2746/udp # CPUDPENCAP fjippol-swrly 2747/tcp fjippol-swrly 2747/udp fjippol-polsvr 2748/tcp fjippol-polsvr 2748/udp fjippol-cnsl 2749/tcp fjippol-cnsl 2749/udp fjippol-port1 2750/tcp fjippol-port1 2750/udp fjippol-port2 2751/tcp fjippol-port2 2751/udp rsisysaccess 2752/tcp # RSISYS ACCESS rsisysaccess 2752/udp # RSISYS ACCESS de-spot 2753/tcp # de-spot de-spot 2753/udp # de-spot apollo-cc 2754/tcp # APOLLO CC apollo-cc 2754/udp # APOLLO CC expresspay 2755/tcp # Express Pay expresspay 2755/udp # Express Pay simplement-tie 2756/tcp # simplement-tie simplement-tie 2756/udp # simplement-tie cnrp 2757/tcp # CNRP cnrp 2757/udp # CNRP apollo-status 2758/tcp # APOLLO Status apollo-status 2758/udp # APOLLO Status apollo-gms 2759/tcp # APOLLO GMS apollo-gms 2759/udp # APOLLO GMS sabams 2760/tcp # Saba MS sabams 2760/udp # Saba MS dicom-iscl 2761/tcp # DICOM ISCL dicom-iscl 2761/udp # DICOM ISCL dicom-tls 2762/tcp # DICOM TLS dicom-tls 2762/udp # DICOM TLS desktop-dna 2763/tcp # Desktop DNA desktop-dna 2763/udp # Desktop DNA data-insurance 2764/tcp # Data Insurance data-insurance 2764/udp # Data Insurance qip-audup 2765/tcp # qip-audup qip-audup 2765/udp # qip-audup compaq-scp 2766/tcp # Compaq SCP compaq-scp 2766/udp # Compaq SCP uadtc 2767/tcp # UADTC uadtc 2767/udp # UADTC uacs 2768/tcp # UACS uacs 2768/udp # UACS exce 2769/tcp # eXcE exce 2769/udp # eXcE veronica 2770/tcp # Veronica veronica 2770/udp # Veronica vergencecm 2771/tcp # Vergence CM vergencecm 2771/udp # Vergence CM auris 2772/tcp # auris auris 2772/udp # auris rbakcup1 2773/tcp # RBackup Remote Backup rbakcup1 2773/udp # RBackup Remote Backup rbakcup2 2774/tcp # RBackup Remote Backup rbakcup2 2774/udp # RBackup Remote Backup smpp 2775/tcp # SMPP smpp 2775/udp # SMPP ridgeway1 2776/tcp # Ridgeway Systems & Software ridgeway1 2776/udp # Ridgeway Systems & Software ridgeway2 2777/tcp # Ridgeway Systems & Software ridgeway2 2777/udp # Ridgeway Systems & Software gwen-sonya 2778/tcp # Gwen-Sonya gwen-sonya 2778/udp # Gwen-Sonya lbc-sync 2779/tcp # LBC Sync lbc-sync 2779/udp # LBC Sync lbc-control 2780/tcp # LBC Control lbc-control 2780/udp # LBC Control whosells 2781/tcp # whosells whosells 2781/udp # whosells everydayrc 2782/tcp # everydayrc everydayrc 2782/udp # everydayrc aises 2783/tcp # AISES aises 2783/udp # AISES www-dev 2784/tcp # world wide web - development www-dev 2784/udp # world wide web - development aic-np 2785/tcp # aic-np aic-np 2785/udp # aic-np aic-oncrpc 2786/tcp # aic-oncrpc - Destiny MCD database aic-oncrpc 2786/udp # aic-oncrpc - Destiny MCD database piccolo 2787/tcp # piccolo - Cornerstone Software piccolo 2787/udp # piccolo - Cornerstone Software fryeserv 2788/tcp # NetWare Loadable Module - Seagate Software fryeserv 2788/udp # NetWare Loadable Module - Seagate Software media-agent 2789/tcp # Media Agent media-agent 2789/udp # Media Agent plgproxy 2790/tcp # PLG Proxy plgproxy 2790/udp # PLG Proxy mtport-regist 2791/tcp # MT Port Registrator mtport-regist 2791/udp # MT Port Registrator f5-globalsite 2792/tcp # f5-globalsite f5-globalsite 2792/udp # f5-globalsite initlsmsad 2793/tcp # initlsmsad initlsmsad 2793/udp # initlsmsad aaftp 2794/tcp # aaftp aaftp 2794/udp # aaftp livestats 2795/tcp # LiveStats livestats 2795/udp # LiveStats ac-tech 2796/tcp # ac-tech ac-tech 2796/udp # ac-tech esp-encap 2797/tcp # esp-encap esp-encap 2797/udp # esp-encap tmesis-upshot 2798/tcp # TMESIS-UPShot tmesis-upshot 2798/udp # TMESIS-UPShot icon-discover 2799/tcp # ICON Discover icon-discover 2799/udp # ICON Discover acc-raid 2800/tcp # ACC RAID acc-raid 2800/udp # ACC RAID igcp 2801/tcp # IGCP igcp 2801/udp # IGCP veritas-tcp1 2802/tcp # Veritas TCP1 veritas-udp1 2802/udp # Veritas UDP1 btprjctrl 2803/tcp # btprjctrl btprjctrl 2803/udp # btprjctrl dvr-esm 2804/tcp # March Networks Digital Video Recorders and Enterprise Service Manager products dvr-esm 2804/udp # March Networks Digital Video Recorders and Enterprise Service Manager products wta-wsp-s 2805/tcp # WTA WSP-S wta-wsp-s 2805/udp # WTA WSP-S cspuni 2806/tcp # cspuni cspuni 2806/udp # cspuni cspmulti 2807/tcp # cspmulti cspmulti 2807/udp # cspmulti j-lan-p 2808/tcp # J-LAN-P j-lan-p 2808/udp # J-LAN-P corbaloc 2809/tcp # CORBA naming service locator netsteward 2810/tcp # Active Net Steward netsteward 2810/udp # Active Net Steward gsiftp 2811/tcp # GSI FTP gsiftp 2811/udp # GSI FTP atmtcp 2812/tcp # atmtcp atmtcp 2812/udp # atmtcp llm-pass 2813/tcp # llm-pass llm-pass 2813/udp # llm-pass llm-csv 2814/tcp # llm-csv llm-csv 2814/udp # llm-csv lbc-measure 2815/tcp # LBC Measurement lbc-measure 2815/udp # LBC Measurement lbc-watchdog 2816/tcp # LBC Watchdog lbc-watchdog 2816/udp # LBC Watchdog nmsigport 2817/tcp # NMSig Port nmsigport 2817/udp # NMSig Port rmlnk 2818/tcp # rmlnk rmlnk 2818/udp # rmlnk fc-faultnotify 2819/tcp # FC Fault Notification fc-faultnotify 2819/udp # FC Fault Notification univision 2820/tcp # UniVision univision 2820/udp # UniVision vrts-at-port 2821/tcp # VERITAS Authentication Service vrts-at-port 2821/udp # VERITAS Authentication Service ka0wuc 2822/tcp # ka0wuc ka0wuc 2822/udp # ka0wuc cqg-netlan 2823/tcp # CQG Net/LAN cqg-netlan 2823/udp # CQG Net/LAN cqg-netlan-1 2824/tcp # CQG Net/LAN 1 cqg-netlan-1 2824/udp # CQG Net/Lan 1 slc-systemlog 2826/tcp # slc systemlog slc-systemlog 2826/udp # slc systemlog slc-ctrlrloops 2827/tcp # slc ctrlrloops slc-ctrlrloops 2827/udp # slc ctrlrloops itm-lm 2828/tcp # ITM License Manager itm-lm 2828/udp # ITM License Manager silkp1 2829/tcp # silkp1 silkp1 2829/udp # silkp1 silkp2 2830/tcp # silkp2 silkp2 2830/udp # silkp2 silkp3 2831/tcp # silkp3 silkp3 2831/udp # silkp3 silkp4 2832/tcp # silkp4 silkp4 2832/udp # silkp4 glishd 2833/tcp # glishd glishd 2833/udp # glishd evtp 2834/tcp # EVTP evtp 2834/udp # EVTP evtp-data 2835/tcp # EVTP-DATA evtp-data 2835/udp # EVTP-DATA catalyst 2836/tcp # catalyst catalyst 2836/udp # catalyst repliweb 2837/tcp # Repliweb repliweb 2837/udp # Repliweb starbot 2838/tcp # Starbot starbot 2838/udp # Starbot l3-exprt 2840/tcp # l3-exprt l3-exprt 2840/udp # l3-exprt l3-ranger 2841/tcp # l3-ranger l3-ranger 2841/udp # l3-ranger l3-hawk 2842/tcp # l3-hawk l3-hawk 2842/udp # l3-hawk pdnet 2843/tcp # PDnet pdnet 2843/udp # PDnet bpcp-poll 2844/tcp # BPCP POLL bpcp-poll 2844/udp # BPCP POLL bpcp-trap 2845/tcp # BPCP TRAP bpcp-trap 2845/udp # BPCP TRAP aimpp-hello 2846/tcp # AIMPP Hello aimpp-hello 2846/udp # AIMPP Hello aimpp-port-req 2847/tcp # AIMPP Port Req aimpp-port-req 2847/udp # AIMPP Port Req amt-blc-port 2848/tcp # AMT-BLC-PORT amt-blc-port 2848/udp # AMT-BLC-PORT metaconsole 2850/tcp # MetaConsole metaconsole 2850/udp # MetaConsole webemshttp 2851/tcp # webemshttp webemshttp 2851/udp # webemshttp bears-01 2852/tcp # bears-01 bears-01 2852/udp # bears-01 ispipes 2853/tcp # ISPipes ispipes 2853/udp # ISPipes infomover 2854/tcp # InfoMover infomover 2854/udp # InfoMover cesdinv 2856/tcp # cesdinv cesdinv 2856/udp # cesdinv simctlp 2857/tcp # SimCtIP simctlp 2857/udp # SimCtIP ecnp 2858/tcp # ECNP ecnp 2858/udp # ECNP activememory 2859/tcp # Active Memory activememory 2859/udp # Active Memory dialpad-voice1 2860/tcp # Dialpad Voice 1 dialpad-voice1 2860/udp # Dialpad Voice 1 dialpad-voice2 2861/tcp # Dialpad Voice 2 dialpad-voice2 2861/udp # Dialpad Voice 2 ttg-protocol 2862/tcp # TTG Protocol ttg-protocol 2862/udp # TTG Protocol sonardata 2863/tcp # Sonar Data sonardata 2863/udp # Sonar Data astromed-main 2864/tcp # main 5001 cmd astromed-main 2864/udp # main 5001 cmd pit-vpn 2865/tcp # pit-vpn pit-vpn 2865/udp # pit-vpn iwlistener 2866/tcp # iwlistener iwlistener 2866/udp # iwlistener esps-portal 2867/tcp # esps-portal esps-portal 2867/udp # esps-portal npep-messaging 2868/tcp # NPEP Messaging npep-messaging 2868/udp # NPEP Messaging icslap 2869/tcp # ICSLAP icslap 2869/udp # ICSLAP daishi 2870/tcp # daishi daishi 2870/udp # daishi msi-selectplay 2871/tcp # MSI Select Play msi-selectplay 2871/udp # MSI Select Play radix 2872/tcp # RADIX radix 2872/udp # RADIX dxmessagebase1 2874/tcp # dxmessagebase1 dxmessagebase1 2874/udp # dxmessagebase1 dxmessagebase2 2875/tcp # dxmessagebase2 dxmessagebase2 2875/udp # dxmessagebase2 sps-tunnel 2876/tcp # SPS Tunnel sps-tunnel 2876/udp # SPS Tunnel bluelance 2877/tcp # BLUELANCE bluelance 2877/udp # BLUELANCE aap 2878/tcp # AAP aap 2878/udp # AAP ucentric-ds 2879/tcp # ucentric-ds ucentric-ds 2879/udp # ucentric-ds synapse 2880/tcp # Synapse Transport synapse 2880/udp # Synapse Transport ndsp 2881/tcp # NDSP ndsp 2881/udp # NDSP ndtp 2882/tcp # NDTP ndtp 2882/udp # NDTP ndnp 2883/tcp # NDNP ndnp 2883/udp # NDNP flashmsg 2884/tcp # Flash Msg flashmsg 2884/udp # Flash Msg topflow 2885/tcp # TopFlow topflow 2885/udp # TopFlow responselogic 2886/tcp # RESPONSELOGIC responselogic 2886/udp # RESPONSELOGIC aironetddp 2887/tcp # aironet aironetddp 2887/udp # aironet spcsdlobby 2888/tcp # SPCSDLOBBY spcsdlobby 2888/udp # SPCSDLOBBY rsom 2889/tcp # RSOM rsom 2889/udp # RSOM cspclmulti 2890/tcp # CSPCLMULTI cspclmulti 2890/udp # CSPCLMULTI cinegrfx-elmd 2891/tcp # CINEGRFX-ELMD License Manager cinegrfx-elmd 2891/udp # CINEGRFX-ELMD License Manager snifferdata 2892/tcp # SNIFFERDATA snifferdata 2892/udp # SNIFFERDATA vseconnector 2893/tcp # VSECONNECTOR vseconnector 2893/udp # VSECONNECTOR abacus-remote 2894/tcp # ABACUS-REMOTE abacus-remote 2894/udp # ABACUS-REMOTE natuslink 2895/tcp # NATUS LINK natuslink 2895/udp # NATUS LINK ecovisiong6-1 2896/tcp # ECOVISIONG6-1 ecovisiong6-1 2896/udp # ECOVISIONG6-1 citrix-rtmp 2897/tcp # Citrix RTMP citrix-rtmp 2897/udp # Citrix RTMP appliance-cfg 2898/tcp # APPLIANCE-CFG appliance-cfg 2898/udp # APPLIANCE-CFG powergemplus 2899/tcp # POWERGEMPLUS powergemplus 2899/udp # POWERGEMPLUS quicksuite 2900/tcp # QUICKSUITE quicksuite 2900/udp # QUICKSUITE allstorcns 2901/tcp # ALLSTORCNS allstorcns 2901/udp # ALLSTORCNS netaspi 2902/tcp # NET ASPI netaspi 2902/udp # NET ASPI suitcase 2903/tcp # SUITCASE suitcase 2903/udp # SUITCASE m2ua 2904/sctp # M2UA m2ua 2904/tcp # M2UA m2ua 2904/udp # M2UA m3ua 2905/sctp # M3UA m3ua 2905/tcp # M3UA m3ua 2905/udp # De-registered (2001 June 07) caller9 2906/tcp # CALLER9 caller9 2906/udp # CALLER9 webmethods-b2b 2907/tcp # WEBMETHODS B2B webmethods-b2b 2907/udp # WEBMETHODS B2B mao 2908/tcp # mao mao 2908/udp # mao funk-dialout 2909/tcp # Funk Dialout funk-dialout 2909/udp # Funk Dialout tdaccess 2910/tcp # TDAccess tdaccess 2910/udp # TDAccess blockade 2911/tcp # Blockade blockade 2911/udp # Blockade epicon 2912/tcp # Epicon epicon 2912/udp # Epicon boosterware 2913/tcp # Booster Ware boosterware 2913/udp # Booster Ware gamelobby 2914/tcp # Game Lobby gamelobby 2914/udp # Game Lobby tksocket 2915/tcp # TK Socket tksocket 2915/udp # TK Socket elvin_server 2916/tcp # Elvin Server elvin_server 2916/udp # Elvin Server elvin_client 2917/tcp # Elvin Client elvin_client 2917/udp # Elvin Client kastenchasepad 2918/tcp # Kasten Chase Pad kastenchasepad 2918/udp # Kasten Chase Pad roboer 2919/tcp # roboER roboer 2919/udp # roboER roboeda 2920/tcp # roboEDA roboeda 2920/udp # roboEDA cesdcdman 2921/tcp # CESD Contents Delivery Management cesdcdman 2921/udp # CESD Contents Delivery Management cesdcdtrn 2922/tcp # CESD Contents Delivery Data Transfer cesdcdtrn 2922/udp # CESD Contents Delivery Data Transfer wta-wsp-wtp-s 2923/tcp # WTA-WSP-WTP-S wta-wsp-wtp-s 2923/udp # WTA-WSP-WTP-S precise-vip 2924/tcp # PRECISE-VIP precise-vip 2924/udp # PRECISE-VIP mobile-file-dl 2926/tcp # MOBILE-FILE-DL mobile-file-dl 2926/udp # MOBILE-FILE-DL unimobilectrl 2927/tcp # UNIMOBILECTRL unimobilectrl 2927/udp # UNIMOBILECTRL redstone-cpss 2928/tcp # REDSTONE-CPSS redstone-cpss 2928/udp # REDSTONE-CPSS amx-webadmin 2929/tcp # AMX-WEBADMIN amx-webadmin 2929/udp # AMX-WEBADMIN amx-weblinx 2930/tcp # AMX-WEBLINX amx-weblinx 2930/udp # AMX-WEBLINX circle-x 2931/tcp # Circle-X circle-x 2931/udp # Circle-X incp 2932/tcp # INCP incp 2932/udp # INCP 4-tieropmgw 2933/tcp # 4-TIER OPM GW 4-tieropmgw 2933/udp # 4-TIER OPM GW 4-tieropmcli 2934/tcp # 4-TIER OPM CLI 4-tieropmcli 2934/udp # 4-TIER OPM CLI qtp 2935/tcp # QTP qtp 2935/udp # QTP otpatch 2936/tcp # OTPatch otpatch 2936/udp # OTPatch pnaconsult-lm 2937/tcp # PNACONSULT-LM pnaconsult-lm 2937/udp # PNACONSULT-LM sm-pas-1 2938/tcp # SM-PAS-1 sm-pas-1 2938/udp # SM-PAS-1 sm-pas-2 2939/tcp # SM-PAS-2 sm-pas-2 2939/udp # SM-PAS-2 sm-pas-3 2940/tcp # SM-PAS-3 sm-pas-3 2940/udp # SM-PAS-3 sm-pas-4 2941/tcp # SM-PAS-4 sm-pas-4 2941/udp # SM-PAS-4 sm-pas-5 2942/tcp # SM-PAS-5 sm-pas-5 2942/udp # SM-PAS-5 ttnrepository 2943/tcp # TTNRepository ttnrepository 2943/udp # TTNRepository megaco-h248 2944/tcp # Megaco H-248 megaco-h248 2944/udp # Megaco H-248 h248-binary 2945/tcp # H248 Binary h248-binary 2945/udp # H248 Binary fjsvmpor 2946/tcp # FJSVmpor fjsvmpor 2946/udp # FJSVmpor gpsd 2947/tcp # GPSD gpsd 2947/udp # GPSD wap-push 2948/tcp # WAP PUSH wap-push 2948/udp # WAP PUSH wap-pushsecure 2949/tcp # WAP PUSH SECURE wap-pushsecure 2949/udp # WAP PUSH SECURE esip 2950/tcp # ESIP esip 2950/udp # ESIP ottp 2951/tcp # OTTP ottp 2951/udp # OTTP mpfwsas 2952/tcp # MPFWSAS mpfwsas 2952/udp # MPFWSAS ovalarmsrv 2953/tcp # OVALARMSRV ovalarmsrv 2953/udp # OVALARMSRV ovalarmsrv-cmd 2954/tcp # OVALARMSRV-CMD ovalarmsrv-cmd 2954/udp # OVALARMSRV-CMD csnotify 2955/tcp # CSNOTIFY csnotify 2955/udp # CSNOTIFY ovrimosdbman 2956/tcp # OVRIMOSDBMAN ovrimosdbman 2956/udp # OVRIMOSDBMAN jmact5 2957/tcp # JAMCT5 jmact5 2957/udp # JAMCT5 jmact6 2958/tcp # JAMCT6 jmact6 2958/udp # JAMCT6 rmopagt 2959/tcp # RMOPAGT rmopagt 2959/udp # RMOPAGT dfoxserver 2960/tcp # DFOXSERVER dfoxserver 2960/udp # DFOXSERVER boldsoft-lm 2961/tcp # BOLDSOFT-LM boldsoft-lm 2961/udp # BOLDSOFT-LM iph-policy-cli 2962/tcp # IPH-POLICY-CLI iph-policy-cli 2962/udp # IPH-POLICY-CLI iph-policy-adm 2963/tcp # IPH-POLICY-ADM iph-policy-adm 2963/udp # IPH-POLICY-ADM bullant-srap 2964/tcp # BULLANT SRAP bullant-srap 2964/udp # BULLANT SRAP bullant-rap 2965/tcp # BULLANT RAP bullant-rap 2965/udp # BULLANT RAP idp-infotrieve 2966/tcp # IDP-INFOTRIEVE idp-infotrieve 2966/udp # IDP-INFOTRIEVE ssc-agent 2967/tcp # SSC-AGENT ssc-agent 2967/udp # SSC-AGENT enpp 2968/tcp # ENPP enpp 2968/udp # ENPP essp 2969/tcp # ESSP essp 2969/udp # ESSP index-net 2970/tcp # INDEX-NET index-net 2970/udp # INDEX-NET netclip 2971/tcp # NetClip clipboard daemon netclip 2971/udp # NetClip clipboard daemon pmsm-webrctl 2972/tcp # PMSM Webrctl pmsm-webrctl 2972/udp # PMSM Webrctl svnetworks 2973/tcp # SV Networks svnetworks 2973/udp # SV Networks signal 2974/tcp # Signal signal 2974/udp # Signal fjmpcm 2975/tcp # Fujitsu Configuration Management Service fjmpcm 2975/udp # Fujitsu Configuration Management Service cns-srv-port 2976/tcp # CNS Server Port cns-srv-port 2976/udp # CNS Server Port ttc-etap-ns 2977/tcp # TTCs Enterprise Test Access Protocol - NS ttc-etap-ns 2977/udp # TTCs Enterprise Test Access Protocol - NS ttc-etap-ds 2978/tcp # TTCs Enterprise Test Access Protocol - DS ttc-etap-ds 2978/udp # TTCs Enterprise Test Access Protocol - DS h263-video 2979/tcp # H.263 Video Streaming h263-video 2979/udp # H.263 Video Streaming wimd 2980/tcp # Instant Messaging Service wimd 2980/udp # Instant Messaging Service mylxamport 2981/tcp # MYLXAMPORT mylxamport 2981/udp # MYLXAMPORT iwb-whiteboard 2982/tcp # IWB-WHITEBOARD iwb-whiteboard 2982/udp # IWB-WHITEBOARD netplan 2983/tcp # NETPLAN netplan 2983/udp # NETPLAN hpidsadmin 2984/tcp # HPIDSADMIN hpidsadmin 2984/udp # HPIDSADMIN hpidsagent 2985/tcp # HPIDSAGENT hpidsagent 2985/udp # HPIDSAGENT stonefalls 2986/tcp # STONEFALLS stonefalls 2986/udp # STONEFALLS identify 2987/tcp # identify identify 2987/udp # identify afbackup 2988/tcp # Afbackup system afbackup 2988/udp # Afbackup system zarkov 2989/tcp # ZARKOV Intelligent Agent Communication zarkov 2989/udp # ZARKOV Intelligent Agent Communication boscap 2990/tcp # BOSCAP boscap 2990/udp # BOSCAP wkstn-mon 2991/tcp # WKSTN-MON wkstn-mon 2991/udp # WKSTN-MON itb301 2992/tcp # ITB301 itb301 2992/udp # ITB301 veritas-vis1 2993/tcp # VERITAS VIS1 veritas-vis1 2993/udp # VERITAS VIS1 veritas-vis2 2994/tcp # VERITAS VIS2 veritas-vis2 2994/udp # VERITAS VIS2 idrs 2995/tcp # IDRS idrs 2995/udp # IDRS vsixml 2996/tcp # vsixml vsixml 2996/udp # vsixml rebol 2997/tcp # REBOL rebol 2997/udp # REBOL realsecure 2998/tcp # Real Secure realsecure 2998/udp # Real Secure remoteware-un 2999/tcp # RemoteWare Unassigned remoteware-un 2999/udp # RemoteWare Unassigned hbci 3000/tcp # HBCI hbci 3000/udp # HBCI remoteware-cl 3000/tcp # RemoteWare Client remoteware-cl 3000/udp # RemoteWare Client redwood-broker 3001/tcp # Redwood Broker redwood-broker 3001/udp # Redwood Broker exlm-agent 3002/tcp # EXLM Agent exlm-agent 3002/udp # EXLM Agent remoteware-srv 3002/tcp # RemoteWare Server remoteware-srv 3002/udp # RemoteWare Server cgms 3003/tcp # CGMS cgms 3003/udp # CGMS csoftragent 3004/tcp # Csoft Agent csoftragent 3004/udp # Csoft Agent geniuslm 3005/tcp # Genius License Manager geniuslm 3005/udp # Genius License Manager ii-admin 3006/tcp # Instant Internet Admin ii-admin 3006/udp # Instant Internet Admin lotusmtap 3007/tcp # Lotus Mail Tracking Agent Protocol lotusmtap 3007/udp # Lotus Mail Tracking Agent Protocol midnight-tech 3008/tcp # Midnight Technologies midnight-tech 3008/udp # Midnight Technologies pxc-ntfy 3009/tcp # PXC-NTFY pxc-ntfy 3009/udp # PXC-NTFY gw 3010/tcp # Telerate Workstation ping-pong 3010/udp # Telerate Workstation trusted-web 3011/tcp # Trusted Web trusted-web 3011/udp # Trusted Web twsdss 3012/tcp # Trusted Web Client twsdss 3012/udp # Trusted Web Client gilatskysurfer 3013/tcp # Gilat Sky Surfer gilatskysurfer 3013/udp # Gilat Sky Surfer broker_service 3014/tcp # Broker Service broker_service 3014/udp # Broker Service nati-dstp 3015/tcp # NATI DSTP nati-dstp 3015/udp # NATI DSTP notify_srvr 3016/tcp # Notify Server notify_srvr 3016/udp # Notify Server event_listener 3017/tcp # Event Listener event_listener 3017/udp # Event Listener srvc_registry 3018/tcp # Service Registry srvc_registry 3018/udp # Service Registry resource_mgr 3019/tcp # Resource Manager resource_mgr 3019/udp # Resource Manager cifs 3020/tcp # CIFS cifs 3020/udp # CIFS agriserver 3021/tcp # AGRI Server agriserver 3021/udp # AGRI Server csregagent 3022/tcp # CSREGAGENT csregagent 3022/udp # CSREGAGENT magicnotes 3023/tcp # magicnotes magicnotes 3023/udp # magicnotes nds_sso 3024/tcp # NDS_SSO nds_sso 3024/udp # NDS_SSO arepa-raft 3025/tcp # Arepa Raft arepa-raft 3025/udp # Arepa Raft agri-gateway 3026/tcp # AGRI Gateway agri-gateway 3026/udp # AGRI Gateway LiebDevMgmt_C 3027/tcp # LiebDevMgmt_C LiebDevMgmt_C 3027/udp # LiebDevMgmt_C LiebDevMgmt_DM 3028/tcp # LiebDevMgmt_DM LiebDevMgmt_DM 3028/udp # LiebDevMgmt_DM LiebDevMgmt_A 3029/tcp # LiebDevMgmt_A LiebDevMgmt_A 3029/udp # LiebDevMgmt_A arepa-cas 3030/tcp # Arepa Cas arepa-cas 3030/udp # Arepa Cas eppc 3031/tcp # Remote AppleEvents/PPC Toolbox eppc 3031/udp # Remote AppleEvents/PPC Toolbox redwood-chat 3032/tcp # Redwood Chat redwood-chat 3032/udp # Redwood Chat pdb 3033/tcp # PDB pdb 3033/udp # PDB osmosis-aeea 3034/tcp # Osmosis / Helix (R) AEEA Port osmosis-aeea 3034/udp # Osmosis / Helix (R) AEEA Port fjsv-gssagt 3035/tcp # FJSV gssagt fjsv-gssagt 3035/udp # FJSV gssagt hagel-dump 3036/tcp # Hagel DUMP hagel-dump 3036/udp # Hagel DUMP hp-san-mgmt 3037/tcp # HP SAN Mgmt hp-san-mgmt 3037/udp # HP SAN Mgmt santak-ups 3038/tcp # Santak UPS santak-ups 3038/udp # Santak UPS cogitate 3039/tcp # Cogitate, Inc. cogitate 3039/udp # Cogitate, Inc. tomato-springs 3040/tcp # Tomato Springs tomato-springs 3040/udp # Tomato Springs di-traceware 3041/tcp # di-traceware di-traceware 3041/udp # di-traceware journee 3042/tcp # journee journee 3042/udp # journee brp 3043/tcp # BRP brp 3043/udp # BRP responsenet 3045/tcp # ResponseNet responsenet 3045/udp # ResponseNet di-ase 3046/tcp # di-ase di-ase 3046/udp # di-ase pctrader 3048/tcp # Sierra Net PC Trader pctrader 3048/udp # Sierra Net PC Trader nsws 3049/tcp # NSWS nsws 3049/udp # NSWS gds_db 3050/tcp # gds_db gds_db 3050/udp # gds_db galaxy-server 3051/tcp # Galaxy Server galaxy-server 3051/udp # Galaxy Server apc-3052 3052/tcp # APC 3052 apc-3052 3052/udp # APC 3052 dsom-server 3053/tcp # dsom-server dsom-server 3053/udp # dsom-server amt-cnf-prot 3054/tcp # AMT CNF PROT amt-cnf-prot 3054/udp # AMT CNF PROT policyserver 3055/tcp # Policy Server policyserver 3055/udp # Policy Server cdl-server 3056/tcp # CDL Server cdl-server 3056/udp # CDL Server goahead-fldup 3057/tcp # GoAhead FldUp goahead-fldup 3057/udp # GoAhead FldUp videobeans 3058/tcp # videobeans videobeans 3058/udp # videobeans qsoft 3059/tcp # qsoft qsoft 3059/udp # qsoft interserver 3060/tcp # interserver interserver 3060/udp # interserver cautcpd 3061/tcp # cautcpd cautcpd 3061/udp # cautcpd ncacn-ip-tcp 3062/tcp # ncacn-ip-tcp ncacn-ip-tcp 3062/udp # ncacn-ip-tcp ncadg-ip-udp 3063/tcp # ncadg-ip-udp ncadg-ip-udp 3063/udp # ncadg-ip-udp rprt 3064/tcp # Remote Port Redirector rprt 3064/udp # Remote Port Redirector slinterbase 3065/tcp # slinterbase slinterbase 3065/udp # slinterbase netattachsdmp 3066/tcp # NETATTACHSDMP netattachsdmp 3066/udp # NETATTACHSDMP fjhpjp 3067/tcp # FJHPJP fjhpjp 3067/udp # FJHPJP ls3bcast 3068/tcp # ls3 Broadcast ls3bcast 3068/udp # ls3 Broadcast ls3 3069/tcp # ls3 ls3 3069/udp # ls3 mgxswitch 3070/tcp # MGXSWITCH mgxswitch 3070/udp # MGXSWITCH csd-mgmt-port 3071/tcp # ContinuStor Manager Port csd-mgmt-port 3071/udp # ContinuStor Manager Port csd-monitor 3072/tcp # ContinuStor Monitor Port csd-monitor 3072/udp # ContinuStor Monitor Port vcrp 3073/tcp # Very simple chatroom prot vcrp 3073/udp # Very simple chatroom prot xbox 3074/tcp # Xbox game port xbox 3074/udp # Xbox game port orbix-locator 3075/tcp # Orbix 2000 Locator orbix-locator 3075/udp # Orbix 2000 Locator orbix-config 3076/tcp # Orbix 2000 Config orbix-config 3076/udp # Orbix 2000 Config orbix-loc-ssl 3077/tcp # Orbix 2000 Locator SSL orbix-loc-ssl 3077/udp # Orbix 2000 Locator SSL orbix-cfg-ssl 3078/tcp # Orbix 2000 Locator SSL orbix-cfg-ssl 3078/udp # Orbix 2000 Locator SSL lv-frontpanel 3079/tcp # LV Front Panel lv-frontpanel 3079/udp # LV Front Panel stm_pproc 3080/tcp # stm_pproc stm_pproc 3080/udp # stm_pproc tl1-lv 3081/tcp # TL1-LV tl1-lv 3081/udp # TL1-LV tl1-raw 3082/tcp # TL1-RAW tl1-raw 3082/udp # TL1-RAW tl1-telnet 3083/tcp # TL1-TELNET tl1-telnet 3083/udp # TL1-TELNET itm-mccs 3084/tcp # ITM-MCCS itm-mccs 3084/udp # ITM-MCCS pcihreq 3085/tcp # PCIHReq pcihreq 3085/udp # PCIHReq jdl-dbkitchen 3086/tcp # JDL-DBKitchen jdl-dbkitchen 3086/udp # JDL-DBKitchen asoki-sma 3087/tcp # Asoki SMA asoki-sma 3087/udp # Asoki SMA xdtp 3088/tcp # eXtensible Data Transfer Protocol xdtp 3088/udp # eXtensible Data Transfer Protocol ptk-alink 3089/tcp # ParaTek Agent Linking ptk-alink 3089/udp # ParaTek Agent Linking rtss 3090/tcp # Rappore Session Services rtss 3090/udp # Rappore Session Services 1ci-smcs 3091/tcp # 1Ci Server Management 1ci-smcs 3091/udp # 1Ci Server Management njfss 3092/tcp # Netware sync services njfss 3092/udp # Netware sync services rapidmq-center 3093/tcp # Jiiva RapidMQ Center rapidmq-center 3093/udp # Jiiva RapidMQ Center rapidmq-reg 3094/tcp # Jiiva RapidMQ Registry rapidmq-reg 3094/udp # Jiiva RapidMQ Registry panasas 3095/tcp # Panasas rendevous port panasas 3095/udp # Panasas rendevous port ndl-aps 3096/tcp # Active Print Server Port ndl-aps 3096/udp # Active Print Server Port itu-bicc-stc 3097/sctp # ITU-T Q.1902.1/Q.2150.3 umm-port 3098/tcp # Universal Message Manager umm-port 3098/udp # Universal Message Manager chmd 3099/tcp # CHIPSY Machine Daemon chmd 3099/udp # CHIPSY Machine Daemon opcon-xps 3100/tcp # OpCon/xps opcon-xps 3100/udp # OpCon/xps hp-pxpib 3101/tcp # HP PolicyXpert PIB Server hp-pxpib 3101/udp # HP PolicyXpert PIB Server slslavemon 3102/tcp # SoftlinK Slave Mon Port slslavemon 3102/udp # SoftlinK Slave Mon Port autocuesmi 3103/tcp # Autocue SMI Protocol autocuesmi 3103/udp # Autocue SMI Protocol autocuelog 3104/tcp # Autocue Logger Protocol autocuetime 3104/udp # Autocue Time Service cardbox 3105/tcp # Cardbox cardbox 3105/udp # Cardbox cardbox-http 3106/tcp # Cardbox HTTP cardbox-http 3106/udp # Cardbox HTTP business 3107/tcp # Business protocol business 3107/udp # Business protocol geolocate 3108/tcp # Geolocate protocol geolocate 3108/udp # Geolocate protocol personnel 3109/tcp # Personnel protocol personnel 3109/udp # Personnel protocol sim-control 3110/tcp # simulator control port sim-control 3110/udp # simulator control port wsynch 3111/tcp # Web Synchronous Services wsynch 3111/udp # Web Synchronous Services ksysguard 3112/tcp # KDE System Guard ksysguard 3112/udp # KDE System Guard cs-auth-svr 3113/tcp # CS-Authenticate Svr Port cs-auth-svr 3113/udp # CS-Authenticate Svr Port ccmad 3114/tcp # CCM AutoDiscover ccmad 3114/udp # CCM AutoDiscover mctet-master 3115/tcp # MCTET Master mctet-master 3115/udp # MCTET Master mctet-gateway 3116/tcp # MCTET Gateway mctet-gateway 3116/udp # MCTET Gateway mctet-jserv 3117/tcp # MCTET Jserv mctet-jserv 3117/udp # MCTET Jserv pkagent 3118/tcp # PKAgent pkagent 3118/udp # PKAgent d2000kernel 3119/tcp # D2000 Kernel Port d2000kernel 3119/udp # D2000 Kernel Port d2000webserver 3120/tcp # D2000 Webserver Port d2000webserver 3120/udp # D2000 Webserver Port vtr-emulator 3122/tcp # MTI VTR Emulator port vtr-emulator 3122/udp # MTI VTR Emulator port edix 3123/tcp # EDI Translation Protocol edix 3123/udp # EDI Translation Protocol beacon-port 3124/tcp # Beacon Port beacon-port 3124/udp # Beacon Port a13-an 3125/tcp # A13-AN Interface a13-an 3125/udp # A13-AN Interface ms-dotnetster 3126/tcp # Microsoft .NETster Port ms-dotnetster 3126/udp # Microsoft .NETster Port ctx-bridge 3127/tcp # CTX Bridge Port ctx-bridge 3127/udp # CTX Bridge Port squid 3128/tcp # squid web proxy netport-id 3129/tcp # NetPort Discovery Port netport-id 3129/udp # NetPort Discovery Port icpv2 3130/tcp # Internet Cache Protocol V2 (Squid) icpv2 3130/udp # Internet Cache Protocol V2 (Squid) netbookmark 3131/tcp # Net Book Mark netbookmark 3131/udp # Net Book Mark ms-rule-engine 3132/tcp # Microsoft Business Rule Engine Update Service ms-rule-engine 3132/udp # Microsoft Business Rule Engine Update Service prism-deploy 3133/tcp # Prism Deploy User Port prism-deploy 3133/udp # Prism Deploy User Port ecp 3134/tcp # Extensible Code Protocol ecp 3134/udp # Extensible Code Protocol peerbook-port 3135/tcp # PeerBook Port peerbook-port 3135/udp # PeerBook Port grubd 3136/tcp # Grub Server Port grubd 3136/udp # Grub Server Port rtnt-1 3137/tcp # rtnt-1 data packets rtnt-1 3137/udp # rtnt-1 data packets rtnt-2 3138/tcp # rtnt-2 data packets rtnt-2 3138/udp # rtnt-2 data packets incognitorv 3139/tcp # Incognito Rendez-Vous incognitorv 3139/udp # Incognito Rendez-Vous ariliamulti 3140/tcp # Arilia Multiplexor ariliamulti 3140/udp # Arilia Multiplexor vmodem 3141/tcp # VMODEM vmodem 3141/udp # VMODEM rdc-wh-eos 3142/tcp # RDC WH EOS rdc-wh-eos 3142/udp # RDC WH EOS seaview 3143/tcp # Sea View seaview 3143/udp # Sea View tarantella 3144/tcp # Tarantella tarantella 3144/udp # Tarantella csi-lfap 3145/tcp # CSI-LFAP csi-lfap 3145/udp # CSI-LFAP bears-02 3146/tcp # bears-02 bears-02 3146/udp # bears-02 rfio 3147/tcp # RFIO rfio 3147/udp # RFIO nm-game-admin 3148/tcp # NetMike Game Administrator nm-game-admin 3148/udp # NetMike Game Administrator nm-game-server 3149/tcp # NetMike Game Server nm-game-server 3149/udp # NetMike Game Server nm-asses-admin 3150/tcp # NetMike Assessor Administrator nm-asses-admin 3150/udp # NetMike Assessor Administrator nm-assessor 3151/tcp # NetMike Assessor nm-assessor 3151/udp # NetMike Assessor feitianrockey 3152/tcp # FeiTian Port feitianrockey 3152/udp # FeiTian Port s8-client-port 3153/tcp # S8Cargo Client Port s8-client-port 3153/udp # S8Cargo Client Port ccmrmi 3154/tcp # ON RMI Registry ccmrmi 3154/udp # ON RMI Registry jpegmpeg 3155/tcp # JpegMpeg Port jpegmpeg 3155/udp # JpegMpeg Port indura 3156/tcp # Indura Collector indura 3156/udp # Indura Collector e3consultants 3157/tcp # CCC Listener Port e3consultants 3157/udp # CCC Listener Port stvp 3158/tcp # SmashTV Protocol stvp 3158/udp # SmashTV Protocol navegaweb-port 3159/tcp # NavegaWeb Tarification navegaweb-port 3159/udp # NavegaWeb Tarification tip-app-server 3160/tcp # TIP Application Server tip-app-server 3160/udp # TIP Application Server doc1lm 3161/tcp # DOC1 License Manager doc1lm 3161/udp # DOC1 License Manager sflm 3162/tcp # SFLM sflm 3162/udp # SFLM res-sap 3163/tcp # RES-SAP res-sap 3163/udp # RES-SAP imprs 3164/tcp # IMPRS imprs 3164/udp # IMPRS newgenpay 3165/tcp # Newgenpay Engine Service newgenpay 3165/udp # Newgenpay Engine Service qrepos 3166/tcp # Quest Repository qrepos 3166/udp # Quest Repository poweroncontact 3167/tcp # poweroncontact poweroncontact 3167/udp # poweroncontact poweronnud 3168/tcp # poweronnud poweronnud 3168/udp # poweronnud serverview-as 3169/tcp # SERVERVIEW-AS serverview-as 3169/udp # SERVERVIEW-AS serverview-asn 3170/tcp # SERVERVIEW-ASN serverview-asn 3170/udp # SERVERVIEW-ASN serverview-gf 3171/tcp # SERVERVIEW-GF serverview-gf 3171/udp # SERVERVIEW-GF serverview-rm 3172/tcp # SERVERVIEW-RM serverview-rm 3172/udp # SERVERVIEW-RM serverview-icc 3173/tcp # SERVERVIEW-ICC serverview-icc 3173/udp # SERVERVIEW-ICC armi-server 3174/tcp # ARMI Server armi-server 3174/udp # ARMI Server t1-e1-over-ip 3175/tcp # T1_E1_Over_IP t1-e1-over-ip 3175/udp # T1_E1_Over_IP ars-master 3176/tcp # ARS Master ars-master 3176/udp # ARS Master phonex-port 3177/tcp # Phonex Protocol phonex-port 3177/udp # Phonex Protocol radclientport 3178/tcp # Radiance UltraEdge Port radclientport 3178/udp # Radiance UltraEdge Port h2gf-w-2m 3179/tcp # H2GF W.2m Handover prot. h2gf-w-2m 3179/udp # H2GF W.2m Handover prot. mc-brk-srv 3180/tcp # Millicent Broker Server mc-brk-srv 3180/udp # Millicent Broker Server bmcpatrolagent 3181/tcp # BMC Patrol Agent bmcpatrolagent 3181/udp # BMC Patrol Agent bmcpatrolrnvu 3182/tcp # BMC Patrol Rendezvous bmcpatrolrnvu 3182/udp # BMC Patrol Rendezvous cops-tls 3183/tcp # COPS/TLS cops-tls 3183/udp # COPS/TLS apogeex-port 3184/tcp # ApogeeX Port apogeex-port 3184/udp # ApogeeX Port smpppd 3185/tcp # SuSE Meta PPPD smpppd 3185/udp # SuSE Meta PPPD iiw-port 3186/tcp # IIW Monitor User Port iiw-port 3186/udp # IIW Monitor User Port odi-port 3187/tcp # Open Design Listen Port odi-port 3187/udp # Open Design Listen Port brcm-comm-port 3188/tcp # Broadcom Port brcm-comm-port 3188/udp # Broadcom Port pcle-infex 3189/tcp # Pinnacle Sys InfEx Port pcle-infex 3189/udp # Pinnacle Sys InfEx Port csvr-proxy 3190/tcp # ConServR Proxy csvr-proxy 3190/udp # ConServR Proxy csvr-sslproxy 3191/tcp # ConServR SSL Proxy csvr-sslproxy 3191/udp # ConServR SSL Proxy firemonrcc 3192/tcp # FireMon Revision Control firemonrcc 3192/udp # FireMon Revision Control spandataport 3193/tcp # SpanDataPort spandataport 3193/udp # SpanDataPort magbind 3194/tcp # Rockstorm MAG protocol magbind 3194/udp # Rockstorm MAG protocol ncu-1 3195/tcp # Network Control Unit ncu-1 3195/udp # Network Control Unit ncu-2 3196/tcp # Network Control Unit ncu-2 3196/udp # Network Control Unit embrace-dp-s 3197/tcp # Embrace Device Protocol Server embrace-dp-s 3197/udp # Embrace Device Protocol Server embrace-dp-c 3198/tcp # Embrace Device Protocol Client embrace-dp-c 3198/udp # Embrace Device Protocol Client dmod-workspace 3199/tcp # DMOD WorkSpace dmod-workspace 3199/udp # DMOD WorkSpace tick-port 3200/tcp # Press-sense Tick Port tick-port 3200/udp # Press-sense Tick Port cpq-tasksmart 3201/tcp # CPQ-TaskSmart cpq-tasksmart 3201/udp # CPQ-TaskSmart intraintra 3202/tcp # IntraIntra intraintra 3202/udp # IntraIntra netwatcher-mon 3203/tcp # Network Watcher Monitor netwatcher-mon 3203/udp # Network Watcher Monitor netwatcher-db 3204/tcp # Network Watcher DB Access netwatcher-db 3204/udp # Network Watcher DB Access isns 3205/tcp # iSNS Server Port isns 3205/udp # iSNS Server Port ironmail 3206/tcp # IronMail POP Proxy ironmail 3206/udp # IronMail POP Proxy vx-auth-port 3207/tcp # Veritas Authentication Port vx-auth-port 3207/udp # Veritas Authentication Port pfu-prcallback 3208/tcp # PFU PR Callback pfu-prcallback 3208/udp # PFU PR Callback netwkpathengine 3209/tcp # HP OpenView Network Path Engine Server netwkpathengine 3209/udp # HP OpenView Network Path Engine Server flamenco-proxy 3210/tcp # Flamenco Networks Proxy flamenco-proxy 3210/udp # Flamenco Networks Proxy avsecuremgmt 3211/tcp # Avocent Secure Management avsecuremgmt 3211/udp # Avocent Secure Management surveyinst 3212/tcp # Survey Instrument surveyinst 3212/udp # Survey Instrument neon24x7 3213/tcp # NEON 24X7 Mission Control neon24x7 3213/udp # NEON 24X7 Mission Control jmq-daemon-1 3214/tcp # JMQ Daemon Port 1 jmq-daemon-1 3214/udp # JMQ Daemon Port 1 jmq-daemon-2 3215/tcp # JMQ Daemon Port 2 jmq-daemon-2 3215/udp # JMQ Daemon Port 2 ferrari-foam 3216/tcp # Ferrari electronic FOAM ferrari-foam 3216/udp # Ferrari electronic FOAM unite 3217/tcp # Unified IP & Telecomm Env unite 3217/udp # Unified IP & Telecomm Env smartpackets 3218/tcp # EMC SmartPackets smartpackets 3218/udp # EMC SmartPackets wms-messenger 3219/tcp # WMS Messenger wms-messenger 3219/udp # WMS Messenger xnm-ssl 3220/tcp # XML NM over SSL xnm-ssl 3220/udp # XML NM over SSL xnm-clear-text 3221/tcp # XML NM over TCP xnm-clear-text 3221/udp # XML NM over TCP glbp 3222/tcp # Gateway Load Balancing Pr glbp 3222/udp # Gateway Load Balancing Pr digivote 3223/tcp # DIGIVOTE (R) Vote-Server digivote 3223/udp # DIGIVOTE (R) Vote-Server aes-discovery 3224/tcp # AES Discovery Port aes-discovery 3224/udp # AES Discovery Port fcip-port 3225/tcp # FCIP fcip-port 3225/udp # FCIP isi-irp 3226/tcp # ISI Industry Software IRP isi-irp 3226/udp # ISI Industry Software IRP dwnmshttp 3227/tcp # DiamondWave NMS Server dwnmshttp 3227/udp # DiamondWave NMS Server dwmsgserver 3228/tcp # DiamondWave MSG Server dwmsgserver 3228/udp # DiamondWave MSG Server global-cd-port 3229/tcp # Global CD Port global-cd-port 3229/udp # Global CD Port sftdst-port 3230/tcp # Software Distributor Port sftdst-port 3230/udp # Software Distributor Port dsnl 3231/tcp # Delta Solutions Direct dsnl 3231/udp # Delta Solutions Direct mdtp 3232/tcp # MDT port mdtp 3232/udp # MDT port whisker 3233/tcp # WhiskerControl main port whisker 3233/udp # WhiskerControl main port alchemy 3234/tcp # Alchemy Server alchemy 3234/udp # Alchemy Server mdap-port 3235/tcp # MDAP port mdap-port 3235/udp # MDAP Port apparenet-ts 3236/tcp # appareNet Test Server apparenet-ts 3236/udp # appareNet Test Server apparenet-tps 3237/tcp # appareNet Test Packet Sequencer apparenet-tps 3237/udp # appareNet Test Packet Sequencer apparenet-as 3238/tcp # appareNet Analysis Server apparenet-as 3238/udp # appareNet Analysis Server apparenet-ui 3239/tcp # appareNet User Interface apparenet-ui 3239/udp # appareNet User Interface triomotion 3240/tcp # Trio Motion Control Port triomotion 3240/udp # Trio Motion Control Port sysorb 3241/tcp # SysOrb Monitoring Server sysorb 3241/udp # SysOrb Monitoring Server sdp-id-port 3242/tcp # Session Description ID sdp-id-port 3242/udp # Session Description ID timelot 3243/tcp # Timelot Port timelot 3243/udp # Timelot Port onesaf 3244/tcp # OneSAF onesaf 3244/udp # OneSAF vieo-fe 3245/tcp # VIEO Fabric Executive vieo-fe 3245/udp # VIEO Fabric Executive dvt-system 3246/tcp # DVT SYSTEM PORT dvt-system 3246/udp # DVT SYSTEM PORT dvt-data 3247/tcp # DVT DATA LINK dvt-data 3247/udp # DVT DATA LINK procos-lm 3248/tcp # PROCOS LM procos-lm 3248/udp # PROCOS LM ssp 3249/tcp # State Sync Protocol ssp 3249/udp # State Sync Protocol hicp 3250/tcp # HMS hicp port hicp 3250/udp # HMS hicp port sysscanner 3251/tcp # Sys Scanner sysscanner 3251/udp # Sys Scanner dhe 3252/tcp # DHE port dhe 3252/udp # DHE port pda-data 3253/tcp # PDA Data pda-data 3253/udp # PDA Data pda-sys 3254/tcp # PDA System pda-sys 3254/udp # PDA System semaphore 3255/tcp # Semaphore Connection Port semaphore 3255/udp # Semaphore Connection Port cpqrpm-agent 3256/tcp # Compaq RPM Agent Port cpqrpm-agent 3256/udp # Compaq RPM Agent Port cpqrpm-server 3257/tcp # Compaq RPM Server Port cpqrpm-server 3257/udp # Compaq RPM Server Port ivecon-port 3258/tcp # Ivecon Server Port ivecon-port 3258/udp # Ivecon Server Port epncdp2 3259/tcp # Epson Network Common Devi epncdp2 3259/udp # Epson Network Common Devi iscsi-target 3260/tcp # iSCSI port iscsi-target 3260/udp # iSCSI port winshadow 3261/tcp # winShadow winshadow 3261/udp # winShadow necp 3262/tcp # NECP necp 3262/udp # NECP ecolor-imager 3263/tcp # E-Color Enterprise Imager ecolor-imager 3263/udp # E-Color Enterprise Imager ccmail 3264/tcp # cc:mail/lotus ccmail 3264/udp # cc:mail/lotus altav-tunnel 3265/tcp # Altav Tunnel altav-tunnel 3265/udp # Altav Tunnel ns-cfg-server 3266/tcp # NS CFG Server ns-cfg-server 3266/udp # NS CFG Server ibm-dial-out 3267/tcp # IBM Dial Out ibm-dial-out 3267/udp # IBM Dial Out msft-gc 3268/tcp # Microsoft Global Catalog msft-gc 3268/udp # Microsoft Global Catalog msft-gc-ssl 3269/tcp # Microsoft Global Catalog with LDAP/SSL msft-gc-ssl 3269/udp # Microsoft Global Catalog with LDAP/SSL verismart 3270/tcp # Verismart verismart 3270/udp # Verismart csoft-prev 3271/tcp # CSoft Prev Port csoft-prev 3271/udp # CSoft Prev Port user-manager 3272/tcp # Fujitsu User Manager user-manager 3272/udp # Fujitsu User Manager sxmp 3273/tcp # Simple Extensible Multiplexed Protocol sxmp 3273/udp # Simple Extensible Multiplexed Protocol ordinox-server 3274/tcp # Ordinox Server ordinox-server 3274/udp # Ordinox Server samd 3275/tcp # SAMD samd 3275/udp # SAMD maxim-asics 3276/tcp # Maxim ASICs maxim-asics 3276/udp # Maxim ASICs awg-proxy 3277/tcp # AWG Proxy awg-proxy 3277/udp # AWG Proxy lkcmserver 3278/tcp # LKCM Server lkcmserver 3278/udp # LKCM Server admind 3279/tcp # admind admind 3279/udp # admind vs-server 3280/tcp # VS Server vs-server 3280/udp # VS Server sysopt 3281/tcp # SYSOPT sysopt 3281/udp # SYSOPT datusorb 3282/tcp # Datusorb datusorb 3282/udp # Datusorb net-assistant 3283/tcp # Net Assistant net-assistant 3283/udp # Net Assistant 4talk 3284/tcp # 4Talk 4talk 3284/udp # 4Talk plato 3285/tcp # Plato plato 3285/udp # Plato e-net 3286/tcp # E-Net e-net 3286/udp # E-Net directvdata 3287/tcp # DIRECTVDATA directvdata 3287/udp # DIRECTVDATA cops 3288/tcp # COPS cops 3288/udp # COPS enpc 3289/tcp # ENPC enpc 3289/udp # ENPC caps-lm 3290/tcp # CAPS LOGISTICS TOOLKIT - LM caps-lm 3290/udp # CAPS LOGISTICS TOOLKIT - LM sah-lm 3291/tcp # S A Holditch & Associates - LM sah-lm 3291/udp # S A Holditch & Associates - LM cart-o-rama 3292/tcp # Cart O Rama cart-o-rama 3292/udp # Cart O Rama fg-fps 3293/tcp # fg-fps fg-fps 3293/udp # fg-fps fg-gip 3294/tcp # fg-gip fg-gip 3294/udp # fg-gip dyniplookup 3295/tcp # Dynamic IP Lookup dyniplookup 3295/udp # Dynamic IP Lookup rib-slm 3296/tcp # Rib License Manager rib-slm 3296/udp # Rib License Manager cytel-lm 3297/tcp # Cytel License Manager cytel-lm 3297/udp # Cytel License Manager deskview 3298/tcp # DeskView deskview 3298/udp # DeskView pdrncs 3299/tcp # pdrncs pdrncs 3299/udp # pdrncs mcs-fastmail 3302/tcp # MCS Fastmail mcs-fastmail 3302/udp # MCS Fastmail opsession-clnt 3303/tcp # OP Session Client opsession-clnt 3303/udp # OP Session Client opsession-srvr 3304/tcp # OP Session Server opsession-srvr 3304/udp # OP Session Server odette-ftp 3305/tcp # ODETTE-FTP odette-ftp 3305/udp # ODETTE-FTP mysql 3306/tcp # MySQL mysql 3306/udp # MySQL opsession-prxy 3307/tcp # OP Session Proxy opsession-prxy 3307/udp # OP Session Proxy tns-server 3308/tcp # TNS Server tns-server 3308/udp # TNS Server tns-adv 3309/tcp # TNS ADV tns-adv 3309/udp # TNS ADV dyna-access 3310/tcp # Dyna Access dyna-access 3310/udp # Dyna Access mcns-tel-ret 3311/tcp # MCNS Tel Ret mcns-tel-ret 3311/udp # MCNS Tel Ret appman-server 3312/tcp # Application Management Server appman-server 3312/udp # Application Management Server uorb 3313/tcp # Unify Object Broker uorb 3313/udp # Unify Object Broker uohost 3314/tcp # Unify Object Host uohost 3314/udp # Unify Object Host cdid 3315/tcp # CDID cdid 3315/udp # CDID aicc-cmi 3316/tcp # AICC/CMI aicc-cmi 3316/udp # AICC/CMI vsaiport 3317/tcp # VSAI PORT vsaiport 3317/udp # VSAI PORT ssrip 3318/tcp # Swith to Swith Routing Information Protocol ssrip 3318/udp # Swith to Swith Routing Information Protocol sdt-lmd 3319/tcp # SDT License Manager sdt-lmd 3319/udp # SDT License Manager officelink2000 3320/tcp # Office Link 2000 officelink2000 3320/udp # Office Link 2000 vnsstr 3321/tcp # VNSSTR vnsstr 3321/udp # VNSSTR sftu 3326/tcp # SFTU sftu 3326/udp # SFTU bbars 3327/tcp # BBARS bbars 3327/udp # BBARS egptlm 3328/tcp # Eaglepoint License Manager egptlm 3328/udp # Eaglepoint License Manager hp-device-disc 3329/tcp # HP Device Disc hp-device-disc 3329/udp # HP Device Disc mcs-calypsoicf 3330/tcp # MCS Calypso ICF mcs-calypsoicf 3330/udp # MCS Calypso ICF mcs-messaging 3331/tcp # MCS Messaging mcs-messaging 3331/udp # MCS Messaging mcs-mailsvr 3332/tcp # MCS Mail Server mcs-mailsvr 3332/udp # MCS Mail Server dec-notes 3333/tcp # DEC Notes dec-notes 3333/udp # DEC Notes directv-web 3334/tcp # Direct TV Webcasting directv-web 3334/udp # Direct TV Webcasting directv-soft 3335/tcp # Direct TV Software Updates directv-soft 3335/udp # Direct TV Software Updates directv-tick 3336/tcp # Direct TV Tickers directv-tick 3336/udp # Direct TV Tickers directv-catlg 3337/tcp # Direct TV Data Catalog directv-catlg 3337/udp # Direct TV Data Catalog anet-b 3338/tcp # OMF data b anet-b 3338/udp # OMF data b anet-l 3339/tcp # OMF data l anet-l 3339/udp # OMF data l anet-m 3340/tcp # OMF data m anet-m 3340/udp # OMF data m anet-h 3341/tcp # OMF data h anet-h 3341/udp # OMF data h webtie 3342/tcp # WebTIE webtie 3342/udp # WebTIE ms-cluster-net 3343/tcp # MS Cluster Net ms-cluster-net 3343/udp # MS Cluster Net bnt-manager 3344/tcp # BNT Manager bnt-manager 3344/udp # BNT Manager influence 3345/tcp # Influence influence 3345/udp # Influence trnsprntproxy 3346/tcp # Trnsprnt Proxy trnsprntproxy 3346/udp # Trnsprnt Proxy phoenix-rpc 3347/tcp # Phoenix RPC phoenix-rpc 3347/udp # Phoenix RPC pangolin-laser 3348/tcp # Pangolin Laser pangolin-laser 3348/udp # Pangolin Laser chevinservices 3349/tcp # Chevin Services chevinservices 3349/udp # Chevin Services findviatv 3350/tcp # FINDVIATV findviatv 3350/udp # FINDVIATV btrieve 3351/tcp # Btrieve port btrieve 3351/udp # Btrieve port ssql 3352/tcp # Scalable SQL ssql 3352/udp # Scalable SQL fatpipe 3353/tcp # FATPIPE fatpipe 3353/udp # FATPIPE suitjd 3354/tcp # SUITJD suitjd 3354/udp # SUITJD ordinox-dbase 3355/tcp # Ordinox Dbase ordinox-dbase 3355/udp # Ordinox Dbase upnotifyps 3356/tcp # UPNOTIFYPS upnotifyps 3356/udp # UPNOTIFYPS adtech-test 3357/tcp # Adtech Test IP adtech-test 3357/udp # Adtech Test IP mpsysrmsvr 3358/tcp # Mp Sys Rmsvr mpsysrmsvr 3358/udp # Mp Sys Rmsvr wg-netforce 3359/tcp # WG NetForce wg-netforce 3359/udp # WG NetForce kv-server 3360/tcp # KV Server kv-server 3360/udp # KV Server kv-agent 3361/tcp # KV Agent kv-agent 3361/udp # KV Agent dj-ilm 3362/tcp # DJ ILM dj-ilm 3362/udp # DJ ILM nati-vi-server 3363/tcp # NATI Vi Server nati-vi-server 3363/udp # NATI Vi Server tip2 3372/tcp # TIP 2 tip2 3372/udp # TIP 2 lavenir-lm 3373/tcp # Lavenir License Manager lavenir-lm 3373/udp # Lavenir License Manager cluster-disc 3374/tcp # Cluster Disc cluster-disc 3374/udp # Cluster Disc vsnm-agent 3375/tcp # VSNM Agent vsnm-agent 3375/udp # VSNM Agent cdbroker 3376/tcp # CD Broker cdbroker 3376/udp # CD Broker cogsys-lm 3377/tcp # Cogsys Network License Manager cogsys-lm 3377/udp # Cogsys Network License Manager wsicopy 3378/tcp # WSICOPY wsicopy 3378/udp # WSICOPY socorfs 3379/tcp # SOCORFS socorfs 3379/udp # SOCORFS sns-channels 3380/tcp # SNS Channels sns-channels 3380/udp # SNS Channels geneous 3381/tcp # Geneous geneous 3381/udp # Geneous fujitsu-neat 3382/tcp # Fujitsu Network Enhanced Antitheft function fujitsu-neat 3382/udp # Fujitsu Network Enhanced Antitheft function esp-lm 3383/tcp # Enterprise Software Products License Manager esp-lm 3383/udp # Enterprise Software Products License Manager hp-clic 3384/tcp # Cluster Management Services hp-clic 3384/udp # Hardware Management qnxnetman 3385/tcp # qnxnetman qnxnetman 3385/udp # qnxnetman gprs-data 3386/tcp # GPRS Data gprs-sig 3386/udp # GPRS SIG backroomnet 3387/tcp # Back Room Net backroomnet 3387/udp # Back Room Net cbserver 3388/tcp # CB Server cbserver 3388/udp # CB Server ms-wbt-server 3389/tcp # MS WBT Server ms-wbt-server 3389/udp # MS WBT Server dsc 3390/tcp # Distributed Service Coordinator dsc 3390/udp # Distributed Service Coordinator savant 3391/tcp # SAVANT savant 3391/udp # SAVANT efi-lm 3392/tcp # EFI License Management efi-lm 3392/udp # EFI License Management d2k-tapestry1 3393/tcp # D2K Tapestry Client to Server d2k-tapestry1 3393/udp # D2K Tapestry Client to Server d2k-tapestry2 3394/tcp # D2K Tapestry Server to Server d2k-tapestry2 3394/udp # D2K Tapestry Server to Server dyna-lm 3395/tcp # Dyna License Manager (Elam) dyna-lm 3395/udp # Dyna License Manager (Elam) printer_agent 3396/tcp # Printer Agent printer_agent 3396/udp # Printer Agent cloanto-lm 3397/tcp # Cloanto License Manager cloanto-lm 3397/udp # Cloanto License Manager mercantile 3398/tcp # Mercantile mercantile 3398/udp # Mercantile csms 3399/tcp # CSMS csms 3399/udp # CSMS csms2 3400/tcp # CSMS2 csms2 3400/udp # CSMS2 filecast 3401/tcp # filecast filecast 3401/udp # filecast fxaengine-net 3402/tcp # FXa Engine Network Port fxaengine-net 3402/udp # FXa Engine Network Port copysnap 3403/tcp # CopySnap Server Port copysnap 3403/udp # CopySnap Server Port nokia-ann-ch1 3405/tcp # Nokia Announcement ch 1 nokia-ann-ch1 3405/udp # Nokia Announcement ch 1 nokia-ann-ch2 3406/tcp # Nokia Announcement ch 2 nokia-ann-ch2 3406/udp # Nokia Announcement ch 2 ldap-admin 3407/tcp # LDAP admin server port ldap-admin 3407/udp # LDAP admin server port issapi 3408/tcp # POWERpack API Port issapi 3408/udp # POWERpack API Port networklens 3409/tcp # NetworkLens Event Port networklens 3409/udp # NetworkLens Event Port networklenss 3410/tcp # NetworkLens SSL Event networklenss 3410/udp # NetworkLens SSL Event biolink-auth 3411/tcp # BioLink Authenteon server biolink-auth 3411/udp # BioLink Authenteon server xmlblaster 3412/tcp # xmlBlaster xmlblaster 3412/udp # xmlBlaster svnet 3413/tcp # SpecView Networking svnet 3413/udp # SpecView Networking wip-port 3414/tcp # BroadCloud WIP Port wip-port 3414/udp # BroadCloud WIP Port bcinameservice 3415/tcp # BCI Name Service bcinameservice 3415/udp # BCI Name Service commandport 3416/tcp # AirMobile IS Command Port commandport 3416/udp # AirMobile IS Command Port csvr 3417/tcp # ConServR file translation csvr 3417/udp # ConServR file translation rnmap 3418/tcp # Remote nmap rnmap 3418/udp # Remote nmap softaudit 3419/tcp # Isogon SoftAudit softaudit 3419/udp # ISogon SoftAudit ifcp-port 3420/tcp # iFCP User Port ifcp-port 3420/udp # iFCP User Port bmap 3421/tcp # Bull Apprise portmapper bmap 3421/udp # Bull Apprise portmapper rusb-sys-port 3422/tcp # Remote USB System Port rusb-sys-port 3422/udp # Remote USB System Port xtrm 3423/tcp # xTrade Reliable Messaging xtrm 3423/udp # xTrade Reliable Messaging xtrms 3424/tcp # xTrade over TLS/SSL xtrms 3424/udp # xTrade over TLS/SSL agps-port 3425/tcp # AGPS Access Port agps-port 3425/udp # AGPS Access Port arkivio 3426/tcp # Arkivio Storage Protocol arkivio 3426/udp # Arkivio Storage Protocol websphere-snmp 3427/tcp # WebSphere SNMP websphere-snmp 3427/udp # WebSphere SNMP twcss 3428/tcp # 2Wire CSS twcss 3428/udp # 2Wire CSS gcsp 3429/tcp # GCSP user port gcsp 3429/udp # GCSP user port ssdispatch 3430/tcp # Scott Studios Dispatch ssdispatch 3430/udp # Scott Studios Dispatch ndl-als 3431/tcp # Active License Server Port ndl-als 3431/udp # Active License Server Port osdcp 3432/tcp # Secure Device Protocol osdcp 3432/udp # Secure Device Protocol alta-smp 3433/tcp # Altaworks Service Management Platform alta-smp 3433/udp # Altaworks Service Management Platform opencm 3434/tcp # OpenCM Server opencm 3434/udp # OpenCM Server pacom 3435/tcp # Pacom Security User Port pacom 3435/udp # Pacom Security User Port gc-config 3436/tcp # GuardControl Exchange Protocol gc-config 3436/udp # GuardControl Exchange Protocol autocueds 3437/tcp # Autocue Directory Service autocueds 3437/udp # Autocue Directory Service spiral-admin 3438/tcp # Spiralcraft Admin spiral-admin 3438/udp # Spiralcraft Admin hri-port 3439/tcp # HRI Interface Port hri-port 3439/udp # HRI Interface Port ans-console 3440/tcp # Net Steward Mgmt Console ans-console 3440/udp # Net Steward Mgmt Console connect-client 3441/tcp # OC Connect Client connect-client 3441/udp # OC Connect Client connect-server 3442/tcp # OC Connect Server connect-server 3442/udp # OC Connect Server ov-nnm-websrv 3443/tcp # OpenView Network Node Manager WEB Server ov-nnm-websrv 3443/udp # OpenView Network Node Manager WEB Server denali-server 3444/tcp # Denali Server denali-server 3444/udp # Denali Server monp 3445/tcp # Media Object Network monp 3445/udp # Media Object Network 3comfaxrpc 3446/tcp # 3Com FAX RPC port 3comfaxrpc 3446/udp # 3Com FAX RPC port cddn 3447/tcp # CompuDuo DirectNet cddn 3447/udp # CompuDuo DirectNet dnc-port 3448/tcp # Discovery and Net Config dnc-port 3448/udp # Discovery and Net Config hotu-chat 3449/tcp # HotU Chat hotu-chat 3449/udp # HotU Chat castorproxy 3450/tcp # CAStorProxy castorproxy 3450/udp # CAStorProxy asam 3451/tcp # ASAM Services asam 3451/udp # ASAM Services sabp-signal 3452/tcp # SABP-Signalling Protocol sabp-signal 3452/udp # SABP-Signalling Protocol pscupd 3453/tcp # PSC Update Port pscupd 3453/udp # PSC Update Port mira 3454/tcp # Apple Remote Access Protocol prsvp 3455/tcp # RSVP Port prsvp 3455/udp # 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 d3winosfi 3458/tcp # D3WinOSFI d3winosfi 3458/udp # D3WinOSFI integral 3459/tcp # TIP Integral integral 3459/udp # TIP Integral edm-manager 3460/tcp # EDM Manger edm-manager 3460/udp # EDM Manger edm-stager 3461/tcp # EDM Stager edm-stager 3461/udp # EDM Stager edm-std-notify 3462/tcp # EDM STD Notify edm-std-notify 3462/udp # EDM STD Notify edm-adm-notify 3463/tcp # EDM ADM Notify edm-adm-notify 3463/udp # EDM ADM Notify edm-mgr-sync 3464/tcp # EDM MGR Sync edm-mgr-sync 3464/udp # EDM MGR Sync edm-mgr-cntrl 3465/tcp # EDM MGR Cntrl edm-mgr-cntrl 3465/udp # EDM MGR Cntrl workflow 3466/tcp # WORKFLOW workflow 3466/udp # WORKFLOW rcst 3467/tcp # RCST rcst 3467/udp # RCST ttcmremotectrl 3468/tcp # TTCM Remote Controll ttcmremotectrl 3468/udp # TTCM Remote Controll pluribus 3469/tcp # Pluribus pluribus 3469/udp # Pluribus jt400 3470/tcp # jt400 jt400 3470/udp # jt400 jt400-ssl 3471/tcp # jt400-ssl jt400-ssl 3471/udp # jt400-ssl jaugsremotec-1 3472/tcp # JAUGS N-G Remotec 1 jaugsremotec-1 3472/udp # JAUGS N-G Remotec 1 jaugsremotec-2 3473/tcp # JAUGS N-G Remotec 2 jaugsremotec-2 3473/udp # JAUGS N-G Remotec 2 ttntspauto 3474/tcp # TSP Automation ttntspauto 3474/udp # TSP Automation genisar-port 3475/tcp # Genisar Comm Port genisar-port 3475/udp # Genisar Comm Port nppmp 3476/tcp # NVIDIA Mgmt Protocol nppmp 3476/udp # NVIDIA Mgmt Protocol ecomm 3477/tcp # eComm link port ecomm 3477/udp # eComm link port nat-stun-port 3478/tcp # Simple Traversal of UDP Through NAT (STUN) port nat-stun-port 3478/udp # Simple Traversal of UDP Through NAT (STUN) port twrpc 3479/tcp # 2Wire RPC twrpc 3479/udp # 2Wire RPC plethora 3480/tcp # Secure Virtual Workspace plethora 3480/udp # Secure Virtual Workspace cleanerliverc 3481/tcp # CleanerLive remote ctrl cleanerliverc 3481/udp # CleanerLive remote ctrl vulture 3482/tcp # Vulture Monitoring System vulture 3482/udp # Vulture Monitoring System slim-devices 3483/tcp # Slim Devices Protocol slim-devices 3483/udp # Slim Devices Protocol gbs-stp 3484/tcp # GBS SnapTalk Protocol gbs-stp 3484/udp # GBS SnapTalk Protocol celatalk 3485/tcp # CelaTalk celatalk 3485/udp # CelaTalk ifsf-hb-port 3486/tcp # IFSF Heartbeat Port ifsf-hb-port 3486/udp # IFSF Heartbeat Port ltctcp 3487/tcp # LISA TCP Transfer Channel ltcudp 3487/udp # LISA UDP Transfer Channel fs-rh-srv 3488/tcp # FS Remote Host Server fs-rh-srv 3488/udp # FS Remote Host Server dtp-dia 3489/tcp # DTP/DIA dtp-dia 3489/udp # DTP/DIA colubris 3490/tcp # Colubris Management Port colubris 3490/udp # Colubris Management Port swr-port 3491/tcp # SWR Port swr-port 3491/udp # SWR Port tvdumtray-port 3492/tcp # TVDUM Tray Port tvdumtray-port 3492/udp # TVDUM Tray Port nut 3493/tcp # Network UPS Tools nut 3493/udp # Network UPS Tools ibm3494 3494/tcp # IBM 3494 ibm3494 3494/udp # IBM 3494 seclayer-tcp 3495/tcp # securitylayer over tcp seclayer-tcp 3495/udp # securitylayer over tcp seclayer-tls 3496/tcp # securitylayer over tls seclayer-tls 3496/udp # securitylayer over tls ipether232port 3497/tcp # ipEther232Port ipether232port 3497/udp # ipEther232Port dashpas-port 3498/tcp # DASHPAS user port dashpas-port 3498/udp # DASHPAS user port sccip-media 3499/tcp # SccIP Media sccip-media 3499/udp # SccIP Media rtmp-port 3500/tcp # RTMP Port rtmp-port 3500/udp # RTMP Port isoft-p2p 3501/tcp # iSoft-P2P isoft-p2p 3501/udp # iSoft-P2P avinstalldisc 3502/tcp # Avocent Install Discovery avinstalldisc 3502/udp # Avocent Install Discovery lsp-ping 3503/tcp # MPLS LSP-echo Port lsp-ping 3503/udp # MPLS LSP-echo Port ironstorm 3504/tcp # IronStorm game server ironstorm 3504/udp # IronStorm game server ccmcomm 3505/tcp # CCM communications port ccmcomm 3505/udp # CCM communications port apc-3506 3506/tcp # APC 3506 apc-3506 3506/udp # APC 3506 nesh-broker 3507/tcp # Nesh Broker Port nesh-broker 3507/udp # Nesh Broker Port interactionweb 3508/tcp # Interaction Web interactionweb 3508/udp # Interaction Web vt-ssl 3509/tcp # Virtual Token SSL Port vt-ssl 3509/udp # Virtual Token SSL Port xss-port 3510/tcp # XSS Port xss-port 3510/udp # XSS Port webmail-2 3511/tcp # WebMail/2 webmail-2 3511/udp # WebMail/2 aztec 3512/tcp # Aztec Distribution Port aztec 3512/udp # Aztec Distribution Port arcpd 3513/tcp # Adaptec Remote Protocol arcpd 3513/udp # Adaptec Remote Protocol must-p2p 3514/tcp # MUST Peer to Peer must-p2p 3514/udp # MUST Peer to Peer must-backplane 3515/tcp # MUST Backplane must-backplane 3515/udp # MUST Backplane smartcard-port 3516/tcp # Smartcard Port smartcard-port 3516/udp # Smartcard Port 802-11-iapp 3517/tcp # IEEE 802.11 WLANs WG IAPP 802-11-iapp 3517/udp # IEEE 802.11 WLANs WG IAPP artifact-msg 3518/tcp # Artifact Message Server artifact-msg 3518/udp # Artifact Message Server galileo 3519/udp # Netvion Galileo Port nvmsgd 3519/tcp # Netvion Messenger Port galileolog 3520/tcp # Netvion Galileo Log Port galileolog 3520/udp # Netvion Galileo Log Port mc3ss 3521/tcp # Telequip Labs MC3SS mc3ss 3521/udp # Telequip Labs MC3SS nssocketport 3522/tcp # DO over NSSocketPort nssocketport 3522/udp # DO over NSSocketPort odeumservlink 3523/tcp # Odeum Serverlink odeumservlink 3523/udp # Odeum Serverlink ecmport 3524/tcp # ECM Server port ecmport 3524/udp # ECM Server port eisport 3525/tcp # EIS Server port eisport 3525/udp # EIS Server port starquiz-port 3526/tcp # starQuiz Port starquiz-port 3526/udp # starQuiz Port beserver-msg-q 3527/tcp # VERITAS Backup Exec Server beserver-msg-q 3527/udp # VERITAS Backup Exec Server jboss-iiop 3528/tcp # JBoss IIOP jboss-iiop 3528/udp # JBoss IIOP jboss-iiop-ssl 3529/tcp # JBoss IIOP/SSL jboss-iiop-ssl 3529/udp # JBoss IIOP/SSL gf 3530/tcp # Grid Friendly gf 3530/udp # Grid Friendly joltid 3531/tcp # Joltid joltid 3531/udp # Joltid raven-rmp 3532/tcp # Raven Remote Management Control raven-rmp 3532/udp # Raven Remote Management Control raven-rdp 3533/tcp # Raven Remote Management Data raven-rdp 3533/udp # Raven Remote Management Data urld-port 3534/tcp # URL Daemon Port urld-port 3534/udp # URL Daemon Port ms-la 3535/tcp # MS-LA ms-la 3535/udp # MS-LA snac 3536/tcp # SNAC snac 3536/udp # SNAC ni-visa-remote 3537/tcp # Remote NI-VISA port ni-visa-remote 3537/udp # Remote NI-VISA port ibm-diradm 3538/tcp # IBM Directory Server ibm-diradm 3538/udp # IBM Directory Server ibm-diradm-ssl 3539/tcp # IBM Directory Server SSL ibm-diradm-ssl 3539/udp # IBM Directory Server SSL pnrp-port 3540/tcp # PNRP User Port pnrp-port 3540/udp # PNRP User Port voispeed-port 3541/tcp # VoiSpeed Port voispeed-port 3541/udp # VoiSpeed Port hacl-monitor 3542/tcp # HA cluster monitor hacl-monitor 3542/udp # HA cluster monitor qftest-lookup 3543/tcp # qftest Lookup Port qftest-lookup 3543/udp # qftest Lookup Port teredo 3544/tcp # Teredo Port teredo 3544/udp # Teredo Port camac 3545/tcp # CAMAC equipment camac 3545/udp # CAMAC equipment symantec-sim 3547/tcp # Symantec SIM symantec-sim 3547/udp # Symantec SIM interworld 3548/tcp # Interworld interworld 3548/udp # Interworld tellumat-nms 3549/tcp # Tellumat MDR NMS tellumat-nms 3549/udp # Tellumat MDR NMS ssmpp 3550/tcp # Secure SMPP ssmpp 3550/udp # Secure SMPP apcupsd 3551/tcp # Apcupsd Information Port apcupsd 3551/udp # Apcupsd Information Port taserver 3552/tcp # TeamAgenda Server Port taserver 3552/udp # TeamAgenda Server Port rbr-discovery 3553/tcp # Red Box Recorder ADP rbr-discovery 3553/udp # Red Box Recorder ADP questnotify 3554/tcp # Quest Notification Server questnotify 3554/udp # Quest Notification Server razor 3555/tcp # Vipul's Razor razor 3555/udp # Vipul's Razor sky-transport 3556/tcp # Sky Transport Protocol sky-transport 3556/udp # Sky Transport Protocol personalos-001 3557/tcp # PersonalOS Comm Port personalos-001 3557/udp # PersonalOS Comm Port mcp-port 3558/tcp # MCP user port mcp-port 3558/udp # MCP user port cctv-port 3559/tcp # CCTV control port cctv-port 3559/udp # CCTV control port iniserve-port 3560/tcp # INIServe port iniserve-port 3560/udp # INIServe port bmc-onekey 3561/tcp # BMC-OneKey bmc-onekey 3561/udp # BMC-OneKey sdbproxy 3562/tcp # SDBProxy sdbproxy 3562/udp # SDBProxy watcomdebug 3563/tcp # Watcom Debug watcomdebug 3563/udp # Watcom Debug esimport 3564/tcp # Electromed SIM port esimport 3564/udp # Electromed SIM port m2pa 3565/sctp # M2PA m2pa 3565/tcp # M2PA quest-launcher 3566/tcp # Quest Agent Manager quest-launcher 3566/udp # Quest Agent Manager emware-oft 3567/tcp # emWare OFT Services emware-oft 3567/udp # emWare OFT Services emware-epss 3568/tcp # emWare EMIT/Secure emware-epss 3568/udp # emWare EMIT/Secure mbg-ctrl 3569/tcp # Meinberg Control Service mbg-ctrl 3569/udp # Meinberg Control Service mccwebsvr-port 3570/tcp # MCC Web Server Port mccwebsvr-port 3570/udp # MCC Web Server Port megardsvr-port 3571/tcp # MegaRAID Server Port megardsvr-port 3571/udp # MegaRAID Server Port megaregsvrport 3572/tcp # Registration Server Port megaregsvrport 3572/udp # Registration Server Port tag-ups-1 3573/tcp # Advantage Group UPS Suite tag-ups-1 3573/udp # Advantage Group UPS Suite dmaf-caster 3574/udp # DMAF Caster dmaf-server 3574/tcp # DMAF Server ccm-port 3575/tcp # Coalsere CCM Port ccm-port 3575/udp # Coalsere CCM Port cmc-port 3576/tcp # Coalsere CMC Port cmc-port 3576/udp # Coalsere CMC Port config-port 3577/tcp # Configuration Port config-port 3577/udp # Configuration Port data-port 3578/tcp # Data Port data-port 3578/udp # Data Port ttat3lb 3579/tcp # Tarantella Load Balancing ttat3lb 3579/udp # Tarantella Load Balancing nati-svrloc 3580/tcp # NATI-ServiceLocator nati-svrloc 3580/udp # NATI-ServiceLocator kfxaclicensing 3581/tcp # Ascent Capture Licensing kfxaclicensing 3581/udp # Ascent Capture Licensing press 3582/tcp # PEG PRESS Server press 3582/udp # PEG PRESS Server canex-watch 3583/tcp # CANEX Watch System canex-watch 3583/udp # CANEX Watch System u-dbap 3584/tcp # U-DBase Access Protocol u-dbap 3584/udp # U-DBase Access Protocol emprise-lls 3585/tcp # Emprise License Server emprise-lls 3585/udp # Emprise License Server emprise-lsc 3586/tcp # License Server Console emprise-lsc 3586/udp # License Server Console p2pgroup 3587/tcp # Peer to Peer Grouping p2pgroup 3587/udp # Peer to Peer Grouping sentinel 3588/tcp # Sentinel Server sentinel 3588/udp # Sentinel Server isomair 3589/tcp # isomair isomair 3589/udp # isomair wv-csp-sms 3590/tcp # WV CSP SMS Binding wv-csp-sms 3590/udp # WV CSP SMS Binding gtrack-server 3591/tcp # LOCANIS G-TRACK Server gtrack-server 3591/udp # LOCANIS G-TRACK Server gtrack-ne 3592/tcp # LOCANIS G-TRACK NE Port gtrack-ne 3592/udp # LOCANIS G-TRACK NE Port bpmd 3593/tcp # BP Model Debugger bpmd 3593/udp # BP Model Debugger mediaspace 3594/tcp # MediaSpace mediaspace 3594/udp # MediaSpace shareapp 3595/tcp # ShareApp shareapp 3595/udp # ShareApp iw-mmogame 3596/tcp # Illusion Wireless MMOG iw-mmogame 3596/udp # Illusion Wireless MMOG a14 3597/tcp # A14 (AN-to-SC/MM) a14 3597/udp # A14 (AN-to-SC/MM) a15 3598/tcp # A15 (AN-to-AN) a15 3598/udp # A15 (AN-to-AN) quasar-server 3599/tcp # Quasar Accounting Server quasar-server 3599/udp # Quasar Accounting Server trap-daemon 3600/tcp # text relay-answer trap-daemon 3600/udp # text relay-answer visinet-gui 3601/tcp # Visinet Gui visinet-gui 3601/udp # Visinet Gui infiniswitchcl 3602/tcp # InfiniSwitch Mgr Client infiniswitchcl 3602/udp # InfiniSwitch Mgr Client int-rcv-cntrl 3603/tcp # Integrated Rcvr Control int-rcv-cntrl 3603/udp # Integrated Rcvr Control bmc-jmx-port 3604/tcp # BMC JMX Port bmc-jmx-port 3604/udp # BMC JMX Port comcam-io 3605/tcp # ComCam IO Port comcam-io 3605/udp # ComCam IO Port splitlock 3606/tcp # Splitlock Server splitlock 3606/udp # Splitlock Server precise-i3 3607/tcp # Precise I3 precise-i3 3607/udp # Precise I3 trendchip-dcp 3608/tcp # Trendchip control protocol trendchip-dcp 3608/udp # Trendchip control protocol cpdi-pidas-cm 3609/tcp # CPDI PIDAS Connection Mon cpdi-pidas-cm 3609/udp # CPDI PIDAS Connection Mon echonet 3610/tcp # ECHONET echonet 3610/udp # ECHONET six-degrees 3611/tcp # Six Degrees Port six-degrees 3611/udp # Six Degrees Port hp-dataprotect 3612/tcp # HP Data Protector hp-dataprotect 3612/udp # HP Data Protector alaris-disc 3613/tcp # Alaris Device Discovery alaris-disc 3613/udp # Alaris Device Discovery sigma-port 3614/tcp # Invensys Sigma Port sigma-port 3614/udp # Invensys Sigma Port start-network 3615/tcp # Start Messaging Network start-network 3615/udp # Start Messaging Network cd3o-protocol 3616/tcp # cd3o Control Protocol cd3o-protocol 3616/udp # cd3o Control Protocol sharp-server 3617/tcp # ATI SHARP Logic Engine sharp-server 3617/udp # ATI SHARP Logic Engine aairnet-1 3618/tcp # AAIR-Network 1 aairnet-1 3618/udp # AAIR-Network 1 aairnet-2 3619/tcp # AAIR-Network 2 aairnet-2 3619/udp # AAIR-Network 2 ep-pcp 3620/tcp # EPSON Projector Control Port ep-pcp 3620/udp # EPSON Projector Control Port ep-nsp 3621/tcp # EPSON Network Screen Port ep-nsp 3621/udp # EPSON Network Screen Port ff-lr-port 3622/tcp # FF LAN Redundancy Port ff-lr-port 3622/udp # FF LAN Redundancy Port haipe-discover 3623/tcp # HAIPIS Dynamic Discovery haipe-discover 3623/udp # HAIPIS Dynamic Discovery dist-upgrade 3624/tcp # Distributed Upgrade Port dist-upgrade 3624/udp # Distributed Upgrade Port volley 3625/tcp # Volley volley 3625/udp # Volley bvcdaemon-port 3626/tcp # bvControl Daemon bvcdaemon-port 3626/udp # bvControl Daemon jamserverport 3627/tcp # Jam Server Port jamserverport 3627/udp # Jam Server Port ept-machine 3628/tcp # EPT Machine Interface ept-machine 3628/udp # EPT Machine Interface escvpnet 3629/tcp # ESC/VP.net escvpnet 3629/udp # ESC/VP.net cs-remote-db 3630/tcp # C&S Remote Database Port cs-remote-db 3630/udp # C&S Remote Database Port cs-services 3631/tcp # C&S Web Services Port cs-services 3631/udp # C&S Web Services Port distcc 3632/tcp # distcc wacp 3633/tcp # Wyrnix AIS port wacp 3633/udp # Wyrnix AIS port hlibmgr 3634/tcp # hNTSP Library Manager hlibmgr 3634/udp # hNTSP Library Manager sdo 3635/tcp # Simple Distributed Objects sdo 3635/udp # Simple Distributed Objects opscenter 3636/tcp # OpsCenter opscenter 3636/udp # OpsCenter scservp 3637/tcp # Customer Service Port scservp 3637/udp # Customer Service Port ehp-backup 3638/tcp # EHP Backup Protocol ehp-backup 3638/udp # EHP Backup Protocol xap-ha 3639/tcp # Extensible Automation xap-ha 3639/udp # Extensible Automation netplay-port1 3640/tcp # Netplay Port 1 netplay-port1 3640/udp # Netplay Port 1 netplay-port2 3641/tcp # Netplay Port 2 netplay-port2 3641/udp # Netplay Port 2 juxml-port 3642/tcp # Juxml Replication port juxml-port 3642/udp # Juxml Replication port audiojuggler 3643/tcp # AudioJuggler audiojuggler 3643/udp # AudioJuggler ssowatch 3644/tcp # ssowatch ssowatch 3644/udp # ssowatch cyc 3645/tcp # Cyc cyc 3645/udp # Cyc xss-srv-port 3646/tcp # XSS Server Port xss-srv-port 3646/udp # XSS Server Port splitlock-gw 3647/tcp # Splitlock Gateway splitlock-gw 3647/udp # Splitlock Gateway fjcp 3648/tcp # Fujitsu Cooperation Port fjcp 3648/udp # Fujitsu Cooperation Port nmmp 3649/tcp # Nishioka Miyuki Msg Protocol nmmp 3649/udp # Nishioka Miyuki Msg Protocol prismiq-plugin 3650/tcp # PRISMIQ VOD plug-in prismiq-plugin 3650/udp # PRISMIQ VOD plug-in xrpc-registry 3651/tcp # XRPC Registry xrpc-registry 3651/udp # XRPC Registry vxcrnbuport 3652/tcp # VxCR NBU Default Port vxcrnbuport 3652/udp # VxCR NBU Default Port tsp 3653/tcp # Tunnel Setup Protocol tsp 3653/udp # Tunnel Setup Protocol vaprtm 3654/tcp # VAP RealTime Messenger vaprtm 3654/udp # VAP RealTime Messenger abatemgr 3655/tcp # ActiveBatch Exec Agent abatemgr 3655/udp # ActiveBatch Exec Agent abatjss 3656/tcp # ActiveBatch Job Scheduler abatjss 3656/udp # ActiveBatch Job Scheduler immedianet-bcn 3657/tcp # ImmediaNet Beacon immedianet-bcn 3657/udp # ImmediaNet Beacon ps-ams 3658/tcp # PlayStation AMS (Secure) ps-ams 3658/udp # PlayStation AMS (Secure) apple-sasl 3659/tcp # Apple SASL apple-sasl 3659/udp # Apple SASL can-nds-ssl 3660/tcp # Candle Directory Services using SSL can-nds-ssl 3660/udp # Candle Directory Services using SSL can-ferret-ssl 3661/tcp # Candle Directory Services using SSL can-ferret-ssl 3661/udp # Candle Directory Services using SSL pserver 3662/tcp # pserver pserver 3662/udp # pserver dtp 3663/tcp # DIRECWAY Tunnel Protocol dtp 3663/udp # DIRECWAY Tunnel Protocol ups-engine 3664/tcp # UPS Engine Port ups-engine 3664/udp # UPS Engine Port ent-engine 3665/tcp # Enterprise Engine Port ent-engine 3665/udp # Enterprise Engine Port eserver-pap 3666/tcp # IBM eServer PAP eserver-pap 3666/udp # IBM EServer PAP infoexch 3667/tcp # IBM Information Exchange infoexch 3667/udp # IBM Information Exchange dell-rm-port 3668/tcp # Dell Remote Management dell-rm-port 3668/udp # Dell Remote Management casanswmgmt 3669/tcp # CA SAN Switch Management casanswmgmt 3669/udp # CA SAN Switch Management smile 3670/tcp # SMILE TCP/UDP Interface smile 3670/udp # SMILE TCP/UDP Interface efcp 3671/tcp # e Field Control (EIBnet) efcp 3671/udp # e Field Control (EIBnet) lispworks-orb 3672/tcp # LispWorks ORB lispworks-orb 3672/udp # LispWorks ORB mediavault-gui 3673/tcp # Openview Media Vault GUI mediavault-gui 3673/udp # Openview Media Vault GUI wininstall-ipc 3674/tcp # WinINSTALL IPC Port wininstall-ipc 3674/udp # WinINSTALL IPC Port calltrax 3675/tcp # CallTrax Data Port calltrax 3675/udp # CallTrax Data Port va-pacbase 3676/tcp # VisualAge Pacbase server va-pacbase 3676/udp # VisualAge Pacbase server roverlog 3677/tcp # RoverLog IPC roverlog 3677/udp # RoverLog IPC ipr-dglt 3678/tcp # DataGuardianLT ipr-dglt 3678/udp # DataGuardianLT newton-dock 3679/tcp # Newton Dock newton-dock 3679/udp # Newton Dock npds-tracker 3680/tcp # NPDS Tracker npds-tracker 3680/udp # NPDS Tracker bts-x73 3681/tcp # BTS X73 Port bts-x73 3681/udp # BTS X73 Port cas-mapi 3682/tcp # EMC SmartPackets-MAPI cas-mapi 3682/udp # EMC SmartPackets-MAPI bmc-ea 3683/tcp # BMC EDV/EA bmc-ea 3683/udp # BMC EDV/EA faxstfx-port 3684/tcp # FAXstfX faxstfx-port 3684/udp # FAXstfX dsx-agent 3685/tcp # DS Expert Agent dsx-agent 3685/udp # DS Expert Agent tnmpv2 3686/tcp # Trivial Network Management tnmpv2 3686/udp # Trivial Network Management simple-push 3687/tcp # simple-push simple-push 3687/udp # simple-push simple-push-s 3688/tcp # simple-push Secure simple-push-s 3688/udp # simple-push Secure daap 3689/tcp # Digital Audio Access Protocol daap 3689/udp # Digital Audio Access Protocol svn 3690/tcp # Subversion svn 3690/udp # Subversion magaya-network 3691/tcp # Magaya Network Port magaya-network 3691/udp # Magaya Network Port intelsync 3692/tcp # Brimstone IntelSync intelsync 3692/udp # Brimstone IntelSync gttp 3693/tcp # GTTP gttp 3693/udp # GTTP vpntpp 3694/tcp # VPN Token Propagation Protocol vpntpp 3694/udp # VPN Token Propagation Protocol bmc-data-coll 3695/tcp # BMC Data Collection bmc-data-coll 3695/udp # BMC Data Collection telnetcpcd 3696/tcp # Telnet Com Port Control telnetcpcd 3696/udp # Telnet Com Port Control nw-license 3697/tcp # NavisWorks License System nw-license 3697/udp # NavisWorks Licnese System sagectlpanel 3698/tcp # SAGECTLPANEL sagectlpanel 3698/udp # SAGECTLPANEL kpn-icw 3699/tcp # Internet Call Waiting kpn-icw 3699/udp # Internet Call Waiting lrs-paging 3700/tcp # LRS NetPage lrs-paging 3700/udp # LRS NetPage netcelera 3701/tcp # NetCelera netcelera 3701/udp # NetCelera ws-discovery 3702/tcp # Web Service Discovery ws-discovery 3702/udp # Web Service Discovery adobeserver-3 3703/tcp # Adobe Server 3 adobeserver-3 3703/udp # Adobe Server 3 adobeserver-4 3704/tcp # Adobe Server 4 adobeserver-4 3704/udp # Adobe Server 4 adobeserver-5 3705/tcp # Adobe Server 5 adobeserver-5 3705/udp # Adobe Server 5 rt-event 3706/tcp # Real-Time Event Port rt-event 3706/udp # Real-Time Event Port rt-event-s 3707/tcp # Real-Time Event Secure Port rt-event-s 3707/udp # Real-Time Event Secure Port sun-as-iiops 3708/tcp # Sun App Svr - Naming sun-as-iiops 3708/udp # Sun App Svr - Naming ca-idms 3709/tcp # CA-IDMS Server ca-idms 3709/udp # CA-IDMS Server portgate-auth 3710/tcp # PortGate Authentication portgate-auth 3710/udp # PortGate Authentication edb-server2 3711/tcp # EBD Server 2 edb-server2 3711/udp # EBD Server 2 sentinel-ent 3712/tcp # Sentinel Enterprise sentinel-ent 3712/udp # Sentinel Enterprise tftps 3713/tcp # TFTP over TLS tftps 3713/udp # TFTP over TLS delos-dms 3714/tcp # DELOS Direct Messaging delos-dms 3714/udp # DELOS Direct Messaging anoto-rendezv 3715/tcp # Anoto Rendezvous Port anoto-rendezv 3715/udp # Anoto Rendezvous Port wv-csp-sms-cir 3716/tcp # WV CSP SMS CIR Channel wv-csp-sms-cir 3716/udp # WV CSP SMS CIR Channel wv-csp-udp-cir 3717/tcp # WV CSP UDP/IP CIR Channel wv-csp-udp-cir 3717/udp # WV CSP UDP/IP CIR Channel opus-services 3718/tcp # OPUS Server Port opus-services 3718/udp # OPUS Server Port itelserverport 3719/tcp # iTel Server Port itelserverport 3719/udp # iTel Server Port ufastro-instr 3720/tcp # UF Astro. Instr. Services ufastro-instr 3720/udp # UF Astro. Instr. Services xsync 3721/tcp # Xsync xsync 3721/udp # Xsync xserveraid 3722/tcp # Xserve RAID xserveraid 3722/udp # Xserve RAID sychrond 3723/tcp # Sychron Service Daemon sychrond 3723/udp # Sychron Service Daemon blizwow 3724/tcp # World of Warcraft blizwow 3724/udp # World of Warcraft na-er-tip 3725/tcp # Netia NA-ER Port na-er-tip 3725/udp # Netia NA-ER Port array-manager 3726/tcp # Xyratex Array Manager array-manager 3726/udp # Xyartex Array Manager e-mdu 3727/tcp # Ericsson Mobile Data Unit e-mdu 3727/udp # Ericsson Mobile Data Unit e-woa 3728/tcp # Ericsson Web on Air e-woa 3728/udp # Ericsson Web on Air fksp-audit 3729/tcp # Fireking Audit Port fksp-audit 3729/udp # Fireking Audit Port client-ctrl 3730/tcp # Client Control client-ctrl 3730/udp # Client Control smap 3731/tcp # Service Manager smap 3731/udp # Service Manager m-wnn 3732/tcp # Mobile Wnn m-wnn 3732/udp # Mobile Wnn multip-msg 3733/tcp # Multipuesto Msg Port multip-msg 3733/udp # Multipuesto Msg Port synel-data 3734/tcp # Synel Data Collection Port synel-data 3734/udp # Synel Data Collection Port pwdis 3735/tcp # Password Distribution pwdis 3735/udp # Password Distribution rs-rmi 3736/tcp # RealSpace RMI rs-rmi 3736/udp # RealSpace RMI versatalk 3738/tcp # versaTalk Server Port versatalk 3738/udp # versaTalk Server Port launchbird-lm 3739/tcp # Launchbird LicenseManager launchbird-lm 3739/udp # Launchbird LicenseManager heartbeat 3740/tcp # Heartbeat Protocol heartbeat 3740/udp # Heartbeat Protocol wysdma 3741/tcp # WysDM Agent wysdma 3741/udp # WysDM Agent cst-port 3742/tcp # CST - Configuration & Service Tracker cst-port 3742/udp # CST - Configuration & Service Tracker ipcs-command 3743/tcp # IP Control Systems Ltd. ipcs-command 3743/udp # IP Control Systems Ltd. sasg 3744/tcp # SASG sasg 3744/udp # SASG gw-call-port 3745/tcp # GWRTC Call Port gw-call-port 3745/udp # GWRTC Call Port linktest 3746/tcp # LXPRO.COM LinkTest linktest 3746/udp # LXPRO.COM LinkTest linktest-s 3747/tcp # LXPRO.COM LinkTest SSL linktest-s 3747/udp # LXPRO.COM LinkTest SSL webdata 3748/tcp # webData webdata 3748/udp # webData cimtrak 3749/tcp # CimTrak cimtrak 3749/udp # CimTrak cbos-ip-port 3750/tcp # CBOS/IP ncapsalation port cbos-ip-port 3750/udp # CBOS/IP ncapsalatoin port gprs-cube 3751/tcp # CommLinx GPRS Cube gprs-cube 3751/udp # CommLinx GPRS Cube vipremoteagent 3752/tcp # Vigil-IP RemoteAgent vipremoteagent 3752/udp # Vigil-IP RemoteAgent nattyserver 3753/tcp # NattyServer Port nattyserver 3753/udp # NattyServer Port timestenbroker 3754/tcp # TimesTen Broker Port timestenbroker 3754/udp # TimesTen Broker Port sas-remote-hlp 3755/tcp # SAS Remote Help Server sas-remote-hlp 3755/udp # SAS Remote Help Server canon-capt 3756/tcp # Canon CAPT Port canon-capt 3756/udp # Canon CAPT Port grf-port 3757/tcp # GRF Server Port grf-port 3757/udp # GRF Server Port apw-registry 3758/tcp # apw RMI registry apw-registry 3758/udp # apw RMI registry exapt-lmgr 3759/tcp # Exapt License Manager exapt-lmgr 3759/udp # Exapt License Manager adtempusclient 3760/tcp # adTempus Client adtempusclient 3760/udp # adTEmpus Client gsakmp 3761/tcp # gsakmp port gsakmp 3761/udp # gsakmp port gbs-smp 3762/tcp # GBS SnapMail Protocol gbs-smp 3762/udp # GBS SnapMail Protocol xo-wave 3763/tcp # XO Wave Control Port xo-wave 3763/udp # XO Wave Control Port mni-prot-rout 3764/tcp # MNI Protected Routing mni-prot-rout 3764/udp # MNI Protected Routing rtraceroute 3765/tcp # Remote Traceroute rtraceroute 3765/udp # Remote Traceroute listmgr-port 3767/tcp # ListMGR Port listmgr-port 3767/udp # ListMGR Port rblcheckd 3768/tcp # rblcheckd server daemon rblcheckd 3768/udp # rblcheckd server daemon haipe-otnk 3769/tcp # HAIPE Network Keying haipe-otnk 3769/udp # HAIPE Network Keying cindycollab 3770/tcp # Cinderella Collaboration cindycollab 3770/udp # Cinderella Collaboration paging-port 3771/tcp # RTP Paging Port paging-port 3771/udp # RTP Paging Port ctp 3772/tcp # Chantry Tunnel Protocol ctp 3772/udp # Chantry Tunnel Protocol ctdhercules 3773/tcp # ctdhercules ctdhercules 3773/udp # ctdhercules zicom 3774/tcp # ZICOM zicom 3774/udp # ZICOM ispmmgr 3775/tcp # ISPM Manager Port ispmmgr 3775/udp # ISPM Manager Port dvcprov-port 3776/tcp # Device Provisioning Port dvcprov-port 3776/udp # Device Provisioning Port jibe-eb 3777/tcp # Jibe EdgeBurst jibe-eb 3777/udp # Jibe EdgeBurst c-h-it-port 3778/tcp # Cutler-Hammer IT Port c-h-it-port 3778/udp # Cutler-Hammer IT Port cognima 3779/tcp # Cognima Replication cognima 3779/udp # Cognima Replication nnp 3780/tcp # Nuzzler Network Protocol nnp 3780/udp # Nuzzler Network Protocol abcvoice-port 3781/tcp # ABCvoice server port abcvoice-port 3781/udp # ABCvoice server port iso-tp0s 3782/tcp # Secure ISO TP0 port iso-tp0s 3782/udp # Secure ISO TP0 port bim-pem 3783/tcp # Impact Mgr./PEM Gateway bim-pem 3783/udp # Impact Mgr./PEM Gateway bfd-control 3784/tcp # BFD Control Protocol bfd-control 3784/udp # BFD Control Protocol bfd-echo 3785/tcp # BFD Echo Protocol bfd-echo 3785/udp # BFD Echo Protocol upstriggervsw 3786/tcp # VSW Upstrigger port upstriggervsw 3786/udp # VSW Upstrigger port fintrx 3787/tcp # Fintrx fintrx 3787/udp # Fintrx isrp-port 3788/tcp # SPACEWAY Routing port isrp-port 3788/udp # SPACEWAY Routing port remotedeploy 3789/tcp # RemoteDeploy Administration Port remotedeploy 3789/udp # RemoteDeploy Administration Port quickbooksrds 3790/tcp # QuickBooks RDS quickbooksrds 3790/udp # QuickBooks RDS tvnetworkvideo 3791/tcp # TV NetworkVideo Data port tvnetworkvideo 3791/udp # TV NetworkVideo Data port sitewatch 3792/tcp # e-watch, Inc. SiteWatch sitewatch 3792/udp # e-watch, Inc. Sitewatch dcsoftware 3793/tcp # DataCore Software dcsoftware 3793/udp # DataCore Software jaus 3794/tcp # JAUS Robots jaus 3794/udp # JAUS Robots myblast 3795/tcp # myBLAST Mekentosj port myblast 3795/udp # myBLAST Mekentosj port spw-dialer 3796/tcp # Spaceway Dialer spw-dialer 3796/udp # Spaceway Dialer idps 3797/tcp # idps idps 3797/udp # idps minilock 3798/tcp # Minilock minilock 3798/udp # Minilock radius-dynauth 3799/tcp # RADIUS Dynamic Authorization radius-dynauth 3799/udp # RADIUS Dynamic Authorization pwgpsi 3800/tcp # Print Services Interface pwgpsi 3800/udp # Print Services Interface vhd 3802/tcp # VHD vhd 3802/udp # VHD soniqsync 3803/tcp # SoniqSync soniqsync 3803/udp # SoniqSync iqnet-port 3804/tcp # Harman IQNet Port iqnet-port 3804/udp # Harman IQNet Port tcpdataserver 3805/tcp # ThorGuard Server Port tcpdataserver 3805/udp # ThorGuard Server Port wsmlb 3806/tcp # Remote System Manager wsmlb 3806/udp # Remote System Manager spugna 3807/tcp # SpuGNA Communication Port spugna 3807/udp # SpuGNA Communication Port sun-as-iiops-ca 3808/tcp # Sun App Svr-IIOPClntAuth sun-as-iiops-ca 3808/udp # Sun App Svr-IIOPClntAuth wlanauth 3810/tcp # WLAN AS server wlanauth 3810/udp # WLAN AS server amp 3811/tcp # AMP amp 3811/udp # AMP neto-wol-server 3812/tcp # netO WOL Server neto-wol-server 3812/udp # netO WOL Server rap-ip 3813/tcp # Rhapsody Interface Protocol rap-ip 3813/udp # Rhapsody Interface Protocol neto-dcs 3814/tcp # netO DCS neto-dcs 3814/udp # netO DCS lansurveyorxml 3815/tcp # LANsurveyor XML lansurveyorxml 3815/udp # LANsurveyor XML sunlps-http 3816/tcp # Sun Local Patch Server sunlps-http 3816/udp # Sun Local Patch Server tapeware 3817/tcp # Yosemite Tech Tapeware tapeware 3817/udp # Yosemite Tech Tapeware crinis-hb 3818/tcp # Crinis Heartbeat crinis-hb 3818/udp # Crinis Heartbeat epl-slp 3819/tcp # EPL Sequ Layer Protocol epl-slp 3819/udp # EPL Sequ Layer Protocol scp 3820/tcp # Siemens AuD SCP scp 3820/udp # Siemens AuD SCP pmcp 3821/tcp # ATSC PMCP Standard pmcp 3821/udp # ATSC PMCP Standard acp-discovery 3822/tcp # Compute Pool Discovery acp-discovery 3822/udp # Compute Pool Discovery acp-conduit 3823/tcp # Compute Pool Conduit acp-conduit 3823/udp # Compute Pool Conduit acp-policy 3824/tcp # Compute Pool Policy acp-policy 3824/udp # Compute Pool Policy markem-dcp 3836/tcp # MARKEM NEXTGEN DCP markem-dcp 3836/udp # MARKEM NEXTGEN DCP mkm-discovery 3837/tcp # MARKEM Auto-Discovery mkm-discovery 3837/udp # MARKEM Auto-Discovery sos 3838/tcp # Scito Object Server sos 3838/udp # Scito Object Server amx-rms 3839/tcp # AMX Resource Management Suite amx-rms 3839/udp # AMX Resource Management Suite flirtmitmir 3840/tcp # www.FlirtMitMir.de flirtmitmir 3840/udp # www.FlirtMitMir.de zfirm-shiprush3 3841/tcp # Z-Firm ShipRush v3 zfirm-shiprush3 3841/udp # Z-Firm ShipRush v3 nhci 3842/tcp # NHCI status port nhci 3842/udp # NHCI status port quest-agent 3843/tcp # Quest Common Agent quest-agent 3843/udp # Quest Common Agent rnm 3844/tcp # RNM rnm 3844/udp # RNM v-one-spp 3845/tcp # V-ONE Single Port Proxy v-one-spp 3845/udp # V-ONE Single Port Proxy an-pcp 3846/tcp # Astare Network PCP an-pcp 3846/udp # Astare Network PCP msfw-control 3847/tcp # MS Firewall Control msfw-control 3847/udp # MS Firewall Control item 3848/tcp # IT Environmental Monitor item 3848/udp # IT Environmental Monitor spw-dnspreload 3849/tcp # SPACEWAY DNS Preload spw-dnspreload 3849/udp # SPACEWAY DNS Prelaod qtms-bootstrap 3850/tcp # QTMS Bootstrap Protocol qtms-bootstrap 3850/udp # QTMS Bootstrap Protocol spectraport 3851/tcp # SpectraTalk Port spectraport 3851/udp # SpectraTalk Port sse-app-config 3852/tcp # SSE App Configuration sse-app-config 3852/udp # SSE App Configuration sscan 3853/tcp # SONY scanning protocol sscan 3853/udp # SONY scanning protocol stryker-com 3854/tcp # Stryker Comm Port stryker-com 3854/udp # Stryker Comm Port opentrac 3855/tcp # OpenTRAC opentrac 3855/udp # OpenTRAC informer 3856/tcp # INFORMER informer 3856/udp # INFORMER trap-port 3857/tcp # Trap Port trap-port 3857/udp # Trap Port trap-port-mom 3858/tcp # Trap Port MOM trap-port-mom 3858/udp # Trap Port MOM nav-port 3859/tcp # Navini Port nav-port 3859/udp # Navini Port ewlm 3860/tcp # eWLM ewlm 3860/udp # eWLM winshadow-hd 3861/tcp # winShadow Host Discovery winshadow-hd 3861/udp # winShadow Host Discovery giga-pocket 3862/tcp # GIGA-POCKET giga-pocket 3862/udp # GIGA-POCKET asap-sctp 3863/sctp # asap sctp asap-tcp 3863/tcp # asap tcp port asap-tcp 3863/udp # asap tcp port asap-tcp-tls 3864/tcp # asap/tls tcp port asap-tcp-tls 3864/udp # asap/tls tcp port xpl 3865/tcp # xpl automation protocol xpl 3865/udp # xpl automation protocol dzdaemon 3866/tcp # Sun SDViz DZDAEMON Port dzdaemon 3866/udp # Sun SDViz DZDAEMON Port dzoglserver 3867/tcp # Sun SDViz DZOGLSERVER Port dzoglserver 3867/udp # Sun SDViz DZOGLSERVER Port diameter 3868/sctp # DIAMETER diameter 3868/tcp # DIAMETER ovsam-mgmt 3869/tcp # hp OVSAM MgmtServer Disco ovsam-mgmt 3869/udp # hp OVSAM MgmtServer Disco ovsam-d-agent 3870/tcp # hp OVSAM HostAgent Disco ovsam-d-agent 3870/udp # hp OVSAM HostAgent Disco avocent-adsap 3871/tcp # Avocent DS Authorization avocent-adsap 3871/udp # Avocent DS Authorization oem-agent 3872/tcp # OEM Agent oem-agent 3872/udp # OEM Agent fagordnc 3873/tcp # fagordnc fagordnc 3873/udp # fagordnc sixxsconfig 3874/tcp # SixXS Configuration sixxsconfig 3874/udp # SixXS Configuration pnbscada 3875/tcp # PNBSCADA pnbscada 3875/udp # PNBSCADA dl_agent 3876/tcp # DirectoryLockdown Agent dl_agent 3876/udp # DirectoryLockdown Agent xmpcr-interface 3877/tcp # XMPCR Interface Port xmpcr-interface 3877/udp # XMPCR Interface Port fotogcad 3878/tcp # FotoG CAD interface fotogcad 3878/udp # FotoG CAD interface appss-lm 3879/tcp # appss license manager appss-lm 3879/udp # appss license manager microgrid 3880/tcp # microgrid microgrid 3880/udp # microgrid idac 3881/tcp # Data Acquisition and Control idac 3881/udp # Data Acquisition and Control msdts1 3882/tcp # DTS Service Port msdts1 3882/udp # DTS Service Port vrpn 3883/tcp # VR Peripheral Network vrpn 3883/udp # VR Peripheral Network softrack-meter 3884/tcp # SofTrack Metering softrack-meter 3884/udp # SofTrack Metering topflow-ssl 3885/tcp # TopFlow SSL topflow-ssl 3885/udp # TopFlow SSL nei-management 3886/tcp # NEI management port nei-management 3886/udp # NEI management port ciphire-data 3887/tcp # Ciphire Data Transport ciphire-data 3887/udp # Ciphire Data Transport ciphire-serv 3888/tcp # Ciphire Services ciphire-serv 3888/udp # Ciphire Services dandv-tester 3889/tcp # D and V Tester Control Port dandv-tester 3889/udp # D and V Tester Control Port ndsconnect 3890/tcp # Niche Data Server Connect ndsconnect 3890/udp # Niche Data Server Connect rtc-pm-port 3891/tcp # Oracle RTC-PM port rtc-pm-port 3891/udp # Oracle RTC-PM port pcc-image-port 3892/tcp # PCC-image-port pcc-image-port 3892/udp # PCC-image-port cgi-starapi 3893/tcp # CGI StarAPI Server cgi-starapi 3893/udp # CGI StarAPI Server syam-agent 3894/tcp # SyAM Agent Port syam-agent 3894/udp # SyAM Agent Port syam-smc 3895/tcp # SyAm SMC Service Port syam-smc 3895/udp # SyAm SMC Service Port sdo-tls 3896/tcp # Simple Distributed Objects over TLS sdo-tls 3896/udp # Simple Distributed Objects over TLS sdo-ssh 3897/tcp # Simple Distributed Objects over SSH sdo-ssh 3897/udp # Simple Distributed Objects over SSH senip 3898/tcp # IAS, Inc. SmartEye NET Internet Protocol senip 3898/udp # IAS, Inc. SmartEye NET Internet Protocol itv-control 3899/tcp # ITV Port itv-control 3899/udp # ITV Port nimsh 3901/tcp # NIM Service Handler nimsh 3901/udp # NIM Service Handler nimaux 3902/tcp # NIMsh Auxiliary Port nimaux 3902/udp # NIMsh Auxiliary Port charsetmgr 3903/tcp # CharsetMGR charsetmgr 3903/udp # CharsetMGR omnilink-port 3904/tcp # Arnet Omnilink Port omnilink-port 3904/udp # Arnet Omnilink Port mupdate 3905/tcp # Mailbox Update (MUPDATE) protocol mupdate 3905/udp # Mailbox Update (MUPDATE) protocol topovista-data 3906/tcp # TopoVista elevation data topovista-data 3906/udp # TopoVista elevation data imoguia-port 3907/tcp # Imoguia Port imoguia-port 3907/udp # Imoguia Port hppronetman 3908/tcp # HP Procurve NetManagement hppronetman 3908/udp # HP Procurve NetManagement surfcontrolcpa 3909/tcp # SurfControl CPA surfcontrolcpa 3909/udp # SurfControl CPA prnrequest 3910/tcp # Printer Request Port prnrequest 3910/udp # Printer Request Port prnstatus 3911/tcp # Printer Status Port prnstatus 3911/udp # Printer Status Port gbmt-stars 3912/tcp # Global Maintech Stars gbmt-stars 3912/udp # Global Maintech Stars listcrt-port 3913/tcp # ListCREATOR Port listcrt-port 3913/udp # ListCREATOR Port listcrt-port-2 3914/tcp # ListCREATOR Port 2 listcrt-port-2 3914/udp # ListCREATOR Port 2 agcat 3915/tcp # Auto-Graphics Cataloging agcat 3915/udp # Auto-Graphics Cataloging wysdmc 3916/tcp # WysDM Controller wysdmc 3916/udp # WysDM Controller aftmux 3917/tcp # AFT multiplex port aftmux 3917/udp # AFT multiples port pktcablemmcops 3918/tcp # PacketCableMultimediaCOPS pktcablemmcops 3918/udp # PacketCableMultimediaCOPS hyperip 3919/tcp # HyperIP hyperip 3919/udp # HyperIP exasoftport1 3920/tcp # Exasoft IP Port exasoftport1 3920/udp # Exasoft IP Port herodotus-net 3921/tcp # Herodotus Net herodotus-net 3921/udp # Herodotus Net sor-update 3922/tcp # Soronti Update Port sor-update 3922/udp # Soronti Update Port symb-sb-port 3923/tcp # Symbian Service Broker symb-sb-port 3923/udp # Symbian Service Broker mpl-gprs-port 3924/tcp # MPL_GPRS_PORT mpl-gprs-port 3924/udp # MPL_GPRS_Port zmp 3925/tcp # Zoran Media Port zmp 3925/udp # Zoran Media Port winport 3926/tcp # WINPort winport 3926/udp # WINPort natdataservice 3927/tcp # ScsTsr natdataservice 3927/udp # ScsTsr netboot-pxe 3928/tcp # PXE NetBoot Manager netboot-pxe 3928/udp # PXE NetBoot Manager smauth-port 3929/tcp # AMS Port smauth-port 3929/udp # AMS Port syam-webserver 3930/tcp # Syam Web Server Port syam-webserver 3930/udp # Syam Web Server Port msr-plugin-port 3931/tcp # MSR Plugin Port msr-plugin-port 3931/udp # MSR Plugin Port dyn-site 3932/tcp # Dynamic Site System dyn-site 3932/udp # Dynamic Site System plbserve-port 3933/tcp # PL/B App Server User Port plbserve-port 3933/udp # PL/B App Server User Port sunfm-port 3934/tcp # PL/B File Manager Port sunfm-port 3934/udp # PL/B File Manager Port sdp-portmapper 3935/tcp # SDP Port Mapper Protocol sdp-portmapper 3935/udp # SDP Port Mapper Protocol mailprox 3936/tcp # Mailprox mailprox 3936/udp # Mailprox dvbservdscport 3937/tcp # DVB Service Disc Port dvbservdscport 3937/udp # DVB Service Disc Port dbcontrol_agent 3938/tcp # Oracle dbControl Agent po dbcontrol_agent 3938/udp # Oracel dbControl Agent po aamp 3939/tcp # Anti-virus Application Management Port aamp 3939/udp # Anti-virus Application Management Port xecp-node 3940/tcp # XeCP Node Service xecp-node 3940/udp # XeCP Node Service homeportal-web 3941/tcp # Home Portal Web Server homeportal-web 3941/udp # Home Portal Web Server srdp 3942/tcp # satellite distribution srdp 3942/udp # satellite distribution tig 3943/tcp # TetraNode Ip Gateway tig 3943/udp # TetraNode Ip Gateway sops 3944/tcp # S-Ops Management sops 3944/udp # S-Ops Management emcads 3945/tcp # EMCADS Server Port emcads 3945/udp # EMCADS Server Port backupedge 3946/tcp # BackupEDGE Server backupedge 3946/udp # BackupEDGE Server ccp 3947/tcp # Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices ccp 3947/udp # Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices apdap 3948/tcp # Anton Paar Device Administration Protocol apdap 3948/udp # Anton Paar Device Administration Protocol drip 3949/tcp # Dynamic Routing Information Protocol drip 3949/udp # Dynamic Routing Information Protocol namemunge 3950/tcp # Name Munging namemunge 3950/udp # Name Munging pwgippfax 3951/tcp # PWG IPP Facsimile pwgippfax 3951/udp # PWG IPP Facsimile i3-sessionmgr 3952/tcp # I3 Session Manager i3-sessionmgr 3952/udp # I3 Session Manager xmlink-connect 3953/tcp # Eydeas XMLink Connect xmlink-connect 3953/udp # Eydeas XMLink Connect adrep 3954/tcp # AD Replication RPC adrep 3954/udp # AD Replication RPC p2pcommunity 3955/tcp # p2pCommunity p2pcommunity 3955/udp # p2pCommunity gvcp 3956/tcp # GigE Vision Control gvcp 3956/udp # GigE Vision Control mqe-broker 3957/tcp # MQEnterprise Broker mqe-broker 3957/udp # MQEnterprise Broker mqe-agent 3958/tcp # MQEnterprise Agent mqe-agent 3958/udp # MQEnterprise Agent treehopper 3959/tcp # Tree Hopper Networking treehopper 3959/udp # Tree Hopper Networking bess 3960/tcp # Bess Peer Assessment bess 3960/udp # Bess Peer Assessment proaxess 3961/tcp # ProAxess Server proaxess 3961/udp # ProAxess Server sbi-agent 3962/tcp # SBI Agent Protocol sbi-agent 3962/udp # SBI Agent Protocol thrp 3963/tcp # Teran Hybrid Routing Protocol thrp 3963/udp # Teran Hybrid Routing Protocol sasggprs 3964/tcp # SASG GPRS sasggprs 3964/udp # SASG GPRS ati-ip-to-ncpe 3965/tcp # Avanti IP to NCPE API ati-ip-to-ncpe 3965/udp # Avanti IP to NCPE API bflckmgr 3966/tcp # BuildForge Lock Manager bflckmgr 3966/udp # BuildForge Lock Manager ppsms 3967/tcp # PPS Message Service ppsms 3967/udp # PPS Message Service ianywhere-dbns 3968/tcp # iAnywhere DBNS ianywhere-dbns 3968/udp # iAnywhere DBNS landmarks 3969/tcp # Landmark Messages landmarks 3969/udp # Landmark Messages cobraclient 3970/tcp # Cobra Client cobraclient 3970/udp # Cobra Client cobraserver 3971/tcp # Cobra Server cobraserver 3971/udp # Cobra Server iconp 3972/tcp # ict-control Protocol iconp 3972/udp # ict-control Protocol progistics 3973/tcp # ConnectShip Progistics progistics 3973/udp # ConnectShip Progistics citysearch 3974/tcp # Remote Applicant Tracking Service citysearch 3974/udp # Remote Applicant Tracking Service airshot 3975/tcp # Air Shot airshot 3975/udp # Air Shot 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 centerline 3987/tcp # Centerline centerline 3987/udp # Centerline dcs-config 3988/tcp # DCS Configuration Port dcs-config 3988/udp # DCS Configuration Port bv-queryengine 3989/tcp # BindView-Query Engine bv-queryengine 3989/udp # BindView-Query Engine bv-is 3990/tcp # BindView-IS bv-is 3990/udp # BindView-IS bv-smcsrv 3991/tcp # BindView-SMCServer bv-smcsrv 3991/udp # BindView-SMCServer bv-ds 3992/tcp # BindView-DirectoryServer bv-ds 3992/udp # BindView-DirectoryServer bv-agent 3993/tcp # BindView-Agent bv-agent 3993/udp # BindView-Agent iss-mgmt-ssl 3995/tcp # ISS Management Svcs SSL iss-mgmt-ssl 3995/udp # ISS Management Svcs SSL abcsoftware 3996/tcp # abcsoftware-01 abscoftware 3996/udp # abcsoftware-01 terabase 4000/tcp # Terabase terabase 4000/udp # Terabase newoak 4001/tcp # NewOak newoak 4001/udp # NewOak pxc-spvr-ft 4002/tcp # pxc-spvr-ft pxc-spvr-ft 4002/udp # pxc-spvr-ft pxc-splr-ft 4003/tcp # pxc-splr-ft pxc-splr-ft 4003/udp # pxc-splr-ft pxc-roid 4004/tcp # pxc-roid pxc-roid 4004/udp # pxc-roid pxc-pin 4005/tcp # pxc-pin pxc-pin 4005/udp # pxc-pin pxc-spvr 4006/tcp # pxc-spvr pxc-spvr 4006/udp # pxc-spvr pxc-splr 4007/tcp # pxc-splr pxc-splr 4007/udp # pxc-splr netcheque 4008/tcp # NetCheque accounting netcheque 4008/udp # NetCheque accounting chimera-hwm 4009/tcp # Chimera HWM chimera-hwm 4009/udp # Chimera HWM samsung-unidex 4010/tcp # Samsung Unidex samsung-unidex 4010/udp # Samsung Unidex pxe 4011/udp # PXE server pda-gate 4012/tcp # PDA Gate pda-gate 4012/udp # PDA Gate acl-manager 4013/tcp # ACL Manager acl-manager 4013/udp # ACL Manager taiclock 4014/tcp # TAICLOCK taiclock 4014/udp # TAICLOCK talarian-mcast1 4015/tcp # Talarian Mcast talarian-mcast1 4015/udp # Talarian Mcast talarian-mcast2 4016/tcp # Talarian Mcast talarian-mcast2 4016/udp # Talarian Mcast talarian-mcast3 4017/tcp # Talarian Mcast talarian-mcast3 4017/udp # Talarian Mcast talarian-mcast4 4018/tcp # Talarian Mcast talarian-mcast4 4018/udp # Talarian Mcast talarian-mcast5 4019/tcp # Talarian Mcast talarian-mcast5 4019/udp # Talarian Mcast trap 4020/tcp # TRAP Port trap 4020/udp # TRAP Port nexus-portal 4021/tcp # Nexus Portal nexus-portal 4021/udp # Nexus Portal dnox 4022/tcp # DNOX dnox 4022/udp # DNOX esnm-zoning 4023/tcp # ESNM Zoning Port esnm-zoning 4023/udp # ESNM Zoning Port tnp1-port 4024/tcp # TNP1 User Port tnp1-port 4024/udp # TNP1 User Port partimage 4025/tcp # Partition Image Port partimage 4025/udp # Partition Image Port as-debug 4026/tcp # Graphical Debug Server as-debug 4026/udp # Graphical Debug Server bxp 4027/tcp # bitxpress bxp 4027/udp # bitxpress dtserver-port 4028/tcp # DTServer Port dtserver-port 4028/udp # DTServer Port ip-qsig 4029/tcp # IP Q signaling protocol ip-qsig 4029/udp # IP Q signaling protocol jdmn-port 4030/tcp # Accell/JSP Daemon Port jdmn-port 4030/udp # Accell/JSP Daemon Port suucp 4031/tcp # UUCP over SSL suucp 4031/udp # UUCP over SSL vrts-auth-port 4032/tcp # VERITAS Authorization Service vrts-auth-port 4032/udp # VERITAS Authorization Service sanavigator 4033/tcp # SANavigator Peer Port sanavigator 4033/udp # SANavigator Peer Port ubxd 4034/tcp # Ubiquinox Daemon ubxd 4034/udp # Ubiquinox Daemon wap-push-http 4035/tcp # WAP Push OTA-HTTP port wap-push-http 4035/udp # WAP Push OTA-HTTP port wap-push-https 4036/tcp # WAP Push OTA-HTTP secure wap-push-https 4036/udp # WAP Push OTA-HTTP secure ravehd 4037/tcp # RaveHD network control ravehd 4037/udp # RaveHD network control yo-main 4040/tcp # Yo.net main service yo-main 4040/udp # Yo.net main service houston 4041/tcp # Rocketeer-Houston houston 4041/udp # Rocketeer-Houston ldxp 4042/tcp # LDXP ldxp 4042/udp # LDXP nirp 4043/tcp # Neighbour Identity Resolution nirp 4043/udp # Neighbour Identity Resolution ltp 4044/tcp # Location Tracking Protocol ltp 4044/udp # Location Tracking Protocol acp-proto 4046/tcp # Accounting Protocol acp-proto 4046/udp # Accounting Protocol ctp-state 4047/tcp # Context Transfer Protocol ctp-state 4047/udp # Context Transfer Protocol wafs 4049/tcp # Wide Area File Services wafs 4049/udp # Wide Area File Services cisco-wafs 4050/tcp # Wide Area File Services cisco-wafs 4050/udp # Wide Area File Services bre 4096/tcp # BRE (Bridge Relay Element) bre 4096/udp # BRE (Bridge Relay Element) patrolview 4097/tcp # Patrol View patrolview 4097/udp # Patrol View drmsfsd 4098/tcp # drmsfsd drmsfsd 4098/udp # drmsfsd dpcp 4099/tcp # DPCP dpcp 4099/udp # DPCP igo-incognito 4100/tcp # IGo Incognito Data Port igo-incognito 4100/udp # IGo Incognito Data Port xgrid 4111/tcp # Xgrid xgrid 4111/udp # Xgrid jomamqmonitor 4114/tcp # JomaMQMonitor jomamqmonitor 4114/udp # JomaMQMonitor 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 nifty-hmi 4134/tcp # NIFTY-Serve HMI protocol nifty-hmi 4134/udp # NIFTY-Serve HMI protocol nettest 4138/tcp # nettest nettest 4138/udp # nettest oirtgsvc 4141/tcp # Workflow Server oirtgsvc 4141/udp # Workflow Server oidocsvc 4142/tcp # Document Server oidocsvc 4142/udp # Document Server oidsr 4143/tcp # Document Replication oidsr 4143/udp # Document Replication vvr-control 4145/tcp # VVR Control vvr-control 4145/udp # VVR Control atlinks 4154/tcp # atlinks device discovery atlinks 4154/udp # atlinks device discovery jini-discovery 4160/tcp # Jini Discovery jini-discovery 4160/udp # Jini Discovery omscontact 4161/tcp # OMS Contact omscontact 4161/udp # OMS Contact omstopology 4162/tcp # OMS Topology omstopology 4162/udp # OMS Topology eims-admin 4199/tcp # EIMS ADMIN eims-admin 4199/udp # EIMS ADMIN fud 4201/udp # Cyrus IMAP FUD Daemon corelccam 4300/tcp # Corel CCam corelccam 4300/udp # Corel CCam rwhois 4321/tcp # Remote Who Is rwhois 4321/udp # Remote Who Is unicall 4343/tcp # UNICALL unicall 4343/udp # UNICALL vinainstall 4344/tcp # VinaInstall vinainstall 4344/udp # VinaInstall m4-network-as 4345/tcp # Macro 4 Network AS m4-network-as 4345/udp # Macro 4 Network AS elanlm 4346/tcp # ELAN LM elanlm 4346/udp # ELAN LM lansurveyor 4347/tcp # LAN Surveyor lansurveyor 4347/udp # LAN Surveyor itose 4348/tcp # ITOSE itose 4348/udp # ITOSE fsportmap 4349/tcp # File System Port Map fsportmap 4349/udp # File System Port Map net-device 4350/tcp # Net Device net-device 4350/udp # Net Device plcy-net-svcs 4351/tcp # PLCY Net Services plcy-net-svcs 4351/udp # PLCY Net Services pjlink 4352/tcp # Projector Link pjlink 4352/udp # Projector Link f5-iquery 4353/tcp # F5 iQuery f5-iquery 4353/udp # F5 iQuery qsnet-trans 4354/tcp # QSNet Transmitter qsnet-trans 4354/udp # QSNet Transmitter qsnet-workst 4355/tcp # QSNet Workstation qsnet-workst 4355/udp # QSNet Workstation qsnet-assist 4356/tcp # QSNet Assistant qsnet-assist 4356/udp # QSNet Assistant qsnet-cond 4357/tcp # QSNet Conductor qsnet-cond 4357/udp # QSNet Conductor qsnet-nucl 4358/tcp # QSNet Nucleus qsnet-nucl 4358/udp # QSNet Nucleus epmd 4369/tcp # Erlang Port Mapper Daemon epmd 4369/udp # Erlang Port Mapper Daemon ds-srv 4400/tcp # ASIGRA Services ds-srv 4400/udp # ASIGRA Services ds-srvr 4401/tcp # ASIGRA Televaulting DS-System Service ds-srvr 4401/udp # ASIGRA Televaulting DS-System Service ds-clnt 4402/tcp # ASIGRA Televaulting DS-Client Service ds-clnt 4402/udp # ASIGRA Televaulting DS-Client Service ds-user 4403/tcp # ASIGRA Televaulting DS-Client Monitoring/Management ds-user 4403/udp # ASIGRA Televaulting DS-Client Monitoring/Management ds-admin 4404/tcp # ASIGRA Televaulting DS-System Monitoring/Management ds-admin 4404/udp # ASIGRA Televaulting DS-System Monitoring/Management ds-mail 4405/tcp # ASIGRA Televaulting Message Level Restore service ds-mail 4405/udp # ASIGRA Televaulting Message Level Restore service ds-slp 4406/tcp # ASIGRA Televaulting DS-Sleeper Service ds-slp 4406/udp # ASIGRA Televaulting DS-Sleeper Service beacon-port-2 4426/tcp # SMARTS Beacon Port beacon-port-2 4426/udp # SMARTS Beacon Port saris 4442/tcp # Saris saris 4442/udp # Saris pharos 4443/tcp # Pharos pharos 4443/udp # Pharos krb524 4444/tcp # Kerberos 5 to 4 ticket xlator krb524 4444/udp # Kerberos 5 to 4 ticket xlator upnotifyp 4445/tcp # UPNOTIFYP upnotifyp 4445/udp # UPNOTIFYP n1-fwp 4446/tcp # N1-FWP n1-fwp 4446/udp # N1-FWP n1-rmgmt 4447/tcp # N1-RMGMT n1-rmgmt 4447/udp # N1-RMGMT asc-slmd 4448/tcp # ASC Licence Manager asc-slmd 4448/udp # ASC Licence Manager privatewire 4449/tcp # PrivateWire privatewire 4449/udp # PrivateWire camp 4450/tcp # Camp camp 4450/udp # Camp ctisystemmsg 4451/tcp # CTI System Msg ctisystemmsg 4451/udp # CTI System Msg ctiprogramload 4452/tcp # CTI Program Load ctiprogramload 4452/udp # CTI Program Load nssalertmgr 4453/tcp # NSS Alert Manager nssalertmgr 4453/udp # NSS Alert Manager nssagentmgr 4454/tcp # NSS Agent Manager nssagentmgr 4454/udp # NSS Agent Manager prchat-user 4455/tcp # PR Chat User prchat-user 4455/udp # PR Chat User prchat-server 4456/tcp # PR Chat Server prchat-server 4456/udp # PR Chat Server prRegister 4457/tcp # PR Register prRegister 4457/udp # PR Register hpssmgmt 4484/tcp # hpssmgmt service hpssmgmt 4484/udp # hpssmgmt service ipsec-nat-t 4500/tcp # IPsec NAT-Traversal ipsec-nat-t 4500/udp # IPsec NAT-Traversal ehs 4535/tcp # Event Heap Server ehs 4535/udp # Event Heap Server ehs-ssl 4536/tcp # Event Heap Server SSL ehs-ssl 4536/udp # Event Heap Server SSL wssauthsvc 4537/tcp # WSS Security Service wssauthsvc 4537/udp # WSS Security Service worldscores 4545/tcp # WorldScores worldscores 4545/udp # WorldScores sf-lm 4546/tcp # SF License Manager (Sentinel) sf-lm 4546/udp # SF License Manager (Sentinel) lanner-lm 4547/tcp # Lanner License Manager lanner-lm 4547/udp # Lanner License Manager rsip 4555/tcp # RSIP Port rsip 4555/udp # RSIP Port fax 4557/tcp # FAX transmission service (old) hylafax 4559/tcp # HylaFAX client-server protocol (new) tram 4567/tcp # TRAM tram 4567/udp # TRAM bmc-reporting 4568/tcp # BMC Reporting bmc-reporting 4568/udp # BMC Reporting iax 4569/tcp # Inter-Asterisk eXchange iax 4569/udp # Inter-Asterisk eXchange a16-an-an 4598/tcp # A16 (AN-AN) a16-an-an 4598/udp # A16 (AN-AN) piranha1 4600/tcp # Piranha1 piranha1 4600/udp # Piranha1 piranha2 4601/tcp # Piranha2 piranha2 4601/udp # Piranha2 playsta2-app 4658/tcp # PlayStation2 App Port playsta2-app 4658/udp # PlayStation2 App Port playsta2-lob 4659/tcp # PlayStation2 Lobby Port playsta2-lob 4659/udp # PlayStation2 Lobby Port smaclmgr 4660/tcp # smaclmgr smaclmgr 4660/udp # smaclmgr kar2ouche 4661/tcp # Kar2ouche Peer location service kar2ouche 4661/udp # Kar2ouche Peer location service oms 4662/tcp # OrbitNet Message Service oms 4662/udp # OrbitNet Message Service rfa 4672/tcp # remote file access server rfa 4672/udp # remote file access server cxws 4673/tcp # CXWS Operations cxws 4673/udp # CXWS Operations appiq-mgmt 4674/tcp # AppIQ Agent Management appiq-mgmt 4674/udp # AppIQ Agent Management dhct-status 4675/tcp # BIAP Device Status dhct-status 4675/udp # BIAP Device Status dhct-alerts 4676/tcp # BIAP Generic Alert dhct-alerts 4676/udp # BIAP Generic Alert bcs 4677/tcp # Business Continuity Servi bcs 4677/udp # Business Continuity Servi traversal 4678/tcp # boundary traversal traversal 4678/udp # boundary traversal mgesupervision 4679/tcp # MGE UPS Supervision mgesupervision 4679/udp # MGE UPS Supervision mgemanagement 4680/tcp # MGE UPS Management mgemanagement 4680/udp # MGE UPS Management parliant 4681/tcp # Parliant Telephony System parliant 4681/udp # Parliant Telephony System finisar 4682/tcp # finisar finisar 4682/udp # finisar spike 4683/tcp # Spike Clipboard Service spike 4683/udp # Spike Clipboard Service rfid-rp1 4684/tcp # RFID Reader Protocol 1.0 rfid-rp1 4684/udp # RFID Reader Protocol 1.0 autopac 4685/tcp # Autopac Protocol autopac 4685/udp # Autopac Protocol msp-os 4686/tcp # Manina Service Protocol msp-os 4686/udp # Manina Service Protocol nst 4687/tcp # Network Scanner Tool FTP nst 4687/udp # Network Scanner Tool FTP mobile-p2p 4688/tcp # Mobile P2P Service mobile-p2p 4688/udp # Mobile P2P Service altovacentral 4689/tcp # Altova DatabaseCentral altovacentral 4689/udp # Altova DatabaseCentral prelude 4690/tcp # Prelude IDS message proto prelude 4690/udp # Prelude IDS message proto monotone 4691/tcp # Monotone Network Protocol monotone 4691/udp # Monotone Network Protocol conspiracy 4692/tcp # Conspiracy messaging conspiracy 4692/udp # Conspiracy messaging ipdr-sp 4737/tcp # IPDR/SP ipdr-sp 4737/udp # IPDR/SP solera-lpn 4738/tcp # SoleraTec Locator solera-lpn 4738/udp # SoleraTec Locator ipfix 4739/tcp # IP Flow Info Export ipfix 4739/udp # IP Flow Info Export ssad 4750/tcp # Simple Service Auto Discovery ssad 4750/udp # Simple Service Auto Discovery spocp 4751/tcp # Simple Policy Control Protocol spocp 4751/udp # Simple Policy Control Protocol snap 4752/tcp # Simple Network Audio Protocol snap 4752/udp # Simple Network Audio Protocol iims 4800/tcp # Icona Instant Messenging System iims 4800/udp # Icona Instant Messenging System iwec 4801/tcp # Icona Web Embedded Chat iwec 4801/udp # Icona Web Embedded Chat ilss 4802/tcp # Icona License System Server ilss 4802/udp # Icona License System Server htcp 4827/tcp # HTCP htcp 4827/udp # HTCP varadero-0 4837/tcp # Varadero-0 varadero-0 4837/udp # Varadero-0 varadero-1 4838/tcp # Varadero-1 varadero-1 4838/udp # Varadero-1 varadero-2 4839/tcp # Varadero-2 varadero-2 4839/udp # Varadero-2 appserv-http 4848/tcp # App Server - Admin HTTP appserv-http 4848/udp # App Server - Admin HTTP appserv-https 4849/tcp # App Server - Admin HTTPS appserv-https 4849/udp # App Server - Admin HTTPS sun-as-nodeagt 4850/tcp # Sun App Server - NA sun-as-nodeagt 4850/udp # Sun App Server - NA phrelay 4868/tcp # Photon Relay phrelay 4868/udp # Photon Relay phrelaydbg 4869/tcp # Photon Relay Debug phrelaydbg 4869/udp # Photon Relay Debug cc-tracking 4870/tcp # Citcom Tracking Service cc-tracking 4870/udp # Citcom Tracking Service abbs 4885/tcp # ABBS abbs 4885/udp # ABBS lyskom 4894/tcp # LysKOM Protocol A lyskom 4894/udp # LysKOM Protocol A radmin-port 4899/tcp # RAdmin Port radmin-port 4899/udp # RAdmin Port munin 4949/tcp # Munin Graphing Framework munin 4949/udp # Munin Graphing Framework pwgwims 4951/tcp # PWG WIMS pwgwims 4951/udp # PWG WIMS smar-se-port1 4987/tcp # SMAR Ethernet Port 1 smar-se-port1 4987/udp # SMAR Ethernet Port 1 smar-se-port2 4988/tcp # SMAR Ethernet Port 2 smar-se-port2 4988/udp # SMAR Ethernet Port 2 parallel 4989/tcp # Parallel for GAUSS (tm) parallel 4989/udp # Parallel for GAUSS (tm) 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 # Actually uses UDP only fmpro-internal 5003/tcp # FileMaker, Inc. - Proprietary transport fmpro-internal 5003/udp # FileMaker, Inc. - Proprietary name binding avt-profile-1 5004/tcp # avt-profile-1 avt-profile-1 5004/udp # avt-profile-1 avt-profile-2 5005/tcp # avt-profile-2 avt-profile-2 5005/udp # avt-profile-2 wsm-server 5006/tcp # wsm server wsm-server 5006/udp # wsm server wsm-server-ssl 5007/tcp # wsm server ssl wsm-server-ssl 5007/udp # wsm server ssl synapsis-edge 5008/tcp # Synapsis EDGE synapsis-edge 5008/udp # Synapsis EDGE telelpathstart 5010/tcp # TelepathStart telelpathstart 5010/udp # TelepathStart telelpathattack 5011/tcp # TelepathAttack telelpathattack 5011/udp # TelepathAttack zenginkyo-1 5020/tcp # zenginkyo-1 zenginkyo-1 5020/udp # zenginkyo-1 zenginkyo-2 5021/tcp # zenginkyo-2 zenginkyo-2 5021/udp # zenginkyo-2 mice 5022/tcp # mice server mice 5022/udp # mice server htuilsrv 5023/tcp # Htuil Server for PLD2 htuilsrv 5023/udp # Htuil Server for PLD2 scpi-telnet 5024/tcp # SCPI-TELNET scpi-telnet 5024/udp # SCPI-TELNET scpi-raw 5025/tcp # SCPI-RAW scpi-raw 5025/udp # SCPI-RAW strexec-d 5026/tcp # Storix I/O daemon (data) strexec-d 5026/udp # Storix I/O daemon (data) strexec-s 5027/tcp # Storix I/O daemon (stat) strexec-s 5027/udp # Storix I/O daemon (stat) asnaacceler8db 5042/tcp # asnaacceler8db asnaacceler8db 5042/udp # asnaacceler8db swxadmin 5043/tcp # ShopWorX Administration swxadmin 5043/udp # ShopWorX Administration lxi-evntsvc 5044/tcp # LXI Event Service lxi-evntsvc 5044/udp # LXI Event Service mmcc 5050/tcp # multimedia conference control tool mmcc 5050/udp # multimedia conference control tool ita-agent 5051/tcp # ITA Agent ita-agent 5051/udp # ITA Agent ita-manager 5052/tcp # ITA Manager ita-manager 5052/udp # ITA Manager unot 5055/tcp # UNOT unot 5055/udp # UNOT intecom-ps1 5056/tcp # Intecom PS 1 intecom-ps1 5056/udp # Intecom PS 1 intecom-ps2 5057/tcp # Intecom PS 2 intecom-ps2 5057/udp # Intecom PS 2 sip 5060/tcp # SIP sip 5060/udp # SIP sip-tls 5061/tcp # SIP-TLS sip-tls 5061/udp # SIP-TLS ca-1 5064/tcp # Channel Access 1 ca-1 5064/udp # Channel Access 1 ca-2 5065/tcp # Channel Access 2 ca-2 5065/udp # Channel Access 2 stanag-5066 5066/tcp # STANAG-5066-SUBNET-INTF stanag-5066 5066/udp # STANAG-5066-SUBNET-INTF authentx 5067/tcp # Authentx Service authentx 5067/tcp # Authentx Service i-net-2000-npr 5069/tcp # I/Net 2000-NPR i-net-2000-npr 5069/udp # I/Net 2000-NPR powerschool 5071/tcp # PowerSchool powerschool 5071/udp # PowerSchool ayiya 5072/tcp # Anything In Anything ayiya 5072/udp # Anything In Anything tag-pm 5073/tcp # Advantage Group Port Mgr tag-pm 5073/udp # Advantage Group Port Mgr alesquery 5074/tcp # ALES Query alesquery 5074/udp # ALES Query sdl-ets 5081/tcp # SDL - Ent Trans Server sdl-ets 5081/udp # SDL - Ent Trans Server car 5090/sctp # Candidate AR cxtp 5091/sctp # Context Transfer Protocol sentinel-lm 5093/tcp # Sentinel LM sentinel-lm 5093/udp # Sentinel LM sentlm-srv2srv 5099/tcp # SentLM Srv2Srv sentlm-srv2srv 5099/udp # SentLM Srv2Srv socalia 5100/tcp # Socalia service mux socalia 5100/udp # Socalia service mux talarian-tcp 5101/tcp # Talarian_TCP talarian-udp 5101/udp # Talarian_UDP oms-nonsecure 5102/tcp # Oracle OMS non-secure oms-nonsecure 5102/udp # Oracle OMS non-secure pm-cmdsvr 5112/tcp # PeerMe Msg Cmd Service pm-cmdsvr 5112/udp # PeerMe Msg Cmd Service nbt-pc 5133/tcp # Policy Commander nbt-pc 5133/udp # Policy Commander ctsd 5137/tcp # MyCTS server port ctsd 5137/udp # MyCTS server port rmonitor_secure 5145/tcp # RMONITOR SECURE rmonitor_secure 5145/udp # RMONITOR SECURE atmp 5150/tcp # Ascend Tunnel Management Protocol atmp 5150/udp # Ascend Tunnel Management Protocol esri_sde 5151/tcp # ESRI SDE Instance esri_sde 5151/udp # ESRI SDE Remote Start sde-discovery 5152/tcp # ESRI SDE Instance Discovery sde-discovery 5152/udp # ESRI SDE Instance Discovery bzflag 5154/tcp # BZFlag game server bzflag 5154/udp # BZFlag game server asctrl-agent 5155/tcp # Oracle asControl Agent asctrl-agent 5155/udp # Oracle asControl Agent ife_icorp 5165/tcp # ife_1corp ife_icorp 5165/udp # ife_1corp scte104 5167/tcp # SCTE104 Connection scte104 5167/udp # SCTE104 Connection scte30 5168/tcp # SCTE30 Connection scte30 5168/udp # SCTE30 Connection 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 targus-getdata 5200/tcp # TARGUS GetData targus-getdata 5200/udp # TARGUS GetData targus-getdata1 5201/tcp # TARGUS GetData 1 targus-getdata1 5201/udp # TARGUS GetData 1 targus-getdata2 5202/tcp # TARGUS GetData 2 targus-getdata2 5202/udp # TARGUS GetData 2 targus-getdata3 5203/tcp # TARGUS GetData 3 targus-getdata3 5203/udp # TARGUS GetData 3 xmpp-client 5222/tcp # XMPP Client Connection xmpp-client 5222/udp # XMPP Client Connection hp-server 5225/tcp # HP Server hp-server 5225/udp # HP Server hp-status 5226/tcp # HP Status hp-status 5226/udp # HP Status sgi-dgl 5232/tcp # SGI Distributed Graphics sgi-dgl 5232/udp eenet 5234/tcp # EEnet communications eenet 5234/udp # EEnet communications padl2sim 5236/tcp padl2sim 5236/udp igateway 5250/tcp # iGateway igateway 5250/udp # iGateway caevms 5251/tcp # CA eTrust VM Service caevms 5251/udp # CA eTrust VM Service movaz-ssc 5252/tcp # Movaz SSC movaz-ssc 5252/udp # Movaz SSC 3com-njack-1 5264/tcp # 3Com Network Jack Port 1 3com-njack-1 5264/udp # 3Com Network Jack Port 1 3com-njack-2 5265/tcp # 3Com Network Jack Port 2 3com-njack-2 5265/udp # 3Com Network Jack Port 2 xmpp-server 5269/tcp # XMPP Server Connection xmpp-server 5269/udp # XMPP Server Connection pk 5272/tcp # PK pk 5272/udp # PK transmit-port 5282/tcp # Marimba Transmitter Port transmit-port 5282/udp # Marimba Transmitter Port 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 # HA Cluster Commands hacl-local 5304/udp # HA Cluster Commands hacl-test 5305/tcp # HA Cluster Test hacl-test 5305/udp # HA Cluster Test sun-mc-grp 5306/tcp # Sun MC Group sun-mc-grp 5306/udp # Sun MC Group sco-aip 5307/tcp # SCO AIP sco-aip 5307/udp # SCO AIP cfengine 5308/tcp # CFengine cfengine 5308/udp # CFengine jprinter 5309/tcp # J Printer jprinter 5309/udp # J Printer outlaws 5310/tcp # Outlaws outlaws 5310/udp # Outlaws permabit-cs 5312/tcp # Permabit Client-Server permabit-cs 5312/udp # Permabit Client-Server rrdp 5313/tcp # Real-time & Reliable Data rrdp 5313/udp # Real-time & Reliable Data opalis-rbt-ipc 5314/tcp # opalis-rbt-ipc opalis-rbt-ipc 5314/udp # opalis-rbt-ipc hacl-poll 5315/tcp # HA Cluster UDP Polling hacl-poll 5315/udp # HA Cluster UDP Polling kfserver 5343/tcp # Sculptor Database Server kfserver 5343/udp # Sculptor Database Server nat-pmp 5351/tcp # NAT Port Mapping Protocol nat-pmp 5351/udp # NAT Port Mapping Protocol dns-llq 5352/tcp # DNS Long-Lived Queries dns-llq 5352/udp # DNS Long-Lived Queries mdns 5353/tcp # Multicast DNS mdns 5353/udp # Multicast DNS noclog 5354/tcp # noclogd with TCP (nocol) noclog 5354/udp # noclogd with UDP (nocol) hostmon 5355/tcp # hostmon uses TCP (nocol) hostmon 5355/udp # hostmon uses TCP (nocol) ms-smlbiz 5356/tcp # Microsoft Small Business ms-smlbiz 5356/udp # Microsoft Small Business wsdapi 5357/tcp # Web Services for Devices wsdapi 5357/udp # Web Services for Devices wsdapi-s 5358/tcp # WS for Devices Secured wsdapi-s 5358/udp # WS for Devices Secured stresstester 5397/tcp # StressTester(tm) Injector stresstester 5397/udp # StressTester(tm) Injector elektron-admin 5398/tcp # Elektron Administration elektron-admin 5398/udp # Elektron Administration securitychase 5399/tcp # SecurityChase securitychase 5399/udp # SecurityChase excerpt 5400/tcp # Excerpt Search excerpt 5400/udp # Excerpt Search excerpts 5401/tcp # Excerpt Search Secure excerpts 5401/udp # Excerpt Search Secure hpoms-ci-lstn 5403/tcp # HPOMS-CI-LSTN hpoms-ci-lstn 5403/udp # HPOMS-CI-LSTN hpoms-dps-lstn 5404/tcp # HPOMS-DPS-LSTN hpoms-dps-lstn 5404/udp # HPOMS-DPS-LSTN netsupport 5405/tcp # NetSupport netsupport 5405/udp # NetSupport systemics-sox 5406/tcp # Systemics Sox systemics-sox 5406/udp # Systemics Sox foresyte-clear 5407/tcp # Foresyte-Clear foresyte-clear 5407/udp # Foresyte-Clear foresyte-sec 5408/tcp # Foresyte-Sec foresyte-sec 5408/udp # Foresyte-Sec salient-dtasrv 5409/tcp # Salient Data Server salient-dtasrv 5409/udp # Salient Data Server salient-usrmgr 5410/tcp # Salient User Manager salient-usrmgr 5410/udp # Salient User Manager actnet 5411/tcp # ActNet actnet 5411/udp # ActNet continuus 5412/tcp # Continuus continuus 5412/udp # Continuus wwiotalk 5413/tcp # WWIOTALK wwiotalk 5413/udp # WWIOTALK statusd 5414/tcp # StatusD statusd 5414/udp # StatusD ns-server 5415/tcp # NS Server ns-server 5415/udp # NS Server sns-gateway 5416/tcp # SNS Gateway sns-gateway 5416/udp # SNS Gateway sns-agent 5417/tcp # SNS Agent sns-agent 5417/udp # SNS Agent mcntp 5418/tcp # MCNTP mcntp 5418/udp # MCNTP dj-ice 5419/tcp # DJ-ICE dj-ice 5419/udp # DJ-ICE cylink-c 5420/tcp # Cylink-C cylink-c 5420/udp # Cylink-C netsupport2 5421/tcp # Net Support 2 netsupport2 5421/udp # Net Support 2 salient-mux 5422/tcp # Salient MUX salient-mux 5422/udp # Salient MUX virtualuser 5423/tcp # VIRTUALUSER virtualuser 5423/udp # VIRTUALUSER beyond-remote 5424/tcp # Beyond Remote beyond-remote 5424/udp # Beyond Remote br-channel 5425/tcp # Beyond Remote Command Channel br-channel 5425/udp # Beyond Remote Command Channel devbasic 5426/tcp # DEVBASIC devbasic 5426/udp # DEVBASIC sco-peer-tta 5427/tcp # SCO-PEER-TTA sco-peer-tta 5427/udp # SCO-PEER-TTA telaconsole 5428/tcp # TELACONSOLE telaconsole 5428/udp # TELACONSOLE base 5429/tcp # Billing and Accounting System Exchange base 5429/udp # Billing and Accounting System Exchange radec-corp 5430/tcp # RADEC CORP radec-corp 5430/udp # RADEC CORP park-agent 5431/tcp # PARK AGENT park-agent 5431/udp # PARK AGENT postgres 5432/tcp # POSTGRES postgres 5432/udp # POSTGRES pyrrho 5433/tcp # Pyrrho DBMS pyrrho 5433/udp # Pyrrho DBMS sgi-arrayd 5434/tcp # SGI Array Services Daemon sgi-arrayd 5434/udp # SGI Array Services Daemon dttl 5435/tcp # Data Tunneling Transceiver Linking (DTTL) dttl 5435/udp # Data Tunneling Transceiver Linking (DTTL) surebox 5453/tcp # SureBox surebox 5453/udp # SureBox apc-5454 5454/tcp # APC 5454 apc-5454 5454/udp # APC 5454 apc-5455 5455/tcp # APC 5455 apc-5455 5455/udp # APC 5455 apc-5456 5456/tcp # APC 5456 apc-5456 5456/udp # APC 5456 silkmeter 5461/tcp # SILKMETER silkmeter 5461/udp # SILKMETER ttl-publisher 5462/tcp # TTL Publisher ttl-publisher 5462/udp # TTL Publisher ttlpriceproxy 5463/tcp # TTL Price Proxy ttlpriceproxy 5463/udp # TTL Price Proxy netops-broker 5465/tcp # NETOPS-BROKER netops-broker 5465/udp # NETOPS-BROKER fcp-addr-srvr1 5500/tcp # fcp-addr-srvr1 fcp-addr-srvr1 5500/udp # fcp-addr-srvr1 fcp-addr-srvr2 5501/tcp # fcp-addr-srvr2 fcp-addr-srvr2 5501/udp # fcp-addr-srvr2 fcp-srvr-inst1 5502/tcp # fcp-srvr-inst1 fcp-srvr-inst1 5502/udp # fcp-srvr-inst1 fcp-srvr-inst2 5503/tcp # fcp-srvr-inst2 fcp-srvr-inst2 5503/udp # fcp-srvr-inst2 fcp-cics-gw1 5504/tcp # fcp-cics-gw1 fcp-cics-gw1 5504/udp # fcp-cics-gw1 sgi-eventmond 5553/tcp # SGI Eventmond Port sgi-eventmond 5553/udp # SGI Eventmond Port sgi-esphttp 5554/tcp # SGI ESP HTTP sgi-esphttp 5554/udp # SGI ESP HTTP personal-agent 5555/tcp # Personal Agent personal-agent 5555/udp # Personal Agent udpplus 5566/tcp # UDPPlus udpplus 5566/udp # UDPPlus emware-moap 5567/tcp # emWare Multicast OAP emware-moap 5567/udp # emWare Multicast OAP bis-web 5584/tcp # BeInSync-Web bis-web 5584/udp # BeInSync-Web bis-sync 5585/tcp # BeInSync-sync bis-sync 5585/udp # BeInSync-sync esinstall 5599/tcp # Enterprise Security Remote Install esinstall 5599/udp # Enterprise Security Remote Install esmmanager 5600/tcp # Enterprise Security Manager esmmanager 5600/udp # Enterprise Security Manager esmagent 5601/tcp # Enterprise Security Agent esmagent 5601/udp # Enterprise Security Agent a1-msc 5602/tcp # A1-MSC a1-msc 5602/udp # A1-MSC a1-bs 5603/tcp # A1-BS a1-bs 5603/udp # A1-BS a3-sdunode 5604/tcp # A3-SDUNode a3-sdunode 5604/udp # A3-SDUNode a4-sdunode 5605/tcp # A4-SDUNode a4-sdunode 5605/udp # A4-SDUNode pcanywheredata 5631/tcp # pcANYWHEREdata pcanywheredata 5631/udp # pcANYWHEREdata pcanywherestat 5632/tcp # pcANYWHEREstat pcanywherestat 5632/udp # pcANYWHEREstat amqp 5672/tcp # AMQP amqp 5672/udp # AMQP jms 5673/tcp # JACL Message Server jms 5673/udp # JACL Message Server hyperscsi-port 5674/tcp # HyperSCSI Port hyperscsi-port 5674/udp # HyperSCSI Port v5ua 5675/sctp # V5UA application port v5ua 5675/tcp # V5UA application port v5ua 5675/udp # V5UA application port raadmin 5676/tcp # RA Administration raadmin 5676/udp # RA Administration questdb2-lnchr 5677/tcp # Quest Central DB2 Launchr questdb2-lnchr 5677/udp # Quest Central DB2 Launchr rrac 5678/tcp # Remote Replication Agent Connection rrac 5678/udp # Remote Replication Agent Connection dccm 5679/tcp # Direct Cable Connect Manager dccm 5679/udp # Direct Cable Connect Manager canna 5680/tcp ggz 5688/tcp # GGZ Gaming Zone ggz 5688/udp # GGZ Gaming Zone 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 ms-licensing 5720/tcp # MS-Licensing ms-licensing 5720/udp # MS-Licensing dtpt 5721/tcp # Desktop Passthru Service dtpt 5721/udp # Desktop Passthru Service openmail 5729/tcp # Openmail User Agent Layer openmail 5729/udp # Openmail User Agent Layer unieng 5730/tcp # Steltor's calendar access unieng 5730/udp # Steltor's calendar access ida-discover1 5741/tcp # IDA Discover Port 1 ida-discover1 5741/udp # IDA Discover Port 1 ida-discover2 5742/tcp # IDA Discover Port 2 ida-discover2 5742/udp # IDA Discover Port 2 watchdoc-pod 5743/tcp # Watchdoc NetPOD Protocol watchdoc-pod 5743/udp # Watchdoc NetPOD Protocol watchdoc 5744/tcp # Watchdoc Server watchdoc 5744/udp # Watchdoc Server fcopy-server 5745/tcp # fcopy-server fcopy-server 5745/udp # fcopy-server fcopys-server 5746/tcp # fcopys-server fcopys-server 5746/udp # fcopys-server tunatic 5747/tcp # Wildbits Tunatic tunatic 5747/udp # Wildbits Tunatic tunalyzer 5748/tcp # Wildbits Tunalyzer tunalyzer 5748/udp # Wildbits Tunalyzer openmailg 5755/tcp # OpenMail Desk Gateway server openmailg 5755/udp # OpenMail Desk Gateway server x500ms 5757/tcp # OpenMail X.500 Directory Server x500ms 5757/udp # OpenMail X.500 Directory Server openmailns 5766/tcp # OpenMail NewMail Server openmailns 5766/udp # OpenMail NewMail Server s-openmail 5767/tcp # OpenMail Suer Agent Layer (Secure) s-openmail 5767/udp # OpenMail Suer Agent Layer (Secure) openmailpxy 5768/tcp # OpenMail CMTS Server openmailpxy 5768/udp # OpenMail CMTS Server netagent 5771/tcp # NetAgent netagent 5771/udp # NetAgent dali-port 5777/tcp # DALI Port dali-port 5777/udp # DALI Port icmpd 5813/tcp # ICMPD icmpd 5813/udp # ICMPD spt-automation 5814/tcp # Support Automation spt-automation 5814/udp # Support Automation icpp 5815/tcp # IceWall Cert Protocol icpp 5815/udp # IceWall Cert Protocol wherehoo 5859/tcp # WHEREHOO wherehoo 5859/udp # WHEREHOO indy 5963/tcp # Indy Application Server indy 5963/udp # Indy Application Server mppolicy-v5 5968/tcp # mppolicy-v5 mppolicy-v5 5968/udp # mppolicy-v5 mppolicy-mgr 5969/tcp # mppolicy-mgr mppolicy-mgr 5969/udp # mppolicy-mgr wbem-rmi 5987/tcp # WBEM RMI wbem-rmi 5987/udp # WBEM RMI wbem-http 5988/tcp # WBEM HTTP wbem-http 5988/udp # WBEM HTTP wbem-https 5989/tcp # WBEM HTTPS wbem-https 5989/udp # WBEM HTTPS wbem-exp-https 5990/tcp # WBEM Export HTTPS wbem-exp-https 5990/udp # WBEM Export HTTPS nuxsl 5991/tcp # NUXSL nuxsl 5991/udp # NUXSL consul-insight 5992/tcp # Consul InSight Security consul-insight 5992/udp # Consul InSight Security cvsup 5999/tcp CVSup # CVSup file transfer/John Polstra/FreeBSD cvsup 5999/udp CVSup # CVSup file transfer/John Polstra/FreeBSD x11 6000/tcp X # the X Window System x11-ssh-offset 6010/tcp # SSH X11 forwarding offset ndl-ahp-svc 6064/tcp # NDL-AHP-SVC ndl-ahp-svc 6064/udp # NDL-AHP-SVC winpharaoh 6065/tcp # WinPharaoh winpharaoh 6065/udp # WinPharaoh ewctsp 6066/tcp # EWCTSP ewctsp 6066/udp # EWCTSP srb 6067/tcp # SRB srb 6067/udp # SRB gsmp 6068/tcp # GSMP gsmp 6068/udp # GSMP trip 6069/tcp # TRIP trip 6069/udp # TRIP messageasap 6070/tcp # Messageasap messageasap 6070/udp # Messageasap ssdtp 6071/tcp # SSDTP ssdtp 6071/udp # SSDTP diagnose-proc 6072/tcp # DIAGNOSE-PROC diagnose-proc 6072/udp # DIAGNOSE-PROC directplay8 6073/tcp # DirectPlay8 directplay8 6073/udp # DirectPlay8 konspire2b 6085/tcp # konspire2b p2p network konspire2b 6085/udp # konspire2b p2p network synchronet-db 6100/tcp # SynchroNet-db synchronet-db 6100/udp # SynchroNet-db synchronet-rtc 6101/tcp # SynchroNet-rtc synchronet-rtc 6101/udp # SynchroNet-rtc synchronet-upd 6102/tcp # SynchroNet-upd synchronet-upd 6102/udp # SynchroNet-upd rets 6103/tcp # RETS rets 6103/udp # RETS dbdb 6104/tcp # DBDB dbdb 6104/udp # DBDB primaserver 6105/tcp # Prima Server primaserver 6105/udp # Prima Server mpsserver 6106/tcp # MPS Server mpsserver 6106/udp # MPS Server etc-control 6107/tcp # ETC Control etc-control 6107/udp # ETC Control sercomm-scadmin 6108/tcp # Sercomm-SCAdmin sercomm-scadmin 6108/udp # Sercomm-SCAdmin globecast-id 6109/tcp # GLOBECAST-ID globecast-id 6109/udp # GLOBECAST-ID 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 dtspcd 6112/tcp # dtspcd dtspcd 6112/udp # dtspcd bex-webadmin 6122/tcp # Backup Express Web Server bex-webadmin 6122/udp # Backup Express Web Server backup-express 6123/tcp # Backup Express backup-express 6123/udp # Backup Express nbt-wol 6133/tcp # New Boundary Tech WOL nbt-wol 6133/udp # New Boundary Tech WOL 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 tal-pod 6149/tcp # tal-pod tal-pod 6149/udp # tal-pod patrol-ism 6161/tcp # PATROL Internet Srv Mgr patrol-ism 6161/udp # PATROL Internet Srv Mgr patrol-coll 6162/tcp # PATROL Collector patrol-coll 6162/udp # PATROL Collector pscribe 6163/tcp # Precision Scribe Cnx Port pscribe 6163/udp # Precision Scribe Cnx Port crip 6253/tcp # CRIP crip 6253/udp # CRIP bmc-grx 6300/tcp # BMC GRX bmc-grx 6300/udp # BMC GRX emp-server1 6321/tcp # Empress Software Connectivity Server 1 emp-server1 6321/udp # Empress Software Connectivity Server 1 emp-server2 6322/tcp # Empress Software Connectivity Server 2 emp-server2 6322/udp # Empress Software Connectivity Server 2 sflow 6343/tcp # sFlow traffic monitoring sflow 6343/udp # sFlow traffic monitoring gnutella-svc 6346/tcp # gnutella-svc gnutella-svc 6346/udp # gnutella-svc gnutella-rtr 6347/tcp # gnutella-rtr gnutella-rtr 6347/udp # gnutella-rtr metatude-mds 6382/tcp # Metatude Dialogue Server metatude-mds 6382/udp # Metatude Dialogue Server clariion-evr01 6389/tcp # clariion-evr01 clariion-evr01 6389/udp # clariion-evr01 skip-cert-recv 6455/tcp # SKIP Certificate Receive skip-cert-send 6456/tcp # SKIP Certificate Send lvision-lm 6471/tcp # LVision License Manager lvision-lm 6471/udp # LVision License Manager boks 6500/tcp # BoKS Master boks 6500/udp # BoKS Master boks_servc 6501/tcp # BoKS Servc boks_servc 6501/udp # BoKS Servc boks_servm 6502/tcp # BoKS Servm boks_servm 6502/udp # BoKS Servm boks_clntd 6503/tcp # BoKS Clntd boks_clntd 6503/udp # BoKS Clntd badm_priv 6505/tcp # BoKS Admin Private Port badm_priv 6505/udp # BoKS Admin Private Port badm_pub 6506/tcp # BoKS Admin Public Port badm_pub 6506/udp # BoKS Admin Public Port bdir_priv 6507/tcp # BoKS Dir Server, Private Port bdir_priv 6507/udp # BoKS Dir Server, Private Port bdir_pub 6508/tcp # BoKS Dir Server, Public Port bdir_pub 6508/udp # BoKS Dir Server, Public Port mgcs-mfp-port 6509/tcp # MGCS-MFP Port mgcs-mfp-port 6509/udp # MGCS-MFP Port mcer-port 6510/tcp # MCER Port mcer-port 6510/udp # MCER Port lds-distrib 6543/tcp # lds_distrib lds-distrib 6543/udp # lds_distrib apc-6547 6547/tcp # APC 6547 apc-6547 6547/udp # APC 6547 apc-6548 6548/tcp # APC 6548 apc-6548 6548/udp # APC 6548 apc-6549 6549/tcp # APC 6549 apc-6549 6549/udp # APC 6549 fg-sysupdate 6550/tcp # fg-sysupdate fg-sysupdate 6550/udp # fg-sysupdate xdsxdm 6558/tcp xdsxdm 6558/udp sane-port 6566/tcp # SANE Control Port sane-port 6566/udp # SANE Control Port affiliate 6579/tcp # Affiliate affiliate 6579/udp # Affiliate parsec-master 6580/tcp # Parsec Masterserver parsec-master 6580/udp # Parsec Masterserver parsec-peer 6581/tcp # Parsec Peer-to-Peer parsec-peer 6581/udp # Parsec Peer-to-Peer parsec-game 6582/tcp # Parsec Gameserver parsec-game 6582/udp # Parsec Gameserver joaJewelSuite 6583/tcp # JOA Jewel Suite joaJewelSuite 6583/udp # JOA Jewel Suite kftp-data 6620/tcp # Kerberos V5 FTP Data kftp-data 6620/udp # Kerberos V5 FTP Data kftp 6621/tcp # Kerberos V5 FTP Control kftp 6621/udp # Kerberos V5 FTP Control ktelnet 6623/tcp # Kerberos V5 Telnet ktelnet 6623/udp # Kerberos V5 Telnet nexgen 6627/tcp # Allied Electronics NeXGen nexgen 6627/udp # Allied Electronics NeXGen afesc-mc 6628/tcp # AFE Stock Channel M/C afesc-mc 6628/udp # AFE Stock Channel M/C ircd 6667/tcp # Internet Relay Chat ircd 6667/udp # Internet Relay Chat vocaltec-gold 6670/tcp # Vocaltec Global Online Directory vocaltec-gold 6670/udp # Vocaltec Global Online Directory vision_server 6672/tcp # vision_server vision_server 6672/udp # vision_server vision_elmd 6673/tcp # vision_elmd vision_elmd 6673/udp # vision_elmd kti-icad-srvr 6701/tcp # KTI/ICAD Nameserver kti-icad-srvr 6701/udp # KTI/ICAD Nameserver ibprotocol 6714/tcp # Internet Backplane Protocol ibprotocol 6714/udp # Internet Backplane Protocol fibotrader-com 6715/tcp # Fibotrader Communications fibotrader-com 6715/udp # Fibotrader Communications bmc-perf-agent 6767/tcp # BMC PERFORM AGENT bmc-perf-agent 6767/udp # BMC PERFORM AGENT bmc-perf-mgrd 6768/tcp # BMC PERFORM MGRD bmc-perf-mgrd 6768/udp # BMC PERFORM MGRD adi-gxp-srvprt 6769/tcp # ADInstruments GxP Server adi-gxp-srvprt 6769/udp # ADInstruments GxP Server plysrv-http 6770/tcp # PolyServe http plysrv-http 6770/udp # PolyServe http plysrv-https 6771/tcp # PolyServe https plysrv-https 6771/udp # PolyServe https smc-jmx 6786/tcp # Sun Java Web Console JMX smc-jmx 6786/udp # Sun Java Web Console JMX smc-admin 6787/tcp # Sun Web Console Admin smc-admin 6787/udp # Sun Web Console Admin smc-http 6788/tcp # SMC-HTTP smc-http 6788/udp # SMC-HTTP smc-https 6789/tcp # SMC-HTTPS smc-https 6789/udp # SMC-HTTPS hnmp 6790/tcp # HNMP hnmp 6790/udp # HNMP hnm 6791/tcp # Halcyon Network Manager hnm 6791/udp # Halcyon Network Manager ambit-lm 6831/tcp # ambit-lm ambit-lm 6831/udp # ambit-lm netmo-default 6841/tcp # Netmo Default netmo-default 6841/udp # Netmo Default netmo-http 6842/tcp # Netmo HTTP netmo-http 6842/udp # Netmo HTTP iccrushmore 6850/tcp # ICCRUSHMORE iccrushmore 6850/udp # ICCRUSHMORE muse 6888/tcp # MUSE muse 6888/udp # MUSE bioserver 6946/tcp # Biometrics Server bioserver 6946/udp # Biometrics Server jmact3 6961/tcp # JMACT3 jmact3 6961/udp # JMACT3 jmevt2 6962/tcp # jmevt2 jmevt2 6962/udp # jmevt2 swismgr1 6963/tcp # swismgr1 swismgr1 6963/udp # swismgr1 swismgr2 6964/tcp # swismgr2 swismgr2 6964/udp # swismgr2 swistrap 6965/tcp # swistrap swistrap 6965/udp # swistrap swispol 6966/tcp # swispol swispol 6966/udp # swispol acmsoda 6969/tcp # acmsoda acmsoda 6969/udp # acmsoda iatp-highpri 6998/tcp # IATP-highPri iatp-highpri 6998/udp # IATP-highPri iatp-normalpri 6999/tcp # IATP-normalPri iatp-normalpri 6999/udp # IATP-normalPri 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 managment server afs3-volser 7005/udp # volume managment 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 ups-onlinet 7010/tcp # onlinet uninterruptable power supplies ups-onlinet 7010/udp # onlinet uninterruptable power supplies talon-disc 7011/tcp # Talon Discovery Port talon-disc 7011/udp # Talon Discovery Port talon-engine 7012/tcp # Talon Engine talon-engine 7012/udp # Talon Engine microtalon-dis 7013/tcp # Microtalon Discovery microtalon-dis 7013/udp # Microtalon Discovery microtalon-com 7014/tcp # Microtalon Communications microtalon-com 7014/udp # Microtalon Communications talon-webserver 7015/tcp # Talon Webserver talon-webserver 7015/udp # Talon Webserver dpserve 7020/tcp # DP Serve dpserve 7020/udp # DP Serve dpserveadmin 7021/tcp # DP Serve Admin dpserveadmin 7021/udp # DP Serve Admin ctdp 7022/tcp # CT Discovery Protocol ctdp 7022/udp # CT Discovery Protocol ct2nmcs 7023/tcp # Comtech T2 NMCS ct2nmcs 7023/udp # Comtech T2 NMCS vmsvc 7024/tcp # Vormetric service vmsvc 7024/udp # Vormetric service vmsvc-2 7025/tcp # Vormetric Service II vmsvc-2 7025/udp # Vormetric Service II op-probe 7030/tcp # ObjectPlanet probe op-probe 7030/udp # ObjectPlanet probe arcp 7070/tcp # ARCP arcp 7070/udp # ARCP lazy-ptop 7099/tcp # lazy-ptop lazy-ptop 7099/udp # lazy-ptop xfs 7100/tcp # X font server virprot-lm 7121/tcp # Virtual Prototypes License Manager virprot-lm 7121/udp # Virtual Prototypes License Manager cabsm-comm 7161/tcp # CA BSM Comm cabsm-comm 7161/udp # CA BSM Comm caistoragemgr 7162/tcp # CA Storage Manager caistoragemgr 7162/udp # CA Storage Manager cacsambroker 7163/tcp # CA Connection Broker cacsambroker 7163/udp # CA Connection Broker clutild 7174/tcp # Clutild clutild 7174/udp # Clutild fodms 7200/tcp # FODMS FLIP fodms 7200/udp # FODMS FLIP dlip 7201/tcp # DLIP dlip 7201/udp # DLIP ramp 7227/tcp # Registry A & M Protocol ramp 7227/udp # Registry A $ M Protocol watchme-7272 7272/tcp # WatchMe Monitoring 7272 watchme-7272 7272/udp # WatchMe Monitoring 7272 oma-rlp 7273/tcp # OMA Roaming Location oma-rlp 7273/udp # OMA Roaming Location oma-rlp-s 7274/tcp # OMA Roaming Location SEC oma-rlp-s 7274/udp # OMA Roaming Location SEC itactionserver1 7280/tcp # ITACTIONSERVER 1 itactionserver1 7280/udp # ITACTIONSERVER 1 itactionserver2 7281/tcp # ITACTIONSERVER 2 itactionserver2 7281/udp # ITACTIONSERVER 2 mindfilesys 7391/tcp # mind-file system server mindfilesys 7391/udp # mind-file system server mrssrendezvous 7392/tcp # mrss-rendezvous server mrssrendezvous 7392/udp # mrss-rendezvous server winqedit 7395/tcp # winqedit winqedit 7395/udp # winqedit hexarc 7397/tcp # Hexarc Command Language hexarc 7397/udp # Hexarc Command Language rtps-discovery 7400/tcp # RTPS Discovery rtps-discovery 7400/udp # RTPS Discovery rtps-dd-ut 7401/tcp # RTPS Data-Distribution User-Traffic rtps-dd-ut 7401/udp # RTPS Data-Distribution User-Traffic rtps-dd-mt 7402/tcp # RTPS Data-Distribution Meta-Traffic rtps-dd-mt 7402/udp # RTPS Data-Distribution Meta-Traffic mtportmon 7421/tcp # Matisse Port Monitor mtportmon 7421/udp # Matisse Port Monitor pmdmgr 7426/tcp # OpenView DM Postmaster Manager pmdmgr 7426/udp # OpenView DM Postmaster Manager oveadmgr 7427/tcp # OpenView DM Event Agent Manager oveadmgr 7427/udp # OpenView DM Event Agent Manager ovladmgr 7428/tcp # OpenView DM Log Agent Manager ovladmgr 7428/udp # OpenView DM Log Agent Manager opi-sock 7429/tcp # OpenView DM rqt communication opi-sock 7429/udp # OpenView DM rqt communication xmpv7 7430/tcp # OpenView DM xmpv7 api pipe xmpv7 7430/udp # OpenView DM xmpv7 api pipe pmd 7431/tcp # OpenView DM ovc/xmpv3 api pipe pmd 7431/udp # OpenView DM ovc/xmpv3 api pipe faximum 7437/tcp # Faximum faximum 7437/udp # Faximum telops-lmd 7491/tcp # telops-lmd telops-lmd 7491/udp # telops-lmd silhouette 7500/tcp # Silhouette User silhouette 7500/udp # Silhouette User ovbus 7501/tcp # HP OpenView Bus Daemon ovbus 7501/udp # HP OpenView Bus Daemon ovhpas 7510/tcp # HP OpenView Application Server ovhpas 7510/udp # HP OpenView Application Server pafec-lm 7511/tcp # pafec-lm pafec-lm 7511/udp # pafec-lm atul 7543/tcp # atul server atul 7543/udp # atul server nta-ds 7544/tcp # FlowAnalyzer DisplayServer nta-ds 7544/udp # FlowAnalyzer DisplayServer nta-us 7545/tcp # FlowAnalyzer UtilityServer nta-us 7545/udp # FlowAnalyzer UtilityServer cfs 7546/tcp # Cisco Fabric service cfs 7546/udp # Cisco Fabric service cwmp 7547/tcp # DSL Forum CWMP cwmp 7547/udp # DSL Forum CWMP sncp 7560/tcp # Sniffer Command Protocol sncp 7560/udp # Sniffer Command Protocol vsi-omega 7566/tcp # VSI Omega vsi-omega 7566/udp # VSI Omega aries-kfinder 7570/tcp # Aries Kfinder aries-kfinder 7570/udp # Aries Kfinder sun-lm 7588/tcp # Sun License Manager sun-lm 7588/udp # Sun License Manager indi 7624/tcp # Instrument Neutral Distributed Interface indi 7624/udp # Instrument Neutral Distributed Interface simco 7626/tcp # SImple Middlebox COnfiguration (SIMCO) Server simco 7626/udp # SImple Middlebox COnfiguration (SIMCO) Server soap-http 7627/tcp # SOAP Service Port soap-http 7627/udp # SOAP Service Port pmdfmgt 7633/tcp # PMDF Management pmdfmgt 7633/udp # PMDF Management tircproxy 7666/tcp # Tircproxy imqtunnels 7674/tcp # iMQ SSL tunnel imqtunnels 7674/udp # iMQ SSL tunnel imqtunnel 7675/tcp # iMQ Tunnel imqtunnel 7675/udp # iMQ Tunnel imqbrokerd 7676/tcp # iMQ Broker Rendezvous imqbrokerd 7676/udp # iMQ Broker Rendezvous sun-user-https 7677/tcp # Sun App Server - HTTPS sun-user-https 7677/udp # Sun App Server - HTTPS klio 7697/tcp # KLIO communications klio 7697/udp # KLIO communications sync-em7 7707/tcp # EM7 Dynamic Updates sync-em7 7707/udp # EM7 Dynamic Updates medimageportal 7720/tcp # MedImage Portal medimageportal 7720/udp # MedImage Portal nitrogen 7725/tcp # Nitrogen Service nitrogen 7725/udp # Nitrogen Service freezexservice 7726/tcp # FreezeX Console Service freezexservice 7726/udp # FreezeX Console Service trident-data 7727/tcp # Trident Systems Data trident-data 7727/udp # Trident Systems Data aiagent 7738/tcp # Peregrine Discovery Agent aiagent 7738/udp # Peregrine Discovery Agent sstp-1 7743/tcp # Sakura Script Transfer Protocol sstp-1 7743/udp # Sakura Script Transfer Protocol cbt 7777/tcp # cbt cbt 7777/udp # cbt interwise 7778/tcp # Interwise interwise 7778/udp # Interwise vstat 7779/tcp # VSTAT vstat 7779/udp # VSTAT accu-lmgr 7781/tcp # accu-lmgr accu-lmgr 7781/udp # accu-lmgr minivend 7786/tcp # MINIVEND minivend 7786/udp # MINIVEND q3ade 7794/tcp # Q3ADE Cluster Service q3ade 7794/udp # Q3ADE Cluster Service pnet-conn 7797/tcp # Propel Connector port pnet-conn 7797/udp # Propel Connector port pnet-enc 7798/tcp # Propel Encoder port pnet-enc 7798/udp # Propel Encoder port asr 7800/tcp # Apple Software Restore asr 7800/udp # Apple Software Restore apc-7845 7845/tcp # APC 7845 apc-7845 7845/udp # APC 7845 apc-7846 7846/tcp # APC 7846 apc-7846 7846/udp # APC 7846 ubroker 7887/tcp # Universal Broker ubroker 7887/udp # Universal Broker tnos-sp 7901/tcp # TNOS Service Protocol tnos-sp 7901/udp # TNOS Service Protocol tnos-dp 7902/tcp # TNOS DiaguardProtocol tnos-dp 7902/udp # TNOS DiaguardProtocol tnos-dps 7903/tcp # TNOS Secure DiaguardProtocol tnos-dps 7903/udp # TNOS Secure DiaguardProtocol qo-secure 7913/tcp # QuickObjects secure port qo-secure 7913/udp # QuickObjects secure port t2-drm 7932/tcp # Tier 2 Data Resource Manager t2-drm 7932/udp # Tier 2 Data Resource Manager t2-brm 7933/tcp # Tier 2 Business Rules Manager t2-brm 7933/udp # Tier 2 Business Rules Manager supercell 7967/tcp # Supercell supercell 7967/udp # Supercell micromuse-ncps 7979/tcp # Micromuse-ncps micromuse-ncps 7979/udp # Micromuse-ncps quest-vista 7980/tcp # Quest Vista quest-vista 7980/udp # Quest Vista irdmi2 7999/tcp # iRDMI2 irdmi2 7999/udp # iRDMI2 irdmi 8000/tcp # iRDMI irdmi 8000/udp # iRDMI vcom-tunnel 8001/tcp # VCOM Tunnel vcom-tunnel 8001/udp # VCOM Tunnel teradataordbms 8002/tcp # Teradata ORDBMS teradataordbms 8002/udp # Teradata ORDBMS http-alt 8008/tcp http-alt 8008/udp intu-ec-svcdisc 8020/tcp # Intuit Entitlement Service and Discovery intu-ec-svcdisc 8020/udp # Intuit Entitlement Service and Discovery intu-ec-client 8021/tcp # Intuit Entitlement Client intu-ec-client 8021/udp # Intuit Entitlement Client oa-system 8022/tcp # oa-system oa-system 8022/udp # oa-system pro-ed 8032/tcp # ProEd pro-ed 8032/udp # ProEd mindprint 8033/tcp # MindPrint mindprint 8033/udp # MindPrint webcache 8080/tcp # WWW caching service webcache 8080/udp # WWW caching service tproxy 8081/tcp # Transparent Proxy tproxy 8081/udp # Transparent Proxy us-cli 8082/tcp # Utilistor (Client) us-cli 8082/udp # Utilistor (Client) us-srv 8083/tcp # Utilistor (Server) us-srv 8083/udp # Utilistor (Server) radan-http 8088/tcp # Radan HTTP radan-http 8088/udp # Radan HTTP xprint-server 8100/tcp # Xprint Server xprint-server 8100/udp # Xprint Server mtl8000-matrix 8115/tcp # MTL8000 Matrix mtl8000-matrix 8115/udp # MTL8000 Matrix cp-cluster 8116/tcp # Check Point Clustering cp-cluster 8116/udp # Check Point Clustering privoxy 8118/tcp # Privoxy HTTP proxy privoxy 8118/udp # Privoxy HTTP proxy apollo-data 8121/tcp # Apollo Data Port apollo-data 8121/udp # Apollo Data Port apollo-admin 8122/tcp # Apollo Admin Port apollo-admin 8122/udp # Apollo Admin Port paycash-online 8128/tcp # PayCash Online Protocol paycash-online 8128/udp # PayCash Online Protocol paycash-wbp 8129/tcp # PayCash Wallet-Browser paycash-wbp 8129/udp # PayCash Wallet-Browser indigo-vrmi 8130/tcp # INDIGO-VRMI indigo-vrmi 8130/udp # INDIGO-VRMI indigo-vbcp 8131/tcp # INDIGO-VBCP indigo-vbcp 8131/udp # INDIGO-VBCP dbabble 8132/tcp # dbabble dbabble 8132/udp # dbabble isdd 8148/tcp # i-SDD file transfer isdd 8148/udp # i-SDD file transfer patrol 8160/tcp # Patrol patrol 8160/udp # Patrol patrol-snmp 8161/tcp # Patrol SNMP patrol-snmp 8161/udp # Patrol SNMP vvr-data 8199/tcp # VVR DATA vvr-data 8199/udp # VVR DATA trivnet1 8200/tcp # TRIVNET trivnet1 8200/udp # TRIVNET trivnet2 8201/tcp # TRIVNET trivnet2 8201/udp # TRIVNET lm-perfworks 8204/tcp # LM Perfworks lm-perfworks 8204/udp # LM Perfworks lm-instmgr 8205/tcp # LM Instmgr lm-instmgr 8205/udp # LM Instmgr lm-dta 8206/tcp # LM Dta lm-dta 8206/udp # LM Dta lm-sserver 8207/tcp # LM SServer lm-sserver 8207/udp # LM SServer lm-webwatcher 8208/tcp # LM Webwatcher lm-webwatcher 8208/udp # LM Webwatcher rexecj 8230/tcp # RexecJ Server rexecj 8230/udp # RexecJ Server server-find 8351/tcp # Server Find server-find 8351/udp # Server Find cruise-enum 8376/tcp # Cruise ENUM cruise-enum 8376/udp # Cruise ENUM cruise-swroute 8377/tcp # Cruise SWROUTE cruise-swroute 8377/udp # Cruise SWROUTE cruise-config 8378/tcp # Cruise CONFIG cruise-config 8378/udp # Cruise CONFIG cruise-diags 8379/tcp # Cruise DIAGS cruise-diags 8379/udp # Cruise DIAGS cruise-update 8380/tcp # Cruise UPDATE cruise-update 8380/udp # Cruise UPDATE m2mservices 8383/tcp # M2m Services m2mservices 8383/udp # M2m Services cvd 8400/tcp # cvd cvd 8400/udp # cvd sabarsd 8401/tcp # sabarsd sabarsd 8401/udp # sabarsd abarsd 8402/tcp # abarsd abarsd 8402/udp # abarsd espeech 8416/tcp # eSpeech Session Protocol espeech 8416/udp # eSpeech Session Protocol espeech-rtp 8417/tcp # eSpeech RTP Protocol espeech-rtp 8417/udp # eSpeech RTP Protocol pcsync-https 8443/tcp # PCsync HTTPS pcsync-https 8443/udp # PCsync HTTPS pcsync-http 8444/tcp # PCsync HTTP pcsync-http 8444/udp # PCsync HTTP npmp 8450/tcp # npmp npmp 8450/udp # npmp vp2p 8473/tcp # Virtual Point to Point vp2p 8473/udp # Virtual Point to Point noteshare 8474/tcp # AquaMinds NoteShare noteshare 8474/udp # AquaMinds NoteShare fde 8500/tcp # Flight Data Exchange fde 8500/udp # Flight Data Exchange rtsp-alt 8554/tcp # RTSP Alternate (see port 554) rtsp-alt 8554/udp # RTSP Alternate (see port 554) d-fence 8555/tcp # SYMAX D-FENCE d-fence 8555/udp # SYMAX D-FENCE emware-admin 8567/tcp # emWare Server Management emware-admin 8567/udp # emWare Server Management asterix 8600/tcp # Surveillance Data asterix 8600/udp # Surveillance Data canon-bjnp1 8611/tcp # Canon BJNP Port 1 canon-bjnp1 8611/udp # Canon BJNP Port 1 canon-bjnp2 8612/tcp # Canon BJNP Port 2 canon-bjnp2 8612/udp # Canon BJNP Port 2 canon-bjnp3 8613/tcp # Canon BJNP Port 3 canon-bjnp3 8613/udp # Canon BJNP Port 3 canon-bjnp4 8614/tcp # Canon BJNP Port 4 canon-bjnp4 8614/udp # Canon BJNP Port 4 sun-as-jmxrmi 8686/tcp # Sun App Server - JMX/RMI sun-as-jmxrmi 8686/udp # Sun App Server - JMX/RMI vnyx 8699/tcp # VNYX Primary Port vnyx 8699/udp # VNYX Primary Port ibus 8733/tcp # iBus ibus 8733/udp # iBus mc-appserver 8763/tcp # MC-APPSERVER mc-appserver 8763/udp # MC-APPSERVER openqueue 8764/tcp # OPENQUEUE openqueue 8764/udp # OPENQUEUE ultraseek-http 8765/tcp # Ultraseek HTTP ultraseek-http 8765/udp # Ultraseek HTTP dpap 8770/tcp # Digital Photo Access Protocol dpap 8770/udp # Digital Photo Access Protocol msgclnt 8786/tcp # Message Client msgclnt 8786/udp # Message Client msgsrvr 8787/tcp # Message Server msgsrvr 8787/udp # Message Server sunwebadmin 8800/tcp # Sun Web Server Admin Service sunwebadmin 8800/udp # Sun Web Server Admin Service truecm 8804/tcp # truecm truecm 8804/udp # truecm dxspider 8873/tcp # dxspider linking protocol dxspider 8873/udp # dxspider linking protocol cddbp-alt 8880/tcp # CDDBP cddbp-alt 8880/udp # CDDBP ddi-tcp-1 8888/tcp # NewsEDGE server TCP (TCP 1) ddi-udp-1 8888/udp # NewsEDGE server UDP (UDP 1) ddi-tcp-2 8889/tcp # Desktop Data TCP 1 ddi-udp-2 8889/udp # NewsEDGE server broadcast ddi-tcp-3 8890/tcp # Desktop Data TCP 2 ddi-udp-3 8890/udp # NewsEDGE client broadcast ddi-tcp-4 8891/tcp # Desktop Data TCP 3: NESS application ddi-udp-4 8891/udp # Desktop Data UDP 3: NESS application ddi-tcp-5 8892/tcp # Desktop Data TCP 4: FARM product ddi-udp-5 8892/udp # Desktop Data UDP 4: FARM product ddi-tcp-6 8893/tcp # Desktop Data TCP 5: NewsEDGE/Web application ddi-udp-6 8893/udp # Desktop Data UDP 5: NewsEDGE/Web application ddi-tcp-7 8894/tcp # Desktop Data TCP 6: COAL application ddi-udp-7 8894/udp # Desktop Data UDP 6: COAL application jmb-cds1 8900/tcp # JMB-CDS 1 jmb-cds1 8900/udp # JMB-CDS 1 jmb-cds2 8901/tcp # JMB-CDS 2 jmb-cds2 8901/udp # JMB-CDS 2 manyone-http 8910/tcp # manyone-http manyone-http 8910/udp # manyone-http manyone-xml 8911/tcp # manyone-xml manyone-xml 8911/udp # manyone-xml wcbackup 8912/tcp # Windows Client Backup wcbackup 8912/udp # Windows Client Backup dragonfly 8913/tcp # Dragonfly System Service dragonfly 8913/udp # Dragonfly System Service cumulus-admin 8954/tcp # Cumulus Admin Port cumulus-admin 8954/udp # Cumulus Admin Port sunwebadmins 8989/tcp # Sun Web Server SSL Admin Service sunwebadmins 8989/udp # Sun Web Server SSL Admin Service bctp 8999/tcp # Brodos Crypto Trade Protocol bctp 8999/udp # Brodos Crypto Trade Protocol cslistener 9000/tcp # CSlistener cslistener 9000/udp # CSlistener etlservicemgr 9001/tcp # ETL Service Manager etlservicemgr 9001/udp # ETL Service Manager dynamid 9002/tcp # DynamID authentication dynamid 9002/udp # DynamID authentication pichat 9009/tcp # Pichat Server pichat 9009/udp # Pichat Server tambora 9020/tcp # TAMBORA tambora 9020/udp # TAMBORA panagolin-ident 9021/tcp # Pangolin Identification panagolin-ident 9021/udp # Pangolin Identification paragent 9022/tcp # PrivateArk Remote Agent paragent 9022/udp # PrivateArk Remote Agent swa-1 9023/tcp # Secure Web Access - 1 swa-1 9023/udp # Secure Web Access - 1 swa-2 9024/tcp # Secure Web Access - 2 swa-2 9024/udp # Secure Web Access - 2 swa-3 9025/tcp # Secure Web Access - 3 swa-3 9025/udp # Secure Web Access - 3 swa-4 9026/tcp # Secure Web Access - 4 swa-4 9026/udp # Secure Web Access - 4 glrpc 9080/tcp # Groove GLRPC glrpc 9080/udp # Groove GLRPC sqlexec 9088/tcp # IBM Informix SQL Interface sqlexec 9088/udp # IBM Informix SQL Interface sqlexec-ssl 9089/tcp # IBM Informix SQL Interface - Encrypted sqlexec-ssl 9089/udp # IBM Informix SQL Interface - Encrypted websm 9090/tcp # WebSM websm 9090/udp # WebSM xmltec-xmlmail 9091/tcp # xmltec-xmlmail xmltec-xmlmail 9091/udp # xmltec-xmlmail XmlIpcRegSvc 9092/tcp # Xml-Ipc Server Reg XmlIpcRegSvc 9092/udp # Xml-Ipc Server Reg jetdirect 9100/tcp laserjet hplj # bacula-dir 9101/tcp # Bacula Director bacula-dir 9101/udp # Bacula Director bacula-fd 9102/tcp # Bacula File Daemon bacula-fd 9102/udp # Bacula File Daemon bacula-sd 9103/tcp # Bacula Storage Daemon bacula-sd 9103/udp # Bacula Storage Daemon peerwire 9104/tcp # PeerWire peerwire 9104/udp # PeerWire dddp 9131/tcp # Dynamic Device Discovery dddp 9131/udp # Dynamic Device Discovery netlock1 9160/tcp # NetLOCK1 netlock1 9160/udp # NetLOCK1 netlock2 9161/tcp # NetLOCK2 netlock2 9161/udp # NetLOCK2 netlock3 9162/tcp # NetLOCK3 netlock3 9162/udp # NetLOCK3 netlock4 9163/tcp # NetLOCK4 netlock4 9163/udp # NetLOCK4 netlock5 9164/tcp # NetLOCK5 netlock5 9164/udp # NetLOCK5 sun-as-jpda 9191/tcp # Sun AppSvr JPDA sun-as-jpda 9191/udp # Sun AppSvr JPDA wap-wsp 9200/tcp # WAP connectionless session service wap-wsp 9200/udp # WAP connectionless session service wap-wsp-wtp 9201/tcp # WAP session service wap-wsp-wtp 9201/udp # WAP session service wap-wsp-s 9202/tcp # WAP secure connectionless session service wap-wsp-s 9202/udp # WAP secure connectionless session service wap-wsp-wtp-s 9203/tcp # WAP secure session service wap-wsp-wtp-s 9203/udp # WAP secure session service wap-vcard 9204/tcp # WAP vCard wap-vcard 9204/udp # WAP vCard wap-vcal 9205/tcp # WAP vCal wap-vcal 9205/udp # WAP vCal wap-vcard-s 9206/tcp # WAP vCard Secure wap-vcard-s 9206/udp # WAP vCard Secure wap-vcal-s 9207/tcp # WAP vCal Secure wap-vcal-s 9207/udp # WAP vCal Secure rjcdb-vcards 9208/tcp # rjcdb vCard rjcdb-vcards 9208/udp # rjcdb vCard almobile-system 9209/tcp # ALMobile System Service almobile-system 9209/udp # ALMobile System Service oma-mlp 9210/tcp # OMA Mobile Location Protocol oma-mlp 9210/udp # OMA Mobile Location Protocol oma-mlp-s 9211/tcp # OMA Mobile Location Protocol Secure oma-mlp-s 9211/udp # OMA Mobile Location Protocol Secure serverviewdbms 9212/tcp # Server View dbms access serverviewdbms 9212/udp # Server View dbms access serverstart 9213/tcp # ServerStart RemoteControl serverstart 9213/udp # ServerStart RemoteControl fsc-port 9217/tcp # FSC Communication Port fsc-port 9217/udp # FSC Communication Port teamcoherence 9222/tcp # QSC Team Coherence teamcoherence 9222/udp # QSC Team Coherence swtp-port1 9281/tcp # SofaWare transport port 1 swtp-port1 9281/udp # SofaWare transport port 1 swtp-port2 9282/tcp # SofaWare transport port 2 swtp-port2 9282/udp # SofaWare transport port 2 callwaveiam 9283/tcp # CallWaveIAM callwaveiam 9283/udp # CallWaveIAM visd 9284/tcp # VERITAS Information Serve visd 9284/udp # VERITAS Information Serve n2h2server 9285/tcp # N2H2 Filter Service Port n2h2server 9285/udp # N2H2 Filter Service Port cumulus 9287/tcp # Cumulus cumulus 9287/udp # Cumulus armtechdaemon 9292/tcp # ArmTech Daemon armtechdaemon 9292/udp # ArmTech Daemon secure-ts 9318/tcp # PKIX TimeStamp over TLS secure-ts 9318/udp # PKIX TimeStamp over TLS guibase 9321/tcp # guibase guibase 9321/udp # guibase mpidcmgr 9343/tcp # MpIdcMgr mpidcmgr 9343/udp # MpIdcMgr mphlpdmc 9344/tcp # Mphlpdmc mphlpdmc 9344/udp # Mphlpdmc ctechlicensing 9346/tcp # C Tech Licensing ctechlicensing 9346/udp # C Tech Licensing mandelspawn 9359/udp mandelbrot # network mandelbrot fjdmimgr 9374/tcp # fjdmimgr fjdmimgr 9374/udp # fjdmimgr fjinvmgr 9396/tcp # fjinvmgr fjinvmgr 9396/udp # fjinvmgr mpidcagt 9397/tcp # MpIdcAgt mpidcagt 9397/udp # MpIdcAgt git 9418/tcp # git pack transfer service git 9418/udp # git pack transfer service ismserver 9500/tcp # ismserver ismserver 9500/udp # ismserver mngsuite 9535/tcp # Management Suite Remote Control mngsuite 9535/udp # Management Suite Remote Control trispen-sra 9555/tcp # Trispen UDP tunnel trispen-sra 9555/udp # Trispen UDP tunnel cba8 9593/tcp # LANDesk Management Agent cba8 9593/udp # LANDesk Management Agent msgsys 9594/tcp # Message System msgsys 9594/udp # Message System pds 9595/tcp # Ping Discovery Service pds 9595/udp # Ping Discovery Service mercury-disc 9596/tcp # Mercury Discovery mercury-disc 9596/udp # Mercury Discovery pd-admin 9597/tcp # PD Administration pd-admin 9597/udp # PD Administration vscp 9598/tcp # Very Simple Ctrl Protocol vscp 9598/udp # Very Simple Ctrl Protocol robix 9599/tcp # Robix robix 9599/udp # Robix micromuse-ncpw 9600/tcp # MICROMUSE-NCPW micromuse-ncpw 9600/udp # MICROMUSE-NCPW streamcomm-ds 9612/tcp # StreamComm User Directory streamcomm-ds 9612/udp # StreamComm User Directory board-roar 9700/tcp # Board M.I.T. Service board-roar 9700/udp # Board M.I.T. Service l5nas-parchan 9747/tcp # L5NAS Parallel Channel l5nas-parchan 9747/udp # L5NAS Parallel Channel board-voip 9750/tcp # Board M.I.T. Synchronous Collaboration board-voip 9750/udp # Board M.I.T. Synchronous Collaboration rasadv 9753/tcp # rasadv rasadv 9753/udp # rasadv davsrc 9800/tcp # WebDav Source Port davsrc 9800/udp # WebDav Source Port sstp-2 9801/tcp # Sakura Script Transfer Protocol-2 sstp-2 9801/udp # Sakura Script Transfer Protocol-2 davsrcs 9802/tcp # WebDAV Source TLS/SSL davsrcs 9802/udp # WebDAV Source TLS/SSL sapv1 9875/tcp # Session Announcement v1 sapv1 9875/udp # Session Announcement v1 sd 9876/tcp # Session Director sd 9876/udp # Session Director cyborg-systems 9888/tcp # CYBORG Systems cyborg-systems 9888/udp # CYBORG Systems monkeycom 9898/tcp # MonkeyCom monkeycom 9898/udp # MonkeyCom sctp-tunneling 9899/tcp # SCTP TUNNELING sctp-tunneling 9899/udp # SCTP TUNNELING iua 9900/sctp # IUA iua 9900/tcp # IUA iua 9900/udp # IUA domaintime 9909/tcp # domaintime domaintime 9909/udp # domaintime sype-transport 9911/tcp # SYPECom Transport Protocol sype-transport 9911/udp # SYPECom Transport Protocol apc-9950 9950/tcp # APC 9950 apc-9950 9950/udp # APC 9950 apc-9951 9951/tcp # APC 9951 apc-9951 9951/udp # APC 9951 apc-9952 9952/tcp # APC 9952 apc-9952 9952/udp # APC 9952 acis 9953/tcp # 9953 acis 9953/udp # 9953 osm-appsrvr 9990/tcp # OSM Applet Server osm-appsrvr 9990/udp # OSM Applet Server osm-oev 9991/tcp # OSM Event Server osm-oev 9991/udp # OSM Event Server palace-1 9992/tcp # OnLive-1 palace-1 9992/udp # OnLive-1 palace-2 9993/tcp # OnLive-2 palace-2 9993/udp # OnLive-2 palace-3 9994/tcp # OnLive-3 palace-3 9994/udp # OnLive-3 palace-4 9995/tcp # Palace-4 palace-4 9995/udp # Palace-4 palace-5 9996/tcp # Palace-5 palace-5 9996/udp # Palace-5 palace-6 9997/tcp # Palace-6 palace-6 9997/udp # Palace-6 distinct32 9998/tcp # Distinct32 distinct32 9998/udp # Distinct32 distinct 9999/tcp # distinct distinct 9999/udp # distinct ndmp 10000/tcp # Network Data Management Protocol ndmp 10000/udp # Network Data Management Protocol scp-config 10001/tcp # SCP Configuration Port scp-config 10001/udp # SCP Configuration Port mvs-capacity 10007/tcp # MVS Capacity mvs-capacity 10007/udp # MVS Capacity octopus 10008/tcp # Octopus Multiplexer octopus 10008/udp # Octopus Multiplexer amanda 10080/tcp # amanda backup services amanda 10080/udp # amanda backup services kamanda 10081/tcp # amanda backup services (Kerberos) kamanda 10081/udp # amanda backup services (Kerberos) amandaidx 10082/tcp # amanda backup services amidxtape 10083/tcp # amanda backup services itap-ddtp 10100/tcp # VERITAS ITAP DDTP itap-ddtp 10100/udp # VERITAS ITAP DDTP ezmeeting-2 10101/tcp # eZmeeting ezmeeting-2 10101/udp # eZmeeting ezproxy-2 10102/tcp # eZproxy ezproxy-2 10102/udp # eZproxy ezrelay 10103/tcp # eZrelay ezrelay 10103/udp # eZrelay bctp-server 10107/tcp # VERITAS BCTP, server bctp-server 10107/udp # VERITAS BCTP, server netiq-endpoint 10113/tcp # NetIQ Endpoint netiq-endpoint 10113/udp # NetIQ Endpoint netiq-qcheck 10114/tcp # NetIQ Qcheck netiq-qcheck 10114/udp # NetIQ Qcheck netiq-endpt 10115/tcp # NetIQ Endpoint netiq-endpt 10115/udp # NetIQ Endpoint netiq-voipa 10116/tcp # NetIQ VoIP Assessor netiq-voipa 10116/udp # NetIQ VoIP Assessor bmc-perf-sd 10128/tcp # BMC-PERFORM-SERVICE DAEMON bmc-perf-sd 10128/udp # BMC-PERFORM-SERVICE DAEMON qb-db-server 10160/tcp # QB Database Server qb-db-server 10160/udp # QB Database Server apollo-relay 10252/tcp # Apollo Relay Port apollo-relay 10252/udp # Apollo Relay Port axis-wimp-port 10260/tcp # Axis WIMP Port axis-wimp-port 10260/udp # Axis WIMP Port blocks 10288/tcp # Blocks blocks 10288/udp # Blocks rmiaux 10990/tcp # Auxiliary RMI Port rmiaux 10990/udp # Auxiliary RMI Port irisa 11000/tcp # IRISA irisa 11000/udp # IRISA metasys 11001/tcp # Metasys metasys 11001/udp # Metasys vce 11111/tcp # Viral Computing Environment (VCE) vce 11111/udp # Viral Computing Environment (VCE) dicom 11112/tcp # DICOM dicom 11112/udp # DICOM suncacao-snmp 11161/tcp # sun cacao snmp access point suncacao-snmp 11161/udp # sun cacao snmp access point suncacao-jmxmp 11162/tcp # sun cacao JMX-remoting access point suncacao-jmxmp 11162/udp # sun cacao JMX-remoting access point suncacao-rmi 11163/tcp # sun cacao rmi registry access point suncacao-rmi 11163/udp # sun cacao rmi registry access point suncacao-csa 11164/tcp # sun cacao command-streaming access point suncacao-csa 11164/udp # sun cacao command-streaming access point suncacao-websvc 11165/tcp # sun cacao web service access point suncacao-websvc 11165/udp # sun cacao web service access point smsqp 11201/tcp # smsqp smsqp 11201/udp # smsqp imip 11319/tcp # IMIP imip 11319/udp # IMIP imip-channels 11320/tcp # IMIP Channels Port imip-channels 11320/udp # IMIP Channels Port arena-server 11321/tcp # Arena Server Listen arena-server 11321/udp # Arena Server Listen atm-uhas 11367/tcp # ATM UHAS atm-uhas 11367/udp # ATM UHAS pgpkeyserver 11371/tcp # PGP/GPG public keyserver pgpkeyserver 11371/udp # PGP/GPG public keyserver tempest-port 11600/tcp # Tempest Protocol Port tempest-port 11600/udp # Tempest Protocol Port h323callsigalt 11720/tcp # H323 Call Signal Alternate h323callsigalt 11720/udp # H323 Call Signal Alternate intrepid-ssl 11751/tcp # Intrepid SSL intrepid-ssl 11751/udp # Intrepid SSL sysinfo-sp 11967/tcp # SysInfo Service Protocol sysinfo-sp 11967/udp # SysInfo Sercice Protocol entextxid 12000/tcp # IBM Enterprise Extender SNA XID Exchange entextxid 12000/udp # IBM Enterprise Extender SNA XID Exchange entextnetwk 12001/tcp # IBM Enterprise Extender SNA COS Network Priority entextnetwk 12001/udp # IBM Enterprise Extender SNA COS Network Priority entexthigh 12002/tcp # IBM Enterprise Extender SNA COS High Priority entexthigh 12002/udp # IBM Enterprise Extender SNA COS High Priority entextmed 12003/tcp # IBM Enterprise Extender SNA COS Medium Priority entextmed 12003/udp # IBM Enterprise Extender SNA COS Medium Priority entextlow 12004/tcp # IBM Enterprise Extender SNA COS Low Priority entextlow 12004/udp # IBM Enterprise Extender SNA COS Low Priority dbisamserver1 12005/tcp # DBISAM Database Server - Regular dbisamserver1 12005/udp # DBISAM Database Server - Regular dbisamserver2 12006/tcp # DBISAM Database Server - Admin dbisamserver2 12006/udp # DBISAM Database Server - Admin accuracer 12007/tcp # Accuracer Database System __ Server accuracer 12007/udp # Accuracer Database System __ Server accuracer-dbms 12008/tcp # Accuracer Database System __ Admin accuracer-dbms 12008/udp # Accuracer Database System __ Admin vipera 12012/tcp # Vipera Messaging Service vipera 12012/udp # Vipera Messaging Service rets-ssl 12109/tcp # RETS over SSL rets-ssl 12109/udp # RETS over SSL nupaper-ss 12121/tcp # NuPaper Session Service nupaper-ss 12121/udp # NuPaper Session Service cawas 12168/tcp # CA Web Access Service cawas 12168/udp # CA Web Access Service hivep 12172/tcp # HiveP hivep 12172/udp # HiveP linogridengine 12300/tcp # LinoGrid Engine linogridengine 12300/udp # LinoGrid Engine warehouse-sss 12321/tcp # Warehouse Monitoring Syst SSS warehouse-sss 12321/udp # Warehouse Monitoring Syst SSS warehouse 12322/tcp # Warehouse Monitoring Syst warehouse 12322/udp # Warehouse Monitoring Syst italk 12345/tcp # Italk Chat System italk 12345/udp # Italk Chat System tsaf 12753/tcp # tsaf port tsaf 12753/udp # tsaf port i-zipqd 13160/tcp # I-ZIPQD i-zipqd 13160/udp # I-ZIPQD powwow-client 13223/tcp # PowWow Client powwow-client 13223/udp # PowWow Client powwow-server 13224/tcp # PowWow Server powwow-server 13224/udp # PowWow Server bprd 13720/tcp # BPRD (VERITAS NetBackup) bprd 13720/udp # BPRD (VERITAS NetBackup) bpdbm 13721/tcp # BPDBM (VERITAS NetBackup) bpdbm 13721/udp # BPDBM (VERITAS NetBackup) bpjava-msvc 13722/tcp # BP Java MSVC Protocol bpjava-msvc 13722/udp # BP Java MSVC Protocol vnetd 13724/tcp # Veritas Network Utility vnetd 13724/udp # Veritas Network Utility bpcd 13782/tcp # VERITAS NetBackup bpcd 13782/udp # VERITAS NetBackup vopied 13783/tcp # VOPIED Protocol vopied 13783/udp # VOPIED Protocol nbdb 13785/tcp # NetBackup Database nbdb 13785/udp # NetBackup Database nomdb 13786/tcp # Veritas-nomdb nomdb 13786/udp # Veritas-nomdb dsmcc-config 13818/tcp # DSMCC Config dsmcc-config 13818/udp # DSMCC Config dsmcc-session 13819/tcp # DSMCC Session Messages dsmcc-session 13819/udp # DSMCC Session Messages dsmcc-passthru 13820/tcp # DSMCC Pass-Thru Messages dsmcc-passthru 13820/udp # DSMCC Pass-Thru Messages dsmcc-download 13821/tcp # DSMCC Download Protocol dsmcc-download 13821/udp # DSMCC Download Protocol dsmcc-ccp 13822/tcp # DSMCC Channel Change Protocol dsmcc-ccp 13822/udp # DSMCC Channel Change Protocol sua 14001/sctp # SUA sua 14001/tcp # SUA sua 14001/udp # De-Registered (2001 June 06) sage-best-com1 14033/tcp # sage Best! Config Server 1 sage-best-com1 14033/udp # sage Best! Config Server 1 sage-best-com2 14034/tcp # sage Best! Config Server 2 sage-best-com2 14034/udp # sage Best! Config Server 2 vcs-app 14141/tcp # VCS Application vcs-app 14141/udp # VCS Application gcm-app 14145/tcp # GCM Application gcm-app 14145/udp # GCM Application vrts-tdd 14149/tcp # Veritas Traffic Director vrts-tdd 14149/udp # Veritas Traffic Director hde-lcesrvr-1 14936/tcp # hde-lcesrvr-1 hde-lcesrvr-1 14936/udp # hde-lcesrvr-1 hde-lcesrvr-2 14937/tcp # hde-lcesrvr-2 hde-lcesrvr-2 14937/udp # hde-lcesrvr-2 hydap 15000/tcp # Hypack Data Aquisition hydap 15000/udp # Hypack Data Aquisition xpilot 15345/tcp # XPilot Contact Port xpilot 15345/udp # XPilot Contact Port 3link 15363/tcp # 3Link Negotiation 3link 15363/udp # 3Link Negotiation ptp 15740/tcp # Picture Transfer Protocol ptp 15740/udp # Picture Transfer Protocol sun-sea-port 16161/tcp # Solaris SEA Port sun-sea-port 16161/udp # Solaris SEA Port etb4j 16309/tcp # etb4j etb4j 16309/udp # etb4j netserialext1 16360/tcp # netserialext1 netserialext1 16360/udp # netserialext1 netserialext2 16361/tcp # netserialext2 netserialext2 16361/udp # netserialext2 netserialext3 16367/tcp # netserialext3 netserialext3 16367/udp # netserialext3 netserialext4 16368/tcp # netserialext4 netserialext4 16368/udp # netserialext4 connected 16384/tcp # Connected Corp connected 16384/udp # Connected Corp intel-rci-mp 16991/tcp # INTEL-RCI-MP intel-rci-mp 16991/udp # INTEL-RCI-MP amt-soap-http 16992/tcp # Intel(R) AMT SOAP/HTTP amt-soap-http 16992/udp # Intel(R) AMT SOAP/HTTP amt-soap-https 16993/tcp # Intel(R) AMT SOAP/HTTPS amt-soap-https 16993/udp # Intel(R) AMT SOAP/HTTPS amt-redir-tcp 16994/tcp # Intel(R) AMT Redirection/TCP amt-redir-tcp 16994/udp # Intel(R) AMT Redirection/TCP amt-redir-tls 16995/tcp # Intel(R) AMT Redirection/TLS amt-redir-tls 16995/udp # Intel(R) AMT Redirection/TLS isode-dua 17007/tcp isode-dua 17007/udp soundsvirtual 17185/tcp # Sounds Virtual soundsvirtual 17185/udp # Sounds Virtual chipper 17219/tcp # Chipper chipper 17219/udp # Chipper ssh-mgmt 17235/tcp # SSH Tectia Manager ssh-mgmt 17235/udp # SSH Tectia Manager biimenu 18000/tcp # Beckman Instruments, Inc. biimenu 18000/udp # Beckman Instruments, Inc. opsec-cvp 18181/tcp # OPSEC CVP opsec-cvp 18181/udp # OPSEC CVP opsec-ufp 18182/tcp # OPSEC UFP opsec-ufp 18182/udp # OPSEC UFP opsec-sam 18183/tcp # OPSEC SAM opsec-sam 18183/udp # OPSEC SAM opsec-lea 18184/tcp # OPSEC LEA opsec-lea 18184/udp # OPSEC LEA opsec-omi 18185/tcp # OPSEC OMI opsec-omi 18185/udp # OPSEC OMI ohsc 18186/tcp # Occupational Health SC ohsc 18186/udp # Occupational Health Sc opsec-ela 18187/tcp # OPSEC ELA opsec-ela 18187/udp # OPSEC ELA checkpoint-rtm 18241/tcp # Check Point RTM checkpoint-rtm 18241/udp # Check Point RTM ac-cluster 18463/tcp # AC Cluster ac-cluster 18463/udp # AC Cluster ique 18769/tcp # IQue Protocol ique 18769/udp # IQue Protocol infotos 18881/tcp # Infotos infotos 18881/udp # Infotos apc-necmp 18888/tcp # APCNECMP apc-necmp 18888/udp # APCNECMP igrid 19000/tcp # iGrid Server igrid 19000/udp # iGrid Server opsec-uaa 19191/tcp # OPSEC UAA opsec-uaa 19191/udp # OPSEC UAA ua-secureagent 19194/tcp # UserAuthority SecureAgent ua-secureagent 19194/udp # UserAuthority SecureAgent keysrvr 19283/tcp # Key Server for SASSAFRAS keysrvr 19283/udp # Key Server for SASSAFRAS keyshadow 19315/tcp # Key Shadow for SASSAFRAS keyshadow 19315/udp # Key Shadow for SASSAFRAS mtrgtrans 19398/tcp # mtrgtrans mtrgtrans 19398/udp # mtrgtrans hp-sco 19410/tcp # hp-sco hp-sco 19410/udp # hp-sco hp-sca 19411/tcp # hp-sca hp-sca 19411/udp # hp-sca hp-sessmon 19412/tcp # HP-SESSMON hp-sessmon 19412/udp # HP-SESSMON fxuptp 19539/tcp # FXUPTP fxuptp 19539/udp # FXUPTP sxuptp 19540/tcp # SXUPTP sxuptp 19540/udp # SXUPTP jcp 19541/tcp # JCP Client jcp 19541/udp # JCP Client dnp 20000/tcp # DNP dnp 20000/udp # DNP microsan 20001/tcp # MicroSAN microsan 20001/udp # MicroSAN commtact-http 20002/tcp # Commtact HTTP commtact-http 20002/udp # Commtact HTTP commtact-https 20003/tcp # Commtact HTTPS commtact-https 20003/udp # Commtact HTTPS isdnlog 20011/tcp # isdn logging system isdnlog 20011/udp # isdn logging system vboxd 20012/tcp # voice box system vboxd 20012/udp # voice box system opendeploy 20014/tcp # OpenDeploy Listener opendeploy 20014/udp # OpenDeploy Listener nburn_id 20034/tcp # NetBurner ID Port nburn_id 20034/udp # NetBurner ID Port ipdtp-port 20202/tcp # IPD Tunneling Port ipdtp-port 20202/udp # IPD Tunneling Port ipulse-ics 20222/tcp # iPulse-ICS ipulse-ics 20222/udp # iPulse-ICS track 20670/tcp # Track track 20670/udp # Track athand-mmp 20999/tcp # At Hand MMP athand-mmp 20999/udp # AT Hand MMP irtrans 21000/tcp # IRTrans Control irtrans 21000/udp # IRTrans Control vofr-gateway 21590/tcp # VoFR Gateway vofr-gateway 21590/udp # VoFR Gateway tvpm 21800/tcp # TVNC Pro Multiplexing tvpm 21800/udp # TVNC Pro Multiplexing webphone 21845/tcp # webphone webphone 21845/udp # webphone netspeak-is 21846/tcp # NetSpeak Corp. Directory Services netspeak-is 21846/udp # NetSpeak Corp. Directory Services netspeak-cs 21847/tcp # NetSpeak Corp. Connection Services netspeak-cs 21847/udp # NetSpeak Corp. Connection Services netspeak-acd 21848/tcp # NetSpeak Corp. Automatic Call Distribution netspeak-acd 21848/udp # NetSpeak Corp. Automatic Call Distribution netspeak-cps 21849/tcp # NetSpeak Corp. Credit Processing System netspeak-cps 21849/udp # NetSpeak Corp. Credit Processing System snapenetio 22000/tcp # SNAPenetIO snapenetio 22000/udp # SNAPenetIO optocontrol 22001/tcp # OptoControl optocontrol 22001/udp # OptoControl wnn6 22273/tcp wnn4 wnn6 22273/udp wnn4 wnn4_Cn 22289/tcp # used by the cWnn package wnn4_Kr 22305/tcp # used by the kWnn package wnn4_Tw 22321/tcp # used by the tWnn package vocaltec-phone 22555/udp # Vocaltec Internet Phone vocaltec-wconf 22555/tcp # Vocaltec Web Conference aws-brf 22800/tcp # Telerate Information Platform LAN aws-brf 22800/udp # Telerate Information Platform LAN brf-gw 22951/tcp # Telerate Information Platform WAN brf-gw 22951/udp # Telerate Information Platform WAN med-ltp 24000/tcp # med-ltp med-ltp 24000/udp # med-ltp med-fsp-rx 24001/tcp # med-fsp-rx med-fsp-rx 24001/udp # med-fsp-rx med-fsp-tx 24002/tcp # med-fsp-tx med-fsp-tx 24002/udp # med-fsp-tx med-supp 24003/tcp # med-supp med-supp 24003/udp # med-supp med-ovw 24004/tcp # med-ovw med-ovw 24004/udp # med-ovw med-ci 24005/tcp # med-ci med-ci 24005/udp # med-ci med-net-svc 24006/tcp # med-net-svc med-net-svc 24006/udp # med-net-svc filesphere 24242/tcp # fileSphere filesphere 24242/udp # fileSphere vista-4gl 24249/tcp # Vista 4GL vista-4gl 24249/udp # Vista 4GL ild 24321/tcp # Isolv Local Directory ild 24321/udp # Isolv Local Directory intel_rci 24386/tcp # Intel RCI intel_rci 24386/udp # Intel RCI binkp 24554/tcp # Binkley binkp 24554/udp # Binkley flashfiler 24677/tcp # FlashFiler flashfiler 24677/udp # FlashFiler proactivate 24678/tcp # Turbopower Proactivate proactivate 24678/udp # Turbopower Proactivate snip 24922/tcp # Simple Net Ident Protocol snip 24922/udp # Simple Net Ident Protocol icl-twobase1 25000/tcp # icl-twobase1 icl-twobase1 25000/udp # icl-twobase1 icl-twobase2 25001/tcp # icl-twobase2 icl-twobase2 25001/udp # icl-twobase2 icl-twobase3 25002/tcp # icl-twobase3 icl-twobase3 25002/udp # icl-twobase3 icl-twobase4 25003/tcp # icl-twobase4 icl-twobase4 25003/udp # icl-twobase4 icl-twobase5 25004/tcp # icl-twobase5 icl-twobase5 25004/udp # icl-twobase5 icl-twobase6 25005/tcp # icl-twobase6 icl-twobase6 25005/udp # icl-twobase6 icl-twobase7 25006/tcp # icl-twobase7 icl-twobase7 25006/udp # icl-twobase7 icl-twobase8 25007/tcp # icl-twobase8 icl-twobase8 25007/udp # icl-twobase8 icl-twobase9 25008/tcp # icl-twobase9 icl-twobase9 25008/udp # icl-twobase9 icl-twobase10 25009/tcp # icl-twobase10 icl-twobase10 25009/udp # icl-twobase10 vocaltec-hos 25793/tcp # Vocaltec Address Server vocaltec-hos 25793/udp # Vocaltec Address Server tasp-net 25900/tcp # TASP Network Comm tasp-net 25900/udp # TASP Network Comm niobserver 25901/tcp # NIObserver niobserver 25901/udp # NIObserver niprobe 25903/tcp # NIProbe niprobe 25903/udp # NIProbe quake 26000/tcp quake 26000/udp wnn6-ds 26208/tcp wnn6-ds 26208/udp ezproxy 26260/tcp # eZproxy ezproxy 26260/udp # eZproxy ezmeeting 26261/tcp # eZmeeting ezmeeting 26261/udp # eZmeeting k3software-svr 26262/tcp # K3 Software-Server k3software-svr 26262/udp # K3 Software-Server k3software-cli 26263/tcp # K3 Software-Client k3software-cli 26263/udp # K3 Software-Client gserver 26264/tcp # Gserver gserver 26264/udp # Gserver imagepump 27345/tcp # ImagePump imagepump 27345/udp # ImagePump asp 27374/tcp # Address Search Protocol asp 27374/udp # Address Search Protocol kopek-httphead 27504/tcp # Kopek HTTP Head Port kopek-httphead 27504/udp # Kopek HTTP Head Port ars-vista 27782/tcp # ARS VISTA Application ars-vista 27782/udp # ARS VISTA Application tw-auth-key 27999/tcp # TW Authentication/Key Distribution and tw-auth-key 27999/udp # Attribute Certificate Services nxlmd 28000/tcp # NX License Manager nxlmd 28000/udp # NX License Manager siemensgsm 28240/tcp # Siemens GSM siemensgsm 28240/udp # Siemens GSM pago-services1 30001/tcp # Pago Services 1 pago-services1 30001/udp # Pago Services 1 pago-services2 30002/tcp # Pago Services 2 pago-services2 30002/udp # Pago Services 2 xqosd 31416/tcp # XQoS network monitor xqosd 31416/udp # XQoS network monitor tetrinet 31457/tcp # TetriNET Protocol tetrinet 31457/udp # TetriNET Protocol lm-mon 31620/tcp # lm mon lm-mon 31620/udp # lm mon gamesmith-port 31765/tcp # GameSmith Port gamesmith-port 31765/udp # GameSmith Port t1distproc60 32249/tcp # T1 Distributed Processor t1distproc60 32249/udp # T1 Distributed Processor apm-link 32483/tcp # Access Point Manager Link apm-link 32483/udp # Access Point Manager Link sec-ntb-clnt 32635/tcp # SecureNotebook-CLNT sec-ntb-clnt 32635/udp # SecureNotebook-CLNT filenet-tms 32768/tcp # Filenet TMS filenet-tms 32768/udp # Filenet TMS filenet-rpc 32769/tcp # Filenet RPC filenet-rpc 32769/udp # Filenet RPC filenet-nch 32770/tcp # Filenet NCH filenet-nch 32770/udp # Filenet NCH filenet-rmi 32771/tcp # FileNET RMI filenet-rmi 32771/udp # FileNet RMI filenet-pa 32772/tcp # FileNET Process Analyzer filenet-pa 32772/udp # FileNET Process Analyzer filenet-cm 32773/tcp # FileNET Component Manager filenet-cm 32773/udp # FileNET Component Manager filenet-re 32774/tcp # FileNET Rules Engine filenet-re 32774/udp # FileNET Rules Engine filenet-pch 32775/tcp # Performance Clearinghouse filenet-pch 32775/udp # Performance Clearinghouse idmgratm 32896/tcp # Attachmate ID Manager idmgratm 32896/udp # Attachmate ID Manager diamondport 33331/tcp # DiamondCentral Interface diamondport 33331/udp # DiamondCentral Interface traceroute 33434/tcp traceroute 33434/udp snip-slave 33656/tcp # SNIP Slave snip-slave 33656/udp # SNIP Slave turbonote-2 34249/tcp # TurboNote Relay Server Default Port turbonote-2 34249/udp # TurboNote Relay Server Default Port p-net-local 34378/tcp # P-Net on IP local p-net-local 34378/udp # P-Net on IP local p-net-remote 34379/tcp # P-Net on IP remote p-net-remote 34379/udp # P-Net on IP remote profinet-rt 34962/tcp # PROFInet RT Unicast profinet-rt 34962/udp # PROFInet RT Unicast profinet-rtm 34963/tcp # PROFInet RT Multicast profinet-rtm 34963/udp # PROFInet RT Multicast profinet-cm 34964/tcp # PROFInet Context Manager profinet-cm 34964/udp # PROFInet Context Manager ethercat 34980/tcp # EtherCAT Port ethercat 34980/udp # EhterCAT Port kastenxpipe 36865/tcp # KastenX Pipe kastenxpipe 36865/udp # KastenX Pipe neckar 37475/tcp # science + computing's Venus Administration Port neckar 37475/udp # science + computing's Venus Administration Port galaxy7-data 38201/tcp # Galaxy7 Data Tunnel galaxy7-data 38201/udp # Galaxy7 Data Tunnel fairview 38202/tcp # Fairview Message Service fairview 38202/udp # Fairview Message Service agpolicy 38203/tcp # AppGate Policy Server agpolicy 38203/udp # AppGate Policy Server turbonote-1 39681/tcp # TurboNote Default Port turbonote-1 39681/udp # TurboNote Default Port cscp 40841/tcp # CSCP cscp 40841/udp # CSCP csccredir 40842/tcp # CSCCREDIR csccredir 40842/udp # CSCCREDIR csccfirewall 40843/tcp # CSCCFIREWALL csccfirewall 40843/udp # CSCCFIREWALL fs-qos 41111/tcp # Foursticks QoS Protocol fs-qos 41111/udp # Foursticks QoS Protocol crestron-cip 41794/tcp # Crestron Control Port crestron-cip 41794/udp # Crestron Control Port crestron-ctp 41795/tcp # Crestron Terminal Port crestron-ctp 41795/udp # Crestron Terminal Port candp 42508/tcp # Computer Associates network discovery protocol candp 42508/udp # Computer Associates network discovery protocol candrp 42509/tcp # CA discovery response candrp 42509/udp # CA discovery response caerpc 42510/tcp # CA eTrust RPC caerpc 42510/udp # CA eTrust RPC reachout 43188/tcp # REACHOUT reachout 43188/udp # REACHOUT ndm-agent-port 43189/tcp # NDM-AGENT-PORT ndm-agent-port 43189/udp # NDM-AGENT-PORT ip-provision 43190/tcp # IP-PROVISION ip-provision 43190/udp # IP-PROVISION ciscocsdb 43441/tcp # Cisco NetMgmt DB Ports ciscocsdb 43441/udp # Cisco NetMgmt DB Ports pmcd 44321/tcp # PCP server (pmcd) pmcd 44321/udp # PCP server (pmcd) pmcdproxy 44322/tcp # PCP server (pmcd) proxy pmcdproxy 44322/udp # PCP server (pmcd) proxy rbr-debug 44553/tcp # REALbasic Remote Debug rbr-debug 44553/udp # REALbasic Remote Debug rockwell-encap 44818/tcp # Rockwell Encapsulation rockwell-encap 44818/udp # Rockwell Encapsulation invision-ag 45054/tcp # InVision AG invision-ag 45054/udp # InVision AG eba 45678/tcp # EBA PRISE eba 45678/udp # EBA PRISE ssr-servermgr 45966/tcp # SSRServerMgr ssr-servermgr 45966/udp # SSRServerMgr mediabox 46999/tcp # MediaBox Server mediabox 46999/udp # MediaBox Server mbus 47000/tcp # Message Bus mbus 47000/udp # Message Bus dbbrowse 47557/tcp # Databeam Corporation dbbrowse 47557/udp # Databeam Corporation directplaysrvr 47624/tcp # Direct Play Server directplaysrvr 47624/udp # Direct Play Server ap 47806/tcp # ALC Protocol ap 47806/udp # ALC Protocol bacnet 47808/tcp # Building Automation and Control Networks bacnet 47808/udp # Building Automation and Control Networks nimcontroller 48000/tcp # Nimbus Controller nimcontroller 48000/udp # Nimbus Controller nimspooler 48001/tcp # Nimbus Spooler nimspooler 48001/udp # Nimbus Spooler nimhub 48002/tcp # Nimbus Hub nimhub 48002/udp # Nimbus Hub nimgtw 48003/tcp # Nimbus Gateway nimgtw 48003/udp # Nimbus Gateway com-bardac-dw 48556/tcp # com-bardac-dw com-bardac-dw 48556/udp # com-bardac-dw iqobject 48619/tcp # iqobject iqobject 48619/udp # iqobject tfido 60177/tcp # Ifmail tfido 60177/udp # Ifmail fido 60179/tcp # Ifmail fido 60179/udp # Ifmail
alias dir ls alias less more alias zless zmore alias bzless bzmore alias reconnect "close; cache flush; cd ." alias edit "eval -f \"get '$0' -o ~/.lftp/edit.tmp.$$ && shell \\\"cp -p ~/.lftp/edit.tmp.$$ ~/.lftp/edit.tmp.$$.orig && ${EDITOR:-vi} ~/.lftp/edit.tmp.$$ && test ~/.lftp/edit.tmp.$$ -nt ~/.lftp/edit.tmp.$$.orig\\\" && put ~/.lftp/edit.tmp.$$ -o '$0'; shell rm -f ~/.lftp/edit.tmp.$$*\"" set prompt "lftp \S\? \u\@\h:\w> " set sync-mode/ftp.idsoftware.com on set sync-mode/ftp.microsoft.com on set sync-mode/sunsolve.sun.com on set auto-sync-mode "icrosoft FTP Service|MadGoat|MikroTik" set xfer:max-redirections 10 set cmd:term-status/*screen* "\e_\T\e\\" set cmd:term-status/*xterm* "\e[11;0]\e]2;\T\007\e[11]" set cmd:term-status/*rxvt* "\e[11;0]\e]2;\T\007\e[11]"
root bin daemon adm lp sync shutdown halt mail news uucp operator games nobody
root bin daemon adm lp sync shutdown halt mail news uucp operator games nobody
anonymous_enable=YES local_enable=YES write_enable=YES local_umask=022 dirmessage_enable=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES listen=YES pam_service_name=vsftpd userlist_enable=YES tcp_wrappers=YES
status: inactive
eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 08:00:27:e8:7a:02 brd ff:ff:ff:ff:ff:ff inet 192.168.0.193/24 brd 192.168.0.255 scope global eth0 inet6 fe80::a00:27ff:fee8:7a02/64 scope link valid_lft forever preferred_lft forever
option default-ip-ttl 64; option dhcp-lease-time 86400; option dhcp-message-type 5; option dhcp-server-identifier 192.168.0.1; option domain-name "arnhem.chello.nl"; option domain-name-servers 213.46.228.196,62.179.104.196; option routers 192.168.0.1; option subnet-mask 255.255.255.0; option time-offset 0;
BOOTPROTO=dhcp DEVICE=eth0 HWADDR=08:00:27:e8:7a:02 ONBOOT=yes
Settings for eth0: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised auto-negotiation: Yes Speed: 1000Mb/s Duplex: Full Port: Twisted Pair PHYAD: 0 Transceiver: internal Auto-negotiation: on Supports Wake-on: umbg Wake-on: d Current message level: 0x00000007 (7) Link detected: yes
Pre-set maximums: RX: 4096 RX Mini: 0 RX Jumbo: 0 TX: 4096 Current hardware settings: RX: 256 RX Mini: 0 RX Jumbo: 0 TX: 256
driver: e1000 version: 7.3.21-k4-3-NAPI firmware-version: N/A bus-info: 0000:00:03.0
Offload parameters for eth0: rx-checksumming: on tx-checksumming: on scatter-gather: on tcp segmentation offload: on udp fragmentation offload: off generic segmentation offload: off generic-receive-offload: off
NIC statistics: rx_packets: 321 tx_packets: 157 rx_bytes: 30695 tx_bytes: 15874 rx_broadcast: 174 tx_broadcast: 4 rx_multicast: 68 tx_multicast: 54 rx_errors: 0 tx_errors: 0 tx_dropped: 0 multicast: 68 collisions: 0 rx_length_errors: 0 rx_over_errors: 0 rx_crc_errors: 0 rx_frame_errors: 0 rx_no_buffer_count: 0 rx_missed_errors: 0 tx_aborted_errors: 0 tx_carrier_errors: 0 tx_fifo_errors: 0 tx_heartbeat_errors: 0 tx_window_errors: 0 tx_abort_late_coll: 0 tx_deferred_ok: 0 tx_single_coll_ok: 0 tx_multi_coll_ok: 0 tx_timeout_count: 0 tx_restart_queue: 0 rx_long_length_errors: 0 rx_short_length_errors: 0 rx_align_errors: 0 tx_tcp_seg_good: 0 tx_tcp_seg_failed: 0 rx_flow_control_xon: 0 rx_flow_control_xoff: 0 tx_flow_control_xon: 0 tx_flow_control_xoff: 0 rx_long_byte_count: 30695 rx_csum_offload_good: 0 rx_csum_offload_errors: 0 rx_header_split: 0 alloc_rx_buff_failed: 0 tx_smbus: 0 rx_smbus: 0 dropped_smbus: 0
eth0 inet 224.0.0.1 inet 224.0.0.251 inet6 ff02::1 inet6 ff02::1:ffe8:7a02 inet6 ff02::fb link 01:00:5e:00:00:01 link 01:00:5e:00:00:fb link 33:33:00:00:00:01 link 33:33:00:00:00:fb link 33:33:ff:e8:7a:02
eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 08:00:27:f7:cf:17 brd ff:ff:ff:ff:ff:ff inet 192.168.56.26/24 brd 192.168.56.255 scope global eth1 inet6 fe80::a00:27ff:fef7:cf17/64 scope link valid_lft forever preferred_lft forever
option dhcp-lease-time 1200; option dhcp-message "Ok, ok, here it is"; option dhcp-message-type 5; option dhcp-server-identifier 192.168.56.100; option subnet-mask 255.255.255.0;
BOOTPROTO=static DEVICE=eth1 HWADDR=08:00:27:f7:cf:17 IPADDR=192.168.56.26 NETMASK=255.255.255.0 ONBOOT=yes
Settings for eth1: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised auto-negotiation: Yes Speed: 1000Mb/s Duplex: Full Port: Twisted Pair PHYAD: 0 Transceiver: internal Auto-negotiation: on Supports Wake-on: umbg Wake-on: d Current message level: 0x00000007 (7) Link detected: yes
Pre-set maximums: RX: 4096 RX Mini: 0 RX Jumbo: 0 TX: 4096 Current hardware settings: RX: 256 RX Mini: 0 RX Jumbo: 0 TX: 256
driver: e1000 version: 7.3.21-k4-3-NAPI firmware-version: N/A bus-info: 0000:00:08.0
Offload parameters for eth1: rx-checksumming: on tx-checksumming: on scatter-gather: on tcp segmentation offload: on udp fragmentation offload: off generic segmentation offload: off generic-receive-offload: off
NIC statistics: rx_packets: 1661 tx_packets: 1540 rx_bytes: 840423 tx_bytes: 1031514 rx_broadcast: 22 tx_broadcast: 9 rx_multicast: 1 tx_multicast: 35 rx_errors: 0 tx_errors: 0 tx_dropped: 0 multicast: 1 collisions: 0 rx_length_errors: 0 rx_over_errors: 0 rx_crc_errors: 0 rx_frame_errors: 0 rx_no_buffer_count: 0 rx_missed_errors: 0 tx_aborted_errors: 0 tx_carrier_errors: 0 tx_fifo_errors: 0 tx_heartbeat_errors: 0 tx_window_errors: 0 tx_abort_late_coll: 0 tx_deferred_ok: 0 tx_single_coll_ok: 0 tx_multi_coll_ok: 0 tx_timeout_count: 0 tx_restart_queue: 0 rx_long_length_errors: 0 rx_short_length_errors: 0 rx_align_errors: 0 tx_tcp_seg_good: 193 tx_tcp_seg_failed: 0 rx_flow_control_xon: 0 rx_flow_control_xoff: 0 tx_flow_control_xon: 0 tx_flow_control_xoff: 0 rx_long_byte_count: 840423 rx_csum_offload_good: 0 rx_csum_offload_errors: 0 rx_header_split: 0 alloc_rx_buff_failed: 0 tx_smbus: 0 rx_smbus: 0 dropped_smbus: 0
eth1 inet 224.0.0.1 inet 224.0.0.251 inet6 ff02::1 inet6 ff02::1:fff7:cf17 inet6 ff02::fb link 01:00:5e:00:00:01 link 01:00:5e:00:00:fb link 33:33:00:00:00:01 link 33:33:00:00:00:fb link 33:33:ff:f7:cf:17
lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo inet6 ::1/128 scope host valid_lft forever preferred_lft forever
BROADCAST=127.255.255.255 DEVICE=lo IPADDR=127.0.0.1 NAME=loopback NETMASK=255.0.0.0 NETWORK=127.0.0.0 ONBOOT=yes
Settings for lo: Link detected: yes
Offload parameters for lo: rx-checksumming: off tx-checksumming: off scatter-gather: off tcp segmentation offload: off udp fragmentation offload: off generic segmentation offload: off generic-receive-offload: off
inet 224.0.0.1 inet6 ff02::1 lo
sit0: <NOARP> mtu 1480 qdisc noop link/sit 0.0.0.0 brd 0.0.0.0
Settings for sit0: No data available
Offload parameters for sit0: no offload info available
inet6 ff02::1 sit0
defaults { log_type = SYSLOG daemon info log_on_failure = HOST log_on_success = PID HOST DURATION EXIT cps = 50 10 instances = 50 per_source = 10 v6only = no groups = yes umask = 002 } includedir /etc/xinetd.d
service chargen { disable = yes id = chargen-dgram type = INTERNAL wait = yes socket_type = dgram }
service chargen { disable = yes id = chargen-stream type = INTERNAL wait = no socket_type = stream }
service daytime { disable = yes id = daytime-dgram type = INTERNAL wait = yes socket_type = dgram }
service daytime { disable = yes id = daytime-stream type = INTERNAL wait = no socket_type = stream }
service discard { disable = yes id = discard-dgram type = INTERNAL wait = yes socket_type = dgram }
service discard { disable = yes id = discard-stream type = INTERNAL wait = no socket_type = stream }
service echo { disable = yes id = echo-dgram type = INTERNAL wait = yes socket_type = dgram }
service echo { disable = yes id = echo-stream type = INTERNAL wait = no socket_type = stream }
service eklogin { flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/klogind server_args = -e -5 disable = yes }
service telnet { flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/telnetd server_args = -e log_on_failure += USERID disable = yes }
service ftp { flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/ftpd server_args = -l -a log_on_failure += USERID disable = yes }
service klogin { flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/klogind server_args = -5 disable = yes }
service telnet { flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/telnetd log_on_failure += USERID disable = yes }
service kshell { flags = REUSE socket_type = stream wait = no user = root server = /usr/kerberos/sbin/kshd server_args = -e -5 disable = yes }
service asf-rmcp { disable = yes id = rmcp wait = yes socket_type = dgram user = root server = /bin/false port = 623 } service asf-secure-rmcp { disable = yes id = rmcp-secondary wait = yes socket_type = dgram user = root server = /bin/false port = 664 }
service rsync { disable = yes socket_type = stream wait = no user = root server = /usr/bin/rsync server_args = --daemon log_on_failure += USERID }
service tcpmux { disable = yes id = tcpmux-server type = INTERNAL wait = no socket_type = stream }
service time { disable = yes id = time-dgram type = INTERNAL wait = yes socket_type = dgram }
service time { disable = yes id = time-stream type = INTERNAL wait = no socket_type = stream }
shared-memory: ------ Shared Memory Segments -------- shared-memory: key shmid owner perms bytes nattch status shared-memory: 0x74008d26 2064384 root 600 4 0 shared-memory: 0x74008cfc 2752513 root 600 4 0 shared-memory: 0x00000000 3112962 root 644 80 2 shared-memory: 0x74008cfb 2719747 root 600 4 0 shared-memory: 0x00000000 3145732 root 644 16384 2 shared-memory: 0x00000000 3178501 root 644 280 2 message-queue: ------ Message Queues -------- message-queue: key msqid owner perms used-bytes messages semaphores: ------ Semaphore Arrays -------- semaphores: key semid owner perms nsems semaphores: 0x000000a7 0 root 600 1
1 cmp 2 nbyte 3 u32 4 meta
0x10 lowdelay 0x08 throughput 0x04 reliability 0x02 mincost 0x20 priority 0x40 immediate 0x60 flash 0x80 flash-override 0xa0 critical 0xc0 internet 0xe0 network
0 unspec 1 redirect 2 kernel 3 boot 4 static 8 gated 9 ra 10 mrt 11 zebra 12 bird 13 dnrouted 14 xorp 15 ntk 254 gated/aggr 253 gated/bgp 252 gated/ospf 251 gated/ospfase 250 gated/rip 249 gated/static 248 gated/conn 247 gated/inet 246 gated/default
0 cosmos
0 global 255 nowhere 254 host 253 link 200 site
255 local 254 main 253 default 0 unspec
icmp_echo_ignore_all: 0 icmp_echo_ignore_broadcasts: 1 icmp_errors_use_inbound_ifaddr: 0 icmp_ignore_bogus_error_responses: 1 icmp_ratelimit: 1000 icmp_ratemask: 6168
ip_conntrack_max: 16376 ip_default_ttl: 64 ip_dynaddr: 0 ip_forward: 0 ip_local_port_range: 32768 61000 ip_local_reserved_ports: ip_no_pmtu_disc: 0 ip_nonlocal_bind: 0 ipfrag_high_thresh: 262144 ipfrag_low_thresh: 196608 ipfrag_max_dist: 64 ipfrag_secret_interval: 600 ipfrag_time: 30
tcp_abc: 0 tcp_abort_on_overflow: 0 tcp_adv_win_scale: 2 tcp_app_win: 31 tcp_base_mss: 512 tcp_congestion_control: bic tcp_dma_copybreak: 4096 tcp_dsack: 1 tcp_ecn: 0 tcp_fack: 1 tcp_fin_timeout: 60 tcp_frto: 0 tcp_keepalive_intvl: 75 tcp_keepalive_probes: 9 tcp_keepalive_time: 7200 tcp_low_latency: 0 tcp_max_orphans: 8192 tcp_max_syn_backlog: 1024 tcp_max_tw_buckets: 180000 tcp_mem: 24576 32768 49152 tcp_moderate_rcvbuf: 1 tcp_mtu_probing: 0 tcp_no_metrics_save: 0 tcp_orphan_retries: 0 tcp_reordering: 3 tcp_retrans_collapse: 1 tcp_retries1: 3 tcp_retries2: 15 tcp_rfc1337: 0 tcp_rmem: 4096 87380 1048576 tcp_sack: 1 tcp_slow_start_after_idle: 1 tcp_stdurg: 0 tcp_syn_retries: 5 tcp_synack_retries: 5 tcp_syncookies: 1 tcp_timestamps: 1 tcp_tso_win_divisor: 3 tcp_tw_recycle: 0 tcp_tw_reuse: 0 tcp_window_scaling: 1 tcp_wmem: 4096 16384 1048576 tcp_workaround_signed_windows: 0
domain: (none)
binding:
is-master-server: 0
is-slave-server: 0
is-client: 0
Use "ethers" for map "ethers.byname" Use "aliases" for map "mail.aliases" Use "services" for map "services.byname" Use "protocols" for map "protocols.bynumber" Use "hosts" for map "hosts.byname" Use "networks" for map "networks.byaddr" Use "group" for map "group.byname" Use "passwd" for map "passwd.byname"
ssh 22 sunrpc 111 xmlrpc-beep 602 remoteware-cl 3000 mysql 3306 5666 5666 5667 5667 5669 5669
kernel ip routing table destination:gateway:genmask:flags:irtt:iface 192.168.0.0:0.0.0.0:255.255.255.0:u:0:eth0 192.168.56.0:0.0.0.0:255.255.255.0:u:0:eth1 169.254.0.0:0.0.0.0:255.255.0.0:u:0:eth1 0.0.0.0:192.168.0.1:0.0.0.0:ug:0:eth0
program vers proto 100000 2 tcp portmapper 100000 2 udp portmapper 100024 1 tcp status 100024 1 udp status
net.core.dev_weight = 64 net.core.message_burst = 10 net.core.message_cost = 5 net.core.netdev_budget = 300 net.core.netdev_max_backlog = 1000 net.core.optmem_max = 20480 net.core.rmem_default = 129024 net.core.rmem_max = 129024 net.core.somaxconn = 128 net.core.wmem_default = 129024 net.core.wmem_max = 129024 net.core.xfrm_acq_expires = 30 net.core.xfrm_aevent_etime = 10 net.core.xfrm_aevent_rseqth = 2 net.core.xfrm_larval_drop = 0 net.ipv4.cipso_cache_bucket_size = 10 net.ipv4.cipso_cache_enable = 1 net.ipv4.cipso_rbm_optfmt = 0 net.ipv4.cipso_rbm_strictvalid = 1 net.ipv4.conf.all.accept_local = 0 net.ipv4.conf.all.accept_redirects = 1 net.ipv4.conf.all.accept_source_route = 0 net.ipv4.conf.all.arp_accept = 0 net.ipv4.conf.all.arp_announce = 0 net.ipv4.conf.all.arp_filter = 0 net.ipv4.conf.all.arp_ignore = 0 net.ipv4.conf.all.bootp_relay = 0 net.ipv4.conf.all.disable_policy = 0 net.ipv4.conf.all.disable_xfrm = 0 net.ipv4.conf.all.force_igmp_version = 0 net.ipv4.conf.all.forwarding = 0 net.ipv4.conf.all.log_martians = 0 net.ipv4.conf.all.mc_forwarding = 0 net.ipv4.conf.all.medium_id = 0 net.ipv4.conf.all.promote_secondaries = 0 net.ipv4.conf.all.proxy_arp = 0 net.ipv4.conf.all.rp_filter = 0 net.ipv4.conf.all.secure_redirects = 1 net.ipv4.conf.all.send_redirects = 1 net.ipv4.conf.all.shared_media = 1 net.ipv4.conf.all.tag = 0 net.ipv4.conf.default.accept_local = 0 net.ipv4.conf.default.accept_redirects = 1 net.ipv4.conf.default.accept_source_route = 0 net.ipv4.conf.default.arp_accept = 0 net.ipv4.conf.default.arp_announce = 0 net.ipv4.conf.default.arp_filter = 0 net.ipv4.conf.default.arp_ignore = 0 net.ipv4.conf.default.bootp_relay = 0 net.ipv4.conf.default.disable_policy = 0 net.ipv4.conf.default.disable_xfrm = 0 net.ipv4.conf.default.force_igmp_version = 0 net.ipv4.conf.default.forwarding = 0 net.ipv4.conf.default.log_martians = 0 net.ipv4.conf.default.mc_forwarding = 0 net.ipv4.conf.default.medium_id = 0 net.ipv4.conf.default.promote_secondaries = 0 net.ipv4.conf.default.proxy_arp = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.secure_redirects = 1 net.ipv4.conf.default.send_redirects = 1 net.ipv4.conf.default.shared_media = 1 net.ipv4.conf.default.tag = 0 net.ipv4.icmp_echo_ignore_all = 0 net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.icmp_errors_use_inbound_ifaddr = 0 net.ipv4.icmp_ignore_bogus_error_responses = 1 net.ipv4.icmp_ratelimit = 1000 net.ipv4.icmp_ratemask = 6168 net.ipv4.igmp_max_memberships = 20 net.ipv4.igmp_max_msf = 10 net.ipv4.inet_peer_gc_maxtime = 120 net.ipv4.inet_peer_gc_mintime = 10 net.ipv4.inet_peer_maxttl = 600 net.ipv4.inet_peer_minttl = 120 net.ipv4.inet_peer_threshold = 65664 net.ipv4.ip_conntrack_max = 16376 net.ipv4.ip_default_ttl = 64 net.ipv4.ip_dynaddr = 0 net.ipv4.ip_forward = 0 net.ipv4.ip_local_port_range = 32768 61000 net.ipv4.ip_local_reserved_ports = net.ipv4.ip_no_pmtu_disc = 0 net.ipv4.ip_nonlocal_bind = 0 net.ipv4.ipfrag_high_thresh = 262144 net.ipv4.ipfrag_low_thresh = 196608 net.ipv4.ipfrag_max_dist = 64 net.ipv4.ipfrag_secret_interval = 600 net.ipv4.ipfrag_time = 30 net.ipv4.neigh.default.anycast_delay = 99 net.ipv4.neigh.default.app_solicit = 0 net.ipv4.neigh.default.base_reachable_time = 30 net.ipv4.neigh.default.base_reachable_time_ms = 30000 net.ipv4.neigh.default.delay_first_probe_time = 5 net.ipv4.neigh.default.gc_interval = 30 net.ipv4.neigh.default.gc_stale_time = 60 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_thresh2 = 512 net.ipv4.neigh.default.gc_thresh3 = 1024 net.ipv4.neigh.default.locktime = 99 net.ipv4.neigh.default.mcast_solicit = 3 net.ipv4.neigh.default.proxy_delay = 79 net.ipv4.neigh.default.proxy_qlen = 64 net.ipv4.neigh.default.retrans_time = 99 net.ipv4.neigh.default.retrans_time_ms = 1000 net.ipv4.neigh.default.ucast_solicit = 3 net.ipv4.neigh.default.unres_qlen = 3 net.ipv4.netfilter.ip_conntrack_buckets = 2047 net.ipv4.netfilter.ip_conntrack_checksum = 1 net.ipv4.netfilter.ip_conntrack_generic_timeout = 600 net.ipv4.netfilter.ip_conntrack_icmp_timeout = 30 net.ipv4.netfilter.ip_conntrack_log_invalid = 0 net.ipv4.netfilter.ip_conntrack_max = 16376 net.ipv4.netfilter.ip_conntrack_tcp_be_liberal = 0 net.ipv4.netfilter.ip_conntrack_tcp_loose = 1 net.ipv4.netfilter.ip_conntrack_tcp_max_retrans = 3 net.ipv4.netfilter.ip_conntrack_tcp_timeout_close = 10 net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait = 60 net.ipv4.netfilter.ip_conntrack_tcp_timeout_established = 432000 net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait = 120 net.ipv4.netfilter.ip_conntrack_tcp_timeout_last_ack = 30 net.ipv4.netfilter.ip_conntrack_tcp_timeout_max_retrans = 300 net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_recv = 60 net.ipv4.netfilter.ip_conntrack_tcp_timeout_syn_sent = 120 net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait = 120 net.ipv4.netfilter.ip_conntrack_udp_timeout = 30 net.ipv4.netfilter.ip_conntrack_udp_timeout_stream = 180 net.ipv4.route.error_burst = 5000 net.ipv4.route.error_cost = 1000 net.ipv4.route.gc_elasticity = 8 net.ipv4.route.gc_interval = 60 net.ipv4.route.gc_min_interval = 0 net.ipv4.route.gc_min_interval_ms = 500 net.ipv4.route.gc_thresh = 4096 net.ipv4.route.gc_timeout = 300 net.ipv4.route.max_delay = 10 net.ipv4.route.max_size = 65536 net.ipv4.route.min_adv_mss = 256 net.ipv4.route.min_delay = 2 net.ipv4.route.min_pmtu = 552 net.ipv4.route.mtu_expires = 600 net.ipv4.route.redirect_load = 20 net.ipv4.route.redirect_number = 9 net.ipv4.route.redirect_silence = 20480 net.ipv4.route.rt_cache_rebuild_count = 4 net.ipv4.route.secret_interval = 600 net.ipv4.tcp_abc = 0 net.ipv4.tcp_abort_on_overflow = 0 net.ipv4.tcp_adv_win_scale = 2 net.ipv4.tcp_app_win = 31 net.ipv4.tcp_base_mss = 512 net.ipv4.tcp_congestion_control = bic net.ipv4.tcp_dma_copybreak = 4096 net.ipv4.tcp_dsack = 1 net.ipv4.tcp_ecn = 0 net.ipv4.tcp_fack = 1 net.ipv4.tcp_fin_timeout = 60 net.ipv4.tcp_frto = 0 net.ipv4.tcp_keepalive_intvl = 75 net.ipv4.tcp_keepalive_probes = 9 net.ipv4.tcp_keepalive_time = 7200 net.ipv4.tcp_low_latency = 0 net.ipv4.tcp_max_orphans = 8192 net.ipv4.tcp_max_syn_backlog = 1024 net.ipv4.tcp_max_tw_buckets = 180000 net.ipv4.tcp_mem = 24576 32768 49152 net.ipv4.tcp_moderate_rcvbuf = 1 net.ipv4.tcp_mtu_probing = 0 net.ipv4.tcp_no_metrics_save = 0 net.ipv4.tcp_orphan_retries = 0 net.ipv4.tcp_reordering = 3 net.ipv4.tcp_retrans_collapse = 1 net.ipv4.tcp_retries1 = 3 net.ipv4.tcp_retries2 = 15 net.ipv4.tcp_rfc1337 = 0 net.ipv4.tcp_rmem = 4096 87380 1048576 net.ipv4.tcp_sack = 1 net.ipv4.tcp_slow_start_after_idle = 1 net.ipv4.tcp_stdurg = 0 net.ipv4.tcp_syn_retries = 5 net.ipv4.tcp_synack_retries = 5 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_timestamps = 1 net.ipv4.tcp_tso_win_divisor = 3 net.ipv4.tcp_tw_recycle = 0 net.ipv4.tcp_tw_reuse = 0 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_wmem = 4096 16384 1048576 net.ipv4.tcp_workaround_signed_windows = 0 net.ipv4.udp_mem = 47808 63744 95616 net.ipv4.udp_rmem_min = 4096 net.ipv4.udp_wmem_min = 4096 net.ipv6.bindv6only = 0 net.ipv6.conf.all.accept_dad = 1 net.ipv6.conf.all.accept_ra = 1 net.ipv6.conf.all.accept_ra_defrtr = 1 net.ipv6.conf.all.accept_ra_pinfo = 1 net.ipv6.conf.all.accept_ra_rtr_pref = 1 net.ipv6.conf.all.accept_redirects = 1 net.ipv6.conf.all.autoconf = 1 net.ipv6.conf.all.dad_transmits = 1 net.ipv6.conf.all.disable_ipv6 = 0 net.ipv6.conf.all.force_mld_version = 0 net.ipv6.conf.all.forwarding = 0 net.ipv6.conf.all.hop_limit = 64 net.ipv6.conf.all.max_addresses = 16 net.ipv6.conf.all.max_desync_factor = 600 net.ipv6.conf.all.mtu = 1280 net.ipv6.conf.all.regen_max_retry = 5 net.ipv6.conf.all.router_probe_interval = 60 net.ipv6.conf.all.router_solicitation_delay = 1 net.ipv6.conf.all.router_solicitation_interval = 4 net.ipv6.conf.all.router_solicitations = 3 net.ipv6.conf.all.temp_prefered_lft = 86400 net.ipv6.conf.all.temp_valid_lft = 604800 net.ipv6.conf.all.use_tempaddr = 0 net.ipv6.conf.default.accept_dad = 1 net.ipv6.conf.default.accept_ra = 1 net.ipv6.conf.default.accept_ra_defrtr = 1 net.ipv6.conf.default.accept_ra_pinfo = 1 net.ipv6.conf.default.accept_ra_rtr_pref = 1 net.ipv6.conf.default.accept_redirects = 1 net.ipv6.conf.default.autoconf = 1 net.ipv6.conf.default.dad_transmits = 1 net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.default.force_mld_version = 0 net.ipv6.conf.default.forwarding = 0 net.ipv6.conf.default.hop_limit = 64 net.ipv6.conf.default.max_addresses = 16 net.ipv6.conf.default.max_desync_factor = 600 net.ipv6.conf.default.mtu = 1280 net.ipv6.conf.default.regen_max_retry = 5 net.ipv6.conf.default.router_probe_interval = 60 net.ipv6.conf.default.router_solicitation_delay = 1 net.ipv6.conf.default.router_solicitation_interval = 4 net.ipv6.conf.default.router_solicitations = 3 net.ipv6.conf.default.temp_prefered_lft = 86400 net.ipv6.conf.default.temp_valid_lft = 604800 net.ipv6.conf.default.use_tempaddr = 0 net.ipv6.icmp.ratelimit = 1000 net.ipv6.ip6frag_high_thresh = 262144 net.ipv6.ip6frag_low_thresh = 196608 net.ipv6.ip6frag_secret_interval = 600 net.ipv6.ip6frag_time = 60 net.ipv6.mld_max_msf = 64 net.ipv6.neigh.default.anycast_delay = 99 net.ipv6.neigh.default.app_solicit = 0 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.locktime = 0 net.ipv6.neigh.default.mcast_solicit = 3 net.ipv6.neigh.default.proxy_delay = 79 net.ipv6.neigh.default.proxy_qlen = 64 net.ipv6.neigh.default.retrans_time_ms = 1000 net.ipv6.neigh.default.ucast_solicit = 3 net.ipv6.neigh.default.unres_qlen = 3 net.ipv6.optimistic_dad = 0 net.ipv6.route.gc_elasticity = 0 net.ipv6.route.gc_interval = 30 net.ipv6.route.gc_min_interval = 0 net.ipv6.route.gc_min_interval_ms = 500 net.ipv6.route.gc_thresh = 1024 net.ipv6.route.gc_timeout = 60 net.ipv6.route.max_size = 4096 net.ipv6.route.min_adv_mss = 1 net.ipv6.route.mtu_expires = 600 net.token-ring.rif_timeout = 600000 net.unix.max_dgram_qlen = 10
-D APACHE_MPM_DIR="server/mpm/prefork" -D APR_HAVE_IPV6 (IPv4-mapped addresses -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT -D AP_HAVE_RELIABLE_PIPED_LOGS -D SUEXEC_BIN="/usr/sbin/suexec" -D DEFAULT_PIDLOG="run/httpd.pid" -D DEFAULT_SCOREBOARD="logs/apache_runtime_status" -D DEFAULT_LOCKFILE="logs/accept.lock" -D DEFAULT_ERRORLOG="logs/error_log" -D AP_TYPES_CONFIG_FILE="conf/mime.types" -D SERVER_CONFIG_FILE="conf/httpd.conf" -D APR_HAS_SENDFILE -D APR_HAS_MMAP -D APR_USE_SYSVSEM_SERIALIZE -D APR_USE_PTHREAD_SERIALIZE -D APR_HAS_OTHER_CHILD -D DYNAMIC_MODULE_LIMIT=%ld -D HTTPD_ROOT="/etc/httpd"
ServerTokens OS ServerRoot "/etc/httpd" PidFile run/httpd.pid Timeout 120 KeepAlive Off MaxKeepAliveRequests 100 KeepAliveTimeout 15 <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule> <IfModule worker.c> StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 </IfModule> Listen 80 LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule authn_alias_module modules/mod_authn_alias.so LoadModule authn_anon_module modules/mod_authn_anon.so LoadModule authn_dbm_module modules/mod_authn_dbm.so LoadModule authn_default_module modules/mod_authn_default.so LoadModule authz_host_module modules/mod_authz_host.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule authz_owner_module modules/mod_authz_owner.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_dbm_module modules/mod_authz_dbm.so LoadModule authz_default_module modules/mod_authz_default.so LoadModule ldap_module modules/mod_ldap.so LoadModule authnz_ldap_module modules/mod_authnz_ldap.so LoadModule include_module modules/mod_include.so LoadModule log_config_module modules/mod_log_config.so LoadModule logio_module modules/mod_logio.so LoadModule env_module modules/mod_env.so LoadModule ext_filter_module modules/mod_ext_filter.so LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so LoadModule headers_module modules/mod_headers.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule setenvif_module modules/mod_setenvif.so LoadModule mime_module modules/mod_mime.so LoadModule dav_module modules/mod_dav.so LoadModule status_module modules/mod_status.so LoadModule autoindex_module modules/mod_autoindex.so LoadModule info_module modules/mod_info.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule vhost_alias_module modules/mod_vhost_alias.so LoadModule negotiation_module modules/mod_negotiation.so LoadModule dir_module modules/mod_dir.so LoadModule actions_module modules/mod_actions.so LoadModule speling_module modules/mod_speling.so LoadModule userdir_module modules/mod_userdir.so LoadModule alias_module modules/mod_alias.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule cache_module modules/mod_cache.so LoadModule suexec_module modules/mod_suexec.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule file_cache_module modules/mod_file_cache.so LoadModule mem_cache_module modules/mod_mem_cache.so LoadModule cgi_module modules/mod_cgi.so LoadModule version_module modules/mod_version.so Include conf.d/*.conf User apache Group apache ServerAdmin root@localhost UseCanonicalName Off <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory "/var/www/html"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> <IfModule mod_userdir.c> UserDir disable </IfModule> DirectoryIndex index.html index.html.var AccessFileName .htaccess <Files ~ "^\.ht"> Order allow,deny Deny from all </Files> TypesConfig /etc/mime.types DefaultType text/plain <IfModule mod_mime_magic.c> MIMEMagicFile conf/magic </IfModule> HostnameLookups Off ErrorLog logs/error_log LogLevel warn LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent CustomLog logs/access_log combined ServerSignature On Alias /icons/ "/var/www/icons/" <Directory "/var/www/icons"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> <IfModule mod_dav_fs.c> DAVLockDB /var/lib/dav/lockdb </IfModule> ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" <Directory "/var/www/cgi-bin"> AllowOverride None Options None Order allow,deny Allow from all </Directory> IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ DefaultIcon /icons/unknown.gif ReadmeName README.html HeaderName HEADER.html IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t AddLanguage ca .ca AddLanguage cs .cz .cs AddLanguage da .dk AddLanguage de .de AddLanguage el .el AddLanguage en .en AddLanguage eo .eo AddLanguage es .es AddLanguage et .et AddLanguage fr .fr AddLanguage he .he AddLanguage hr .hr AddLanguage it .it AddLanguage ja .ja AddLanguage ko .ko AddLanguage ltz .ltz AddLanguage nl .nl AddLanguage nn .nn AddLanguage no .no AddLanguage pl .po AddLanguage pt .pt AddLanguage pt-BR .pt-br AddLanguage ru .ru AddLanguage sv .sv AddLanguage zh-CN .zh-cn AddLanguage zh-TW .zh-tw LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW ForceLanguagePriority Prefer Fallback AddDefaultCharset UTF-8 AddType application/x-compress .Z AddType application/x-gzip .gz .tgz AddHandler type-map var AddType text/html .shtml AddOutputFilter INCLUDES .shtml Alias /error/ "/var/www/error/" <IfModule mod_negotiation.c> <IfModule mod_include.c> <Directory "/var/www/error"> AllowOverride None Options IncludesNoExec AddOutputFilter Includes html AddHandler type-map var Order allow,deny Allow from all LanguagePriority en es de fr ForceLanguagePriority Prefer Fallback </Directory> </IfModule> </IfModule> BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully BrowserMatch "MS FrontPage" redirect-carefully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully BrowserMatch "^gnome-vfs/1.0" redirect-carefully BrowserMatch "^XML Spy" redirect-carefully BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
LoadModule auth_tkt_module modules/mod_auth_tkt.so
AliasMatch ^/manual(?:/(?:de|en|fr|ja|ko|ru))?(/.*)?$ "/var/www/manual$1" <Directory "/var/www/manual"> Options Indexes AllowOverride None Order allow,deny Allow from all </Directory>
Alias /mrtg /var/www/mrtg <Location /mrtg> Order deny,allow Deny from all Allow from 127.0.0.1 Allow from ::1 </Location>
DocumentRoot /usr/local/nagios/share <Directory /usr/local/nagios/share> Order allow,deny Allow from all </Directory> Alias /static/nmis/ "/usr/local/nagios/nmis/htdocs/" <Directory /usr/local/nagios/nmis/htdocs> Order allow,deny Allow from all </Directory> ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /error_pages ! ProxyPass /javascript ! ProxyPass /stylesheets ! ProxyPass /help ! ProxyPass /images ! ProxyPass /xml ! ProxyPass /favicon.ico ! ProxyPass /graphs ! ProxyPass /static ! ProxyPass /media ! Alias /nagvis /usr/local/nagios/nagvis ProxyPass /nagvis ! TKTAuthSecret "1qaz@WSX3edc$RFV" <Location /nagvis> Options +Indexes Order allow,deny Allow from all AuthType None TKTAuthLoginURL /login?app=nagvis TKTAuthTimeout 86400s TKTAuthToken NAGVIS TKTAuthUnauthURL /access_denied?include_header=0 require valid-user </Location> <Directory /usr/local/nagios/share/error_pages/> Options ExecCGI AddHandler cgi-script .cgi </Directory> ErrorDocument 500 /error_pages/handle_error.cgi?error=500 ErrorDocument 501 /error_pages/handle_error.cgi?error=501 ErrorDocument 502 /error_pages/handle_error.cgi?error=502 ErrorDocument 503 /error_pages/handle_error.cgi?error=503 ErrorDocument 504 /error_pages/handle_error.cgi?error=504 ErrorDocument 505 /error_pages/handle_error.cgi?error=505 ProxyPass / http://127.0.0.1:3000/ retry=5 ProxyPassReverse / http://127.0.0.1:3000/
LoadModule perl_module modules/mod_perl.so
<IfModule prefork.c> LoadModule php5_module modules/libphp5.so </IfModule> <IfModule worker.c> LoadModule php5_module modules/libphp5-zts.so </IfModule> AddHandler php5-script .php AddType text/html .php DirectoryIndex index.php
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule python_module modules/mod_python.so <Directory "/var/www/manual/mod/mod_python"> <Files *.html> SetHandler default-handler </Files> </Directory>
ScriptAliasMatch "^.*/([^/]*)/cgi-bin/scc-wrapper.cgi" "/var/opt/scc-srv/data/www/$1/cgi-bin/scc-wrapper.cgi" Alias /scc /var/opt/scc-srv/data/www <Directory "/var/opt/scc-srv/data/www"> Options -Indexes FollowSymLinks +ExecCGI MultiViews AllowOverride AuthConfig Order allow,deny allow from all </Directory>
ScriptAlias /Squid/cgi-bin/cachemgr.cgi /usr/lib64/squid/cachemgr.cgi <Location /Squid/cgi-bin/cachemgr.cgi> order allow,deny allow from localhost.localdomain </Location>
LoadModule ssl_module modules/mod_ssl.so Listen 443 AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl SSLPassPhraseDialog builtin SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000) SSLSessionCacheTimeout 300 SSLMutex default SSLRandomSeed startup file:/dev/urandom 256 SSLRandomSeed connect builtin SSLCryptoDevice builtin <VirtualHost _default_:443> ErrorLog logs/ssl_error_log TransferLog logs/ssl_access_log LogLevel warn SSLEngine on SSLProtocol all -SSLv2 SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW SSLCertificateFile /etc/pki/tls/certs/localhost.crt SSLCertificateKeyFile /etc/pki/tls/private/localhost.key <Files ~ "\.(cgi|shtml|phtml|php3?)$"> SSLOptions +StdEnvVars </Files> <Directory "/var/www/cgi-bin"> SSLOptions +StdEnvVars </Directory> SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 CustomLog logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" </VirtualHost>
Alias /usage /var/www/usage <Location /usage> Order deny,allow Deny from all Allow from 127.0.0.1 Allow from ::1 </Location>
<LocationMatch "^/+$"> Options -Indexes ErrorDocument 403 /error/noindex.html </LocationMatch>
*/5 * * * * root LANG=C LC_ALL=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg --lock-file /var/lock/mrtg/mrtg_l --confcache-file /var/lib/mrtg/mrtg.ok
if [ -s /var/log/httpd/access_log ]; then exec /usr/bin/webalizer -Q fi
#!/bin/sh if [ ! -e /var/run/anacron.pid ]; then anacron -u cron.daily fi
#!/usr/bin/perl -w use strict; my $Version = '7.3'; my $VDate = '03/24/06'; $ENV{'REAL_LANG'}=$ENV{'LANG'} if $ENV{'LANG'}; $ENV{'REAL_LC_ALL'}=$ENV{'LC_ALL'} if $ENV{'LC_ALL'}; $ENV{'LC_ALL'} = "C"; use POSIX qw(locale_h); setlocale(LC_ALL, "C"); my $BaseDir = "/usr/share/logwatch"; my $ConfigDir = "/etc/logwatch"; my $PerlVersion = "$^X"; use Getopt::Long; use POSIX qw(uname); use File::Temp qw/ tempdir /; eval "use lib \"$BaseDir/lib\";"; eval "use Logwatch \':dates\'"; my (%Config, @ServiceList, @LogFileList, %ServiceData, %LogFileData); my (@AllShared, @AllLogFiles, @FileList); my (@ReadConfigNames, @ReadConfigValues); $Config{'detail'} = 0; $Config{'mailto'} = "root"; $Config{'mailfrom'} = "Logwatch"; $Config{'save'} = ""; $Config{'print'} = 0; $Config{'range'} = "yesterday"; $Config{'debug'} = 0; $Config{'archives'} = 0; $Config{'tmpdir'} = "/var/cache/logwatch"; $Config{'splithosts'} = 0; $Config{'multiemail'} = 0; $Config{'numeric'} = 0; $Config{'pathtocat'} = "cat"; $Config{'pathtozcat'} = "zcat"; $Config{'output'} = "unformatted"; $Config{'encode'} = 0; if (-e "$ConfigDir/conf/html/header.html") { $Config{'html_header'} = "$ConfigDir/conf/html/header.html"; } else { $Config{'html_header'} = "$BaseDir/default.conf/html/header.html"; } if (-e "$ConfigDir/conf/html/footer.html") { $Config{'html_footer'} = "$ConfigDir/conf/html/footer.html"; } else { $Config{'html_footer'} = "$BaseDir/default.conf/html/footer.html"; } $Config{'logdir'} = "/var/log"; my ($OSname, $hostname, $release, $version, $machine) = POSIX::uname(); $Config{'hostname'} = "$hostname"; sub Usage () { print "\nUsage: $0 [--detail <level>] [--logfile <name>]\n" . " [--print] [--mailto <addr>] [--archives] [--range <range>] [--debug <level>]\n" . " [--save <filename>] [--help] [--version] [--service <name>]\n" . " [--numeric] [--output <output_type>]\n" . " [--splithosts] [--multiemail] [--no-oldfiles-log]\n\n"; print "--detail <level>: Report Detail Level - High, Med, Low or any #.\n"; print "--logfile <name>: *Name of a logfile definition to report on.\n"; print "--logdir <name>: Name of default directory where logs are stored.\n"; print "--service <name>: *Name of a service definition to report on.\n"; print "--print: Display report to stdout.\n"; print "--mailto <addr>: Mail report to <addr>.\n"; print "--archives: Use archived log files too.\n"; print "--save <filename>: Save to <filename>.\n"; print "--range <range>: Date range: Yesterday, Today, All, Help\n"; print " where help will describe additional options\n"; print "--numeric: Display ddresses numerically rather than symbolically and numerically\n"; print " (saves a nameserver address-to-name lookup).\n"; print "--debug <level>: Debug Level - High, Med, Low or any #.\n"; print "--splithosts: Create a report for each host in syslog.\n"; print "--multiemail: Send each host report in a separate email. Ignored if \n"; print " not using --splithosts.\n"; print "--output <output type>: Report Format - mail, html or unformatted#.\n"; print "--encode: Use base64 encoding on output mail.\n"; print "--no-oldfiles-log: Suppress the logwatch log, which informs about the\n"; print " old files in logwatch tmpdir.\n"; print "--version: Displays current version.\n"; print "--help: This message.\n"; print "* = Switch can be specified multiple times...\n\n"; exit (99); } my %wordsToInts = (yes => 1, no => 0, true => 1, false => 0, on => 1, off => 0, high => 10, med => 5, medium => 5, low => 0); sub getInt { my $word = shift; my $tmpWord = lc $word; $tmpWord =~ s/\W//g; return $wordsToInts{$tmpWord} if (defined $wordsToInts{$tmpWord}); unless ($word =~ s/^"(.*)"$/$1/) { return lc $word; } return $word; } sub CleanVars { foreach (keys %Config) { $Config{$_} = getInt($Config{$_}); } } sub PrintStdArray (@) { my @ThisArray = @_; my $i; for ($i=0;$i<=$#ThisArray;$i++) { print "[" . $i . "] = " . $ThisArray[$i] . "\n"; } } sub PrintConfig () { foreach (keys %Config) { print $_ . ' -> ' . $Config{$_} . "\n"; } print "Service List:\n"; PrintStdArray @ServiceList; print "\n"; print "LogFile List:\n"; PrintStdArray @LogFileList; print "\n\n"; } sub PrintServiceData () { my ($ThisKey1,$ThisKey2,$i); foreach $ThisKey1 (keys %ServiceData) { print "\nService Name: " . $ThisKey1 . "\n"; foreach $ThisKey2 (keys %{$ServiceData{$ThisKey1}}) { next unless ($ThisKey2 =~ /^\d+-/); print " $ThisKey2 = $ServiceData{$ThisKey1}{$ThisKey2}\n"; } for ($i=0;$i<=$#{$ServiceData{$ThisKey1}{'logfiles'}};$i++) { print " Logfile = " . $ServiceData{$ThisKey1}{'logfiles'}[$i] . "\n"; } } } sub PrintLogFileData () { my ($ThisKey1,$ThisKey2,$i); foreach $ThisKey1 (keys %LogFileData) { print "\nLogfile Name: " . $ThisKey1 . "\n"; foreach $ThisKey2 (keys %{$LogFileData{$ThisKey1}}) { next unless ($ThisKey2 =~ /^\d+-/); print " $ThisKey2 = $LogFileData{$ThisKey1}{$ThisKey2}\n"; } for ($i=0;$i<=$#{$LogFileData{$ThisKey1}{'logfiles'}};$i++) { print " Logfile = " . $LogFileData{$ThisKey1}{'logfiles'}[$i] . "\n"; } for ($i=0;$i<=$#{$LogFileData{$ThisKey1}{'archives'}};$i++) { print " Archive = " . $LogFileData{$ThisKey1}{'archives'}[$i] . "\n"; } } } sub ReadConfigFile { my $FileName = $_[0]; my $Prefix = $_[1]; if ( ! -f $FileName ) { return(0); } if ($Config{'debug'} > 5) { print "ReadConfigFile: Opening " . $FileName . "\n"; } open (READCONFFILE, $FileName) or die "Cannot open file $FileName: $!\n"; my $line; while ($line = <READCONFFILE>) { if ($Config{'debug'} > 9) { print "ReadConfigFile: Read Line: " . $line; } $line =~ s/\#.*\\\s*$/\\/; $line =~ s/\#.*$//; next if ($line =~ /^\s*$/); if ($Prefix) { next if ($line !~ m/\Q$Prefix:\E/); $line =~ s/\Q$Prefix:\E//; } if ($line =~ s/\\\s*$//) { $line .= <READCONFFILE>; redo unless eof(READCONFFILE); } my ($name, $value) = split /=/, $line, 2; $name =~ s/^\s+//; $name =~ s/\s+$//; if ($value) { $value =~ s/^\s+//; $value =~ s/\s+$//; } else { $value = ''; } push @ReadConfigNames, lc $name; push @ReadConfigValues, getInt $value; if ($Config{'debug'} > 7) { print "ReadConfigFile: Name=" . $name . ", Value=" . $value . "\n"; } } close READCONFFILE; } if ($Config{'debug'} > 8) { print "\nDefault Config:\n"; PrintConfig(); } CleanVars(); my $OldMailTo = $Config{'mailto'}; my $OldPrint = $Config{'print'}; @ReadConfigNames = (); @ReadConfigValues = (); ReadConfigFile ("$BaseDir/default.conf/logwatch.conf", ""); ReadConfigFile ("$BaseDir/dist.conf/logwatch.conf", ""); ReadConfigFile ("$ConfigDir/conf/logwatch.conf", ""); ReadConfigFile ("$ConfigDir/conf/override.conf", "logwatch"); for (my $i = 0; $i <= $#ReadConfigNames; $i++) { if ($ReadConfigNames[$i] eq "logfile") { if ($ReadConfigValues[$i] eq "") { @LogFileList = (); } elsif (! grep(/^$ReadConfigValues[$i]$/, @LogFileList)) { push @LogFileList, $ReadConfigValues[$i]; } } elsif ($ReadConfigNames[$i] eq "service") { if ($ReadConfigValues[$i] eq "") { @ServiceList = (); } elsif (! grep(/^$ReadConfigValues[$i]$/, @ServiceList)) { push @ServiceList, $ReadConfigValues[$i]; } } else { $Config{$ReadConfigNames[$i]} = $ReadConfigValues[$i]; } } CleanVars(); if ($OldMailTo ne $Config{'mailto'}) { $Config{'print'} = 0; } elsif ($OldPrint ne $Config{'print'}) { $Config{'mailto'} = ""; } if ($Config{'debug'} > 8) { print "\nConfig After Config File:\n"; PrintConfig(); } my @TempLogFileList = (); my @TempServiceList = (); my $Help = 0; my $ShowVersion = 0; my $NoOldfilesLog = 0; $OldMailTo = $Config{'mailto'}; $OldPrint = $Config{'print'}; GetOptions ( "d|detail=s" => \$Config{'detail'}, "l|logfile=s@" => \@TempLogFileList, "logdir=s" => \$Config{'logdir'}, "s|service=s@" => \@TempServiceList, "p|print" => \$Config{'print'}, "m|mailto=s" => \$Config{'mailto'}, "save=s" => \$Config{'save'}, "a|archives" => \$Config{'archives'}, "debug=s" => \$Config{'debug'}, "r|range=s" => \$Config{'range'}, "n|numeric" => \$Config{'numeric'}, "h|help" => \$Help, "v|version" => \$ShowVersion, "hostname=s" => \$Config{'hostname'}, "splithosts" => \$Config{'splithosts'}, "multiemail" => \$Config{'multiemail'}, "o|output=s" => \$Config{'output'}, "encode" => \$Config{'encode'}, "no-oldfiles-log" => \$NoOldfilesLog ) or Usage(); $Help and Usage(); if ($Config{'range'} =~ /help/i) { RangeHelpDM(); exit(0); } if ($ShowVersion) { print "Logwatch $Version (released $VDate)\n"; exit 0; } CleanVars(); my $outtype_mail=0; my $outtype_html=0; my $outtype_unformatted=0; my $index_par=0; my @format = (250); my %out_body; if ( $Config{'output'} eq 'mail' ) { $outtype_mail = 1; } elsif ( ($Config{'output'} eq 'html') || ($Config{'output'} eq 'html-embed') ) { $outtype_html = 1; } elsif ( $Config{'output'} eq 'unformatted' ) { $outtype_unformatted = 1; } else { print STDERR "$0: unknown output-format: $Config{'output'}\n\n"; } my @reports = (); my $out_head =''; my $out_mime =''; my $out_reference =''; my $out_foot =''; if ( $Config{'encode'} == 1 ) { eval "require MIME::Base64"; if ($@) { print STDERR "No MIME::Base64 installed can not use --encode\n"; } else { import MIME::Base64; } } if ($OldMailTo ne $Config{'mailto'}) { $Config{'print'} = 0; } elsif ($OldPrint ne $Config{'print'}) { $Config{'mailto'} = ""; } if ($Config{'debug'} > 8) { print "\nCommand Line Parameters:\n Log File List:\n"; PrintStdArray @TempLogFileList; print "\n Service List:\n"; PrintStdArray @TempServiceList; print "\nConfig After Command Line Parsing:\n"; PrintConfig(); } if ($#TempLogFileList > -1) { @LogFileList = @TempLogFileList; for (my $i = 0; $i <= $#LogFileList; $i++) { $LogFileList[$i] = lc($LogFileList[$i]); } @ServiceList = (); } if ($#TempServiceList > -1) { @ServiceList = @TempServiceList; for (my $i = 0; $i <= $#ServiceList; $i++) { $ServiceList[$i] = lc($ServiceList[$i]); } } if ( ($#ServiceList == -1) and ($#LogFileList == -1) ) { push @ServiceList, 'all'; } if ($Config{'debug'} > 5) { print "\nConfig After Everything:\n"; PrintConfig(); } my @TempAllServices = (); my @services = (); my (@CmdList, @CmdArgList, @Separators, $ThisFile, $count); foreach my $ServicesDir ("$BaseDir/default.conf", "$BaseDir/dist.conf", "$ConfigDir/conf") { if (-d "$ServicesDir/services") { opendir(SERVICESDIR, "$ServicesDir/services") or die "$ServicesDir $!"; while (defined($ThisFile = readdir(SERVICESDIR))) { if ((-f "$ServicesDir/services/$ThisFile") && (!grep (/^$ThisFile$/, @services)) && ($ThisFile =~ /\.conf$/)) { push @services, $ThisFile; } } closedir SERVICESDIR; } } foreach my $f (@services) { my $ThisService = lc $f; $ThisService =~ s/\.conf$//; push @TempAllServices, $ThisService; @ReadConfigNames = (); @ReadConfigValues = (); @Separators = (); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$BaseDir/default.conf/services/$f", ""); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$BaseDir/dist.conf/services/$f", ""); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$ConfigDir/conf/services/$f",""); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$ConfigDir/conf/override.conf", "services/$ThisService"); @CmdList = (); @CmdArgList = (); $ServiceData{$ThisService}{'displayorder'} = 0.5; for (my $i = 0; $i <= $#ReadConfigNames; $i++) { if (grep(/^$i$/, @Separators)) { $count = 0; } if ($ReadConfigNames[$i] eq 'logfile') { if ($ReadConfigValues[$i] eq "") { @{$ServiceData{$ThisService}{'logfiles'}} = (); } elsif (! grep(/^$ReadConfigValues[$i]$/, @{$ServiceData{$ThisService}{'logfiles'}})) { push @{$ServiceData{$ThisService}{'logfiles'}}, $ReadConfigValues[$i]; } } elsif ($ReadConfigNames[$i] =~ /^\*/) { if ($count == 0) { @CmdList = (); @CmdArgList = (); } $count++; push (@CmdList, $ReadConfigNames[$i]); push (@CmdArgList, $ReadConfigValues[$i]); } else { $ServiceData{$ThisService}{$ReadConfigNames[$i]} = $ReadConfigValues[$i]; } } for my $i (0..$#CmdList) { $ServiceData{$ThisService}{+sprintf("%03d-%s", $i, $CmdList[$i])} = $CmdArgList[$i]; } } my @AllServices = sort @TempAllServices; my @logfiles = (); foreach my $LogfilesDir ("$BaseDir/default.conf", "$BaseDir/dist.conf", "$ConfigDir/conf") { if (-d "$LogfilesDir/logfiles") { opendir(LOGFILEDIR, "$LogfilesDir/logfiles") or die "$LogfilesDir $!"; while (defined($ThisFile = readdir(LOGFILEDIR))) { if ((-f "$LogfilesDir/logfiles/$ThisFile") && (!grep (/^$ThisFile$/, @logfiles))) { push @logfiles, $ThisFile; } } closedir LOGFILEDIR; } } for $ThisFile (@logfiles) { my $ThisLogFile = $ThisFile; if ($ThisLogFile =~ s/\.conf$//i) { push @AllLogFiles, $ThisLogFile; @ReadConfigNames = (); @ReadConfigValues = (); @Separators = (); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$BaseDir/default.conf/logfiles/$ThisFile", ""); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$BaseDir/dist.conf/logfiles/$ThisFile", ""); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$ConfigDir/conf/logfiles/$ThisFile", ""); push (@Separators, scalar(@ReadConfigNames)); ReadConfigFile("$ConfigDir/conf/override.conf", "logfiles/$ThisLogFile"); @CmdList = (); @CmdArgList = (); @{$LogFileData{$ThisLogFile}{'logfiles'}} = (); @{$LogFileData{$ThisLogFile}{'archives'}} = (); for (my $i = 0; $i <= $#ReadConfigNames; $i++) { if (grep(/^$i$/, @Separators)) { $count = 0; } my @TempLogFileList; if ($ReadConfigNames[$i] eq "logfile") { if ($ReadConfigValues[$i] eq "") { @{$LogFileData{$ThisLogFile}{'logfiles'}} = (); } else { if ($ReadConfigValues[$i] !~ m=^/=) { foreach my $dir ("$Config{'logdir'}/", "/var/adm/", "/var/log/", "") { @TempLogFileList = reverse(glob($dir . $ReadConfigValues[$i])); last if (@TempLogFileList && (-e $TempLogFileList[0])); } } else { @TempLogFileList = reverse(glob($ReadConfigValues[$i])); } foreach my $TempLogFileName (@TempLogFileList) { if (grep(/^\Q$TempLogFileName\E$/, @{$LogFileData{$ThisLogFile}{'logfiles'}})) { if ($Config{'debug'} > 2) { print "Removing duplicate LogFile file $TempLogFileName from $ThisFile configuration.\n"; } } else { if (-e $TempLogFileName) { push @{$LogFileData{$ThisLogFile}{'logfiles'}}, $TempLogFileName; } } } } } elsif ($ReadConfigNames[$i] eq "archive") { if ($ReadConfigValues[$i] eq "") { @{$LogFileData{$ThisLogFile}{'archives'}} = (); } else { if ($ReadConfigValues[$i] !~ m=^/=) { foreach my $dir ("$Config{'logdir'}/", "/var/adm/", "/var/log/", "") { @TempLogFileList = reverse(glob($dir . $ReadConfigValues[$i])); last if (@TempLogFileList && (-e $TempLogFileList[0])); } } else { @TempLogFileList = reverse(glob($ReadConfigValues[$i])); } foreach my $TempLogFileName (@TempLogFileList) { if (grep(/^\Q$TempLogFileName\E$/, @{$LogFileData{$ThisLogFile}{'archives'}}) || grep(/^\Q$TempLogFileName\E$/, @{$LogFileData{$ThisLogFile}{'logfiles'}}) ) { if ($Config{'debug'} > 2) { print "Removing duplicate Archive file $TempLogFileName from $ThisFile configuration.\n"; } } else { if (-e $TempLogFileName) { push @{$LogFileData{$ThisLogFile}{'archives'}}, $TempLogFileName; } } } } } elsif ($ReadConfigNames[$i] =~ /^\*/) { if ($count == 0) { @CmdList = (); @CmdArgList = (); } $count++; push (@CmdList, $ReadConfigNames[$i]); push (@CmdArgList, $ReadConfigValues[$i]); } else { $LogFileData{$ThisLogFile}{$ReadConfigNames[$i]} = $ReadConfigValues[$i]; } for my $i (0..$#CmdList) { $LogFileData{$ThisLogFile}{+sprintf("%03d-%s", $i, $CmdList[$i])} = $CmdArgList[$i]; } } } } opendir(SHAREDDIR, "$BaseDir/scripts/shared") or die "$BaseDir/scripts/shared/, $!\n"; while (defined($ThisFile = readdir(SHAREDDIR))) { unless (-d "$BaseDir/scripts/shared/$ThisFile") { push @AllShared, lc($ThisFile); } } closedir(SHAREDDIR); if ($Config{'debug'} > 5) { print "\nAll Services:\n"; PrintStdArray @AllServices; print "\nAll Log Files:\n"; PrintStdArray @AllLogFiles; print "\nAll Shared:\n"; PrintStdArray @AllShared; } if ((scalar @ServiceList > 0) && (grep /^all$/i, @ServiceList)) { my %tmphash; foreach my $item (@AllServices) { $tmphash{lc $item} = ""; } foreach my $service (@ServiceList) { next if $service =~ /^all$/i; if ($service =~ /^\-(.+)$/) { my $offservice = lc $1; if (! grep (/^$offservice$/, @AllServices)) { die "Nonexistent service to disable: $offservice\n"; } if (exists $tmphash{$offservice}) { delete $tmphash{$offservice}; } } else { die "Wrong configuration entry for \"Service\", if \"All\" selected, only \"-\" items are allowed\n"; } } @ServiceList = (); foreach my $keys (keys %tmphash) { push @ServiceList, $keys; } @LogFileList = (); } else { my $ThisOne; while (defined($ThisOne = pop @LogFileList)) { unless ($LogFileData{$ThisOne}) { die "Logwatch is not configured to use logfile: $ThisOne\n"; } foreach my $ThisService (keys %ServiceData) { for (my $i = 0; $i <= $#{$ServiceData{$ThisService}{'logfiles'}}; $i++) { if ( $ServiceData{$ThisService}{'logfiles'}[$i] eq $ThisOne ) { push @ServiceList,$ThisService; } } } } @TempServiceList = sort @ServiceList; @ServiceList = (); my $LastOne = ""; while (defined($ThisOne = pop @TempServiceList)) { unless ( ($ThisOne eq $LastOne) or ($ThisOne eq 'all') or ($ThisOne =~ /^-/)) { unless ($ServiceData{$ThisOne}) { die "Logwatch does not know how to process service: $ThisOne\n"; } push @ServiceList, $ThisOne; } $LastOne = $ThisOne; } } foreach my $ServiceName (@ServiceList) { foreach my $LogName ( @{$ServiceData{$ServiceName}{'logfiles'} } ) { unless ( grep m/^$LogName$/, @LogFileList ) { push @LogFileList, $LogName; } } } if ($Config{'debug'} > 7) { print "\n\nAll Service Data:\n"; PrintServiceData; print "\nServices that will be processed:\n"; PrintStdArray @ServiceList; print "\n\n"; print "\n\nAll LogFile Data:\n"; PrintLogFileData; print "\nLogFiles that will be processed:\n"; PrintStdArray @LogFileList; print "\n\n"; } opendir(TMPDIR, $Config{'tmpdir'}) or die "$Config{'tmpdir'} $!"; my @old_dirs = grep { /^logwatch\.\w{8}$/ && -d "$Config{'tmpdir'}/$_" } readdir(TMPDIR); if ((@old_dirs) && ($NoOldfilesLog==0)) { print "You have old files in your logwatch tmpdir ($Config{'tmpdir'}):\n\t"; print join("\n\t", @old_dirs); print "\nThe directories listed above were most likely created by a\n"; print "logwatch run that failed to complete successfully. If so, you\n"; print "may delete these directories.\n\n"; } closedir(TMPDIR); if (!-w $Config{'tmpdir'}) { my $err_str = "You do not have permission to create a temporary directory"; $err_str .= " under $Config{'tmpdir'}."; if ($> !=0) { $err_str .= " You are not running as superuser."; } $err_str .= "\n"; die $err_str; } umask 0177; my $cleanup = 0; if ($Config{'debug'} < 100) { $cleanup = 1; } my $TempDir = tempdir( 'logwatch.XXXXXXXX', DIR => $Config{tmpdir}, CLEANUP => $cleanup ); if ($Config{'debug'}>7) { print "\nMade Temp Dir: " . $TempDir . " with tempdir\n"; } unless ($TempDir =~ m=/$=) { $TempDir .= "/"; } $ENV{'LOGWATCH_DATE_RANGE'} = $Config{'range'}; $ENV{'LOGWATCH_GLOBAL_DETAIL'} = $Config{'detail'}; $ENV{'LOGWATCH_OUTPUT_TYPE'} = $Config{'output'}; $ENV{'LOGWATCH_DEBUG'} = $Config{'debug'}; $ENV{'LOGWATCH_TEMP_DIR'} = $TempDir; $ENV{'LOGWATCH_NUMERIC'} = $Config{'numeric'}; $ENV{'HOSTNAME'} = $Config{'hostname'}; $ENV{'OSname'} = $OSname; if ($Config{'hostlimit'}) { $ENV{'LOGWATCH_ONLY_HOSTNAME'} = $Config{'hostname'}; $ENV{'LOGWATCH_ONLY_HOSTNAME'} =~ s/\..*//; } if ($Config{'debug'}>4) { foreach ('LOGWATCH_DATE_RANGE', 'LOGWATCH_GLOBAL_DETAIL', 'LOGWATCH_OUTPUT_TYPE', 'LOGWATCH_TEMP_DIR', 'LOGWATCH_DEBUG', 'LOGWATCH_ONLY_HOSTNAME') { if ($ENV{$_}) { print "export $_='$ENV{$_}'\n"; } } } my $LibDir = "$BaseDir/lib"; if ($ENV{PERL5LIB}) { $ENV{PERL5LIB} = "$ENV{PERL5LIB}:$LibDir"; } else { $ENV{PERL5LIB} = $LibDir; } unless ($Config{'logdir'} =~ m=/$=) { $Config{'logdir'} .= "/"; } my @EnvList = (); my $LogFile; foreach $LogFile (@LogFileList) { next if ($LogFile eq 'none'); if (!defined($LogFileData{$LogFile}{'logfiles'})) { print "*** Error: There is no logfile defined. Do you have a $ConfigDir/conf/logfiles/" . $LogFile . ".conf file ?\n"; next; } @FileList = $TempDir . $LogFile . "-archive"; push @FileList, @{$LogFileData{$LogFile}{'logfiles'}}; my $DestFile = $TempDir . $LogFile . "-archive"; my $Archive; foreach $Archive (@{$LogFileData{$LogFile}{'archives'}}) { if ($Archive =~ /'/) { print "File $Archive has invalid embedded quotes. File ignored.\n"; next; } my $CheckTime; my @time_t = TimeBuild(); if ($Config{'range'} eq 'all') { if ($Config{'archives'} == 0) { $CheckTime = time; } else { $CheckTime = 0; } } elsif ($time_t[0]) { $CheckTime = $time_t[0] - 86400*2; } else { $CheckTime = time; } my @FileStat = stat($Archive); if ($CheckTime <= ($FileStat[9])) { if (($Archive =~ m/gz$/) && (-e "$Archive")) { my $arguments = "'${Archive}' >> $DestFile"; system("$Config{'pathtozcat'} $arguments") == 0 or die "system $Config{'pathtozcat'} failed: $?" } elsif (-e "$Archive") { my $arguments = "'${Archive}' >> $DestFile"; system("$Config{'pathtocat'} $arguments") == 0 or die "system $Config{'pathtocat'} failed: $?" } #End if/elsif existence } #End if $CheckTime } #End Archive my $FileText = ""; foreach my $ThisFile (@FileList) { next unless (-e $ThisFile); if ($ThisFile =~ /'/) { print "File $ThisFile has invalid embedded quotes. File ignored.\n"; next; } if (! -r $ThisFile) { print "File $ThisFile is not readable. Check permissions."; if ($> != 0) { print " You are not running as superuser."; } print "\n"; next; } $FileText .= ("'" . $ThisFile . "' "); } #End foreach ThisFile foreach my $Parm (@EnvList) { delete $ENV{$Parm}; } @EnvList = (); my $FilterText = " 2>/dev/null "; foreach (sort keys %{$LogFileData{$LogFile}}) { my $cmd = $_; if ($cmd =~ s/^\d+-\*//) { if (-f "$ConfigDir/scripts/shared/$cmd") { $FilterText .= ("| $PerlVersion $ConfigDir/scripts/shared/$cmd '$LogFileData{$LogFile}{$_}'" ); } elsif (-f "$BaseDir/scripts/shared/$cmd") { $FilterText .= ("| $PerlVersion $BaseDir/scripts/shared/$cmd '$LogFileData{$LogFile}{$_}'" ); } else { die "Cannot find shared script $cmd\n"; } } elsif ($cmd =~ s/^\$//) { push @EnvList, $cmd; $ENV{$cmd} = $LogFileData{$LogFile}{$_}; if ($Config{'debug'}>4) { print "export $cmd='$LogFileData{$LogFile}{$_}'\n"; } } } if (opendir (LOGDIR, "$ConfigDir/scripts/logfiles/" . $LogFile)) { foreach (sort readdir(LOGDIR)) { unless ( -d "$ConfigDir/scripts/logfiles/$LogFile/$_") { $FilterText .= ("| $PerlVersion $ConfigDir/scripts/logfiles/$LogFile/$_"); } } closedir (LOGDIR); } if (opendir (LOGDIR, "$BaseDir/scripts/logfiles/" . $LogFile)) { foreach (sort readdir(LOGDIR)) { unless (( -d "$BaseDir/scripts/logfiles/$LogFile/$_") or ( -f "$ConfigDir/scripts/logfiles/$LogFile/$_")) { $FilterText .= ("| $PerlVersion $BaseDir/scripts/logfiles/$LogFile/$_"); } } closedir (LOGDIR); } if ($FileText) { my $Command = $FileText . $FilterText . ">" . $TempDir . $LogFile; if ($Config{'debug'}>4) { print "\nPreprocessing LogFile: " . $LogFile . "\n" . $Command . "\n"; } if ($LogFile !~ /^[-_\w\d]+$/) { print STDERR "Unexpected filename: [[$LogFile]]. Not used\n" } else { system("$Config{'pathtocat'} $Command") == 0 or die "system $Config{'pathtocat'} $Command failed: $?" } } } my @hosts; if ($Config{'splithosts'} eq 1) { my $newlogfile; my @logarray; opendir (LOGDIR,$TempDir) || die "Cannot open dir"; @logarray = readdir(LOGDIR); closedir (LOGDIR); my $ecpcmd = ("| $PerlVersion $BaseDir/scripts/shared/hostlist"); foreach $newlogfile (@logarray) { my $eeefile = ("$TempDir" . "$newlogfile"); if ((!(-d $eeefile)) && (!($eeefile =~ m/-archive/))) { system("$Config{'pathtocat'} $eeefile $ecpcmd") == 0 or die "system $Config{'pathtocat'} $eeefile $ecpcmd failed: $?" } } open (HOSTFILE,"$TempDir/hostfile") || die $!; @hosts = <HOSTFILE>; close (HOSTFILE); chomp @hosts; } my $report_finish = "\n ###################### Logwatch End ######################### \n\n"; my $printing = ''; my $emailopen = ''; sub initprint { return if $printing; my $OStitle; $OStitle = $OSname; $OStitle = "Solaris" if ($OSname eq "SunOS" && $release >= 2); if ($Config{'print'} eq 1) { *OUTFILE = *STDOUT; } elsif ($Config{'save'} ne "") { open(OUTFILE,">" . $Config{'save'}) or die "Can't open output file: $Config{'save'} $!\n"; } else { if (($Config{'multiemail'} eq 1) || ($emailopen eq "")) { open(OUTFILE,"|$Config{'mailer'}") or die "Can't execute $Config{'mailer'}: $!\n"; print OUTFILE "To: $Config{'mailto'}\n"; print OUTFILE "From: $Config{'mailfrom'}\n"; print OUTFILE "Subject: Logwatch for $Config{'hostname'} (${OStitle})\n"; $out_mime .= "MIME-Version: 1.0\n"; if ( $Config{encode} == 1 ) { $out_mime .= "Content-transfer-encoding: base64\n"; } else { $out_mime .= "Content-Transfer-Encoding: 7bit\n"; } if ( $outtype_html ) { $out_mime .= "Content-Type: text/html; charset=\"iso-8859-1\"\n\n"; } else { $out_mime .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n\n"; } if (($Config{'splithosts'} eq 1) && ($Config{'multiemail'} eq 0)) { print OUTFILE "Reporting on hosts: @hosts\n"; } $emailopen = 'y'; } #End if multiemail || emailopen } #End if printing/save/else $printing = 'y'; my $simple_timematch = TimeFilter(" %Y-%b-%d %Hh %Mm %Ss "); my @simple_range = split(/\|/, $simple_timematch); if ($#simple_range > 1) { splice(@simple_range, 1, $#simple_range-1); } for (my $range_index=0; $range_index<$#simple_range+1; $range_index++) { $simple_range[$range_index] =~ s/\.\.[hms]//g; $simple_range[$range_index] =~ s/\.//g; $simple_range[$range_index] =~ tr/--//s; $simple_range[$range_index] =~ s/ -|- //; $simple_range[$range_index] =~ tr/ //s; } my $print_range = join("/",@simple_range); $index_par++; if ( $outtype_html ) { output( $index_par, "LOGWATCH Summary" . (($Config{'splithosts'} eq 1) ? ": $Config{'hostname'}" : ""), "start"); output( $index_par, "\n <h2><font color=\"blue\"> Logwatch $Version ($VDate)</font></h2>\n", "header"); } else { output( $index_par, "\n ################### Logwatch $Version ($VDate) #################### \n", "line"); } output( $index_par, " Processing Initiated: " . localtime(time) . "\n", "line"); output( $index_par, " Date Range Processed: $Config{'range'}\n", "line"); output( $index_par, " $print_range\n", "line") if ($Config{'range'} ne 'all'); output( $index_par, " Period is " . GetPeriod() . ".\n", "line") if ($Config{'range'} ne 'all'); output( $index_par, " Detail Level of Output: $Config{'detail'}\n", "line"); output( $index_par, " Type of Output: $Config{'output'}\n", "line"); output( $index_par, " Logfiles for Host: $Config{'hostname'}\n", "line"); if ( $outtype_html ) { output( $index_par, "\n", "stop"); } else { output( $index_par, " ################################################################## \n", "line"); } } sub parselogs { my $Service; my @IGNORE; if ( -e "$ConfigDir/conf/ignore.conf") { open( IGNORE, "$ConfigDir/conf/ignore.conf" ) or return undef; @IGNORE = grep {!/(^#|^\s+$)/} <IGNORE>; close IGNORE; } my @EnvList = (); foreach $Service ( sort {$ServiceData{$a}{'displayorder'} <=> $ServiceData{$b}{'displayorder'} } (sort @ServiceList)) { my $Ignored = 0; $ENV{'PRINTING'} = $printing; if (defined $ServiceData{$Service}{'detail'}) { $ENV{'LOGWATCH_DETAIL_LEVEL'} = $ServiceData{$Service}{'detail'}; } else { $ENV{'LOGWATCH_DETAIL_LEVEL'} = $ENV{'LOGWATCH_GLOBAL_DETAIL'}; } @FileList = @{$ServiceData{$Service}{'logfiles'}}; my $FileText = ""; foreach $ThisFile (@FileList) { if (-s $TempDir . $ThisFile) { $FileText .= ( $TempDir . $ThisFile . " "); } } foreach my $Parm (@EnvList) { delete $ENV{$Parm}; } @EnvList = (); my $FilterText = " "; foreach (sort keys %{$ServiceData{$Service}}) { my $cmd = $_; if ($cmd =~ s/^\d+-\*//) { if (-f "$ConfigDir/scripts/shared/$cmd") { $FilterText .= ("$PerlVersion $ConfigDir/scripts/shared/$cmd '$ServiceData{$Service}{$_}' |" ); } elsif (-f "$BaseDir/scripts/shared/$cmd") { $FilterText .= ("$PerlVersion $BaseDir/scripts/shared/$cmd '$ServiceData{$Service}{$_}' |" ); } else { die "Cannot find shared script $cmd\n"; } } elsif ($cmd =~ s/^\$//) { $ENV{$cmd} = $ServiceData{$Service}{$_}; push @EnvList, $cmd; if ($Config{'debug'}>4) { print "export $cmd='$ServiceData{$Service}{$_}'\n"; } } } my $HostStrip = " "; if ($Config{'splithosts'} eq 1) { $HostStrip .= ("$PerlVersion $BaseDir/scripts/shared/onlyhost"); } my $ServiceExec = "$BaseDir/scripts/services/$Service"; if (-f "$ConfigDir/scripts/services/$Service") { $ServiceExec = "$ConfigDir/scripts/services/$Service"; } else { $ServiceExec = "$BaseDir/scripts/services/$Service"; } if (-f $ServiceExec ) { if ($ServiceData{$Service}{shell}) { my $shelltest = $ServiceData{$Service}{shell}; $shelltest =~ s/([\w\/]+).*/$1/; if (-e "$shelltest") { $FilterText .= "$ServiceData{$Service}{shell} $ServiceExec"; } else { die "Can't use $ServiceData{$Service}{shell} for $ServiceExec"; } } else { $FilterText .= "$PerlVersion $ServiceExec"; } #End if shell } else { die "Can't open: " . $ServiceExec; } my $Command = ''; if ($FileList[0] eq 'none') { $Command = " $FilterText 2>&1 "; } elsif ($FileText) { if ($HostStrip ne " ") { $Command = " ( $Config{'pathtocat'} $FileText | $HostStrip | $FilterText) 2>&1 "; } else { $Command = " ( $Config{'pathtocat'} $FileText | $FilterText) 2>&1 "; } } if ($Command) { if ($Config{'debug'}>4) { print "\nProcessing Service: " . $Service . "\n" . $Command . "\n"; } open (TESTFILE,$Command . " |"); my $ThisLine; my $has_output = 0; LINE: while (defined ($ThisLine = <TESTFILE>)) { next LINE if ((not $printing) and $ThisLine =~ /^\s*$/); IGNORE: for my $ignore_filter (@IGNORE) { chomp $ignore_filter; if ($ThisLine =~ m/$ignore_filter/) { $Ignored++; next LINE; } } initprint(); if (($has_output == 0) and ($ServiceData{$Service}{'title'})) { $index_par++; output($index_par, $ServiceData{$Service}{'title'}, "start" ); my $BeginVar; if ($ENV{'LOGWATCH_GLOBAL_DETAIL'} == $ENV{'LOGWATCH_DETAIL_LEVEL'}) { $BeginVar = "Begin"; } else { $BeginVar = "Begin (detail=" . $ENV{'LOGWATCH_DETAIL_LEVEL'} . ")"; } if ( $outtype_html ) { output( $index_par, "\n <h3><font color=\"blue\">$ServiceData{$Service}{'title'} $BeginVar </font></h3>\n", "header"); } else { output( $index_par, "\n --------------------- $ServiceData{$Service}{'title'} $BeginVar ------------------------ \n\n", "line"); } $has_output = 1; } output( $index_par, $ThisLine, "line"); } close (TESTFILE); if ($has_output and $ServiceData{$Service}{'title'}) { if ( $outtype_html ) { if ($Ignored > 0) { output( $index_par, "\n $Ignored Ignored Lines\n", "header"); }; output( $index_par, "\n <h3><font color=\"blue\">$ServiceData{$Service}{'title'} End </font></h3>\n", "header"); } else { if ($Ignored > 0) { output( $index_par, "\n $Ignored Ignored Lines\n", "line"); }; output( $index_par, "\n ---------------------- $ServiceData{$Service}{'title'} End ------------------------- \n\n", "line"); } output( $index_par, "\n", "stop"); } } } if ( $outtype_html ) { my %HTML_var; $HTML_var{Version} = "$Version"; $HTML_var{VDate} = "$VDate"; open(HEADER, "$Config{html_header}") || die "Can not open HTML Header at $Config{html_header}: $!\n"; my @header = <HEADER>; close HEADER; for my $header_line (@header) { $header_line =~ s/\$([\w\_\-\{\}\[\]]+)/$HTML_var{$1}/g; $out_head .= $header_line; } open(FOOTER, "$Config{html_footer}") || die "Can not open HTML Footer at $Config{html_header}: $!\n"; my @footer = <FOOTER>; close FOOTER; for my $footer_line (@footer) { $footer_line =~ s/\$([\w\_\-\{\}\[\]]+)/$HTML_var{$1}/g; $out_foot .= $footer_line; } foreach ( 0 .. $index_par ) { output($_,$reports[$_], "ref") if defined( $reports[$_] ); } } if ( $outtype_html ) { $index_par++; output( $index_par, "Logwatch End", "start" ); output( $index_par, "\n <h3><font color=\"blue\">Logwatch ended at ". localtime(time) ."</font></h3>\n", "header") if ($printing); output( $index_par, "\n", "stop"); } else { output( $index_par, $report_finish, "line") if ($printing); } print OUTFILE $out_mime if $out_mime; if ( $Config{'encode'} == 1 ) { print OUTFILE encode_base64($out_head) if $out_head; print OUTFILE encode_base64($out_reference) if $out_reference; foreach ( 0 .. $index_par ) { print OUTFILE encode_base64($out_body{$_}) if defined( $out_body{$_} ); $out_body{$_} = ''; #We should track this down out_body could be an array instead also -mgt } print OUTFILE encode_base64($out_foot) if $out_foot; } else { print OUTFILE $out_head if $out_head; print OUTFILE $out_reference if $out_reference; foreach ( 0 .. $index_par ) { print OUTFILE $out_body{$_} if defined( $out_body{$_} ); $out_body{$_} = ''; } print OUTFILE $out_foot if $out_foot; } if ($Config{'multiemail'} eq 1) { close(OUTFILE) unless ($Config{'print'} eq 1); } } if ($Config{'splithosts'} eq 1) { my $Host; foreach $Host (@hosts) { $printing = ''; $ENV{'LOGWATCH_ONLY_HOSTNAME'} = $Host; $ENV{'LOGWATCH_ONLY_HOSTNAME'} =~ s/\..*//; $Config{'hostname'} = $Host; parselogs(); } # ECP } else { parselogs(); } close(OUTFILE) unless ($Config{'print'} eq 1); exit(0); sub output { my ($index, $text, $type) = @_; if ( $type eq "ref" ) { $out_reference .= " <li><a href=\"#$index\">$reports[$index]</a>\n"; } if ( $type eq "start" ) { $reports[$index] = "$text"; if ( $outtype_html ) { $out_body{$index} .= " <hr> <h2><a name=\"$index\">$reports[$index]</a></h2> <div class=\"sample\"> <table border=\"1\">\n"; } } if ( $type eq "stop" ) { if ( $outtype_html ) { $out_body{$index} .= " </table></div>\n"; $out_body{$index} .= " <div class=\"explan\"><p><a href=\"#top\">Back to Top</a></p></div>\n"; } } if ( $type eq "header" ) { if ($outtype_unformatted) { $out_body{$index} .= "$text \n"; } elsif ( $outtype_html ) { $text =~ s/ +/ /go; $text =~ s/(^ | $)//go; $text = ' ' if ( $text eq '' ); $out_body{$index} .= "<tr>\n <th>$text</th> </tr>\n"; } else { $out_body{$index} .= sprintf( substr( $text, 0, $format[0] ) . ' ' x( $format[0] - length($text) ) . " \n" ); } } if ( $type eq "line" ) { if ($outtype_unformatted or $outtype_mail) { $out_body{$index} .= "$text "; } elsif ( $outtype_html ) { $text =~ s/ +/ /go; $text =~ s/ $//go; $text =~ s/</\<\;/go; $text =~ s/>/\>\;/go; unless ( $text =~ s/^ //go ) { $out_body{$index} .= " <tr>\n <th align=\"left\">$text</th>\n </tr>\n"; } else { $out_body{$index} .= " <tr>\n <td bgcolor=\"#dddddd\"> $text</td>\n </tr>\n"; } } else { if ( length($text) > $format[0] ) { $out_body{$index} .= sprintf( $text . "\n" . ' ' x $format[0] . ' ' ); } else { $out_body{$index} .= sprintf( $text . ' ' x ( $format[0] - length($text) ) . ' ' ); } } } }
#!/bin/bash [ -r /etc/sysconfig/httpd ] && . /etc/sysconfig/httpd httpd=${HTTPD-/usr/sbin/httpd} test -z "${NOCERTWATCH}" || exit 0 test -x ${httpd} || exit 0 test -x /usr/bin/certwatch || exit 0 test -r /etc/httpd/conf/httpd.conf || exit 0 test -x /usr/sbin/sendmail || exit 0 test -x /etc/httpd/modules/mod_ssl.so || exit 0 test -x /bin/sort || exit 0 set -o pipefail # pick up exit code of httpd not sort certs=`${httpd} ${OPTIONS} -t -DDUMP_CERTS 2>/dev/null | /bin/sort -u` RETVAL=$? test $RETVAL -eq 0 || exit 0 for c in $certs; do /usr/bin/certwatch $CERTWATCH_OPTS -q "$c" && /usr/bin/certwatch $CERTWATCH_OPTS "$c" | /usr/sbin/sendmail -oem -oi -t 2>/dev/null done
#!/bin/sh /sbin/chkconfig innd || exit 0 runuser - news -c "unset LANG; unset LC_COLLATE; /usr/lib/news/bin/news.daily delayrm"
#!/bin/sh /usr/sbin/logrotate /etc/logrotate.conf EXITVALUE=$? if [ $EXITVALUE != 0 ]; then /usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]" fi exit 0
#!/bin/bash LOCKFILE=/var/lock/makewhatis.lock [ -f $LOCKFILE ] && exit 0 trap "{ rm -f $LOCKFILE ; exit 255; }" EXIT touch $LOCKFILE makewhatis -u -w exit 0
#!/bin/sh nodevs=$(< /proc/filesystems awk '$1 == "nodev" { print $2 }') renice +19 -p $$ >/dev/null 2>&1 /usr/bin/updatedb -f "$nodevs"
#!/bin/sh . /etc/sysconfig/prelink renice +19 -p $$ >/dev/null 2>&1 if [ "$PRELINKING" != yes ]; then if [ -f /etc/prelink.cache ]; then echo /usr/sbin/prelink -uav > /var/log/prelink/prelink.log /usr/sbin/prelink -uav >> /var/log/prelink/prelink.log 2>&1 \ || echo Prelink failed with return value $? >> /var/log/prelink/prelink.log rm -f /etc/prelink.cache [ -n "$(find `ldd /sbin/init | awk 'NF == 4 { print $3 }'` /sbin/init -ctime -1 2>/dev/null )" ] && /sbin/telinit u fi exit 0 fi if [ ! -f /etc/prelink.cache -o -f /var/lib/misc/prelink.force ] \ || grep -q '^prelink-ELF0.[0-2]' /etc/prelink.cache; then rm -f /etc/prelink.cache /var/lib/misc/prelink.force PRELINK_OPTS="$PRELINK_OPTS -f" date > /var/lib/misc/prelink.full cp -a /var/lib/misc/prelink.{full,quick} elif [ -n "$PRELINK_FULL_TIME_INTERVAL" \ -a "`find /var/lib/misc/prelink.full -mtime -${PRELINK_FULL_TIME_INTERVAL} 2>/dev/null`" \ = /var/lib/misc/prelink.full ]; then [ "`find /var/lib/misc/prelink.quick -mtime -${PRELINK_NONRPM_CHECK_INTERVAL:-7} 2>/dev/null`" \ -a -f /var/lib/rpm/Packages \ -a /var/lib/rpm/Packages -ot /var/lib/misc/prelink.quick ] && exit 0 date > /var/lib/misc/prelink.quick PRELINK_OPTS="$PRELINK_OPTS -q" else date > /var/lib/misc/prelink.full cp -a /var/lib/misc/prelink.{full,quick} fi echo /usr/sbin/prelink -av $PRELINK_OPTS > /var/log/prelink/prelink.log /usr/sbin/prelink -av $PRELINK_OPTS >> /var/log/prelink/prelink.log 2>&1 \ || echo Prelink failed with return value $? >> /var/log/prelink/prelink.log [ -n "$(find `ldd /sbin/init | awk 'NF == 4 { print $3 }'` /sbin/init -ctime -1 2>/dev/null )" ] && /sbin/telinit u exit 0
#!/bin/sh tmpfile=`/bin/mktemp /var/log/rpmpkgs.XXXXXXXXX` || exit 1 /bin/rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}.rpm\n' 2>&1 \ | /bin/sort > "$tmpfile" if [ ! -s "$tmpfile" ]; then rm -f "$tmpfile" exit 1 fi /bin/mv "$tmpfile" /var/log/rpmpkgs /bin/chmod 0644 /var/log/rpmpkgs
flags=-umc /usr/sbin/tmpwatch "$flags" -x /tmp/.X11-unix -x /tmp/.XIM-unix \ -x /tmp/.font-unix -x /tmp/.ICE-unix -x /tmp/.Test-unix \ -X '/tmp/hsperfdata_*' 240 /tmp /usr/sbin/tmpwatch "$flags" 720 /var/tmp for d in /var/{cache/man,catman}/{cat?,X11R6/cat?,local/cat?}; do if [ -d "$d" ]; then /usr/sbin/tmpwatch "$flags" -f 720 "$d" fi done
#!/bin/sh /sbin/chkconfig innd || exit 0 runuser - news -c "unset LANG; unset LC_COLLATE; /usr/lib/news/bin/nntpsend"
#!/bin/sh /sbin/chkconfig innd || exit 0 runuser - news -c 'unset LANG; unset LC_COLLATE; /usr/lib/news/bin/rnews -U'
#!/bin/bash if [ -e /proc/xen/capabilities ]; then grep control_d /proc/xen/capabilities >& /dev/null if [ $? -ne 0 ]; then exit 1; fi fi /usr/sbin/mcelog --supported >& /dev/null if [ $? -eq 1 ]; then exit 1; fi /usr/sbin/mcelog --ignorenodev --filter >> /var/log/mcelog
#!/bin/sh if [ ! -e /var/run/anacron.pid ]; then anacron -u cron.monthly fi
#!/bin/sh if [ ! -e /var/run/anacron.pid ]; then anacron -u cron.weekly fi
#!/bin/bash [ -f /proc/mdstat ] || exit 0 [ -f /etc/sysconfig/raid-check ] || exit 0 . /etc/sysconfig/raid-check [ "$ENABLED" != "yes" ] && exit 0 case "$CHECK" in check) ;; repair) ;; *) exit 0;; esac active_list=`grep "^md.*: active" /proc/mdstat | cut -f 1 -d ' '` [ -z "$active_list" ] && exit 0 dev_list="" check_list="" devnum=0 for dev in $active_list; do echo $SKIP_DEVS | grep -w $dev >/dev/null 2>&1 && continue if [ -f /sys/block/$dev/md/sync_action ]; then array_state=`cat /sys/block/$dev/md/array_state` sync_action=`cat /sys/block/$dev/md/sync_action` if [ "$array_state" = clean -o "$array_state" = active ] && [ "$sync_action" = idle ]; then ck="" echo $REPAIR_DEVS | grep -w $dev >/dev/null 2>&1 && ck="repair" echo $CHECK_DEVS | grep -w $dev >/dev/null 2>&1 && ck="check" [ -z "$ck" ] && ck=$CHECK dev_list="$dev_list $dev" check[$devnum]=$ck let devnum++ [ "$ck" = "check" ] && check_list="$check_list $dev" fi fi done [ -z "$dev_list" ] && exit 0 devnum=0 for dev in $dev_list; do echo "${check[$devnum]}" > /sys/block/$dev/md/sync_action let devnum++ done [ -z "$check_list" ] && exit 0 checking=1 while [ $checking -ne 0 ] do sleep 60 checking=0 for dev in $check_list; do sync_action=`cat /sys/block/$dev/md/sync_action` if [ "$sync_action" != "idle" ]; then checking=1 fi done done for dev in $check_list; do mismatch_cnt=`cat /sys/block/$dev/md/mismatch_cnt` raid_lvl=`cat /sys/block/$dev/md/level` if [ "$mismatch_cnt" -ne 0 -a "$raid_lvl" != "raid1" ]; then echo "WARNING: mismatch_cnt is not 0 on /dev/$dev" fi done
#!/bin/bash LOCKFILE=/var/lock/makewhatis.lock [ -f $LOCKFILE ] && exit 0 trap "{ rm -f $LOCKFILE; exit 255; }" EXIT touch $LOCKFILE makewhatis -w exit 0
SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/ 01 * * * * root run-parts /etc/cron.hourly 02 4 * * * root run-parts /etc/cron.daily 22 4 * * 0 root run-parts /etc/cron.weekly 42 4 1 * * root run-parts /etc/cron.monthly
SHELL=/bin/sh PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root 1 65 cron.daily run-parts /etc/cron.daily 7 70 cron.weekly run-parts /etc/cron.weekly 30 75 cron.monthly run-parts /etc/cron.monthly
0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/local/nagios/bin/mrtg_genstats.sh > /dev/null 2>&1 11 3 * * * /usr/local/nagios/bin/rc.opsview cron_daily > /dev/null 2>&1 22 2,6,10,14,18,22 * * * . /usr/local/nagios/bin/profile && /usr/local/nagios/bin/opsview_cronjobs 4hourly > /dev/null 2>&1 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/local/nagios/bin/call_nmis nmis.pl type=collect mthread=true > /dev/null 2>&1 34 0,4,8,12,16,20 * * * /usr/local/nagios/bin/call_nmis nmis.pl type=update mthread=true > /dev/null 2>&1 0 0 * * * /usr/local/nagios/bin/call_nmis run-reports.sh day health 0 0 * * * /usr/local/nagios/bin/call_nmis run-reports.sh day top10 0 0 * * * /usr/local/nagios/bin/call_nmis run-reports.sh day outage 0 0 * * * /usr/local/nagios/bin/call_nmis run-reports.sh day response 0 0 * * * /usr/local/nagios/bin/call_nmis run-reports.sh day avail 0 0 * * * /usr/local/nagios/bin/call_nmis run-reports.sh day port 0 0 * * 0 /usr/local/nagios/bin/call_nmis run-reports.sh week health 0 0 * * 0 /usr/local/nagios/bin/call_nmis run-reports.sh week top10 0 0 * * 0 /usr/local/nagios/bin/call_nmis run-reports.sh week outage 0 0 * * 0 /usr/local/nagios/bin/call_nmis run-reports.sh week response 0 0 * * 0 /usr/local/nagios/bin/call_nmis run-reports.sh week avail 0 0 * * 0 /usr/local/nagios/bin/call_nmis run-reports.sh week port 0 0 1 * * /usr/local/nagios/bin/call_nmis run-reports.sh month health 0 0 1 * * /usr/local/nagios/bin/call_nmis run-reports.sh month top10 0 0 1 * * /usr/local/nagios/bin/call_nmis run-reports.sh month outage 0 0 1 * * /usr/local/nagios/bin/call_nmis run-reports.sh month response 0 0 1 * * /usr/local/nagios/bin/call_nmis run-reports.sh month avail 0 0 1 * * /usr/local/nagios/bin/call_nmis run-reports.sh month port
log4perl.rootLogger=INFO, OPSVIEW_SLAVE_LOG log4perl.appender.OPSVIEW_SLAVE_LOG=Log::Dispatch::FileRotate log4perl.appender.OPSVIEW_SLAVE_LOG.filename=/usr/local/nagios/var/log/opsview-slave.log log4perl.appender.OPSVIEW_SLAVE_LOG.mode=append log4perl.appender.OPSVIEW_SLAVE_LOG.size=1000000 log4perl.appender.OPSVIEW_SLAVE_LOG.max=5 log4perl.appender.OPSVIEW_SLAVE_LOG.recreate=1 log4perl.appender.OPSVIEW_SLAVE_LOG.layout=PatternLayout log4perl.appender.OPSVIEW_SLAVE_LOG.layout.ConversionPattern=[%d] [%c] [%p] %m%n log4perl.appender.SCREEN=Log::Log4perl::Appender::Screen log4perl.appender.SCREEN.layout=Log::Log4perl::Layout::SimpleLayout
log4perl.rootLogger=INFO, OPSVIEWD_LOGFILE log4perl.appender.OPSVIEWD_LOGFILE=Log::Dispatch::FileRotate log4perl.appender.OPSVIEWD_LOGFILE.filename=/var/log/opsview/opsviewd.log log4perl.appender.OPSVIEWD_LOGFILE.mode=append log4perl.appender.OPSVIEWD_LOGFILE.size=1000000 log4perl.appender.OPSVIEWD_LOGFILE.max=5 log4perl.appender.OPSVIEWD_LOGFILE.recreate=1 log4perl.appender.OPSVIEWD_LOGFILE.layout=PatternLayout log4perl.appender.OPSVIEWD_LOGFILE.layout.ConversionPattern=[%d] [%c] [%p] %m%n log4perl.appender.SCREEN=Log::Log4perl::Appender::Screen log4perl.appender.SCREEN.layout=Log::Log4perl::Layout::SimpleLayout
compress nomail delaycompress missingok "/usr/local/nagios/nmis/logs/event.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/nmis/logs/nmis.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/rsync_nmis_database.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/snmptrap2nagios.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/mrtgconfgen.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/mrtg_genstats.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/nagiosgraph.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/takeover_hosts.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/opsview_cronjobs.log" { rotate 5 weekly nocompress create 0660 nagios nagios } "/usr/local/nagios/var/log/notify_by_ios_push.log" { rotate 5 weekly nocompress create 0660 nagios nagios }
debug = 2 logfile = /usr/local/nagios/var/log/nagiosgraph.log rrddir = /usr/local/nagios/var/rrd mapfile = /usr/local/nagios/etc/map colorscheme = 1 heartbeat = 4200 perflog = /usr/local/nagios/var/perfdata.log
server_type PreFork min_servers 4 min_spare_servers 1 max_spare_servers 2 max_servers 12 user nagios group nagios background 1 setsid 1 reverse_lookups off host 127.0.0.1 port 5669 timeout 120 log_file Log::Log4perl log_level 2 log4perl_conf /usr/local/nagios/etc/Log4perl.conf log4perl_logger nrd cidr_allow 127.0.0.0/8 encryption_method 2 serializer crypt encrypt_type Blowfish encrypt_key 31147F2E-D886-11E3-9BC3-405B57F11680 writer resultdir check_result_path /usr/local/nagios/var/spool/checkresults batch_results 1 long_check_result_filename 1
$dbpasswd = "1qaz@WSX"; $runtime_dbpasswd = "3edc$RFV"; $nrd_shared_password = "31147F2E-D886-11E3-9BC3-405B57F11680"; 1;
main_config_file=/usr/local/nagios/etc/nagios.cfg physical_html_path=/usr/local/nagios/share url_html_path=/ show_context_help=0 use_pending_states=0 use_authentication=1 authorized_for_system_information=admin authorized_for_configuration_information=admin authorized_for_system_commands=admin authorized_for_all_services=admin authorized_for_all_hosts=admin authorized_for_all_service_commands=admin authorized_for_all_host_commands=admin default_statusmap_layout=4 default_statuswrl_layout=2 ping_syntax=/bin/ping -n -U -c 5 $HOSTADDRESS$ refresh_rate=30 escape_html_tags=1 action_url_target=_blank notes_url_target=_blank lock_author_names=1
define command { command_name check_apache_performance command_line /usr/local/nagios/libexec/check_apache_performance $ARG1$ } define command { command_name check_aql_sms_credit command_line /usr/local/nagios/libexec/check_aql_sms_credit $ARG1$ } define command { command_name check_aws_ec2 command_line /usr/local/nagios/libexec/check_aws_ec2 $ARG1$ } define command { command_name check_aws_ec2_instances command_line /usr/local/nagios/libexec/check_aws_ec2_instances $ARG1$ } define command { command_name check_aws_s3 command_line /usr/local/nagios/libexec/check_aws_s3 $ARG1$ } define command { command_name check_by_ssh command_line /usr/local/nagios/libexec/check_by_ssh $ARG1$ } define command { command_name check_dhcp command_line /usr/local/nagios/libexec/check_dhcp $ARG1$ } define command { command_name check_dig command_line /usr/local/nagios/libexec/check_dig $ARG1$ } define command { command_name check_dnsbl command_line /usr/local/nagios/libexec/check_dnsbl $ARG1$ } define command { command_name check_file_count command_line /usr/local/nagios/libexec/check_file_count $ARG1$ } define command { command_name check_ftp command_line /usr/local/nagios/libexec/check_ftp $ARG1$ } define command { command_name check_http command_line /usr/local/nagios/libexec/check_http $ARG1$ } define command { command_name check_icmp command_line /usr/local/nagios/libexec/check_icmp $ARG1$ } define command { command_name check_imap command_line /usr/local/nagios/libexec/check_imap $ARG1$ } define command { command_name check_jabber command_line /usr/local/nagios/libexec/check_jabber $ARG1$ } define command { command_name check_ldap command_line /usr/local/nagios/libexec/check_ldap $ARG1$ } define command { command_name check_ldap_sync command_line /usr/local/nagios/libexec/check_ldap_sync $ARG1$ } define command { command_name check_linksyswap command_line /usr/local/nagios/libexec/check_linksyswap $ARG1$ } define command { command_name check_mysql_performance command_line /usr/local/nagios/libexec/check_mysql_performance $ARG1$ env NAGIOS_SERVICEDESC=$SERVICEDESC$ } define command { command_name check_nagios_startup command_line /usr/local/nagios/libexec/check_nagios_startup $ARG1$ env NAGIOS_EVENTSTARTTIME=$EVENTSTARTTIME$ env NAGIOS_PROCESSSTARTTIME=$PROCESSSTARTTIME$ } define command { command_name check_nagios_stats command_line /usr/local/nagios/libexec/check_nagios_stats $ARG1$ } define command { command_name check_netbotz_humidity command_line /usr/local/nagios/libexec/check_netbotz_humidity $ARG1$ } define command { command_name check_netbotz_temperature command_line /usr/local/nagios/libexec/check_netbotz_temperature $ARG1$ } define command { command_name check_nrpe command_line /usr/local/nagios/libexec/check_nrpe $ARG1$ } define command { command_name check_ntp_peer command_line /usr/local/nagios/libexec/check_ntp_peer $ARG1$ } define command { command_name check_opsview_async_imports command_line /usr/local/nagios/libexec/check_opsview_async_imports $ARG1$ } define command { command_name check_opsview_cronjobs command_line /usr/local/nagios/libexec/check_opsview_cronjobs $ARG1$ } define command { command_name check_opsview_housekeeping command_line /usr/local/nagios/libexec/check_opsview_housekeeping $ARG1$ } define command { command_name check_opsview_keyword command_line /usr/local/nagios/libexec/check_opsview_keyword $ARG1$ } define command { command_name check_opsview_master command_line /usr/local/nagios/libexec/check_opsview_master $ARG1$ } define command { command_name check_opsview_mysql command_line /usr/local/nagios/libexec/check_opsview_mysql $ARG1$ } define command { command_name check_opsview_mysql_performance command_line /usr/local/nagios/libexec/check_opsview_mysql_performance $ARG1$ env NAGIOS_SERVICEDESC=$SERVICEDESC$ } define command { command_name check_opsview_ndo_import command_line /usr/local/nagios/libexec/check_opsview_ndo_import $ARG1$ } define command { command_name check_opsview_update command_line /usr/local/nagios/libexec/check_opsview_update $ARG1$ } define command { command_name check_pop command_line /usr/local/nagios/libexec/check_pop $ARG1$ } define command { command_name check_procs command_line /usr/local/nagios/libexec/check_procs $ARG1$ } define command { command_name check_slicehost command_line /usr/local/nagios/libexec/check_slicehost $ARG1$ } define command { command_name check_smtp command_line /usr/local/nagios/libexec/check_smtp $ARG1$ } define command { command_name check_snmp_apcups command_line /usr/local/nagios/libexec/check_snmp_apcups $ARG1$ } define command { command_name check_snmp_apc_exttempprobe command_line /usr/local/nagios/libexec/check_snmp_apc_exttempprobe $ARG1$ } define command { command_name check_snmp_cisco_asa_hastatus command_line /usr/local/nagios/libexec/check_snmp_cisco_asa_hastatus $ARG1$ } define command { command_name check_snmp_cisco_bgppeer command_line /usr/local/nagios/libexec/check_snmp_cisco_bgppeer $ARG1$ } define command { command_name check_snmp_cisco_bits_sec command_line /usr/local/nagios/libexec/check_snmp_cisco_bits_sec $ARG1$ } define command { command_name check_snmp_cisco_loadavg command_line /usr/local/nagios/libexec/check_snmp_cisco_loadavg $ARG1$ } define command { command_name check_snmp_cisco_memutil command_line /usr/local/nagios/libexec/check_snmp_cisco_memutil $ARG1$ } define command { command_name check_snmp_foundry_cpuavg command_line /usr/local/nagios/libexec/check_snmp_foundry_cpuavg $ARG1$ } define command { command_name check_snmp_foundry_memutil command_line /usr/local/nagios/libexec/check_snmp_foundry_memutil $ARG1$ } define command { command_name check_snmp_fsutil command_line /usr/local/nagios/libexec/check_snmp_fsutil $ARG1$ } define command { command_name check_snmp_ifstatus command_line /usr/local/nagios/libexec/check_snmp_ifstatus $ARG1$ } define command { command_name check_snmp_interfaces command_line /usr/local/nagios/libexec/check_snmp_interfaces $ARG1$ } define command { command_name check_snmp_interfaces_cascade command_line /usr/local/nagios/libexec/check_snmp_interfaces_cascade $ARG1$ env NAGIOS_HOSTNAME=$HOSTNAME$ } define command { command_name check_snmp_linkstatus command_line /usr/local/nagios/libexec/check_snmp_linkstatus $ARG1$ env NAGIOS_HOSTNAME=$HOSTNAME$ } define command { command_name check_snmp_loadavg command_line /usr/local/nagios/libexec/check_snmp_loadavg $ARG1$ } define command { command_name check_snmp_memutil command_line /usr/local/nagios/libexec/check_snmp_memutil $ARG1$ } define command { command_name check_snmp_netscaler_clientconnections command_line /usr/local/nagios/libexec/check_snmp_netscaler_clientconnections $ARG1$ } define command { command_name check_snmp_netscaler_cpu command_line /usr/local/nagios/libexec/check_snmp_netscaler_cpu $ARG1$ } define command { command_name check_snmp_netscaler_memutil command_line /usr/local/nagios/libexec/check_snmp_netscaler_memutil $ARG1$ } define command { command_name check_snmp_netscaler_serverconnections command_line /usr/local/nagios/libexec/check_snmp_netscaler_serverconnections $ARG1$ } define command { command_name check_snmp_netscreen_activesessions command_line /usr/local/nagios/libexec/check_snmp_netscreen_activesessions $ARG1$ } define command { command_name check_snmp_netscreen_cpu command_line /usr/local/nagios/libexec/check_snmp_netscreen_cpu $ARG1$ } define command { command_name check_snmp_netscreen_mem command_line /usr/local/nagios/libexec/check_snmp_netscreen_mem $ARG1$ } define command { command_name check_snmp_nousers command_line /usr/local/nagios/libexec/check_snmp_nousers $ARG1$ } define command { command_name check_snmp_sensatronics_temp command_line /usr/local/nagios/libexec/check_snmp_sensatronics_temp $ARG1$ } define command { command_name check_snmp_sysinfo command_line /usr/local/nagios/libexec/check_snmp_sysinfo $ARG1$ } define command { command_name check_snmp_tcpcurrestab command_line /usr/local/nagios/libexec/check_snmp_tcpcurrestab $ARG1$ } define command { command_name check_snmp_uptime command_line /usr/local/nagios/libexec/check_snmp_uptime $ARG1$ } define command { command_name check_snmp_weblogic_appsessions command_line /usr/local/nagios/libexec/check_snmp_weblogic_appsessions $ARG1$ } define command { command_name check_snmp_weblogic_clusterservers command_line /usr/local/nagios/libexec/check_snmp_weblogic_clusterservers $ARG1$ } define command { command_name check_snmp_weblogic_jdbccapacity command_line /usr/local/nagios/libexec/check_snmp_weblogic_jdbccapacity $ARG1$ } define command { command_name check_snmp_weblogic_jdbcconns command_line /usr/local/nagios/libexec/check_snmp_weblogic_jdbcconns $ARG1$ } define command { command_name check_snmp_weblogic_jmsqueuelength command_line /usr/local/nagios/libexec/check_snmp_weblogic_jmsqueuelength $ARG1$ } define command { command_name check_snmp_weblogic_servermemory command_line /usr/local/nagios/libexec/check_snmp_weblogic_servermemory $ARG1$ } define command { command_name check_snmp_weblogic_serverstatus command_line /usr/local/nagios/libexec/check_snmp_weblogic_serverstatus $ARG1$ } define command { command_name check_sql_advanced command_line /usr/local/nagios/libexec/check_sql_advanced $ARG1$ } define command { command_name check_tcp command_line /usr/local/nagios/libexec/check_tcp $ARG1$ } define command { command_name check_tftp command_line /usr/local/nagios/libexec/check_tftp $ARG1$ }
define contactgroup { contactgroup_name empty alias empty } define contactgroup { contactgroup_name hostgroup2_servicegroup1 alias hostgroup2_servicegroup1 } define contactgroup { contactgroup_name hostgroup2_servicegroup12 alias hostgroup2_servicegroup12 } define contactgroup { contactgroup_name hostgroup2_servicegroup22 alias hostgroup2_servicegroup22 } define contactgroup { contactgroup_name hostgroup2_servicegroup28 alias hostgroup2_servicegroup28 } define contactgroup { contactgroup_name k1_opsview-components alias k1_opsview-components } define contactgroup { contactgroup_name k2_opsview alias k2_opsview }
define contact { name global-contact service_notification_commands notify-none host_notification_commands notify-none email dummy@localhost service_notification_period 24x7 host_notification_period 24x7 service_notification_options n host_notification_options n register 0 } define contact { contact_name admin alias Administrator use global-contact contactgroups hostgroup2_servicegroup1,hostgroup2_servicegroup12,hostgroup2_servicegroup22,hostgroup2_servicegroup28,k2_opsview,k1_opsview-components } define contact { contact_name admin/01default alias Administrator use global-contact service_notification_period 24x7 host_notification_period 24x7 notification_level_start 1 contactgroups hostgroup2_servicegroup1,hostgroup2_servicegroup12,hostgroup2_servicegroup22,hostgroup2_servicegroup28,k1_opsview-components,k2_opsview host_notification_options n service_notification_options n } define contact { contact_name admin/02receiveallalertsduringworkhours alias Administrator use global-contact service_notification_period workhours host_notification_period workhours notification_level_start 1 contactgroups hostgroup2_servicegroup1,hostgroup2_servicegroup12,hostgroup2_servicegroup22,hostgroup2_servicegroup28,k1_opsview-components,k2_opsview host_notification_options n service_notification_options n }
define hostgroup { hostgroup_name Monitoring Servers alias Monitoring Servers }
define host{ name host-global event_handler_enabled 1 ; Host event handler is enabled flap_detection_enabled 1 ; Flap detection is enabled process_perf_data 1 ; Process performance data retain_status_information 1 ; Retain status information across program restarts retain_nonstatus_information 1 ; Retain non-status information across program restarts max_check_attempts 2 obsess_over_host 0 check_freshness 0 passive_checks_enabled 1 check_interval 0 ; For the moment, set check_interval to 0 so hosts only checked on demand, like Nagios 2 contact_groups empty register 0 ; DONT REGISTER THIS DEFINITION IT'S JUST A TEMPLATE! } define hostescalation { name hostescalation-global register 0 last_notification 0 ; Do not stop escalations } define host { host_name opsview alias Opsview Master Server address localhost hostgroups Monitoring Servers check_interval 5 retry_interval 1 max_check_attempts 2 flap_detection_enabled 1 icon_image opsview.png icon_image_alt LOGO - Opsview vrml_image opsview.png statusmap_image opsview.png action_url /info/host/1 check_period 24x7 contact_groups hostgroup2_servicegroup1,hostgroup2_servicegroup12,hostgroup2_servicegroup22,hostgroup2_servicegroup28,k1_opsview-components,k2_opsview check_command check_host_15!-H $HOSTADDRESS$ -t 3 -w 500.0,80% -c 1000.0,100% notifications_enabled 1 notification_interval 60 notification_period 24x7 notification_options u,d,r use host-global }
$archive_retention_days=180; $rrd_retention_days=30; $override_base_prefix=''; $nmis_maxthreads=2; $report_retention_days=730; $nmis_retention_days=90; $status_dat='/usr/local/nagios/var/status.dat'; $check_result_path='/usr/local/nagios/var/spool/checkresults'; $object_cache_file='/usr/local/nagios/var/objects.cache'; 1;
define service { name service-distributed register 0 use service-global active_checks_enabled 0 check_freshness 1 check_command !set_to_stale } define service { name service-slave-eventhandler register 0 event_handler_enabled 0 }
define command{ command_name notify-none command_line /usr/bin/printf "No notification" } define command{ command_name process-service-perfdata-nagiosgraph command_line /usr/local/nagios/bin/rotate_async_log perfdata.log perfdatarrd } define command { command_name process-host-cache-data command_line /usr/local/nagios/bin/process-cache-data cache_host.log } define command { command_name process-service-cache-data command_line /usr/local/nagios/bin/process-cache-data cache_service.log } define command { command_name rotate_ndo_log command_line /usr/local/nagios/bin/rotate_ndo_log } define command{ command_name notify-by-email command_line /usr/local/nagios/libexec/notifications/notify_by_email env NAGIOS_CONTACTEMAIL=$CONTACTEMAIL$ env NAGIOS_CONTACTGROUPLIST=$CONTACTGROUPLIST$ env NAGIOS_CONTACTNAME=$CONTACTNAME$ env NAGIOS_CONTACTPAGER=$CONTACTPAGER$ env NAGIOS_HOSTACKAUTHOR=$HOSTACKAUTHOR$ env NAGIOS_HOSTACKCOMMENT=$HOSTACKCOMMENT$ env NAGIOS_HOSTADDRESS=$HOSTADDRESS$ env NAGIOS_HOSTALIAS=$HOSTALIAS$ env NAGIOS_HOSTATTEMPT=$HOSTATTEMPT$ env NAGIOS_HOSTDOWNTIME=$HOSTDOWNTIME$ env NAGIOS_HOSTDURATION=$HOSTDURATION$ env NAGIOS_HOSTGROUPNAME=$HOSTGROUPNAME$ env NAGIOS_HOSTNAME=$HOSTNAME$ env NAGIOS_HOSTNOTIFICATIONNUMBER=$HOSTNOTIFICATIONNUMBER$ env NAGIOS_HOSTOUTPUT=$HOSTOUTPUT$ env NAGIOS_HOSTSTATE=$HOSTSTATE$ env NAGIOS_HOSTSTATETYPE=$HOSTSTATETYPE$ env NAGIOS_LASTHOSTCHECK=$LASTHOSTCHECK$ env NAGIOS_LASTHOSTDOWN=$LASTHOSTDOWN$ env NAGIOS_LASTHOSTSTATE=$LASTHOSTSTATE$ env NAGIOS_LASTHOSTSTATECHANGE=$LASTHOSTSTATECHANGE$ env NAGIOS_LASTHOSTUNREACHABLE=$LASTHOSTUNREACHABLE$ env NAGIOS_LASTHOSTUP=$LASTHOSTUP$ env NAGIOS_LASTSERVICECHECK=$LASTSERVICECHECK$ env NAGIOS_LASTSERVICECRITICAL=$LASTSERVICECRITICAL$ env NAGIOS_LASTSERVICEOK=$LASTSERVICEOK$ env NAGIOS_LASTSERVICESTATE=$LASTSERVICESTATE$ env NAGIOS_LASTSERVICESTATECHANGE=$LASTSERVICESTATECHANGE$ env NAGIOS_LASTSERVICEWARNING=$LASTSERVICEWARNING$ env NAGIOS_LASTSTATECHANGE=$LASTSTATECHANGE$ env NAGIOS_LONGDATETIME=$LONGDATETIME$ env NAGIOS_LONGHOSTOUTPUT=$LONGHOSTOUTPUT$ env NAGIOS_LONGSERVICEOUTPUT=$LONGSERVICEOUTPUT$ env NAGIOS_NOTIFICATIONAUTHOR=$NOTIFICATIONAUTHOR$ env NAGIOS_NOTIFICATIONCOMMENT=$NOTIFICATIONCOMMENT$ env NAGIOS_NOTIFICATIONNUMBER=$NOTIFICATIONNUMBER$ env NAGIOS_NOTIFICATIONTYPE=$NOTIFICATIONTYPE$ env NAGIOS_SERVICEACKAUTHOR=$SERVICEACKAUTHOR$ env NAGIOS_SERVICEACKCOMMENT=$SERVICEACKCOMMENT$ env NAGIOS_SERVICEATTEMPT=$SERVICEATTEMPT$ env NAGIOS_SERVICEDESC=$SERVICEDESC$ env NAGIOS_SERVICEDOWNTIME=$SERVICEDOWNTIME$ env NAGIOS_SERVICEDURATION=$SERVICEDURATION$ env NAGIOS_SERVICENOTIFICATIONNUMBER=$SERVICENOTIFICATIONNUMBER$ env NAGIOS_SERVICEOUTPUT=$SERVICEOUTPUT$ env NAGIOS_SERVICESTATE=$SERVICESTATE$ env NAGIOS_SERVICESTATETYPE=$SERVICESTATETYPE$ env NAGIOS_SHORTDATETIME=$SHORTDATETIME$ env NAGIOS_TIMET=$TIMET$ } define command{ command_name notify-by-rss command_line /usr/local/nagios/libexec/notifications/notify_by_rss env NAGIOS_CONTACTEMAIL=$CONTACTEMAIL$ env NAGIOS_CONTACTGROUPLIST=$CONTACTGROUPLIST$ env NAGIOS_CONTACTNAME=$CONTACTNAME$ env NAGIOS_CONTACTPAGER=$CONTACTPAGER$ env NAGIOS_HOSTACKAUTHOR=$HOSTACKAUTHOR$ env NAGIOS_HOSTACKCOMMENT=$HOSTACKCOMMENT$ env NAGIOS_HOSTADDRESS=$HOSTADDRESS$ env NAGIOS_HOSTALIAS=$HOSTALIAS$ env NAGIOS_HOSTATTEMPT=$HOSTATTEMPT$ env NAGIOS_HOSTDOWNTIME=$HOSTDOWNTIME$ env NAGIOS_HOSTDURATION=$HOSTDURATION$ env NAGIOS_HOSTGROUPNAME=$HOSTGROUPNAME$ env NAGIOS_HOSTNAME=$HOSTNAME$ env NAGIOS_HOSTNOTIFICATIONNUMBER=$HOSTNOTIFICATIONNUMBER$ env NAGIOS_HOSTOUTPUT=$HOSTOUTPUT$ env NAGIOS_HOSTSTATE=$HOSTSTATE$ env NAGIOS_HOSTSTATETYPE=$HOSTSTATETYPE$ env NAGIOS_LASTHOSTCHECK=$LASTHOSTCHECK$ env NAGIOS_LASTHOSTDOWN=$LASTHOSTDOWN$ env NAGIOS_LASTHOSTSTATE=$LASTHOSTSTATE$ env NAGIOS_LASTHOSTSTATECHANGE=$LASTHOSTSTATECHANGE$ env NAGIOS_LASTHOSTUNREACHABLE=$LASTHOSTUNREACHABLE$ env NAGIOS_LASTHOSTUP=$LASTHOSTUP$ env NAGIOS_LASTSERVICECHECK=$LASTSERVICECHECK$ env NAGIOS_LASTSERVICECRITICAL=$LASTSERVICECRITICAL$ env NAGIOS_LASTSERVICEOK=$LASTSERVICEOK$ env NAGIOS_LASTSERVICESTATE=$LASTSERVICESTATE$ env NAGIOS_LASTSERVICESTATECHANGE=$LASTSERVICESTATECHANGE$ env NAGIOS_LASTSERVICEWARNING=$LASTSERVICEWARNING$ env NAGIOS_LASTSTATECHANGE=$LASTSTATECHANGE$ env NAGIOS_LONGDATETIME=$LONGDATETIME$ env NAGIOS_LONGHOSTOUTPUT=$LONGHOSTOUTPUT$ env NAGIOS_LONGSERVICEOUTPUT=$LONGSERVICEOUTPUT$ env NAGIOS_NOTIFICATIONAUTHOR=$NOTIFICATIONAUTHOR$ env NAGIOS_NOTIFICATIONCOMMENT=$NOTIFICATIONCOMMENT$ env NAGIOS_NOTIFICATIONNUMBER=$NOTIFICATIONNUMBER$ env NAGIOS_NOTIFICATIONTYPE=$NOTIFICATIONTYPE$ env NAGIOS_SERVICEACKAUTHOR=$SERVICEACKAUTHOR$ env NAGIOS_SERVICEACKCOMMENT=$SERVICEACKCOMMENT$ env NAGIOS_SERVICEATTEMPT=$SERVICEATTEMPT$ env NAGIOS_SERVICEDESC=$SERVICEDESC$ env NAGIOS_SERVICEDOWNTIME=$SERVICEDOWNTIME$ env NAGIOS_SERVICEDURATION=$SERVICEDURATION$ env NAGIOS_SERVICENOTIFICATIONNUMBER=$SERVICENOTIFICATIONNUMBER$ env NAGIOS_SERVICEOUTPUT=$SERVICEOUTPUT$ env NAGIOS_SERVICESTATE=$SERVICESTATE$ env NAGIOS_SERVICESTATETYPE=$SERVICESTATETYPE$ env NAGIOS_SHORTDATETIME=$SHORTDATETIME$ env NAGIOS_TIMET=$TIMET$ env NAGIOS__CONTACTRSS_MAXIMUM_ITEMS=$_CONTACTRSS_MAXIMUM_ITEMS$ env NAGIOS__CONTACTRSS_MAXIMUM_AGE=$_CONTACTRSS_MAXIMUM_AGE$ env NAGIOS__CONTACTRSS_COLLAPSED=$_CONTACTRSS_COLLAPSED$ } define command{ command_name notify-by-push-notifications-for-ios-mobile command_line /usr/local/nagios/libexec/notifications/notify_by_ios_push env NAGIOS_CONTACTEMAIL=$CONTACTEMAIL$ env NAGIOS_CONTACTGROUPLIST=$CONTACTGROUPLIST$ env NAGIOS_CONTACTNAME=$CONTACTNAME$ env NAGIOS_CONTACTPAGER=$CONTACTPAGER$ env NAGIOS_HOSTACKAUTHOR=$HOSTACKAUTHOR$ env NAGIOS_HOSTACKCOMMENT=$HOSTACKCOMMENT$ env NAGIOS_HOSTADDRESS=$HOSTADDRESS$ env NAGIOS_HOSTALIAS=$HOSTALIAS$ env NAGIOS_HOSTATTEMPT=$HOSTATTEMPT$ env NAGIOS_HOSTDOWNTIME=$HOSTDOWNTIME$ env NAGIOS_HOSTDURATION=$HOSTDURATION$ env NAGIOS_HOSTGROUPNAME=$HOSTGROUPNAME$ env NAGIOS_HOSTNAME=$HOSTNAME$ env NAGIOS_HOSTNOTIFICATIONNUMBER=$HOSTNOTIFICATIONNUMBER$ env NAGIOS_HOSTOUTPUT=$HOSTOUTPUT$ env NAGIOS_HOSTSTATE=$HOSTSTATE$ env NAGIOS_HOSTSTATETYPE=$HOSTSTATETYPE$ env NAGIOS_LASTHOSTCHECK=$LASTHOSTCHECK$ env NAGIOS_LASTHOSTDOWN=$LASTHOSTDOWN$ env NAGIOS_LASTHOSTSTATE=$LASTHOSTSTATE$ env NAGIOS_LASTHOSTSTATECHANGE=$LASTHOSTSTATECHANGE$ env NAGIOS_LASTHOSTUNREACHABLE=$LASTHOSTUNREACHABLE$ env NAGIOS_LASTHOSTUP=$LASTHOSTUP$ env NAGIOS_LASTSERVICECHECK=$LASTSERVICECHECK$ env NAGIOS_LASTSERVICECRITICAL=$LASTSERVICECRITICAL$ env NAGIOS_LASTSERVICEOK=$LASTSERVICEOK$ env NAGIOS_LASTSERVICESTATE=$LASTSERVICESTATE$ env NAGIOS_LASTSERVICESTATECHANGE=$LASTSERVICESTATECHANGE$ env NAGIOS_LASTSERVICEWARNING=$LASTSERVICEWARNING$ env NAGIOS_LASTSTATECHANGE=$LASTSTATECHANGE$ env NAGIOS_LONGDATETIME=$LONGDATETIME$ env NAGIOS_LONGHOSTOUTPUT=$LONGHOSTOUTPUT$ env NAGIOS_LONGSERVICEOUTPUT=$LONGSERVICEOUTPUT$ env NAGIOS_NOTIFICATIONAUTHOR=$NOTIFICATIONAUTHOR$ env NAGIOS_NOTIFICATIONCOMMENT=$NOTIFICATIONCOMMENT$ env NAGIOS_NOTIFICATIONNUMBER=$NOTIFICATIONNUMBER$ env NAGIOS_NOTIFICATIONTYPE=$NOTIFICATIONTYPE$ env NAGIOS_SERVICEACKAUTHOR=$SERVICEACKAUTHOR$ env NAGIOS_SERVICEACKCOMMENT=$SERVICEACKCOMMENT$ env NAGIOS_SERVICEATTEMPT=$SERVICEATTEMPT$ env NAGIOS_SERVICEDESC=$SERVICEDESC$ env NAGIOS_SERVICEDOWNTIME=$SERVICEDOWNTIME$ env NAGIOS_SERVICEDURATION=$SERVICEDURATION$ env NAGIOS_SERVICENOTIFICATIONNUMBER=$SERVICENOTIFICATIONNUMBER$ env NAGIOS_SERVICEOUTPUT=$SERVICEOUTPUT$ env NAGIOS_SERVICESTATE=$SERVICESTATE$ env NAGIOS_SERVICESTATETYPE=$SERVICESTATETYPE$ env NAGIOS_SHORTDATETIME=$SHORTDATETIME$ env NAGIOS_TIMET=$TIMET$ } define command{ command_name notify-by-aql command_line /usr/local/nagios/libexec/notifications/submit_sms_aql env NAGIOS_CONTACTEMAIL=$CONTACTEMAIL$ env NAGIOS_CONTACTGROUPLIST=$CONTACTGROUPLIST$ env NAGIOS_CONTACTNAME=$CONTACTNAME$ env NAGIOS_CONTACTPAGER=$CONTACTPAGER$ env NAGIOS_HOSTACKAUTHOR=$HOSTACKAUTHOR$ env NAGIOS_HOSTACKCOMMENT=$HOSTACKCOMMENT$ env NAGIOS_HOSTADDRESS=$HOSTADDRESS$ env NAGIOS_HOSTALIAS=$HOSTALIAS$ env NAGIOS_HOSTATTEMPT=$HOSTATTEMPT$ env NAGIOS_HOSTDOWNTIME=$HOSTDOWNTIME$ env NAGIOS_HOSTDURATION=$HOSTDURATION$ env NAGIOS_HOSTGROUPNAME=$HOSTGROUPNAME$ env NAGIOS_HOSTNAME=$HOSTNAME$ env NAGIOS_HOSTNOTIFICATIONNUMBER=$HOSTNOTIFICATIONNUMBER$ env NAGIOS_HOSTOUTPUT=$HOSTOUTPUT$ env NAGIOS_HOSTSTATE=$HOSTSTATE$ env NAGIOS_HOSTSTATETYPE=$HOSTSTATETYPE$ env NAGIOS_LASTHOSTCHECK=$LASTHOSTCHECK$ env NAGIOS_LASTHOSTDOWN=$LASTHOSTDOWN$ env NAGIOS_LASTHOSTSTATE=$LASTHOSTSTATE$ env NAGIOS_LASTHOSTSTATECHANGE=$LASTHOSTSTATECHANGE$ env NAGIOS_LASTHOSTUNREACHABLE=$LASTHOSTUNREACHABLE$ env NAGIOS_LASTHOSTUP=$LASTHOSTUP$ env NAGIOS_LASTSERVICECHECK=$LASTSERVICECHECK$ env NAGIOS_LASTSERVICECRITICAL=$LASTSERVICECRITICAL$ env NAGIOS_LASTSERVICEOK=$LASTSERVICEOK$ env NAGIOS_LASTSERVICESTATE=$LASTSERVICESTATE$ env NAGIOS_LASTSERVICESTATECHANGE=$LASTSERVICESTATECHANGE$ env NAGIOS_LASTSERVICEWARNING=$LASTSERVICEWARNING$ env NAGIOS_LASTSTATECHANGE=$LASTSTATECHANGE$ env NAGIOS_LONGDATETIME=$LONGDATETIME$ env NAGIOS_LONGHOSTOUTPUT=$LONGHOSTOUTPUT$ env NAGIOS_LONGSERVICEOUTPUT=$LONGSERVICEOUTPUT$ env NAGIOS_NOTIFICATIONAUTHOR=$NOTIFICATIONAUTHOR$ env NAGIOS_NOTIFICATIONCOMMENT=$NOTIFICATIONCOMMENT$ env NAGIOS_NOTIFICATIONNUMBER=$NOTIFICATIONNUMBER$ env NAGIOS_NOTIFICATIONTYPE=$NOTIFICATIONTYPE$ env NAGIOS_SERVICEACKAUTHOR=$SERVICEACKAUTHOR$ env NAGIOS_SERVICEACKCOMMENT=$SERVICEACKCOMMENT$ env NAGIOS_SERVICEATTEMPT=$SERVICEATTEMPT$ env NAGIOS_SERVICEDESC=$SERVICEDESC$ env NAGIOS_SERVICEDOWNTIME=$SERVICEDOWNTIME$ env NAGIOS_SERVICEDURATION=$SERVICEDURATION$ env NAGIOS_SERVICENOTIFICATIONNUMBER=$SERVICENOTIFICATIONNUMBER$ env NAGIOS_SERVICEOUTPUT=$SERVICEOUTPUT$ env NAGIOS_SERVICESTATE=$SERVICESTATE$ env NAGIOS_SERVICESTATETYPE=$SERVICESTATETYPE$ env NAGIOS_SHORTDATETIME=$SHORTDATETIME$ env NAGIOS_TIMET=$TIMET$ }
log_file=/usr/local/nagios/var/nagios.log cfg_file=checkcommands.cfg cfg_file=misccommands.cfg cfg_file=contactgroups.cfg cfg_file=contacts.cfg cfg_file=hostgroups.cfg cfg_file=hosts.cfg cfg_file=services.cfg cfg_file=timeperiods.cfg cfg_file=master.cfg cfg_dir=conf.d cfg_dir=local.d object_cache_file=/usr/local/nagios/var/objects.cache precached_object_file=/usr/local/nagios/var/objects.precache status_file=/usr/local/nagios/var/status.dat status_update_interval=10 nagios_user=nagios nagios_group=nagios check_external_commands=1 command_file=/usr/local/nagios/var/rw/nagios.cmd lock_file=/usr/local/nagios/var/nagios.lock temp_file=/usr/local/nagios/var/nagios.tmp temp_path=/tmp event_broker_options=1047517 broker_module=/usr/local/nagios/bin/opsview_notificationprofiles.o broker_module=/usr/local/nagios/bin/ndomod.o config_file=/usr/local/nagios/etc/ndomod.cfg broker_module=/usr/local/nagios/bin/altinity_set_initial_state.o log_rotation_method=d log_archive_path=/usr/local/nagios/var/archives use_syslog=0 log_notifications=1 log_service_retries=1 log_host_retries=1 log_event_handlers=1 log_initial_states=0 log_current_states=1 log_external_commands=1 log_passive_checks=0 service_inter_check_delay_method=s max_service_check_spread=5 service_interleave_factor=s host_inter_check_delay_method=s max_host_check_spread=15 max_concurrent_checks=50 check_result_reaper_frequency=2 max_check_result_reaper_time=30 check_result_path=/usr/local/nagios/var/spool/checkresults max_check_result_file_age=3600 cached_host_check_horizon=15 cached_service_check_horizon=15 enable_predictive_host_dependency_checks=1 enable_predictive_service_dependency_checks=1 soft_state_dependencies=1 auto_reschedule_checks=0 auto_rescheduling_interval=30 auto_rescheduling_window=180 service_check_timeout=60 host_check_timeout=30 event_handler_timeout=60 notification_timeout=30 perfdata_timeout=12 retain_state_information=1 state_retention_file=/usr/local/nagios/var/retention.dat retention_update_interval=60 use_retained_program_state=1 use_retained_scheduling_info=1 retained_host_attribute_mask=15 retained_service_attribute_mask=15 retained_process_host_attribute_mask=0 retained_process_service_attribute_mask=0 retained_contact_host_attribute_mask=0 retained_contact_service_attribute_mask=0 interval_length=60 check_for_updates=0 bare_update_check=0 use_aggressive_host_checking=0 execute_service_checks=1 accept_passive_service_checks=1 execute_host_checks=1 accept_passive_host_checks=1 enable_notifications=1 enable_event_handlers=1 process_performance_data=1 service_perfdata_file=/usr/local/nagios/var/perfdata.log host_perfdata_file_template=empty service_perfdata_file_template=$LASTSERVICECHECK$||$HOSTNAME$||$SERVICEDESC$||$SERVICEOUTPUT$||$SERVICEPERFDATA$ host_perfdata_file_mode=w service_perfdata_file_mode=w host_perfdata_file_processing_interval=0 service_perfdata_file_processing_interval=10 service_perfdata_file_processing_command=process-service-perfdata-nagiosgraph obsess_over_services=0 obsess_over_hosts=0 translate_passive_host_checks=0 passive_host_checks_are_soft=1 check_for_orphaned_services=1 check_for_orphaned_hosts=1 check_service_freshness=1 service_freshness_check_interval=60 service_check_timeout_state=c check_host_freshness=0 host_freshness_check_interval=60 additional_freshness_latency=1800 enable_flap_detection=1 low_service_flap_threshold=20.0 high_service_flap_threshold=30.0 low_host_flap_threshold=20.0 high_host_flap_threshold=30.0 date_format=iso8601 illegal_object_name_chars=`~!$%^&*|'"<>?,()= illegal_macro_output_chars=`~$&|"<> use_regexp_matching=0 use_true_regexp_matching=0 admin_email=nagios admin_pager=pagenagios daemon_dumps_core=0 use_large_installation_tweaks=1 enable_environment_macros=1 debug_level=0 debug_verbosity=1 debug_file=/usr/local/nagios/var/log/nagios.debug max_debug_file_size=10000000
ndo2db_user=nagios ndo2db_group=nagios socket_type=unix socket_name=/usr/local/nagios/var/ndo.sock tcp_port=5668 db_servertype=mysql db_host=localhost db_port=3306 db_name=runtime db_prefix=nagios_ db_user=nagios db_pass=3edc max_timedevents_age=0 max_systemcommands_age=0 max_servicechecks_age=0 max_hostchecks_age=0 max_eventhandlers_age=0 max_externalcommands_age=0 debug_level=0 debug_verbosity=1 debug_file=/usr/local/nagios/var/log/ndo2db.debug max_debug_file_size=1000000
instance_name=default output_type=file output=/usr/local/nagios/var/ndo.dat tcp_port=5668 output_buffer_items=5000 buffer_file=/usr/local/nagios/var/ndomod.tmp file_rotation_interval=5 file_rotation_command=rotate_ndo_log file_rotation_timeout=10 reconnect_interval=15 reconnect_warning_interval=15 data_processing_options=66977791 config_output_options=1
$notificationmethodvariables = {'com.opsview.notificationmethods.email' => {},'com.opsview.notificationmethods.aql' => {},'com.opsview.notificationmethods.iospush' => {},'com.opsview.notificationmethods.rss' => {}};$config = {'system' => {'uuid' => ''},'hostgroups' => {'Monitoring Servers' => {'matpath' => 'Opsview,Monitoring Servers'}}};1;
log_facility=daemon pid_file=/var/tmp/nrpe.pid server_port=5666 nrpe_user=nagios nrpe_group=nagios dont_blame_nrpe=1 debug=0 command_timeout=60 command[check_users]=/usr/local/nagios/libexec/check_users $ARG1$ command[check_load]=/usr/local/nagios/libexec/check_load $ARG1$ command[check_disk]=/usr/local/nagios/libexec/check_disk $ARG1$ command[check_swap]=/usr/local/nagios/libexec/check_swap $ARG1$ command[check_procs]=/usr/local/nagios/libexec/check_procs $ARG1$ command[check_memory]=/usr/local/nagios/libexec/check_memory $ARG1$ command[check_file_age]=/usr/local/nagios/libexec/check_file_age $ARG1$ command[check_dir_age]=/usr/local/nagios/libexec/check_dir_age $ARG1$ command[check_mailq]=/usr/local/nagios/libexec/check_mailq $ARG1$ command[check_hpjd]=/usr/local/nagios/libexec/check_hpjd $ARG1$ command[check_ntp]=/usr/local/nagios/libexec/check_ntp $ARG1$ command[check_ntp_peer]=/usr/local/nagios/libexec/check_ntp_peer $ARG1$ command[check_ntp_time]=/usr/local/nagios/libexec/check_ntp_time $ARG1$ command[check_snmp]=/usr/local/nagios/libexec/check_snmp $ARG1$ command[check_time]=/usr/local/nagios/libexec/check_time $ARG1$ command[check_tcp]=/usr/local/nagios/libexec/check_tcp $ARG1$ command[check_cluster]=/usr/local/nagios/libexec/check_cluster $ARG1$ command[check_ide_smart]=/usr/local/nagios/libexec/check_ide_smart $ARG1$ command[check_postgres]=/usr/local/nagios/libexec/check_postgres $ARG1$ command[check_raid]=/usr/local/nagios/libexec/check_raid $ARG1$ command[check_time_skew]=/usr/local/nagios/libexec/check_time_skew $ARG1$ include_dir=/usr/local/nagios/etc/nrpe_local
pid_file=/usr/local/nagios/var/nsca.pid server_port=5667 server_address=127.0.0.1 nsca_user=nagios nsca_group=nagios debug=0 command_file=/usr/local/nagios/var/rw/nagios.cmd aggregate_writes=1 append_to_file=0 max_packet_age=30 password=1qaz decryption_method=2
host 127.0.0.1 serializer crypt encrypt_type Blowfish encrypt_key 31147F2E-D886-11E3-9BC3-405B57F11680 timeout 30
password=1qaz encryption_method=2
define service{ name service-global active_checks_enabled 1 ; Active service checks are enabled passive_checks_enabled 1 ; Passive service checks are enabled/accepted obsess_over_service 0 ; We should obsess over this service (if necessary) check_freshness 0 ; Default is to NOT check service 'freshness' notifications_enabled 1 ; Service notifications are enabled event_handler_enabled 1 ; Service event handler is enabled but ignored unless event_handler set flap_detection_enabled 1 ; Flap detection is enabled process_perf_data 1 ; Process performance data retain_status_information 1 ; Retain status information across program restarts retain_nonstatus_information 1 ; Retain non-status information across program restarts is_volatile 0 check_period 24x7 register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE! } define serviceescalation { name serviceescalation-global register 0 last_notification 0 ; Do not stop escalations } define command{ command_name my_negate command_line /usr/local/nagios/libexec/negate -t 240 /usr/local/nagios/libexec/$ARG1$ } define command{ command_name my_check_dummy command_line /usr/local/nagios/libexec/check_dummy $ARG1$ $ARG2$ } define command{ command_name set_to_stale command_line /usr/local/nagios/bin/set_to_stale } define command{ command_name set_to_stale_timedoverride command_line /usr/local/nagios/bin/set_to_stale } define command{ command_name refresh_state command_line /usr/local/nagios/bin/refresh_state env NAGIOS_SERVICEDESC=$SERVICEDESC$ env NAGIOS_SERVICEOUTPUT=$SERVICEOUTPUT$ env NAGIOS_SERVICEPERFDATA=$SERVICEPERFDATA$ env NAGIOS_SERVICESTATEID=$SERVICESTATEID$ env NAGIOS_HOSTOUTPUT=$HOSTOUTPUT$ env NAGIOS_HOSTPERFDATA=$HOSTPERFDATA$ env NAGIOS_HOSTSTATEID=$HOSTSTATEID$ } define command{ command_name my_check_snmp command_line /usr/local/nagios/libexec/check_snmp -H $HOSTADDRESS$ $ARG1$ -o $ARG2$ $ARG3$ } define command{ command_name check_host_15 command_line /usr/local/nagios/libexec/check_icmp $ARG1$ } define service { host_name opsview service_description Defunct ndo2db Processes check_command check_procs!-u nagios -s Z -c 0 -C ndo2d retry_check_interval 1 check_period 24x7 max_check_attempts 2 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks for defunct ndo2db processes, a possible sign of problems use service-global } define service { host_name opsview service_description Nagios Core Processes check_command check_nrpe!-H $HOSTADDRESS$ -c check_procs -a '-C nagios -w 1:60 -c 1:100' retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks nagios processes use service-global } define service { host_name opsview service_description Nagios Core Startup check_command check_nagios_startup! retry_check_interval 1 check_period 24x7 max_check_attempts 1 flap_detection_enabled 1 notifications_enabled 0 notification_period 24x7 notification_interval 0 notification_options n normal_check_interval 60 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks time taken to startup Nagios Core use service-global } define service { host_name opsview service_description Nagios Core Stats check_command check_nagios_stats! retry_check_interval 1 check_period 24x7 max_check_attempts 1 flap_detection_enabled 1 notifications_enabled 0 notification_period 24x7 notification_interval 0 notification_options n normal_check_interval 15 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Returns performance data about Nagios Core use service-global } define service { host_name opsview service_description Opsview Agent check_command check_nrpe!-H $HOSTADDRESS$ retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1 notes Application - Opsview:Checks Opsview agent is running use service-global } define service { host_name opsview service_description Opsview Application Processes check_command check_nrpe!-H $HOSTADDRESS$ -c check_procs -a '-a opsview_web_server -w 1:10 -c 1:10' retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,f,r,u,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks for Opsview Application processes use service-global } define service { host_name opsview service_description Opsview Application Server check_command check_tcp!-H $HOSTADDRESS$ -p 3000 -w 2 -c 5 retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks Opsview application server is running use service-global } define service { host_name opsview service_description Opsview Daemon check_command check_opsview_master! retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks Opsview daemon by testing the socket pipe use service-global } define service { host_name opsview service_description Opsview DB Connections check_command check_opsview_mysql_performance!--perfdata Connections,Max_used_connections retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1 notes Application - Opsview:Polls MySQL performance data for current / max connections use service-global } define service { host_name opsview service_description Opsview DB Performance check_command check_opsview_mysql_performance!--perfdata Com_select,Created_tmp_disk_tables,Created_tmp_tables,Slow_queries,Select_full_join,Select_full_range_join,Select_range_check,Select_scan,Sort_merge_passes,Sort_range,Sort_rows,Sort_scan retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1 notes Application - Opsview:Polls MySQL performance data including slow queries use service-global } define service { host_name opsview service_description Opsview DB Status check_command check_opsview_mysql! retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks status of Opsview Configuration database use service-global } define service { host_name opsview service_description Opsview Graphing Import check_command check_opsview_async_imports!perfdatarrd retry_check_interval 1 check_period 24x7 max_check_attempts 2 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 15 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks RRD graph import files are updating use service-global } define service { host_name opsview service_description Opsview Housekeeping Cronjob Monitor check_command check_opsview_cronjobs! retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 720 notification_options c,f,r,u,w normal_check_interval 720 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Monitors how long it has been since housekeeping cronjob was successfully run use service-global } define service { host_name opsview service_description Opsview Housekeeping Monitor check_command check_opsview_housekeeping! retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 720 notification_options c,f,r,u,w normal_check_interval 720 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Monitors how long it has been since housekeeping tasks were successfully carried out use service-global } define service { host_name opsview service_description Opsview HTTP check_command check_http!-H $HOSTADDRESS$ -w 5 -c 10 retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks for valid HTTP response on TCP port 80 use service-global } define service { host_name opsview service_description Opsview Login check_command check_http!-H $HOSTADDRESS$ -u /login --string="login_username" -w 5 -c 10 retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k2_opsview notes Application - Opsview:Checks for Opsview Login page, proving part of workflow use service-global } define service { host_name opsview service_description Opsview NDO check_command check_opsview_ndo_import! retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup1,k1_opsview-components notes Application - Opsview:Checks NDO files are being imported use service-global } define service { host_name opsview service_description Opsview Updates check_command check_opsview_update! retry_check_interval 1 check_period 24x7 max_check_attempts 2 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 720 notification_options n normal_check_interval 720 contact_groups hostgroup2_servicegroup1 notes Application - Opsview:Checks whether a new Opsview release is available use service-global } define service { host_name opsview service_description Opsview Application Status check_command check_opsview_keyword!--keyword=opsview retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,f,r,u,w normal_check_interval 5 contact_groups hostgroup2_servicegroup12 notes Keyword:Status based on hosts and services tagged with 'opsview' keyword use service-global } define service { host_name opsview service_description Connectivity - LAN check_command check_icmp!-H $HOSTADDRESS$ -w 100.0,20% -c 500.0,60% retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup22 notes Network - Base:Checks that network interface is responding to ICMP echo requests use service-global } define service { host_name opsview service_description Disk check_command check_nrpe!-H $HOSTADDRESS$ -c check_disk -a '%DISK:1% -p %DISK%' retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup28 notes OS - Base Unix Agent:Utilisation of Unix partitions use service-global register 0 name multiple-1-178 } define service { host_name opsview service_description Disk: / check_command check_nrpe!-H $HOSTADDRESS$ -c check_disk -a '-w 5% -c 2% -p /' use multiple-1-178 } define service { host_name opsview service_description Unix Load Average check_command check_nrpe!-H $HOSTADDRESS$ -c check_load -a '-w 5,5,5 -c 9,9,9' retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup28 notes OS - Base Unix Agent:Checks Load Average use service-global } define service { host_name opsview service_description Unix Memory check_command check_nrpe!-H $HOSTADDRESS$ -c check_memory -a '-w 90 -c 98' retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup28 notes OS - Base Unix Agent:Checks Memory Utilisation use service-global } define service { host_name opsview service_description Unix Swap check_command check_nrpe!-H $HOSTADDRESS$ -c check_swap -a '-w 5% -c 1%' retry_check_interval 1 check_period 24x7 max_check_attempts 3 flap_detection_enabled 1 notifications_enabled 1 notification_period 24x7 notification_interval 60 notification_options c,r,w normal_check_interval 5 contact_groups hostgroup2_servicegroup28 notes OS - Base Unix Agent:Checks Swap Utilisation use service-global } define servicedependency { host_name opsview service_description Opsview Agent dependent_host_name opsview dependent_service_description Nagios Core Processes notification_failure_criteria w,c,u execution_failure_criteria w,c,u } define servicedependency { host_name opsview service_description Opsview Agent dependent_host_name opsview dependent_service_description Disk: / notification_failure_criteria w,c,u execution_failure_criteria w,c,u } define servicedependency { host_name opsview service_description Opsview Agent dependent_host_name opsview dependent_service_description Unix Load Average notification_failure_criteria w,c,u execution_failure_criteria w,c,u } define servicedependency { host_name opsview service_description Opsview Agent dependent_host_name opsview dependent_service_description Unix Memory notification_failure_criteria w,c,u execution_failure_criteria w,c,u } define servicedependency { host_name opsview service_description Opsview Agent dependent_host_name opsview dependent_service_description Unix Swap notification_failure_criteria w,c,u execution_failure_criteria w,c,u }
define timeperiod{ timeperiod_name 24x7 alias 24 Hours A Day, 7 Days A Week sunday 00:00-24:00 monday 00:00-24:00 tuesday 00:00-24:00 wednesday 00:00-24:00 thursday 00:00-24:00 friday 00:00-24:00 saturday 00:00-24:00 } define timeperiod{ timeperiod_name none alias None } define timeperiod{ timeperiod_name nonworkhours alias Non-work Hours sunday 00:00-24:00 monday 00:00-09:00,17:00-24:00 tuesday 00:00-09:00,17:00-24:00 wednesday 00:00-09:00,17:00-24:00 thursday 00:00-09:00,17:00-24:00 friday 00:00-09:00,17:00-24:00 saturday 00:00-24:00 } define timeperiod{ timeperiod_name workhours alias Normal Working Hours monday 09:00-17:00 tuesday 09:00-17:00 wednesday 09:00-17:00 thursday 09:00-17:00 friday 09:00-17:00 }
log4perl.rootLogger=INFO, LOGFILE, SCREEN log4perl.appender.LOGFILE=Log::Dispatch::FileRotate log4perl.appender.LOGFILE.filename=/var/log/opsview/opsview-web.log log4perl.appender.LOGFILE.mode=append log4perl.appender.LOGFILE.size=1000000 log4perl.appender.LOGFILE.max=5 log4perl.appender.LOGFILE.layout=PatternLayout log4perl.appender.LOGFILE.layout.ConversionPattern=[%d] [%c] [%p] %m%n log4perl.appender.SCREEN=Log::Log4perl::Appender::Screen log4perl.appender.SCREEN.layout=Log::Log4perl::Layout::SimpleLayout
*filter :INPUT ACCEPT :FORWARD ACCEPT :OUTPUT ACCEPT :RH-Firewall-1-INPUT - -A INPUT -j RH-Firewall-1-INPUT -A FORWARD -j RH-Firewall-1-INPUT -A RH-Firewall-1-INPUT -i lo -j ACCEPT -A RH-Firewall-1-INPUT -p icmp -m icmp --icmp-type any -j ACCEPT -A RH-Firewall-1-INPUT -p esp -j ACCEPT -A RH-Firewall-1-INPUT -p ah -j ACCEPT -A RH-Firewall-1-INPUT -d 224.0.0.251 -p udp -m udp --dport 5353 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 80 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 443 -j ACCEPT -A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT -A RH-Firewall-1-INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited COMMIT
Chain INPUT (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain RH-Firewall-1-INPUT (2 references)
target prot opt source destination
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0 icmp type 255
ACCEPT esp -- 0.0.0.0/0 0.0.0.0/0
ACCEPT ah -- 0.0.0.0/0 0.0.0.0/0
ACCEPT udp -- 0.0.0.0/0 224.0.0.251 udp dpt:5353
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:443
ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:631
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:631
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22
REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
base dc=example,dc=com timelimit 120 bind_timelimit 120 idle_timelimit 3600 nss_initgroups_ignoreusers root,ldap,named,avahi,haldaemon,dbus,radvd,tomcat,radiusd,news,mailman,nscd,gdm uri ldap://127.0.0.1/ ssl no tls_cacertdir /etc/openldap/cacerts pam_password md5
URI ldap://127.0.0.1/ BASE dc=example,dc=com TLS_CACERTDIR /etc/openldap/cacerts
weekly rotate 4 create include /etc/logrotate.d /var/log/wtmp { monthly minsize 1M create 0664 root utmp rotate 1 } /var/log/btmp { missingok monthly minsize 1M create 0600 root utmp rotate 1 }
/var/log/acpid { missingok notifempty size=64k postrotate /etc/init.d/acpid condrestart >/dev/null || : endscript }
/var/log/conman/* { compress missingok nocopytruncate nocreate nodelaycompress nomail notifempty olddir /var/log/conman.old/ rotate 4 sharedscripts size=5M weekly postrotate /usr/bin/killall -HUP conmand endscript }
/var/log/httpd/*log { missingok notifempty sharedscripts postrotate /sbin/service httpd reload > /dev/null 2>/dev/null || true endscript }
/var/log/iscsiuio.log { weekly missingok notifempty rotate 4 sharedscripts postrotate pkill -USR1 iscsiuio 2> /dev/null || true endscript }
/var/log/mgetty.log.tty[^.] /var/log/mgetty.log.tty[^.][^.] /var/log/mgetty.log.tty[^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.][^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.][^.][^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.][^.][^.][^.][^.][^.] /var/log/mgetty.log.tty[^.][^.][^.][^.][^.][^.][^.][^.][^.][^.] /var/log/mgetty.log.unknown /var/log/mgetty.callback { nocompress missingok }
/var/log/named.log { missingok create 0644 named named postrotate /sbin/service named reload 2> /dev/null > /dev/null || true endscript }
/var/log/ppp/connect-errors { missingok compress notifempty daily rotate 5 create 0600 root root }
/var/account/pacct { compress delaycompress notifempty daily rotate 31 create 0600 root root postrotate if [ -f /var/lock/subsys/psacct ]; then /usr/sbin/accton /var/account/pacct fi endscript }
/var/log/rpmpkgs { weekly notifempty missingok }
/var/log/sa-update.log { monthly notifempty missingok }
/var/log/samba/*.log { notifempty missingok sharedscripts copytruncate postrotate /bin/kill -HUP `cat /var/run/smbd.pid /var/run/nmbd.pid /var/run/winbindd.pid 2> /dev/null` 2> /dev/null || true endscript }
/var/log/snmpd.log { notifempty missingok postrotate /bin/kill -HUP `cat /var/run/snmpd.pid 2> /dev/null` 2> /dev/null || true endscript }
/var/log/squid/access.log { weekly rotate 5 copytruncate compress notifempty missingok } /var/log/squid/cache.log { weekly rotate 5 copytruncate compress notifempty missingok } /var/log/squid/store.log { weekly rotate 5 copytruncate compress notifempty missingok postrotate /usr/sbin/squid -k rotate endscript }
/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler /var/log/boot.log /var/log/cron { sharedscripts postrotate /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true /bin/kill -HUP `cat /var/run/rsyslogd.pid 2> /dev/null` 2> /dev/null || true endscript }
/var/log/tux { missingok notifempty }
/var/log/vsftpd.log { nocompress missingok } /var/log/xferlog { nocompress missingok }
/var/log/wpa_supplicant.log { missingok notifempty size 30k create 0600 root root }
/var/log/yum.log { missingok notifempty size 30k yearly create 0600 root root }
LogDir = /var/log TmpDir = /var/cache/logwatch MailTo = root MailFrom = Logwatch Print = No Range = yesterday Detail = Low Service = All Service = "-zz-network" # Prevents execution of zz-network service, which Service = "-zz-sys" # Prevents execution of zz-sys service, which Service = "-eximstats" # Prevents execution of eximstats service, which mailer = "sendmail -t"
autorpm.conf : LogFile = /var/spool/autorpm/install.log cisco.conf : LogFile = cisco.log cisco.conf : Archive = cisco.log.* clam-update.conf : LogFile = clam-update clam-update.conf : LogFile = freshclam.log clam-update.conf : LogFile = clamav/freshclam.log clam-update.conf : Archive = clam-update.* clam-update.conf : Archive = freshclam.log.* clam-update.conf : Archive = clamav/freshclam.log.* clam-update.conf : Archive = archiv/clam-update.* clam-update.conf : Archive = archiv/freshclam.log.* cron.conf : LogFile = /var/cron/log cron.conf : LogFile = cron cron.conf : Archive = cron.* cron.conf : Archive = archiv/cron.* cron.conf : *OnlyHost cron.conf : *RemoveService = anacron daemon.conf : LogFile = daemon.log daemon.conf : LogFile = daemon.log.0 daemon.conf : Archive = daemon.log.*.gz daemon.conf : *ExpandRepeats daemon.conf : *OnlyHost daemon.conf : *ApplyStdDate dnssec.conf : LogFile = dnssec dnssec.conf : *ExpandRepeats dnssec.conf : *ApplyBindDate emerge.conf : LogFile = emerge.log emerge.conf : Archive = emerge.log.* exim.conf : LogFile = exim/main.log exim.conf : LogFile = exim/mainlog exim.conf : LogFile = exim4/mainlog exim.conf : Archive = exim/main.log.* exim.conf : Archive = archiv/exim/main.log.* exim.conf : Archive = exim/mainlog.* exim.conf : Archive = exim4/mainlog.* extreme-networks.conf : LogFile = extreme-networks.log extreme-networks.conf : Archive = extreme-networks.log.* extreme-networks.conf : *ApplyStdDate http.conf : LogFile = httpd/*access_log http.conf : LogFile = apache/*access.log.1 http.conf : LogFile = apache/*access.log http.conf : LogFile = apache2/*access.log.1 http.conf : LogFile = apache2/*access.log http.conf : LogFile = apache-ssl/*access.log.1 http.conf : LogFile = apache-ssl/*access.log http.conf : Archive = archiv/httpd/*access_log.* http.conf : Archive = httpd/*access_log.* http.conf : Archive = apache/*access.log.*.gz http.conf : Archive = apache2/*access.log.*.gz http.conf : Archive = apache-ssl/*access.log.*.gz http.conf : *ExpandRepeats http.conf : *ApplyhttpDate iptables.conf : LogFile = ulogd/ulogd.syslogemu iptables.conf : Archive = ulogd/ulogd.syslogmenu.* iptables.conf : *ApplyStdDate kernel.conf : LogFile = kern.log kernel.conf : LogFile = kern.log.0 kernel.conf : Archive = kern.log.*.gz kernel.conf : *ExpandRepeats kernel.conf : *OnlyHost kernel.conf : *ApplyStdDate maillog.conf : LogFile = maillog maillog.conf : LogFile = syslog maillog.conf : LogFile = mail.log maillog.conf : LogFile = mail.log.0 maillog.conf : Archive = maillog.* maillog.conf : Archive = syslog.* maillog.conf : Archive = archiv/maillog.* maillog.conf : Archive = mail.log.*.gz maillog.conf : *ExpandRepeats maillog.conf : *OnlyHost maillog.conf : *ApplyStdDate messages.conf : LogFile = messages messages.conf : Archive = messages.* messages.conf : Archive = archiv/messages.* messages.conf : *ExpandRepeats messages.conf : *RemoveService = talkd messages.conf : *RemoveService = telnetd messages.conf : *RemoveService = inetd messages.conf : *RemoveService = nfsd messages.conf : *RemoveService = /sbin/mingetty messages.conf : *RemoveService = netscreen messages.conf : *RemoveService = NetScreen messages.conf : *OnlyHost messages.conf : *ApplyStdDate netopia.conf : LogFile = netopia.log netopia.conf : Archive = netopia.log.* netopia.conf : *ApplyStdDate netscreen.conf : LogFile = netscreen.log netscreen.conf : Archive = netscreen.log.* netscreen.conf : *ApplyStdDate pureftp.conf : LogFile = pureftp/syslog.log pureftp.conf : Archive = pureftp/syslog.log.* pureftp.conf : *OnlyHost pureftp.conf : *ApplyStdDate qmail-pop3d-current.conf : LogFile = qmail/pop3d/@*.s qmail-pop3d-current.conf : LogFile = qmail/pop3d/current qmail-pop3d-current.conf : *applytaidate qmail-pop3ds-current.conf : LogFile = qmail/pop3ds/@*.s qmail-pop3ds-current.conf : LogFile = qmail/pop3ds/current qmail-pop3ds-current.conf : *applytaidate qmail-send-current.conf : LogFile = qmail/@*.s qmail-send-current.conf : LogFile = qmail/current qmail-send-current.conf : *applytaidate qmail-smtpd-current.conf : LogFile = qmail/smtpd/@*.s qmail-smtpd-current.conf : LogFile = qmail/smtpd/current qmail-smtpd-current.conf : *applytaidate resolver.conf : LogFile = resolver resolver.conf : *ExpandRepeats resolver.conf : *ApplyBindDate rt314.conf : LogFile = netgear.log rt314.conf : Archive = netgear.log.* rt314.conf : *ApplyStdDate samba.conf : Archive = samba/*.gz samba.conf : Archive = samba/*.[0-9] samba.conf : LogFile = samba/*.log secure.conf : LogFile = secure secure.conf : LogFile = authlog secure.conf : LogFile = auth.log secure.conf : LogFile = auth.log.0 secure.conf : Archive = secure.* secure.conf : Archive = archiv/secure.* secure.conf : Archive = authlog.* secure.conf : Archive = auth.log.*.gz secure.conf : *ExpandRepeats secure.conf : *OnlyHost secure.conf : *ApplyStdDate sonicwall.conf : LogFile = sonicwall.log sonicwall.conf : Archive = sonicwall.log.* sonicwall.conf : Archive = archiv/sonicwall.log.* sonicwall.conf : *OnlyHost sonicwall.conf : *ApplyStdDate syslog.conf : Logfile = syslog.conf : Archive = syslog.conf : LogFile = syslog syslog.conf : LogFile = syslog.0 syslog.conf : Archive = syslog.*.gz syslog.conf : *ExpandRepeats syslog.conf : *RemoveService = talkd syslog.conf : *RemoveService = telnetd syslog.conf : *RemoveService = inetd syslog.conf : *RemoveService = nfsd syslog.conf : *RemoveService = /sbin/mingetty syslog.conf : *OnlyHost syslog.conf : *ApplyStdDate tac_acc.conf : LogFile = tac_acc.log tac_acc.conf : Archive = tac_acc.log.* tac_acc.conf : *ApplyStdDate up2date.conf : LogFile = up2date up2date.conf : Archive = up2date.* vsftpd.conf : LogFile = vsftpd.log vsftpd.conf : Archive = vsftpd.log.* vsftpd.conf : Archive = archiv/vsftpd.log.* vsftpd.conf : *ApplyStdDate = windows.conf : LogFile = windows.log windows.conf : Archive = windows.log.* windows.conf : Archive = windows.log.*.gz windows.conf : *ExpandRepeats windows.conf : *OnlyHost windows.conf : *ApplyStdDate xferlog.conf : LogFile = xferlog xferlog.conf : Archive = xferlog.* xferlog.conf : Archive = archiv/xferlog.* yum.conf : LogFile = yum.log
afpd.conf : Title = "afpd" afpd.conf : LogFile = messages afpd.conf : *OnlyService = afpd afpd.conf : *RemoveHeaders amavis.conf : Title = "amavis" amavis.conf : LogFile = maillog amavis.conf : *OnlyService = amavis amavis.conf : *RemoveHeaders arpwatch.conf : Title = "Arpwatch" arpwatch.conf : LogFile = messages arpwatch.conf : *OnlyService = arpwatch arpwatch.conf : *RemoveHeaders audit.conf : Title = "Selinux Audit" audit.conf : LogFile = messages audit.conf : *OnlyService = (kernel:)?\s*audit.* audit.conf : *RemoveHeaders automount.conf : Title = "Automount" automount.conf : LogFile = messages automount.conf : *OnlyService = automount automount.conf : *RemoveHeaders autorpm.conf : Title = "AutoRPM" autorpm.conf : LogFile = autorpm cisco.conf : Title = "cisco" cisco.conf : LogFile = cisco clam-update.conf : Title = "clam-update" clam-update.conf : LogFile = clam-update clamav-milter.conf : Title = "Clamav-milter" clamav-milter.conf : LogFile = messages clamav-milter.conf : LogFile = maillog clamav-milter.conf : *OnlyService = clamav-milter clamav-milter.conf : *RemoveHeaders clamav-milter.conf : $clamav_ignoreunmatched = 0 clamav.conf : Title = "Clamav" clamav.conf : LogFile = messages clamav.conf : *OnlyService = clamd clamav.conf : *RemoveHeaders clamav.conf : $clamav_ignoreunmatched = 0 courier.conf : Title = "courier mail services" courier.conf : LogFile = maillog courier.conf : $courier_enable=1 courier.conf : $courier_tables=0 courier.conf : $courier_PrintMailQueue=0 courier.conf : $courier_ip_lookup=0 cron.conf : Title = "Cron" cron.conf : LogFile = cron dhcpd.conf : Title = "dhcpd" dhcpd.conf : LogFile = messages dhcpd.conf : *OnlyService = dhcpd dhcpd.conf : *RemoveHeaders dnssec.conf : Title = "DNSSEC" dnssec.conf : LogFile = dnssec dovecot.conf : Title = "Dovecot" dovecot.conf : LogFile = maillog dovecot.conf : *OnlyService = (imap-login|pop3-login|dovecot) emerge.conf : Title = "emerge" emerge.conf : LogFile = emerge exim.conf : Title = "EXIM" exim.conf : LogFile = exim eximstats.conf : Title = "EXIMSTATS" eximstats.conf : LogFile = exim eximstats.conf : $eximstats = "/usr/sbin/eximstats" extreme-networks.conf : Title = "extreme-networks" extreme-networks.conf : LogFile = extreme-networks ftpd-messages.conf : Title = "ftpd-messages" ftpd-messages.conf : LogFile = messages ftpd-messages.conf : *OnlyService = ftpd ftpd-messages.conf : *RemoveHeaders ftpd-messages.conf : $ftpd_ignore_unmatched = 0 ftpd-xferlog.conf : Title = "ftpd-xferlog" ftpd-xferlog.conf : LogFile = xferlog ftpd-xferlog.conf : $detail_transfer=1 http.conf : Title = "httpd" http.conf : LogFile = http http.conf : $HTTP_IGNORE_ERROR_HACKS = 0 identd.conf : Title = "identd" identd.conf : LogFile = messages identd.conf : *OnlyService = identd identd.conf : *RemoveHeaders imapd.conf : Title = "IMAP" imapd.conf : LogFile = maillog imapd.conf : *OnlyService = (imapd|imapd-ssl|imapsd) imapd.conf : *RemoveHeaders = in.qpopper.conf : Title = "in.qpopper" in.qpopper.conf : LogFile = maillog in.qpopper.conf : *MultiService = in.qpopper,qpopper in.qpopper.conf : *RemoveHeaders init.conf : Title = "Init" init.conf : LogFile = messages init.conf : *OnlyService = init init.conf : *RemoveHeaders ipop3d.conf : Title = "ipop3d" ipop3d.conf : LogFile = maillog ipop3d.conf : LogFile = secure ipop3d.conf : *OnlyService = ipop3d ipop3d.conf : *RemoveHeaders iptables.conf : Title = "iptables firewall" iptables.conf : LogFile = messages iptables.conf : LogFile = iptables iptables.conf : $iptables_ip_lookup = No iptables.conf : $iptables_host_min_count = 0 kernel.conf : Title = "Kernel" kernel.conf : LogFile = messages kernel.conf : *OnlyService = (kernel|SUNW,[-\w]+?) kernel.conf : *RemoveHeaders kernel.conf : *Remove = segfault kernel.conf : *Remove = locate module mailscanner.conf : Title = "MailScanner" mailscanner.conf : LogFile = maillog mailscanner.conf : *OnlyService = MailScanner mailscanner.conf : *RemoveHeaders mailscanner.conf : $mailscanner_phishing_detail = 0 mailscanner.conf : $mailscanner_phishingthreshold = 1 modprobe.conf : Title = "ModProbe" modprobe.conf : LogFile = messages modprobe.conf : *OnlyService = modprobe modprobe.conf : *RemoveHeaders mountd.conf : Title = "Mountd" mountd.conf : LogFile = messages mountd.conf : *OnlyService = mountd mountd.conf : *RemoveHeaders named.conf : Title = "Named" named.conf : LogFile = messages named.conf : $named_ip_lookup = No named.conf : *OnlyService = named named.conf : *RemoveHeaders netopia.conf : Title = "netopia" netopia.conf : LogFile = netopia netscreen.conf : Title = "netscreen" netscreen.conf : LogFile = netscreen oidentd.conf : Title = "Oidentd" oidentd.conf : LogFile = messages oidentd.conf : *OnlyService = oidentd oidentd.conf : *RemoveHeaders openvpn.conf : Title = "OpenVPN" openvpn.conf : LogFile = messages openvpn.conf : *OnlyService = openvpn openvpn.conf : *RemoveHeaders = pam.conf : Title = "pam" pam.conf : LogFile = messages pam.conf : *OnlyService = pam pam.conf : *RemoveHeaders pam_pwdb.conf : Title = "PAM_pwdb" pam_pwdb.conf : LogFile = messages pam_pwdb.conf : *OnlyService = pam_pwdb pam_pwdb.conf : *RemoveHeaders pam_unix.conf : Title = "pam_unix" pam_unix.conf : LogFile = messages pam_unix.conf : LogFile = secure pluto.conf : Title = "FreeS/WAN" pluto.conf : LogFile = secure pop3.conf : Title = "POP-3" pop3.conf : LogFile = messages pop3.conf : LogFile = maillog pop3.conf : *OnlyService = (pop3d-ssl|pop3d|spop3d|tpop3d) pop3.conf : *RemoveHeaders = portsentry.conf : Title = "PortSentry" portsentry.conf : LogFile = messages portsentry.conf : *OnlyService = portsentry portsentry.conf : *RemoveHeaders = postfix.conf : Title = postfix postfix.conf : LogFile = maillog postfix.conf : *OnlyService = "postfix/[a-zA-Z0-9]*" postfix.conf : *RemoveHeaders = pound.conf : Title = "pound" pound.conf : LogFile = messages pound.conf : $pound_ip_lookup = Yes pound.conf : *OnlyService = pound pound.conf : *RemoveHeaders = proftpd-messages.conf : Title = "proftpd-messages" proftpd-messages.conf : LogFile = messages proftpd-messages.conf : *OnlyService = proftpd proftpd-messages.conf : *RemoveHeaders proftpd-messages.conf : $ftpd_ignore_unmatched = 0 pureftpd.conf : Title = "pureftp" pureftpd.conf : LogFile = pureftp pureftpd.conf : *OnlyService = pure-ftpd pureftpd.conf : *RemoveHeaders = pureftpd.conf : $show_logins = 0 pureftpd.conf : $show_logouts = 0 pureftpd.conf : $show_data_transfers = 0 pureftpd.conf : $show_new_connections = 0 qmail-pop3d.conf : Title = "qmail-pop3" qmail-pop3d.conf : LogFile = qmail-pop3d-current qmail-pop3d.conf : *RemoveHeaders = qmail-pop3d.conf : $qmail_high_detail = 1 qmail-pop3d.conf : $threshold = 10 qmail-pop3d.conf : $from_threshold = qmail-pop3d.conf : $to_threshold = qmail-pop3ds.conf : Title = "qmail-pop3s" qmail-pop3ds.conf : LogFile = qmail-pop3ds-current qmail-pop3ds.conf : *RemoveHeaders = qmail-pop3ds.conf : $qmail_high_detail = 1 qmail-pop3ds.conf : $threshold = 10 qmail-pop3ds.conf : $from_threshold = qmail-pop3ds.conf : $to_threshold = qmail-send.conf : Title = "qmail-send" qmail-send.conf : LogFile = qmail-send-current qmail-send.conf : *RemoveHeaders = qmail-send.conf : $qmail_high_detail = 1 qmail-send.conf : $threshold = 10 qmail-send.conf : $from_threshold = qmail-send.conf : $remote_threshold = qmail-send.conf : $local_threshold = qmail-smtpd.conf : Title = "qmail-smtp" qmail-smtpd.conf : LogFile = qmail-smtpd-current qmail-smtpd.conf : *RemoveHeaders = qmail-smtpd.conf : $qmail_high_detail = 1 qmail-smtpd.conf : $threshold = 1 qmail-smtpd.conf : $from_threshold = qmail-smtpd.conf : $to_threshold = qmail-smtpd.conf : $blocked_threshold = qmail-smtpd.conf : $chkuser_rejects_from_threshold = qmail-smtpd.conf : $chkuser_rejects_to_threshold = qmail-smtpd.conf : $chkuser_rejects_remote_threshold = qmail-smtpd.conf : $chkuser_rejects_relay_from_threshold = qmail-smtpd.conf : $chkuser_rejects_relay_to_threshold = qmail-smtpd.conf : $chkuser_rejects_relay_remote_threshold= qmail-smtpd.conf : $chkuser_rejects_reason_threshold = qmail-smtpd.conf : $chkuser_accepts_from_threshold = qmail-smtpd.conf : $chkuser_accepts_to_threshold = qmail-smtpd.conf : $chkuser_accepts_relay_from_threshold = qmail-smtpd.conf : $chkuser_accepts_relay_to_threshold = qmail-smtpd.conf : $chkuser_noauthresource_threshold = qmail-smtpd.conf : $chkuser_overquota_threshold = qmail-smtpd.conf : $chkuser_rejected_intrusion_threshold = qmail-smtpd.conf : $simscan_threshold = qmail-smtpd.conf : $simscan_from_threshold = qmail-smtpd.conf : $simscan_to_threshold = qmail-smtpd.conf : $simscan_attach_threshold = qmail-smtpd.conf : $badmailto_ip_threshold = qmail-smtpd.conf : $badmailto_email_threshold = qmail-smtpd.conf : $badmailfrom_ip_threshold = qmail-smtpd.conf : $badmailfrom_email_threshold = qmail-smtpd.conf : $ignoreunmatched = 0 qmail.conf : Title = "qmail" qmail.conf : LogFile = maillog qmail.conf : *OnlyService = qmail qmail.conf : *RemoveHeaders = qmail.conf : $qmail_high_detail = 0 qmail.conf : $threshold = 4 qmail.conf : $from_threshold = 6 qmail.conf : $remote_threshold = 2 qmail.conf : $local_threshold = 7 raid.conf : Title = "Raid" raid.conf : LogFile = messages raid.conf : *OnlyService = kernel resolver.conf : Title = "Resolver" resolver.conf : LogFile = resolver rt314.conf : Title = "RT314" rt314.conf : LogFile = rt314 samba.conf : Title = "samba" samba.conf : LogFile = samba saslauthd.conf : Title = SASL Auth Daemon saslauthd.conf : LogFile = secure saslauthd.conf : *OnlyService = "saslauthd\[\d+\]" saslauthd.conf : *RemoveHeaders = scsi.conf : Title = "Kernel module scsi" scsi.conf : LogFile = messages scsi.conf : *OnlyService = scsi scsi.conf : *RemoveHeaders secure.conf : Title = "Connections (secure-log)" secure.conf : LogFile = secure secure.conf : $secure_ip_lookup = No secure.conf : $ignore_services = sshd Pluto stunnel proftpd saslauthd imapd sendmail-largeboxes.conf : Title = "sendmail-largeboxes (large mail spool files)" sendmail-largeboxes.conf : LogFile = NONE sendmail-largeboxes.conf : $sendmail_largeboxes_size = 40MB sendmail.conf : Title = "sendmail" sendmail.conf : LogFile = maillog sendmail.conf : *MultiService = sendmail,sm-mta sendmail.conf : *RemoveHeaders sendmail.conf : $Sendmail_MilterHeadersToCount = "X-SPF|X-Spam|X-Scanned-By: MIMEDefang|Received-SPF: fail|Received-SPF: softfail" sendmail.conf : $sendmail_mailbomblistthreshold = 25 sendmail.conf : $sendmail_mailbombthreshold = 10 sendmail.conf : $sendmail_unresolveddomainsthreshold = 1 sendmail.conf : $sendmail_knownspammerthreshold = 1 sendmail.conf : $sendmail_relaydeniedthreshold = 1 sendmail.conf : $sendmail_checkmailrejectthreshold = 1 sendmail.conf : $sendmail_checkrcptrejectthreshold = 1 sendmail.conf : $sendmail_lostinputchannelthreshold = 1 sendmail.conf : $sendmail_dummyconnectionthreshold = 1 sendmail.conf : $sendmail_unknownhoststhreshold = 1 sendmail.conf : $sendmail_unknownusersthreshold = 1 sendmail.conf : $sendmail_domainerrorsthreshold = 1 sendmail.conf : $sendmail_pregreetingthreshold = 1 sendmail.conf : $sendmail_collecterrorthreshold = 1 sendmail.conf : $sendmail_timeoutthreshold = 1 sendmail.conf : $sendmail_blackholethreshold = 1 sendmail.conf : $sendmail_tolistthreshold = 10 shaperd.conf : Title = "Shaperd" shaperd.conf : LogFile = messages shaperd.conf : *OnlyService = shaperd\d shaperd.conf : *RemoveHeaders slon.conf : Title = "slon" slon.conf : LogFile = messages slon.conf : *OnlyService = slon slon.conf : *RemoveHeaders smartd.conf : Title = "Smartd" smartd.conf : LogFile = messages smartd.conf : *OnlyService = smartd smartd.conf : *RemoveHeaders sonicwall.conf : Title = "sonicwall" sonicwall.conf : LogFile = sonicwall sonicwall.conf : LogFile = messages sonicwall.conf : *OnlyService = id=firewall sshd.conf : Title = "SSHD" sshd.conf : LogFile = secure sshd.conf : LogFile = messages sshd.conf : *OnlyService = sshd sshd.conf : *RemoveHeaders sshd2.conf : Title = "Sshd2" sshd2.conf : LogFile = messages sshd2.conf : *OnlyService = sshd2 sshd2.conf : *RemoveHeaders stunnel.conf : Title = "stunnel" stunnel.conf : LogFile = secure stunnel.conf : *OnlyService = stunnel stunnel.conf : *RemoveHeaders sudo.conf : Title = "Sudo (secure-log)" sudo.conf : LogFile = secure sudo.conf : *OnlyService = sudo sudo.conf : *RemoveHeaders sudo.conf : $command_run_threshold = 50 syslogd.conf : Title = "Syslogd" syslogd.conf : LogFile = messages syslogd.conf : *OnlyService = syslogd syslogd.conf : *RemoveHeaders tac_acc.conf : Title = "Tacacs accounting" tac_acc.conf : LogFile = tac_acc up2date.conf : Title = "up2date" up2date.conf : LogFile = up2date vpopmail.conf : Title = "vpopmail" vpopmail.conf : LogFile = maillog vpopmail.conf : *OnlyService = vpopmail vpopmail.conf : *RemoveHeaders = vpopmail.conf : $successful_logins = 0 vsftpd.conf : Title = vsftpd-messages vsftpd.conf : LogFile = vsftpd vsftpd.conf : *RemoveHeaders = vsftpd.conf : $vsftpd_ignore_unmatched = 0 windows.conf : Title = "windows" windows.conf : LogFile = windows xntpd.conf : Title = "XNTPD" xntpd.conf : LogFile = messages xntpd.conf : *MultiService = ntpd,xntpd,ntpdate xntpd.conf : *RemoveHeaders yum.conf : Title = "yum" yum.conf : LogFile = yum zz-disk_space.conf : Title = "Disk Space" zz-disk_space.conf : LogFile = NONE zz-fortune.conf : Title = "Fortune" zz-fortune.conf : LogFile = NONE zz-network.conf : Title = "Network Report" zz-network.conf : LogFile = NONE zz-sys.conf : Title = "System Configuration" zz-sys.conf : LogFile = NONE zz-sys.conf : DisplayOrder = 0.4
[mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock user=mysql old_passwords=1 [mysqld_safe] log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid
scc_0000_s_first 8277d30c474a4bce6e20c63a3a5726ce scc_0000_s_general 0fbe9c38cac24d9c24b8ef7c06c6d275 scc_0100_s_boot bc5645e0f7752fbdfa081de92f58eb60 scc_0200_s_hardware 113c7ddbf99d93333033614b17b2b929 scc_0300_s_kernel da7c04a47fc8c998eeef1aa87718f39e scc_0400_s_vol_mngt f6e8a925b17a2b344026b67cb4aea6af scc_0500_s_network 42c49fdef7b4718331716402f97cac49 scc_0500_u_named 410084ba8c6264fc9631af72b864dc8c scc_0600_s_software 6aa70903fc219ccacd71f14ceb9b65a3 scc_0610_s_oracle_sapr3 c8f90e2326b3e00126119d9b1eebee87 scc_0620_s_appl_server a1561923771c3d7f4f1a9478fd77b2ad scc_0630_s_pkgmngt ecf150e9622b70b85263c04b6b0dcd32 scc_0640_s_local d11785b307c10b6952465a8c938126cd scc_0700_s_hp_ov f8a541fb32e6f512d854f29ba445057e scc_0700_u_hp_ovou_srv e74fa70325d6805a8e6defa379080bf8 scc_0800_s_oracle 2f065f54d478a69a1d1799a3e1340846 scc_0900_s_system f8fa6c3affd20d8d784f6dda578084e3 scc_1000_s_users 0aa7c285d27b6dfef7f9d8a01da867ef scc_1100_s_openstack 4b883d58b869924f0fbbf6d9d2f00baf scc_9999_s_perms 978fae9c87db7d17536768276dc0633e scc_utils 9de6d352dd73361d5997f06dfab129cb
PHP 5.1.6 (cli) (built: Mar 18 2014 20:48:55) Copyright (c) 1997-2006 The PHP Group Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies
[PHP Modules] bz2 calendar ctype curl date dbase exif ftp gettext gmp hash iconv ldap libxml mbstring mime_magic mysql mysqli openssl pcntl pcre PDO pdo_mysql pdo_sqlite posix pspell Reflection session shmop SimpleXML sockets SPL standard sysvmsg sysvsem sysvshm tokenizer wddx xml zlib [Zend Modules]
PHP Version => 5.1.6 System => Linux centos59 2.6.18-348.el5 #1 SMP Tue Jan 8 17:53:53 EST 2013 x86_64 Build Date => Mar 18 2014 20:42:10 Configure Command => './configure' '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--target=x86_64-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib64' '--with-config-file-path=/etc' '--with-config-file-scan-dir=/etc/php.d' '--disable-debug' '--with-pic' '--disable-rpath' '--without-pear' '--with-bz2' '--with-curl' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-png' '--with-pspell' '--with-expat-dir=/usr' '--with-pcre-regex=/usr' '--with-zlib' '--with-layout=GNU' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-track-vars' '--enable-trans-sid' '--enable-yp' '--enable-wddx' '--with-kerberos' '--enable-ucd-snmp-hack' '--with-unixODBC=shared,/usr' '--enable-memory-limit' '--enable-shmop' '--enable-calendar' '--enable-dbx' '--enable-dio' '--with-mime-magic=/usr/share/file/magic.mime' '--without-sqlite' '--with-libxml-dir=/usr' '--with-xml' '--with-system-tzdata' '--enable-force-cgi-redirect' '--enable-pcntl' '--with-imap=shared' '--with-imap-ssl' '--enable-mbstring=shared' '--enable-mbstr-enc-trans' '--enable-mbregex' '--with-ncurses=shared' '--with-gd=shared' '--enable-bcmath=shared' '--enable-dba=shared' '--with-db4=/usr' '--with-xmlrpc=shared' '--with-ldap=shared' '--with-ldap-sasl' '--with-mysql=shared,/usr' '--with-mysqli=shared,/usr/lib64/mysql/mysql_config' '--enable-dom=shared' '--with-dom-xslt=/usr' '--with-dom-exslt=/usr' '--with-pgsql=shared' '--with-snmp=shared,/usr' '--enable-soap=shared' '--with-xsl=shared,/usr' '--enable-xmlreader=shared' '--enable-xmlwriter=shared' '--enable-fastcgi' '--enable-pdo=shared' '--with-pdo-odbc=shared,unixODBC,/usr' '--with-pdo-mysql=shared,/usr/lib64/mysql/mysql_config' '--with-pdo-pgsql=shared,/usr' '--with-pdo-sqlite=shared,/usr' '--enable-dbase=shared' Server API => Command Line Interface Virtual Directory Support => disabled Configuration File (php.ini) Path => /etc/php.ini Scan this dir for additional .ini files => /etc/php.d additional .ini files parsed => /etc/php.d/dbase.ini,
PHP API => 20041225 PHP Extension => 20050922 Zend Extension => 220051025 Debug Build => no Thread Safety => disabled Zend Memory Manager => enabled IPv6 Support => enabled Registered PHP Streams => php, file, http, ftp, compress.bzip2, compress.zlib, https, ftps Registered Stream Socket Transports => tcp, udp, unix, udg, ssl, sslv3, sslv2, tls Registered Stream Filters => string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.* extension=pdo_sqlite.so
Directive => Local Value => Master Value allow_call_time_pass_reference => Off => Off allow_url_fopen => On => On always_populate_raw_post_data => Off => Off arg_separator.input => & => & arg_separator.output => & => & asp_tags => Off => Off auto_append_file => no value => no value auto_globals_jit => On => On auto_prepend_file => no value => no value browscap => no value => no value default_charset => no value => no value default_mimetype => text/html => text/html define_syslog_variables => Off => Off disable_classes => no value => no value disable_functions => no value => no value display_errors => Off => Off display_startup_errors => Off => Off doc_root => no value => no value docref_ext => no value => no value docref_root => no value => no value enable_dl => On => On error_append_string => no value => no value error_log => no value => no value error_prepend_string => no value => no value error_reporting => 2047 => 2047 expose_php => On => On extension_dir => /usr/lib64/php/modules => /usr/lib64/php/modules file_uploads => On => On highlight.bg => #FFFFFF => #FFFFFF highlight.comment => #FF8000 => #FF8000 highlight.default => #0000BB => #0000BB highlight.html => #000000 => #000000 highlight.keyword => #007700 => #007700 highlight.string => #DD0000 => #DD0000 html_errors => Off => On ignore_repeated_errors => Off => Off ignore_repeated_source => Off => Off ignore_user_abort => Off => Off implicit_flush => On => Off include_path => .:/usr/share/pear:/usr/share/php => .:/usr/share/pear:/usr/share/php log_errors => On => On log_errors_max_len => 1024 => 1024 magic_quotes_gpc => Off => Off magic_quotes_runtime => Off => Off magic_quotes_sybase => Off => Off mail.force_extra_parameters => no value => no value max_execution_time => 0 => 30 max_file_uploads => 20 => 20 max_input_nesting_level => 64 => 64 max_input_time => -1 => 60 max_input_vars => 1000 => 1000 memory_limit => 128M => 128M open_basedir => no value => no value output_buffering => 0 => 4096 output_handler => no value => no value post_max_size => 8M => 8M precision => 14 => 14 realpath_cache_size => 16K => 16K realpath_cache_ttl => 120 => 120 register_argc_argv => On => Off register_globals => Off => Off register_long_arrays => Off => Off report_memleaks => On => On report_zend_debug => Off => Off safe_mode => Off => Off safe_mode_exec_dir => no value => no value safe_mode_gid => Off => Off safe_mode_include_dir => no value => no value sendmail_from => no value => no value sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i serialize_precision => 100 => 100 short_open_tag => On => On SMTP => localhost => localhost smtp_port => 25 => 25 sql.safe_mode => Off => Off track_errors => Off => Off unserialize_callback_func => no value => no value upload_max_filesize => 2M => 2M upload_tmp_dir => no value => no value user_dir => no value => no value variables_order => EGPCS => EGPCS xmlrpc_error_number => 0 => 0 xmlrpc_errors => Off => Off y2k_compliance => On => On zend.ze1_compatibility_mode => Off => Off
BZip2 Support => Enabled Stream Wrapper support => compress.bz2:// Stream Filter support => bzip2.decompress, bzip2.compress BZip2 Version => 1.0.3, 15-Feb-2005
Calendar support => enabled
ctype functions => enabled
CURL support => enabled CURL Information => libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
date/time support => enabled Timezone Database Version => 0.system Timezone Database => internal Default timezone => Europe/Berlin Directive => Local Value => Master Value date.default_latitude => 31.7667 => 31.7667 date.default_longitude => 35.2333 => 35.2333 date.sunrise_zenith => 90.583333 => 90.583333 date.sunset_zenith => 90.583333 => 90.583333 date.timezone => no value => no value
EXIF Support => enabled EXIF Version => 1.4 $Id: exif.c,v 1.173.2.5 2006/04/10 18:23:24 helly Exp $ Supported EXIF Version => 0220 Supported filetypes => JPEG,TIFF
FTP support => enabled
GetText Support => enabled
gmp support => enabled
hash support => enabled Hashing Engines => md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
iconv support => enabled iconv implementation => glibc iconv library version => 2.5 Directive => Local Value => Master Value iconv.input_encoding => ISO-8859-1 => ISO-8859-1 iconv.internal_encoding => ISO-8859-1 => ISO-8859-1 iconv.output_encoding => ISO-8859-1 => ISO-8859-1
LDAP Support => enabled RCS Version => $Id: ldap.c,v 1.161.2.3 2006/01/01 12:50:08 sniper Exp $ Total Links => 0/unlimited API Version => 3001 Vendor Name => OpenLDAP Vendor Version => 20343 SASL Support => Enabled
libXML support => active libXML Version => 2.6.26 libXML streams => enabled
Multibyte Support => enabled Multibyte string engine => libmbfl Multibyte (japanese) regex support => enabled Multibyte regex (oniguruma) version => 3.7.1
Directive => Local Value => Master Value mbstring.detect_order => no value => no value mbstring.encoding_translation => Off => Off mbstring.func_overload => 0 => 0 mbstring.http_input => pass => pass mbstring.http_output => pass => pass mbstring.internal_encoding => ISO-8859-1 => no value mbstring.language => neutral => neutral mbstring.strict_detection => Off => Off mbstring.substitute_character => no value => no value
mime_magic support => invalid magic file, disabled Directive => Local Value => Master Value mime_magic.debug => Off => Off mime_magic.magicfile => /usr/share/file/magic.mime => /usr/share/file/magic.mime
MySQL Support => enabled Active Persistent Links => 0 Active Links => 0 Client API version => 5.0.95 MYSQL_MODULE_TYPE => external MYSQL_SOCKET => /var/lib/mysql/mysql.sock MYSQL_INCLUDE => -I/usr/include/mysql MYSQL_LIBS => -L/usr/lib64/mysql -lmysqlclient Directive => Local Value => Master Value mysql.allow_persistent => On => On mysql.connect_timeout => 60 => 60 mysql.default_host => no value => no value mysql.default_password => no value => no value mysql.default_port => no value => no value mysql.default_socket => no value => no value mysql.default_user => no value => no value mysql.max_links => Unlimited => Unlimited mysql.max_persistent => Unlimited => Unlimited mysql.trace_mode => Off => Off
MysqlI Support => enabled Client API library version => 5.0.95 Client API header version => 5.0.95 MYSQLI_SOCKET => /var/lib/mysql/mysql.sock Directive => Local Value => Master Value mysqli.default_host => no value => no value mysqli.default_port => 3306 => 3306 mysqli.default_pw => no value => no value mysqli.default_socket => no value => no value mysqli.default_user => no value => no value mysqli.max_links => Unlimited => Unlimited mysqli.reconnect => Off => Off
OpenSSL support => enabled OpenSSL Version => OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
pcntl support => enabled
PCRE (Perl Compatible Regular Expressions) Support => enabled PCRE Library Version => 6.6 06-Feb-2006
PDO support => enabled PDO drivers => mysql, sqlite
PDO Driver for MySQL, client library version => 5.0.95
PDO Driver for SQLite 3.x => enabled PECL Module version => 1.0.1 $Id: pdo_sqlite.c,v 1.10.2.6 2006/01/01 12:50:12 sniper Exp $ SQLite Library => 3.3.6
Revision => $Revision: 1.70.2.3 $
PSpell Support => enabled
Reflection => enabled Version => $Id: php_reflection.c,v 1.164.2.33 2006/03/29 14:28:42 tony2001 Exp $
Session Support => enabled Registered save handlers => files user Registered serializer handlers => php php_binary wddx Directive => Local Value => Master Value session.auto_start => Off => Off session.bug_compat_42 => Off => Off session.bug_compat_warn => On => On session.cache_expire => 180 => 180 session.cache_limiter => nocache => nocache session.cookie_domain => no value => no value session.cookie_lifetime => 0 => 0 session.cookie_path => / => / session.cookie_secure => Off => Off session.entropy_file => no value => no value session.entropy_length => 0 => 0 session.gc_divisor => 1000 => 1000 session.gc_maxlifetime => 1440 => 1440 session.gc_probability => 1 => 1 session.hash_bits_per_character => 5 => 5 session.hash_function => 0 => 0 session.name => PHPSESSID => PHPSESSID session.referer_check => no value => no value session.save_handler => files => files session.save_path => /var/lib/php/session => /var/lib/php/session session.serialize_handler => php => php session.use_cookies => On => On session.use_only_cookies => Off => Off session.use_trans_sid => 0 => 0
shmop support => enabled
Simplexml support => enabled Revision => $Revision: 1.151.2.22 $ Schema support => enabled
Sockets Support => enabled
SPL support => enabled Interfaces => Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject Classes => AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException
Regex Library => Bundled library enabled Dynamic Library Support => enabled Path to sendmail => /usr/sbin/sendmail -t -i Directive => Local Value => Master Value assert.active => 1 => 1 assert.bail => 0 => 0 assert.callback => no value => no value assert.quiet_eval => 0 => 0 assert.warning => 1 => 1 auto_detect_line_endings => 0 => 0 default_socket_timeout => 60 => 60 safe_mode_allowed_env_vars => PHP_ => PHP_ safe_mode_protected_env_vars => LD_LIBRARY_PATH => LD_LIBRARY_PATH url_rewriter.tags => a=href,area=href,frame=src,input=src,form=fakeentry => a=href,area=href,frame=src,input=src,form=fakeentry user_agent => no value => no value
sysvmsg support => enabled Revision => $Revision: 1.20.2.3 $
Tokenizer Support => enabled
WDDX Support => enabled WDDX Session Serializer => enabled
XML Support => active XML Namespace Support => active libxml2 Version => 2.6.26
ZLib Support => enabled Stream Wrapper support => compress.zlib:// Stream Filter support => zlib.inflate, zlib.deflate Compiled Version => 1.2.3 Linked Version => 1.2.3 Directive => Local Value => Master Value zlib.output_compression => Off => Off zlib.output_compression_level => -1 => -1 zlib.output_handler => no value => no value
extension=dbase.so
extension=ldap.so
extension=mbstring.so
extension=mysql.so
extension=mysqli.so
extension=pdo.so
extension=pdo_mysql.so
SCC_WEB_PATH=/scc
permissions: drwxr-xr-x apache root scc-smt-select: fix:software:installed-filesets::# AdvJournalFS scc-smt-select: fix:software:installed-filesets::# EMS- scc-smt-select: fix:software:installed-filesets::# Ignite-UX scc-smt-select: fix:software:installed-filesets::# OMNIBACK-II scc-smt-select: fix:software:installed-filesets::# OVNNMgr scc-smt-select: fix:software:installed-filesets::# OVOPC scc-smt-select: fix:software:installed-filesets::# OVOPC-AGT scc-smt-select: fix:software:installed-filesets::# PerfView scc-smt-select: fix:software:installed-filesets::# Predictive scc-smt-select: fix:software:installed-filesets::# ServiceGuard scc-smt-select: fix:software:installed-filesets::# Sup-Tool-Mgr scc-smt-select: fix:software:installed-filesets::# Glance scc-smt-select: fix:software:installed-filesets::# MeasureWare scc-smt-select: fix:software:installed-packages:application,rpm::HPglance:HP: scc-smt-select: fix:software:installed-packages:application,rpm::HPmwa:HP: scc-smt-select: fix:software:installed-packages:system::OPC:HP: scc-smt-select: fix:software:installed-filesets::# VRTSvmsa scc-smt-select: fix:software:installed-filesets::# VRTSvxvm scc-smt-select: fix:software:installed-packages:system::VRTSvmsa: scc-smt-select: fix:software:installed-packages:system::VRTSvxvm: scc-smt-select: fix:software:installed-packages:system::SUNWsadmi: scc-smt-select: fix:software:installed-filesets::# scc scc-smt-select: fix:software:installed-filesets::# scc-srv scc-smt-select: fix:software:installed-packages:application::scc: scc-smt-select: fix:software:installed-packages:application::scc-srv: scc-smt-select: fix:software:installed-aix-filesets::scc-srv:scc-srv.rte: scc-smt-select: fix:software:installed-aix-filesets::scc:scc.rte: scc-smt-select: fix:software:installed-rpms:Applications/System::scc: scc-smt-select: fix:software:installed-rpms:Applications/System::scc-srv: scc-smt-select: fix:software:slitaz packages:utilities:scc scc-smt-select: fix:software:installed-BSD-packages::scc- scc-smt-select: fix:software:installed Debian packages::ii scc scc-smt-select: fix:software:installed pisi packages::scc scc-smt-select: fix:software:installed-source::scc: scc-smt-select: fix:software:product:SCC for Windows scc-rules.conf: CheckSnapAge:all_systems:14 scc-rules.conf: CheckSnapData:all_systems:fix:messages:: scc-rules.conf: CheckSnapData:all_systems::users:logins:.*:NP:
/var/opt/scc-srv/data/transfer/cp: drwxrwx--x root root /var/opt/scc-srv/data/transfer/mail: drwxrwx--- root root
drwxrwx--- apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/ drwxr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/All dr-xr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/All/cgi-bin dr-xr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/All/custom drwxr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/custom drwxr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/scc-help drwxr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/scc-help/scc drwxr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/scc-help/scc-srv drwxr-xr-x apache root system_u:object_r:httpd_sys_content_t /var/opt/scc-srv/data/www/scc-help/scc-win
Protocol 2 SyslogFacility AUTHPRIV PasswordAuthentication yes ChallengeResponseAuthentication no GSSAPIAuthentication yes GSSAPICleanupCredentials yes UsePAM yes AcceptEnv LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT AcceptEnv LC_IDENTIFICATION LC_ALL X11Forwarding yes Subsystem sftp /usr/libexec/openssh/sftp-server
Host * GSSAPIAuthentication yes ForwardX11Trusted yes SendEnv LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT SendEnv LC_IDENTIFICATION LC_ALL
3e7b274261bb74a92cbf26a8542d4d73
2048 35 26574776990612580022342295138370879255197972364783923881375580264176108610524447574194172668616547089200490879897468781072147458238166382396791766666776920424227007337198403441494266742116984691968364231572599724396957994530747964409182374397509172077490180929254464388163043222657020459882592191965050560029408346556142052687963958485745676250094497756293025453446243450817452845337917169292133646385572974406786387486312781066856774673701719270259739551144489258730463011637962124922354164201224150653531501091742166868276266333609549956540328781167993337322838791135757045292112649546367981677382434478118358380267
WORKGROUP
pam_pkcs11 { nullok = true; debug = false; card_only = true; enable_ocsp = false; use_first_pass = false; try_first_pass = false; use_authtok = false; use_pkcs11_module = coolkey; screen_savers = gnome-screensaver,xscreensaver,kscreensaver pkcs11_module coolkey { module = libcoolkeypk11.so; description = "Cool Key" slot_num = 0; ca_dir = /etc/pam_pkcs11/cacerts; nss_dir = /etc/pki/nssdb; crl_dir = /etc/pam_pkcs11/crls; crl_policy = none; } pkcs11_module opensc { module = opensc-pkcs11.so; description = "OpenSC PKCS#11 module"; slot_num = 0; ca_dir = /etc/pam_pkcs11/cacerts; crl_dir = /etc/pam_pkcs11/crls; crl_policy = none; } pkcs11_module default { module = /usr/$LIB/pam_pkcs11/pkcs11_module.so; description = "Default pkcs#11 module"; slot_num = 0; ca_dir = /etc/pam_pkcs11/cacerts; crl_dir = /etc/pam_pkcs11/crls; crl_policy = none; } use_mappers = cn, uid, pwent, null; mapper_search_path = /usr/$LIB/pam_pkcs11; mapper generic { debug = true; module = /usr/$LIB/pam_pkcs11/generic_mapper.so; ignorecase = false; cert_item = cn; mapfile = file:///etc/pam_pkcs11/generic_mapping use_getpwent = false; } mapper subject { debug = false; module = internal; ignorecase = false; mapfile = file:///etc/pam_pkcs11/subject_mapping; } mapper openssh { debug = false; module = /usr/$LIB/pam_pkcs11/openssh_mapper.so; } mapper opensc { debug = false; module = /usr/$LIB/pam_pkcs11/opensc_mapper.so; } mapper pwent { debug = false; ignorecase = false; module = internal; } mapper null { debug = false; module = internal ; default_match = false; default_user = nobody ; } mapper ldap { debug = false; module = /usr/$LIB/pam_pkcs11/ldap_mapper.so; basedir = /etc/pam_pkcs11/mapdir; ldaphost = "localhost"; ldapport = 389; scope = 2; binddn = "cn=pam,o=example,c=com"; passwd = "test"; base = "ou=People,o=example,c=com"; attribute = "userCertificate"; filter = "(&(objectClass=posixAccount)(uid=%s))" } mapper cn { debug = false; module = internal; ignorecase = true; mapfile = file:///etc/pam_pkcs11/cn_map; } mapper mail { debug = false; module = internal; mapfile = file:///etc/pam_pkcs11/mail_mapping; ignorecase = true; ignoredomain = false; } mapper ms { debug = false; module = internal; ignorecase = false; ignoredomain = false; domain = "domain.com"; } mapper krb { debug = false; module = internal; ignorecase = false; mapfile = "none"; } mapper uid { debug = false; module = internal; ignorecase = false; mapfile = "none"; } mapper digest { debug = false; module = internal; algorithm = "sha1"; mapfile = file:///etc/pam_pkcs11/digest_mapping; } }
pkcs11_eventmgr { daemon = true; debug = false; polling_time = 1; expire_time = 0; pkcs11_module = /usr/$LIB/libcoolkeypk11.so; event card_insert { on_error = ignore ; action = "/usr/sbin/gdm-safe-restart"; } event card_remove { on_error = ignore; action = "/usr/sbin/gdm-safe-restart"; } event expire_time { on_error = ignore; action = "/bin/false"; } }
auth sufficient pam_rootok.so auth required pam_env.so auth include system-auth account include system-auth session include system-auth session required pam_loginuid.so
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth sufficient pam_rootok.so auth include system-auth account include system-auth password include system-auth session include system-auth
auth sufficient pam_rootok.so auth include system-auth account include system-auth password include system-auth session include system-auth
auth sufficient pam_rootok.so auth sufficient pam_timestamp.so auth include system-auth account required pam_permit.so session required pam_permit.so session optional pam_xauth.so session optional pam_timestamp.so
auth sufficient pam_env.so auth required pam_rootok.so auth include system-auth account required pam_access.so account include system-auth session required pam_loginuid.so session include system-auth
auth required pam_nologin.so auth include system-auth account include system-auth session include system-auth
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth required pam_nologin.so auth required pam_securetty.so auth required pam_env.so auth required pam_rhosts_auth.so account include system-auth session optional pam_keyinit.so force revoke session include system-auth
auth required pam_listfile.so item=user sense=deny file=/etc/ftpusers onerr=succeed auth required pam_shells.so auth include system-auth account required pam_nologin.so account include system-auth session optional pam_keyinit.so force revoke session include system-auth session required pam_loginuid.so
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth required pam_nologin.so auth required pam_securetty.so auth required pam_env.so auth required pam_rhosts_auth.so account include system-auth session optional pam_keyinit.so force revoke session include system-auth
auth include su account include su session include su
auth [user_unknown=ignore success=ok ignore=ignore default=bad] pam_securetty.so auth include system-auth account required pam_nologin.so account include system-auth password include system-auth session required pam_selinux.so close session optional pam_keyinit.so force revoke session required pam_loginuid.so session include system-auth session optional pam_console.so session required pam_selinux.so open
auth include config-util account include config-util session include config-util
auth include system-auth account include system-auth password include system-auth session required pam_namespace.so unmnt_remnt no_unmount_on_close
auth required pam_deny.so account required pam_deny.so password required pam_deny.so session required pam_deny.so
auth include system-auth account include system-auth password include system-auth
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth include system-auth account required pam_nologin.so account include system-auth session include system-auth
auth sufficient pam_rootok.so auth required pam_console.so account required pam_permit.so
auth required pam_securetty.so auth include system-auth account required pam_nologin.so account include system-auth password include system-auth session required pam_selinux.so close session optional pam_keyinit.so force revoke session required pam_loginuid.so session include system-auth session optional pam_console.so session required pam_selinux.so open
auth include system-auth account include system-auth password include system-auth session include system-auth session optional pam_xauth.so
auth sufficient pam_rootok.so session optional pam_keyinit.so revoke session required pam_limits.so session required pam_unix.so
auth include runuser session optional pam_keyinit.so force revoke session include runuser
auth required pam_nologin.so auth include system-auth account include system-auth session include system-auth password include system-auth
auth include config-util account include config-util session include config-util
auth sufficient pam_rootok.so auth include system-auth account required pam_permit.so session required pam_permit.so
auth include system-auth account include system-auth
auth include system-auth account include system-auth
auth include system-auth account include system-auth
auth include system-auth account required pam_nologin.so account include system-auth password include system-auth session optional pam_keyinit.so force revoke session include system-auth session required pam_loginuid.so
auth sufficient pam_rootok.so auth include system-auth account sufficient pam_succeed_if.so uid = 0 use_uid quiet account include system-auth password include system-auth session include system-auth session optional pam_xauth.so
auth include su account include su password include su session optional pam_keyinit.so force revoke session include su
auth include system-auth account include system-auth password include system-auth session optional pam_keyinit.so revoke session required pam_limits.so
auth include sudo account include sudo password include sudo session optional pam_keyinit.so force revoke session required pam_limits.so
auth required pam_env.so auth sufficient pam_unix.so nullok try_first_pass auth requisite pam_succeed_if.so uid >= 500 quiet auth required pam_deny.so account required pam_unix.so account sufficient pam_succeed_if.so uid < 500 quiet account required pam_permit.so password requisite pam_cracklib.so try_first_pass retry=3 password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok password required pam_deny.so session optional pam_keyinit.so revoke session required pam_limits.so session [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid session required pam_unix.so
auth required pam_env.so auth sufficient pam_unix.so nullok try_first_pass auth requisite pam_succeed_if.so uid >= 500 quiet auth required pam_deny.so account required pam_unix.so account sufficient pam_succeed_if.so uid < 500 quiet account required pam_permit.so password requisite pam_cracklib.so try_first_pass retry=3 password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok password required pam_deny.so session optional pam_keyinit.so revoke session required pam_limits.so session [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid session required pam_unix.so
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
auth include config-util account include config-util session include config-util
session optional pam_keyinit.so force revoke auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed auth required pam_shells.so auth include system-auth account include system-auth session include system-auth session required pam_loginuid.so
workgroup = MYGROUP server string = Samba Server Version %v passdb backend = tdbsam cups options = raw
comment = Home Directories read only = No browseable = No
comment = All Printers path = /var/spool/samba printable = Yes browseable = No
/etc/setuptool.d/98netconfig : /usr/sbin/netconfig|Network configuration /etc/setuptool.d/98system-config-authentication : /usr/share/authconfig/authconfig-tui.py|Authentication configuration /etc/setuptool.d/98system-config-display : /usr/bin/system-config-display|X configuration /etc/setuptool.d/98system-config-keyboard : /usr/bin/system-config-keyboard --text|Keyboard configuration /etc/setuptool.d/99Xconfigurator : /usr/sbin/Xconfigurator|X configuration /etc/setuptool.d/99authconfig : /usr/sbin/authconfig|Authentication configuration /etc/setuptool.d/99kbdconfig : /usr/sbin/kbdconfig|Keyboard configuration /etc/setuptool.d/99lokkit : /usr/sbin/lokkit|Firewall configuration /etc/setuptool.d/99mouseconfig : /usr/sbin/mouseconfig|Mouse configuration /etc/setuptool.d/99ntsysv : /usr/sbin/ntsysv|System services /etc/setuptool.d/99printconf-tui : /usr/sbin/printconf-tui|Printer configuration /etc/setuptool.d/99sndconfig : /usr/sbin/sndconfig|Sound card configuration /etc/setuptool.d/99system-config-network-tui : /usr/sbin/system-config-network-tui|Network configuration /etc/setuptool.d/99system-config-printer-tui : /usr/sbin/system-config-printer-tui|Printer configuration /etc/setuptool.d/99timeconfig : /usr/sbin/timeconfig|Timezone configuration
Version 8.13.8
Compiled with: DNSMAP HESIOD HES_GETMAILHOST LDAPMAP LOG MAP_REGEX
MATCHGECOS MILTER MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETINET6
NETUNIX NEWDB NIS PIPELINING SASLv2 SCANF SOCKETMAP STARTTLS
TCPWRAPPERS USERDB USE_LDAP_INIT
setoption SevenBitInput (7)=False
setoption AliasWait (a)=10
setoption AliasFile (A)=/etc/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 SendMimeErrors (j)=True
setoption ForwardPath (J)=$z/.forward.$w:$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)=Port=smtp,Addr=127.0.0.1, Name=MTA
Daemon MTA flags:
setoption PrivacyOptions (p)=authwarnings,novrfy,noexpn,restrictqrun
setoption QueueDirectory (Q)=/var/spool/mqueue
setoption Timeout (r).connect=1m
setoption Timeout (r).ident=0
setoption Timeout (r).queuereturn=5d
setoption Timeout (r).queuewarn=4h
setoption SuperSafe (s)=True
setoption StatusFile (S)=/var/log/mail/statistics
setoption DefaultUser (u)=8:12
setoption UserDatabaseSpec (U)=/etc/mail/userdb.db
setoption TryNullMXList (w)=True
setoption SmtpGreetingMessage (0x90)=$j Sendmail $v/$Z; $b
setoption UnixFromLine (0x91)=From $g $d
setoption OperatorChars (0x92)=.:%@!^/[]+
setoption DontProbeInterfaces (0xa1)=True
setoption AuthOptions (0xbd)=A
drop_privileges(1): Real[UG]id=0:0, get[ug]id=0:0, gete[ug]id=0:51, RunAs[UG]id=0:0
getauthinfo: root@localhost
============ SYSTEM IDENTITY (after readcf) ============
(short domain name) $w = centos59
(canonical domain name) $j = centos59
(subdomain name) $m = <null>
(node name) $k = centos59
========================================================
setoption HoldExpensive (c)=F
setoption DeliveryMode (d)=
WARNING: local host name (centos59) is not qualified; see cf/README: WHO AM I?
ADDRESS TEST MODE (ruleset 3 NOT automatically invoked)
Enter <ruleset> <address>
> >
====finis: stat 0 e_id=NOQUEUE e_flags=4001<OLDSTYLE,METOO>
Connect:localhost.localdomain RELAY Connect:localhost RELAY Connect:127.0.0.1 RELAY
mailer-daemon: postmaster postmaster: root bin: root daemon: root adm: root lp: root sync: root shutdown: root halt: root mail: root news: root uucp: root operator: root games: root gopher: root ftp: root nobody: root radiusd: root nut: root dbus: root vcsa: root canna: root wnn: root rpm: root nscd: root pcap: root apache: root webalizer: root dovecot: root fax: root quagga: root radvd: root pvm: root amanda: root privoxy: root ident: root named: root xfs: root gdm: root mailnull: root postgres: root sshd: root smmsp: root postfix: root netdump: root ldap: root squid: root ntp: root mysql: root desktop: root rpcuser: root rpc: root nfsnobody: root ingres: root system: root toor: root manager: root dumper: root abuse: root newsadm: news newsadmin: news usenet: news ftpadm: ftp ftpadmin: ftp ftp-adm: ftp ftp-admin: ftp www: webmaster webmaster: root noc: root security: root hostmaster: root info: postmaster marketing: postmaster sales: postmaster support: postmaster decode: root
set ask askcc append dot save crt ignore Received Message-Id Resent-Message-Id Status Mail-From Return-Path Via
V10/Berkeley Cwlocalhost Fw/etc/mail/local-host-names CP. DS CO @ % ! C.. C[[ C{Accept}OK RELAY C{ResOk}OKR FR-o /etc/mail/relay-domains Karith arith Kmacro macro C{Tls}VERIFY ENCR Kdequote dequote C{E}root C{w}localhost.localdomain DnMAILER-DAEMON Kmailertable hash -o /etc/mail/mailertable.db Kvirtuser hash -o /etc/mail/virtusertable.db CPREDIRECT Kaccess hash -T<TMPF> -o /etc/mail/access.db DZ8.13.8 O SevenBitInput=False O AliasWait=10 O AliasFile=/etc/aliases O MinFreeBlocks=100 O BlankSub=. O HoldExpensive=False O DeliveryMode=background O TempFileMode=0600 O HelpFile=/etc/mail/helpfile O SendMimeErrors=True O ForwardPath=$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=Port=smtp,Addr=127.0.0.1, Name=MTA O PrivacyOptions=authwarnings,novrfy,noexpn,restrictqrun O QueueDirectory=/var/spool/mqueue O Timeout.connect=1m O Timeout.ident=0 O Timeout.queuereturn=5d O Timeout.queuewarn=4h O SuperSafe=True O StatusFile=/var/log/mail/statistics O DefaultUser=8:12 O UserDatabaseSpec=/etc/mail/userdb.db O TryNullMXList=True O SmtpGreetingMessage=$j Sendmail $v/$Z; $b O UnixFromLine=From $g $d O OperatorChars=.:%@!^/[]+ O DontProbeInterfaces=True O AuthOptions=A Pfirst-class=0 Pspecial-delivery=100 Plist=-30 Pbulk=-60 Pjunk=-100 Ft/etc/mail/trusted-users 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.localdomain > $: < ? $&{client_name} > < $1 @ localhost.localdomain > 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<?> $* < @ $+ > $: <OKR> $1 < @ $2 > ... unresolvable OK 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}> $* $@ <OKR> domain ok: stop 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 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 Mprocmail, P=/usr/bin/procmail, F=DFMSPhnu9, S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP/HdrFromSMTP, T=DNS/RFC822/X-Unix, A=procmail -Y -m $h $f $u 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 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 R$* < @ $* > $* $@ $1 < @ $2 > $3 already fully qualified R$+ $@ $1 < @ *LOCAL* > add local qualification Mlocal, P=/usr/bin/procmail, F=lsDFMAw5:/|@qSPfhn9, S=EnvFromL/HdrFromL, R=EnvToL/HdrToL, T=DNS/RFC822/X-Unix, A=procmail -t -Y -a $h -d $u Mprog, P=/usr/sbin/smrsh, F=lsDFMoqeu9, S=EnvFromL/HdrFromL, R=EnvToL/HdrToL, D=$z:/, T=X-Unix/X-Unix/X-Unix, A=smrsh -c $u
divert(-1)dnl dnl # dnl # This is the sendmail macro config file for m4. If you make changes to dnl # /etc/mail/sendmail.mc, you will need to regenerate the dnl # /etc/mail/sendmail.cf file by confirming that the sendmail-cf package is dnl # installed and then performing a dnl # dnl # make -C /etc/mail dnl # include(`/usr/share/sendmail-cf/m4/cf.m4')dnl VERSIONID(`setup for linux')dnl OSTYPE(`linux')dnl dnl # dnl # Do not advertize sendmail version. dnl # dnl define(`confSMTP_LOGIN_MSG', `$j Sendmail; $b')dnl dnl # dnl # default logging level is 9, you might want to set it higher to dnl # debug the configuration dnl # dnl define(`confLOG_LEVEL', `9')dnl dnl # dnl # Uncomment and edit the following line if your outgoing mail needs to dnl # be sent out through an external mail server: dnl # dnl define(`SMART_HOST', `smtp.your.provider')dnl dnl # define(`confDEF_USER_ID', ``8:12'')dnl dnl define(`confAUTO_REBUILD')dnl define(`confTO_CONNECT', `1m')dnl define(`confTRY_NULL_MX_LIST', `True')dnl define(`confDONT_PROBE_INTERFACES', `True')dnl define(`PROCMAIL_MAILER_PATH', `/usr/bin/procmail')dnl define(`ALIAS_FILE', `/etc/aliases')dnl define(`STATUS_FILE', `/var/log/mail/statistics')dnl define(`UUCP_MAILER_MAX', `2000000')dnl define(`confUSERDB_SPEC', `/etc/mail/userdb.db')dnl define(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun')dnl define(`confAUTH_OPTIONS', `A')dnl dnl # dnl # The following allows relaying if the user authenticates, and disallows dnl # plaintext authentication (PLAIN/LOGIN) on non-TLS links dnl # dnl define(`confAUTH_OPTIONS', `A p')dnl dnl # dnl # PLAIN is the preferred plaintext authentication method and used by dnl # Mozilla Mail and Evolution, though Outlook Express and other MUAs do dnl # use LOGIN. Other mechanisms should be used if the connection is not dnl # guaranteed secure. dnl # Please remember that saslauthd needs to be running for AUTH. dnl # dnl TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl dnl define(`confAUTH_MECHANISMS', `EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN')dnl dnl # dnl # Rudimentary information on creating certificates for sendmail TLS: dnl # cd /etc/pki/tls/certs; make sendmail.pem dnl # Complete usage: dnl # make -C /etc/pki/tls/certs usage dnl # dnl define(`confCACERT_PATH', `/etc/pki/tls/certs')dnl dnl define(`confCACERT', `/etc/pki/tls/certs/ca-bundle.crt')dnl dnl define(`confSERVER_CERT', `/etc/pki/tls/certs/sendmail.pem')dnl dnl define(`confSERVER_KEY', `/etc/pki/tls/certs/sendmail.pem')dnl dnl # dnl # This allows sendmail to use a keyfile that is shared with OpenLDAP's dnl # slapd, which requires the file to be readble by group ldap dnl # dnl define(`confDONT_BLAME_SENDMAIL', `groupreadablekeyfile')dnl dnl # dnl define(`confTO_QUEUEWARN', `4h')dnl dnl define(`confTO_QUEUERETURN', `5d')dnl dnl define(`confQUEUE_LA', `12')dnl dnl define(`confREFUSE_LA', `18')dnl define(`confTO_IDENT', `0')dnl dnl FEATURE(delay_checks)dnl FEATURE(`no_default_msa', `dnl')dnl FEATURE(`smrsh', `/usr/sbin/smrsh')dnl FEATURE(`mailertable', `hash -o /etc/mail/mailertable.db')dnl FEATURE(`virtusertable', `hash -o /etc/mail/virtusertable.db')dnl FEATURE(redirect)dnl FEATURE(always_add_domain)dnl FEATURE(use_cw_file)dnl FEATURE(use_ct_file)dnl dnl # dnl # The following limits the number of processes sendmail can fork to accept dnl # incoming messages or process its message queues to 20.) sendmail refuses dnl # to accept connections once it has reached its quota of child processes. dnl # dnl define(`confMAX_DAEMON_CHILDREN', `20')dnl dnl # dnl # Limits the number of new connections per second. This caps the overhead dnl # incurred due to forking new sendmail processes. May be useful against dnl # DoS attacks or barrages of spam. (As mentioned below, a per-IP address dnl # limit would be useful but is not available as an option at this writing.) dnl # dnl define(`confCONNECTION_RATE_THROTTLE', `3')dnl dnl # dnl # The -t option will retry delivery if e.g. the user runs over his quota. dnl # FEATURE(local_procmail, `', `procmail -t -Y -a $h -d $u')dnl FEATURE(`access_db', `hash -T<TMPF> -o /etc/mail/access.db')dnl FEATURE(`blacklist_recipients')dnl EXPOSED_USER(`root')dnl dnl # dnl # For using Cyrus-IMAPd as POP3/IMAP server through LMTP delivery uncomment dnl # the following 2 definitions and activate below in the MAILER section the dnl # cyrusv2 mailer. dnl # dnl define(`confLOCAL_MAILER', `cyrusv2')dnl dnl define(`CYRUSV2_MAILER_ARGS', `FILE /var/lib/imap/socket/lmtp')dnl dnl # dnl # The following causes sendmail to only listen on the IPv4 loopback address dnl # 127.0.0.1 and not on any other network devices. Remove the loopback dnl # address restriction to accept email from the internet or intranet. dnl # DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl dnl # dnl # The following causes sendmail to additionally listen to port 587 for dnl # mail from MUAs that authenticate. Roaming users who can't reach their dnl # preferred sendmail daemon due to port 25 being blocked or redirected find dnl # this useful. dnl # dnl DAEMON_OPTIONS(`Port=submission, Name=MSA, M=Ea')dnl dnl # dnl # The following causes sendmail to additionally listen to port 465, but dnl # starting immediately in TLS mode upon connecting. Port 25 or 587 followed dnl # by STARTTLS is preferred, but roaming clients using Outlook Express can't dnl # do STARTTLS on ports other than 25. Mozilla Mail can ONLY use STARTTLS dnl # and doesn't support the deprecated smtps; Evolution <1.1.1 uses smtps dnl # when SSL is enabled-- STARTTLS support is available in version 1.1.1. dnl # dnl # For this to work your OpenSSL certificates must be configured. dnl # dnl DAEMON_OPTIONS(`Port=smtps, Name=TLSMTA, M=s')dnl dnl # dnl # The following causes sendmail to additionally listen on the IPv6 loopback dnl # device. Remove the loopback address restriction listen to the network. dnl # dnl DAEMON_OPTIONS(`port=smtp,Addr=::1, Name=MTA-v6, Family=inet6')dnl dnl # dnl # enable both ipv6 and ipv4 in sendmail: dnl # dnl DAEMON_OPTIONS(`Name=MTA-v4, Family=inet, Name=MTA-v6, Family=inet6') dnl # dnl # We strongly recommend not accepting unresolvable domains if you want to dnl # protect yourself from spam. However, the laptop and users on computers dnl # that do not have 24x7 DNS do need this. dnl # FEATURE(`accept_unresolvable_domains')dnl dnl # dnl FEATURE(`relay_based_on_MX')dnl dnl # dnl # Also accept email sent to "localhost.localdomain" as local email. dnl # LOCAL_DOMAIN(`localhost.localdomain')dnl dnl # dnl # The following example makes mail from this host and any additional dnl # specified domains appear to be sent from mydomain.com dnl # dnl MASQUERADE_AS(`mydomain.com')dnl dnl # dnl # masquerade not just the headers, but the envelope as well dnl # dnl FEATURE(masquerade_envelope)dnl dnl # dnl # masquerade not just @mydomainalias.com, but @*.mydomainalias.com as well dnl # dnl FEATURE(masquerade_entire_domain)dnl dnl # dnl MASQUERADE_DOMAIN(localhost)dnl dnl MASQUERADE_DOMAIN(localhost.localdomain)dnl dnl MASQUERADE_DOMAIN(mydomainalias.com)dnl dnl MASQUERADE_DOMAIN(mydomain.lan)dnl MAILER(smtp)dnl MAILER(procmail)dnl dnl MAILER(cyrusv2)dnl
acl all src 0.0.0.0/0.0.0.0 acl manager proto cache_object acl localhost src 127.0.0.1/255.255.255.255 acl to_localhost dst 127.0.0.0/8 acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https acl Safe_ports port 70 # gopher acl Safe_ports port 210 # wais acl Safe_ports port 1025-65535 # unregistered ports acl Safe_ports port 280 # http-mgmt acl Safe_ports port 488 # gss-http acl Safe_ports port 591 # filemaker acl Safe_ports port 777 # multiling http acl CONNECT method CONNECT http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow localhost http_access deny all icp_access allow all http_port 3128 hierarchy_stoplist cgi-bin ? access_log /var/log/squid/access.log squid acl QUERY urlpath_regex cgi-bin \? cache deny QUERY refresh_pattern ^ftp: 1440 20% 10080 refresh_pattern ^gopher: 1440 0% 1440 refresh_pattern . 0 20% 4320 acl apache rep_header Server ^Apache broken_vary_encoding allow apache coredump_dir /var/spool/squid
localhost
\.gif$ image/gif anthony-image.gif - image +download \.mime$ www/mime anthony-text.gif - ascii +download ^internal-dirup$ - anthony-dirup.gif - - ^internal-dir$ - anthony-dir.gif - - ^internal-link$ - anthony-link.gif - - ^internal-menu$ - anthony-dir.gif - - ^internal-text$ - anthony-text.gif - - ^internal-index$ - anthony-dir.gif - - ^internal-image$ - anthony-image.gif - - ^internal-sound$ - anthony-sound.gif - - ^internal-movie$ - anthony-movie.gif - - ^internal-telnet$ - anthony-portal.gif - - ^internal-binary$ - anthony-box.gif - - ^internal-unknown$ - anthony-unknown.gif - - ^internal-view$ - anthony-text.gif - - ^internal-download$ - anthony-box.gif - - \.bin$ application/macbinary anthony-unknown.gif - image +download \.oda$ application/oda anthony-unknown.gif - image +download \.exe$ application/octet-stream anthony-unknown.gif - image +download \.pdf$ application/pdf anthony-unknown.gif - image +download \.ai$ application/postscript anthony-ps.gif - image +download +view \.eps$ application/postscript anthony-ps.gif - image +download +view \.ps$ application/postscript anthony-ps.gif - image +download +view \.rtf$ text/rtf anthony-text.gif - ascii +download +view \.Z$ - anthony-compressed.gif compress image +download \.gz$ - anthony-compressed.gif gzip image +download \.bz2$ application/octet-stream anthony-compressed.gif - image +download \.bz$ application/octet-stream anthony-compressed.gif - image +download \.tgz$ application/x-tar anthony-tar.gif gzip image +download \.csh$ application/x-csh anthony-script.gif - ascii +download +view \.dvi$ application/x-dvi anthony-dvi.gif - image +download \.hdf$ application/x-hdf anthony-unknown.gif - image +download \.latex$ application/x-latex anthony-tex.gif - ascii +download +view \.lsm$ text/plain anthony-text.gif - ascii +download +view \.nc$ application/x-netcdf anthony-unknown.gif - image +download \.cdf$ application/x-netcdf anthony-unknown.gif - ascii +download \.sh$ application/x-sh anthony-script.gif - ascii +download +view \.tcl$ application/x-tcl anthony-script.gif - ascii +download +view \.tex$ application/x-tex anthony-tex.gif - ascii +download +view \.texi$ application/x-texinfo anthony-tex.gif - ascii +download +view \.texinfo$ application/x-texinfo anthony-tex.gif - ascii +download +view \.t$ application/x-troff anthony-text.gif - ascii +download +view \.roff$ application/x-troff anthony-text.gif - ascii +download +view \.tr$ application/x-troff anthony-text.gif - ascii +download +view \.man$ application/x-troff-man anthony-text.gif - ascii +download +view \.me$ application/x-troff-me anthony-text.gif - ascii +download +view \.ms$ application/x-troff-ms anthony-text.gif - ascii +download +view \.src$ application/x-wais-source anthony-unknown.gif - ascii +download \.zip$ application/zip anthony-compressed.gif - image +download \.bcpio$ application/x-bcpio anthony-box.gif - image +download \.cpio$ application/x-cpio anthony-box.gif - image +download \.gtar$ application/x-gtar anthony-tar.gif - image +download \.rpm$ application/x-rpm anthony-unknown.gif - image +download \.shar$ application/x-shar anthony-script.gif - image +download +view \.sv4cpio$ application/x-sv4cpio anthony-box.gif - image +download \.sv4crc$ application/x-sv4crc anthony-box.gif - image +download \.tar$ application/x-tar anthony-tar.gif - image +download \.ustar$ application/x-ustar anthony-tar.gif - image +download \.au$ audio/basic anthony-sound.gif - image +download \.snd$ audio/basic anthony-sound.gif - image +download \.mp2$ audio/mpeg anthony-sound.gif - image +download \.mp3$ audio/mpeg anthony-sound.gif - image +download \.mpga$ audio/mpeg anthony-sound.gif - image +download \.aif$ audio/x-aiff anthony-sound.gif - image +download \.aiff$ audio/x-aiff anthony-sound.gif - image +download \.aifc$ audio/x-aiff anthony-sound.gif - image +download \.wav$ audio/x-wav anthony-sound.gif - image +download \.bmp$ image/bmp anthony-image.gif - image +download \.ief$ image/ief anthony-image.gif - image +download \.jpeg$ image/jpeg anthony-image.gif - image +download \.jpg$ image/jpeg anthony-image.gif - image +download \.jpe$ image/jpeg anthony-image.gif - image +download \.tiff$ image/tiff anthony-image.gif - image +download \.tif$ image/tiff anthony-image.gif - image +download \.ras$ image/x-cmu-raster anthony-image.gif - image +download \.pnm$ image/x-portable-anymap anthony-image.gif - image +download \.pbm$ image/x-portable-bitmap anthony-image.gif - image +download \.pgm$ image/x-portable-graymap anthony-image.gif - image +download \.ppm$ image/x-portable-pixmap anthony-image.gif - image +download \.rgb$ image/x-rgb anthony-image.gif - image +download \.xbm$ image/x-xbitmap anthony-xbm.gif - image +download \.xpm$ image/x-xpixmap anthony-xpm.gif - image +download \.xwd$ image/x-xwindowdump anthony-image.gif - image +download \.html$ text/html anthony-text.gif - ascii +download +view \.htm$ text/html anthony-text.gif - ascii +download +view \.css$ text/css anthony-script.gif - ascii +download +view \.js$ application/x-javascript anthony-c.gif - ascii +download +view \.c$ text/plain anthony-c.gif - ascii +download \.h$ text/plain anthony-c.gif - ascii +download \.cc$ text/plain anthony-c.gif - ascii +download \.cpp$ text/plain anthony-c.gif - ascii +download \.hh$ text/plain anthony-c.gif - ascii +download \.m$ text/plain anthony-script.gif - ascii +download \.f90$ text/plain anthony-f.gif - ascii +download \.txt$ text/plain anthony-text.gif - ascii +download \.asc$ text/plain anthony-text.gif - ascii +download \.rtx$ text/richtext anthony-quill.gif - ascii +download +view \.tsv$ text/tab-separated-values anthony-script.gif - ascii +download +view \.etx$ text/x-setext anthony-text.gif - ascii +download +view \.mpeg$ video/mpeg anthony-movie.gif - image +download \.mpg$ video/mpeg anthony-movie.gif - image +download \.mpe$ video/mpeg anthony-movie.gif - image +download \.qt$ video/quicktime anthony-movie.gif - image +download \.mov$ video/quicktime anthony-movie.gif - image +download \.avi$ video/x-msvideo anthony-movie.gif - image +download \.movie$ video/x-sgi-movie anthony-movie.gif - image +download \.cpt$ application/mac-compactpro anthony-unknown.gif - image +download \.hqx$ application/mac-binhex40 anthony-binhex.gif - image +download \.mwrt$ application/macwriteii anthony-text.gif - image +download \.msw$ application/msword anthony-script.gif - image +download \.doc$ application/msword anthony-layout.gif - image +download +view \.xls$ application/vnd.ms-excel anthony-layout.gif - image +download \.ppt$ application/vnd.ms-powerpoint anthony-image2.gif - image +download \.wk[s1234]$ application/vnd.lotus-1-2-3 anthony-script.gif - image +download \.mif$ application/vnd.mif anthony-unknown.gif - image +download \.sit$ application/x-stuffit anthony-compressed.gif - image +download \.pict$ application/pict anthony-image.gif - image +download \.pic$ application/pict anthony-image.gif - image +download \.arj$ application/x-arj-compressed anthony-compressed.gif - image +download \.lzh$ application/x-lha-compressed anthony-compressed.gif - image +download \.lha$ application/x-lha-compressed anthony-compressed.gif - image +download \.zlib$ application/x-deflate anthony-compressed.gif deflate image +download README text/plain anthony-text.gif - ascii +download ^core$ application/octet-stream anthony-bomb.gif - image +download \.core$ application/octet-stream anthony-bomb.gif - image +download \.png$ image/png anthony-image.gif - image +download \.cab$ application/octet-stream anthony-compressed.gif - image +download +view \.xpi$ application/x-xpinstall anthony-unknown.gif - image +download \.class$ application/octet-stream anthony-unknown.gif - image +download \.java$ text/plain anthony-c.gif - ascii +download \.dcr$ application/x-director anthony-unknown.gif - image +download \.dir$ application/x-director anthony-unknown.gif - image +download \.dxr$ application/x-director anthony-unknown.gif - image +download \.djv$ image/vnd.djvu anthony-image.gif - image +download \.djvu$ image/vnd.djvu anthony-image.gif - image +download \.dll$ application/octet-stream anthony-unknown.gif - image +download \.dms$ application/octet-stream anthony-unknown.gif - image +download \.ez$ application/andrew-inset anthony-unknown.gif - image +download \.ice$ x-conference/x-cooltalk anthony-unknown.gif - image +download \.iges$ model/iges anthony-image.gif - image +download \.igs$ model/iges anthony-image.gif - image +download \.kar$ audio/midi anthony-sound.gif - image +download \.mid$ audio/midi anthony-sound.gif - image +download \.midi$ audio/midi anthony-sound.gif - image +download \.mesh$ model/mesh anthony-image.gif - image +download \.silo$ model/mesh anthony-image.gif - image +download \.mxu$ video/vnd.mpegurl anthony-movie.gif - image +download \.pdb$ chemical/x-pdb anthony-unknown.gif - image +download \.pgn$ application/x-chess-pgn anthony-unknown.gif - image +download \.ra$ audio/x-realaudio anthony-sound.gif - image +download \.ram$ audio/x-pn-realaudio anthony-sound.gif - image +download \.rm$ audio/x-pn-realaudio anthony-sound.gif - image +download \.sgml$ text/sgml anthony-text.gif - ascii +download \.sgm$ text/sgml anthony-text.gif - ascii +download \.skd$ application/x-koan anthony-unknown.gif - image +download \.skm$ application/x-koan anthony-unknown.gif - image +download \.skp$ application/x-koan anthony-unknown.gif - image +download \.skt$ application/x-koan anthony-unknown.gif - image +download \.smi$ application/smil anthony-unknown.gif - image +download \.smil$ application/smil anthony-unknown.gif - image +download \.so$ application/octet-stream anthony-unknown.gif - image +download \.spl$ application/x-futuresplash anthony-unknown.gif - image +download \.swf$ application/x-shockwave-flash anthony-unknown.gif - image +download \.vcd$ application/x-cdlink anthony-unknown.gif - image +download \.vrml$ model/vrml anthony-image.gif - image +download \.wbmp$ image/vnd.wap.wbmp anthony-image.gif - image +download \.wbxml$ application/vnd.wap.wbxml anthony-unknown.gif - image +download \.wmlc$ application/vnd.wap.wmlc anthony-unknown.gif - image +download \.wmlsc$ application/vnd.wap.wmlscriptc anthony-script.gif - image +download \.wmls$ application/vnd.wap.wmlscript anthony-script.gif - image +download \.xht$ application/xhtml anthony-text.gif - ascii +download \.xhtml$ application/xhtml anthony-text.gif - ascii +download \.xml$ text/xml anthony-text.gif - ascii +download \.xsl$ text/xml anthony-layout.gif - ascii +download \.xyz$ chemical/x-xyz anthony-unknown.gif - image +download . text/plain anthony-unknown.gif - image +download +view
server my_PDC my_BDC my_NTdomain server other_PDC other_BDC otherdomain
facility local7 priority notice ignore [^:]+: \|[=]+ ignore [^:]+: Setting filetype ignore ^[-\\\|\/]$
acpid acpid related information anaconda Anaconda / Installation information apache Apache related information auditd Auditd related information autofs autofs server-related information bootloader Bootloader information crontab Crontab information devicemapper device-mapper related information (dm, lvm, multipath) dovecot dovecot server related information emc EMC related information (PowerPath, Solutions Enabler CLI and Navisphere CLI) filesys information on filesystems ftp FTP server related information gdm gdm related information general basic system information gfs2 Information on GFS2 Filesystems hardware hardware related information hts Red Hat Hardware Test Suite related information ipsec ipsec related information iscsi iscsi-initiator related information iscsitarget iscsi-target related information kernel kernel related information ldap LDAP related information libraries information on shared libraries libvirt libvirt-related information logrotate logrotate configuration files and debug info lsbrelease Linux Standard Base information memory memory usage information mrgmessg MRG Messaging related information mysql MySQL related information named named related information networking network related information nscd NSCD related information ntp NTP related information oddjob oddjob related information openssl openssl related information pam PAM related information postfix mail server related information ppp ppp, wvdial and rp-pppoe related information printing printing related information (cups) process process information psacct Process accounting related information rpm RPM information samba Samba related information selinux selinux related information sendmail sendmail information smartcard Smart Card related information snmp snmp related information soundcard Sound card information squid squid related information ssh ssh-related information startup startup information system core system related information systemtap SystemTap pre-requisites information udev udev related information x11 X related information xinetd xinetd information yum yum information
amd Amd automounter information cluster cluster suite and GFS related information cobbler cobbler related information cs Certificate System 7.x Diagnostic Information dhcp DHCP related information ds Directory Server information infiniband Infiniband related information initrd initrd related information ipa IPA diagnostic information kdump kdump related information kvm KVM related information mrggrid MRG GRID related information netdump Netdump Configuration Information nfsserver NFS server-related information openais openais related information openswan ipsec related information pxe PXE related information qpidd Messaging related information quagga quagga related information radius radius related information rhn RHN Satellite related information rsyslog rsyslog related information s390 s390 related information sar Generate the sar file from /var/log/sa/saXX files tftpserver tftpserver related information tomcat Tomcat related information veritas veritas related information vmware VMWare related information xen Xen related information
apache.log off gathers all apache logs auditd.syslogsize 15 max size (MiB) to collect per syslog file devicemapper.lvmdump off collect raw metadata from PVs general.syslogsize 15 max size (MiB) to collect per syslog file general.all_logs off collect all log files defined in syslog.conf kernel.modinfo on gathers module information on all modules networking.traceroute off collects a traceroute to rhn.redhat.com nscd.nscdlogsize 50 max size (MiB) to collect per nscd log file rpm.rpmq on queries for package information via rpm -q rpm.rpmva on runs a verify on all packages yum.yumdebug off gather yum debugging data
/etc/sudoers Defaults requiretty /etc/sudoers Defaults !visiblepw /etc/sudoers Defaults env_reset /etc/sudoers Defaults env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR \ /etc/sudoers LS_COLORS MAIL PS1 PS2 QTDIR USERNAME \ /etc/sudoers LANG LC_ADDRESS LC_CTYPE LC_COLLATE LC_IDENTIFICATION \ /etc/sudoers LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC \ /etc/sudoers LC_PAPER LC_TELEPHONE LC_TIME LC_ALL LANGUAGE LINGUAS \ /etc/sudoers _XKB_CHARSET XAUTHORITY" /etc/sudoers root ALL=(ALL) ALL /etc/sudoers scc ALL=(ALL) NOPASSWD: ALL
*.info;mail.none;news.none;authpriv.none;cron.none /var/log/messages authpriv.* /var/log/secure mail.* -/var/log/maillog cron.* /var/log/cron *.emerg * uucp,news.crit /var/log/spooler local7.* /var/log/boot.log news.=crit /var/log/news/news.crit news.=err /var/log/news/news.err news.notice /var/log/news/news.notice
PRUNEFS = "auto afs gfs gfs2 iso9660 sfs udf" PRUNEPATHS = "/afs /media /net /sfs /tmp /udev /var/spool/cups /var/spool/squid /var/tmp"
ARCHITECTURE AND OS: build arch : x86_64 compatible build archs: ia32e x86_64 noarch build os : Linux compatible build os's : linux install arch : ia32e install os : Linux compatible archs : ia32e x86_64 em64t athlon noarch amd64 i686 i586 i486 i386 fat compatible os's : linux RPMRC VALUES: macrofiles : /usr/lib/rpm/macros:/usr/lib/rpm/ia32e-linux/macros:/etc/rpm/macros.*:/etc/rpm/macros:/etc/rpm/ia32e-linux/macros:~/.rpmmacros optflags : -O2 -g -m64 -mtune=generic Features supported by rpmlib: rpmlib(VersionedDependencies) = 3.0.3-1 PreReq:, Provides:, and Obsoletes: dependencies support versions. rpmlib(CompressedFileNames) = 3.0.4-1 file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path. rpmlib(PayloadIsBzip2) = 3.0.5-1 package payload can be compressed using bzip2. rpmlib(PayloadFilesHavePrefix) = 4.0-1 package payload file(s) have "./" prefix. rpmlib(ExplicitPackageProvide) = 4.0-1 package name-version-release is not implicitly provided. rpmlib(HeaderLoadSortsTags) = 4.0.1-1 header tags are always sorted after being loaded. rpmlib(ScriptletInterpreterArgs) = 4.0.3-1 the scriptlet interpreter can use arguments from header. rpmlib(PartialHardlinkSets) = 4.0.4-1 a hardlink file set may be installed without being complete. rpmlib(ConcurrentAccess) = 4.1-1 package scriptlets may access the rpm database while installing. rpmlib(BuiltinLuaScripts) = 4.2.2-1 internal support for lua scripts.
opsview-base:4.5.0.397-1.ct5:x86_64 opsview-core:3.20131016.0.14175-1.ct5:x86_64 opsview-perl:4.5.0.798-1.ct5:x86_64 opsview-web:3.20131016.0.14175-1.ct5:x86_64
cpio:2.6-25.el5:x86_64 dump:0.4b41-6.el5:x86_64 pax:3.4-2.el5_4:x86_64 rmt:0.4b41-6.el5:x86_64 tar:1.15.1-32.el5_8:x86_64 udftools:1.0.0b3-0.1.el5:x86_64 unzip:5.52-3.el5:x86_64 zip:2.31-2.el5:x86_64
lrzsz:0.12.20-22.1:x86_64 mgetty:1.1.33-9.fc6:x86_64 minicom:2.1-3:x86_64
mysql-server:5.0.95-5.el5_9:x86_64 mysql:5.0.95-5.el5_9:x86_64 postgresql-libs:8.1.23-6.el5_8:x86_64 rrdtool:1.4.7-1.el5.rf:x86_64 sqlite:3.3.6-6:x86_64
emacs-common:21.4-24.el5:x86_64 emacs-leim:21.4-24.el5:x86_64 emacs:21.4-24.el5:x86_64 emacspeak:23.0-3.el5:noarch nano:1.3.12-1.1:x86_64 psgml:1.2.5-4.3:noarch vim-common:7.0.109-7.2.el5:x86_64 vim-enhanced:7.0.109-7.2.el5:x86_64 vim-minimal:7.0.109-7.2.el5:x86_64
virt-what:1.11-2.el5:x86_64
bc:1.06-21:x86_64
bzip2:1.0.3-6.el5_5:x86_64 file:4.17-28:x86_64 findutils:4.2.27-6.el5:x86_64 gzip:1.3.5-13.el5.centos:x86_64 scl-utils:20120927-2.el5:x86_64 tree:1.5.0-4:x86_64
cadaver:0.22.3-4.el5:x86_64 curl:7.15.5-15.el5:x86_64 elinks:0.11.1-6.el5_4.1:x86_64 fetchmail:6.3.6-4.el5:x86_64 finger:0.17-33:x86_64 ftp:0.17-38.el5:x86_64 htmlview:4.0.0-2.el5:noarch jwhois:3.2.3-12.el5:x86_64 lftp:3.7.11-8.el5:x86_64 mailx:8.1.1-44.2.2:x86_64 mrtg:2.14.5-4.el5:x86_64 mtr:0.71-3.1:x86_64 mutt:1.4.2.2-6.el5:x86_64 nc:1.84-10.fc6:x86_64 openssh-clients:4.3p2-82.el5:x86_64 openssh:4.3p2-82.el5:x86_64 rsh:0.17-40.el5_7.1:x86_64 rsync:3.0.6-4.el5_7.1:x86_64 slrn:0.9.8.1pl1-1.2.2:x86_64 spamassassin:3.3.1-2.el5:x86_64 stunnel:4.15-2.el5.1:x86_64 talk:0.17-31.el5:x86_64 tcpdump:3.9.4-15.el5:x86_64 telnet:0.17-41.el5:x86_64 traceroute:2.0.1-6.el5:x86_64 webalizer:2.01_10-30.1:x86_64 wget:1.11.4-3.el5_8.2:x86_64
graphviz:2.22.0-4.el5.rf:x86_64
ghostscript-fonts:5.50-13.1.1:noarch ghostscript:8.70-15.el5_9.3:x86_64 groff:1.18.1.1-13.el5:x86_64 neon:0.25.5-10.el5_4.1:x86_64
ksh:20100621-12.el5:x86_64
bind-libs:9.3.6-20.P1.el5_8.5:x86_64 bind-utils:9.3.6-20.P1.el5_8.5:x86_64 bluez-gnome:0.5-5.fc6:x86_64 bluez-utils:3.7-2.2.el5.centos:x86_64 conman:0.1.9.2-8.el5:x86_64 crypto-utils:2.3-2.el5:x86_64 cryptsetup-luks:1.0.3-8.el5:i386 cryptsetup-luks:1.0.3-8.el5:x86_64 dosfstools:2.11-9.el5:x86_64 ethtool:6-4.el5:x86_64 fbset:2.1-22:x86_64 gnome-mount:0.5-3.el5:x86_64 gnupg:1.4.5-14.el5_5.1:x86_64 hdparm:6.6-2:x86_64 iproute:2.6.18-15.el5:x86_64 irda-utils:0.9.17-2.fc6:x86_64 isdn4k-utils:3.2-56.el5:x86_64 kudzu:1.2.57.1.26-7.el5.centos:x86_64 libsmbclient:3.0.33-3.39.el5_8:x86_64 lm_sensors:2.10.7-9.el5:x86_64 logwatch:7.3-10.el5:noarch mlocate:0.15-1.el5.2:x86_64 mod_auth_tkt_opsview:2.0.5rc3-1:x86_64 mtools:3.9.10-2.fc6:x86_64 net-snmp-utils:5.3.2.2-22.el5_10.1:x86_64 opsview-compatibility-check:3.20131016.0.14175-1.ct5:noarch parted:1.8.1-30.el5:i386 parted:1.8.1-30.el5:x86_64 pciutils:3.1.7-5.el5:x86_64 procps:3.2.7-22.el5:x86_64 psacct:6.3.2-44.el5:x86_64 psmisc:22.2-11:x86_64 python-libs:2.4.3-56.el5:x86_64 rdate:1.4-8.el5:x86_64 rdist:6.1.5-44:x86_64 samba-client:3.0.33-3.39.el5_8:x86_64 samba-common:3.0.33-3.39.el5_8:x86_64 scc-srv:1.18.77-1:noarch scc:1.26.71-1:noarch setserial:2.17-19.2.2:x86_64 setuptool:1.19.2-1.el5.centos:x86_64 sudo:1.7.2p1-22.el5:x86_64 symlinks:1.2-26.el5:x86_64 syslinux:4.02-7.2.el5:x86_64 system-config-httpd:1.3.3.3-1.el5:noarch system-config-network-tui:1.3.99.21-1.el5:noarch system-config-services:0.9.4-5.el5:noarch time:1.7-27.2.2:x86_64 ttmkfdir:3.0.9-23.el5:x86_64 usbutils:0.71-2.1:x86_64 usermode-gtk:1.88-3.el5.2:x86_64 usermode:1.88-3.el5.2:x86_64 which:2.16-7:x86_64
aspell-en:6.0-3:x86_64 aspell:0.60.3-12:i386 aspell:0.60.3-12:x86_64 diffutils:2.8.1-16.el5:x86_64 dos2unix:3.1-27.2.el5:x86_64 ed:0.2-39.el5_2:x86_64 gawk:3.1.5-16.el5:x86_64 grep:2.5.1-55.el5:x86_64 less:436-9.el5:x86_64 m4:1.4.5-3.el5.1:x86_64 sed:4.1.5-8.el5:x86_64 sgml-common:0.6.3-18:noarch unix2dos:2.2-26.2.3.el5:x86_64
crash:5.1.8-1.el5.centos:x86_64 lsof:4.78-6:x86_64
gnome-python2-bonobo:2.16.0-1.fc6:x86_64 gnome-python2-canvas:2.16.0-1.fc6:x86_64 gnome-python2-gnomevfs:2.16.0-1.fc6:x86_64 gnome-python2:2.16.0-1.fc6:x86_64 perl-rrdtool:1.4.7-1.el5.rf:x86_64 perl:5.8.8-38.el5_8:x86_64 php-cli:5.1.6-44.el5_10:x86_64 php-common:5.1.6-44.el5_10:x86_64 php-ldap:5.1.6-44.el5_10:x86_64 php-mbstring:5.1.6-44.el5_10:x86_64 php-mysql:5.1.6-44.el5_10:x86_64 php-pdo:5.1.6-44.el5_10:x86_64 php:5.1.6-44.el5_10:x86_64 pycairo:1.2.0-1.1:x86_64 pygobject2:2.12.1-5.el5:x86_64 pygtk2-libglade:2.10.1-12.el5:x86_64 pygtk2:2.10.1-12.el5:x86_64 pyorbit:2.14.1-3.el5:x86_64 python-numeric:23.7-2.2.2.el5_6.1:x86_64 python:2.4.3-56.el5:x86_64 ruby:1.8.5-31.el5_9:x86_64 tcl:8.4.13-6.el5:x86_64 tclx:8.4.0-5.fc6:x86_64 tk:8.4.13-5.el5_1.1:x86_64
NetworkManager-glib:0.7.0-13.el5:i386 NetworkManager-glib:0.7.0-13.el5:x86_64 OpenIPMI-libs:2.0.16-16.el5:x86_64 PyXML:0.8.4-6.el5:x86_64 audit-libs-python:1.8-2.el5:x86_64 audit-libs:1.8-2.el5:i386 audit-libs:1.8-2.el5:x86_64 dbus-libs:1.1.2-16.el5_7:i386 dbus-libs:1.1.2-16.el5_7:x86_64 e2fsprogs-libs:1.39-35.el5:i386 e2fsprogs-libs:1.39-35.el5:x86_64 gamin-python:0.1.7-10.el5:x86_64 gamin:0.1.7-10.el5:x86_64 libdbi:0.8.1-2.1:x86_64 libpcap:0.9.4-15.el5:x86_64 libselinux-python:1.33.4-5.7.el5:x86_64 libselinux-utils:1.33.4-5.7.el5:x86_64 libxml2-python:2.6.26-2.1.15.el5_8.6:x86_64 libxml2:2.6.26-2.1.15.el5_8.6:x86_64 libxslt-python:1.1.17-4.el5_8.3:x86_64 libxslt:1.1.17-4.el5_8.3:x86_64 lua:5.1.4-2.el5.rf:x86_64 net-snmp-libs:5.3.2.2-22.el5_10.1:x86_64 net-snmp-perl:5.3.2.2-22.el5_10.1:x86_64 perl-Archive-Tar:1.39.1-1.el5_5.2:noarch perl-Archive-Zip:1.16-1.2.1:noarch perl-BSD-Resource:1.28-1.fc6.1:x86_64 perl-Compress-Zlib:1.42-1.fc6:x86_64 perl-Convert-ASN1:0.20-1.1:noarch perl-DBD-MySQL:3.0007-2.el5:x86_64 perl-DBI:1.52-2.el5:x86_64 perl-Digest-HMAC:1.01-15:noarch perl-Digest-SHA1:2.11-1.2.1:x86_64 perl-HTML-Parser:3.55-1.fc6:x86_64 perl-HTML-Tagset:3.10-2.1.1:noarch perl-IO-Socket-INET6:2.51-2.fc6:noarch perl-IO-Socket-SSL:1.01-1.fc6:noarch perl-IO-Zlib:1.04-4.2.1:noarch perl-Net-DNS:0.59-3.el5:x86_64 perl-Net-IP:1.25-2.fc6:noarch perl-Net-SSLeay:1.30-4.fc6:x86_64 perl-NetAddr-IP:4.027-5.el5_6:x86_64 perl-Socket6:0.19-3.fc6:x86_64 perl-String-CRC32:1.4-2.fc6:x86_64 perl-URI:1.35-3:noarch perl-libwww-perl:5.805-1.1.1:noarch popt:1.10.2.3-31.el5:x86_64 python-elementtree:1.2.6-5:x86_64 python-iniparse:0.2.3-6.el5:noarch python-sqlite:1.1.7-1.2.1:x86_64 python-urlgrabber:3.1.0-6.el5:noarch rpm-libs:4.4.2.3-31.el5:x86_64 rpm-python:4.4.2.3-31.el5:x86_64 ruby-libs:1.8.5-31.el5_9:x86_64 sos:1.7-9.62.el5:noarch svrcore:4.0.4-3.el5:i386 svrcore:4.0.4-3.el5:x86_64 yum-metadata-parser:1.1.2-4.el5:x86_64
checkpolicy:1.33.1-6.el5:x86_64
binutils:2.17.50.0.6-20.el5_8.3:x86_64 desktop-file-utils:0.10-7:x86_64 elfutils-libelf:0.137-3.el5:x86_64 gettext:0.17-1.el5:x86_64 make:3.81-3.el5:x86_64 patch:2.5.4-31.el5:x86_64 pkgconfig:0.21-2.el5:x86_64 sysfsutils:2.1.0-1.el5:x86_64
Deployment_Guide-en-US:5.8-1.el5.centos:noarch httpd-manual:2.2.3-74.el5.centos:x86_64 man-pages-overrides:5.9.2-2.el5:noarch man-pages:2.39-20.el5:noarch specspo:13-4.el5.centos:noarch
gpg-pubkey:6b8d79e6-3f49313d:(none) gpg-pubkey:e8562897-459f07a4:(none)
GConf2:2.14.0-9.el5:x86_64 MAKEDEV:3.23-1.2:x86_64 NetworkManager:0.7.0-13.el5:i386 NetworkManager:0.7.0-13.el5:x86_64 OpenIPMI:2.0.16-16.el5:x86_64 SysVinit:2.86-17.el5:x86_64 acl:2.2.39-8.el5:x86_64 alchemist:1.0.36-2.el5:x86_64 amtu:1.0.6-2.el5:x86_64 anacron:2.3-45.el5.centos:x86_64 attr:2.4.32-1.1:x86_64 authconfig:5.3.21-7.el5:x86_64 avahi-glib:0.6.16-10.el5_6:x86_64 avahi:0.6.16-10.el5_6:x86_64 basesystem:8.0-5.1.1.el5.centos:noarch centos-release-notes:5.9-0:x86_64 centos-release:5-9.el5.centos.1:x86_64 chkconfig:1.3.30.2-2.el5:x86_64 chkfontpath:1.10.1-1.1:x86_64 coreutils:5.97-34.el5_8.1:x86_64 cpuspeed:1.2.1-10.el5:x86_64 crontabs:1.10-11.el5:noarch device-mapper-event:1.02.67-2.el5:x86_64 device-mapper-multipath:0.4.7-54.el5:x86_64 device-mapper:1.02.67-2.el5:i386 device-mapper:1.02.67-2.el5:x86_64 dhclient:3.0.5-31.el5_8.1:x86_64 dhcpv6-client:1.0.10-20.el5:x86_64 dmidecode:2.11-1.el5:x86_64 dmraid-events:1.0.0.rc13-65.el5:x86_64 dmraid:1.0.0.rc13-65.el5:x86_64 e2fsprogs:1.39-35.el5:x86_64 eject:2.1.5-4.2.el5:x86_64 filesystem:2.4.0-3.el5.centos:x86_64 firstboot-tui:1.4.27.9-1.el5.centos:x86_64 glibc-common:2.5-107:x86_64 grub:0.97-13.10.el5:x86_64 hmaccalc:0.9.6-4.el5:x86_64 hwdata:0.213.28-1.el5:noarch ifd-egate:0.05-17.el5:x86_64 info:4.8-14.el5:x86_64 initscripts:8.45.42-1.el5.centos.1:x86_64 ipsec-tools:0.6.5-14.el5_8.5:x86_64 iptables-ipv6:1.3.5-9.2.el5_8:x86_64 iptables:1.3.5-9.2.el5_8:x86_64 iptstate:1.4-2.el5:x86_64 irqbalance:0.55-15.el5:x86_64 kbd:1.12-22.el5:x86_64 keyutils-libs:1.2-1.el5:i386 keyutils-libs:1.2-1.el5:x86_64 kpartx:0.4.7-54.el5:x86_64 krb5-workstation:1.6.1-70.el5:x86_64 libuser:0.54.7-3.el5:x86_64 logrotate:3.7.4-14:x86_64 lvm2:2.02.88-10.el5:x86_64 mailcap:2.1.23-1.fc6:noarch man:1.6d-3.el5:x86_64 mcelog:0.9pre-1.32.el5:x86_64 mdadm:2.6.9-5.el5:x86_64 microcode_ctl:1.17-3.el5:x86_64 mingetty:1.07-5.2.2:x86_64 mkbootdisk:1.5.3-2.1:x86_64 mkinitrd:5.1.19.6-79.el5:i386 mkinitrd:5.1.19.6-79.el5:x86_64 mktemp:1.5-24.el5:x86_64 nash:5.1.19.6-79.el5:x86_64 net-tools:1.60-82.el5:x86_64 nss-tools:3.13.5-8.el5:x86_64 nss_ldap:253-51.el5:i386 nss_ldap:253-51.el5:x86_64 ntsysv:1.3.30.2-2.el5:x86_64 numactl:0.9.8-12.el5_6:i386 numactl:0.9.8-12.el5_6:x86_64 pam:0.99.6.2-12.el5:i386 pam:0.99.6.2-12.el5:x86_64 pam_ccreds:3-5:i386 pam_ccreds:3-5:x86_64 pam_krb5:2.2.14-22.el5:i386 pam_krb5:2.2.14-22.el5:x86_64 pam_passwdqc:1.0.2-1.2.2:i386 pam_passwdqc:1.0.2-1.2.2:x86_64 pam_pkcs11:0.5.3-26.el5:i386 pam_pkcs11:0.5.3-26.el5:x86_64 pam_smb:1.1.7-7.2.1:i386 pam_smb:1.1.7-7.2.1:x86_64 passwd:0.73-2:x86_64 pcmciautils:014-5:x86_64 pinfo:0.6.9-1.fc6:x86_64 pm-utils:0.99.3-14.el5:x86_64 policycoreutils:1.33.12-14.8.el5:x86_64 prelink:0.4.0-2.el5:x86_64 quota:3.13-8.el5:x86_64 readahead:1.3-8.el5:x86_64 redhat-logos:4.9.99-11.el5.centos:noarch redhat-lsb:4.0-2.1.4.el5:i386 redhat-lsb:4.0-2.1.4.el5:x86_64 rng-utils:2.0-5.el5:x86_64 rootfiles:8.1-1.1.1:noarch rpm:4.4.2.3-31.el5:x86_64 rpmforge-release:0.5.3-1.el5.rf:x86_64 selinux-policy-targeted:2.4.6-338.el5:noarch selinux-policy:2.4.6-338.el5:noarch setools:3.0-3.el5:x86_64 setup:2.5.58-9.el5:noarch sgpio:1.2.0_10-2.el5:x86_64 shadow-utils:4.0.17-21.el5:x86_64 smartmontools:5.42-2.el5:x86_64 system-config-nfs:1.3.23-2.el5:noarch system-config-printer-libs:0.7.32.10-3.el5:x86_64 system-config-printer:0.7.32.10-3.el5:x86_64 system-config-samba:1.2.41-5.el5:noarch system-config-securitylevel-tui:1.6.29.1-6.el5:x86_64 system-config-securitylevel:1.6.29.1-6.el5:x86_64 termcap:5.5-1.20060701.1:noarch tmpwatch:2.9.7-1.1.el5.5:x86_64 tzdata:2012i-2.el5:x86_64 udev:095-14.29.el5:x86_64 util-linux:2.13-0.59.el5_8:x86_64 vconfig:1.9-3:x86_64 vixie-cron:4.1-81.el5:x86_64 wireless-tools:28-2.el5:i386 wireless-tools:28-2.el5:x86_64 wpa_supplicant:0.5.10-9.el5:x86_64 xorg-x11-filesystem:7.1-2.fc6:noarch yp-tools:2.9-2.el5:x86_64 yum-fastestmirror:1.1.16-21.el5.centos:noarch yum-security:1.1.16-21.el5.centos:noarch yum-updatesd:0.9-5.el5:noarch yum:3.2.22-40.el5.centos:noarch
ORBit2:2.14.3-5.el5:x86_64 acpid:1.0.4-12.el5:x86_64 at:3.1.8-84.el5:x86_64 audit:1.8-2.el5:x86_64 autofs:5.0.1-0.rc2.177.el5:x86_64 bind-chroot:9.3.6-20.P1.el5_8.5:x86_64 bind:9.3.6-20.P1.el5_8.5:x86_64 distcache:1.4.5-14.1:i386 distcache:1.4.5-14.1:x86_64 dnsmasq:2.45-1.1.el5_3:x86_64 dovecot:1.0.7-7.el5_7.1:x86_64 esound:0.2.36-4:x86_64 gpm:1.20.1-74.1:i386 gpm:1.20.1-74.1:x86_64 httpd:2.2.3-74.el5.centos:x86_64 hypervkvpd:0-0.7.el5:x86_64 inews:2.4.3-9.el5:x86_64 inn:2.4.3-9.el5:x86_64 iputils:20020927-46.el5:x86_64 iscsi-initiator-utils:6.2.0.872-16.el5:x86_64 mcstrans:0.2.11-3.el5:x86_64 mod_perl:2.0.4-6.el5:x86_64 mod_python:3.2.8-4.el5:x86_64 mod_ssl:2.2.3-74.el5.centos:x86_64 net-snmp:5.3.2.2-22.el5_10.1:x86_64 nfs-utils:1.0.9-66.el5:x86_64 nscd:2.5-107:x86_64 oddjob:0.27-12.el5:x86_64 openldap:2.3.43-25.el5_8.1:i386 openldap:2.3.43-25.el5_8.1:x86_64 openssh-server:4.3p2-82.el5:x86_64 pcsc-lite:1.4.4-4.el5_5:x86_64 portmap:4.0-65.2.2.1:x86_64 ppp:2.4.4-2.el5:x86_64 procmail:3.22-17.1.el5.centos:x86_64 rp-pppoe:3.5-33.el5:x86_64 rusers:0.17-47:x86_64 rwho:0.17-26:x86_64 samba:3.0.33-3.39.el5_8:x86_64 sendmail-cf:8.13.8-8.1.el5_7:x86_64 sendmail:8.13.8-8.1.el5_7:x86_64 squid:2.6.STABLE21-6.el5:x86_64 sysklogd:1.4.1-46.el5:x86_64 tcp_wrappers:7.6-40.7.el5:i386 tcp_wrappers:7.6-40.7.el5:x86_64 tux:3.2.18-9.fc6:x86_64 vsftpd:2.0.5-28.el5:x86_64 wvdial:1.54.0-5.2.2.1:x86_64 xinetd:2.3.14-17.el5:x86_64 xorg-x11-xfs:1.0.2-5.el5_6.1:x86_64 ypbind:1.19-12.el5_6.1:x86_64
kernel:2.6.18-348.el5:x86_64 module-init-tools:3.3-0.pre3.1.60.el5_5.1:x86_64 setarch:2.0-1.1:x86_64
Xaw3d:1.5E-10.1:x86_64 alsa-lib:1.0.17-1.el5:x86_64 apr-util:1.2.7-11.el5_5.2:x86_64 apr:1.2.7-11.el5_6.5:x86_64 atk:1.12.2-1.fc6:x86_64 audiofile:0.2.6-5:x86_64 bluez-libs:3.7-1.1:x86_64 bzip2-libs:1.0.3-6.el5_5:x86_64 cairo:1.2.4-5.el5:x86_64 ccid:1.3.8-1.el5:x86_64 coolkey:1.1.0-15.el5:i386 coolkey:1.1.0-15.el5:x86_64 cracklib-dicts:2.8.9-3.3:x86_64 cracklib:2.8.9-3.3:i386 cracklib:2.8.9-3.3:x86_64 cups-libs:1.3.7-30.el5:x86_64 cyrus-sasl-lib:2.1.22-7.el5_8.1:i386 cyrus-sasl-lib:2.1.22-7.el5_8.1:x86_64 cyrus-sasl-plain:2.1.22-7.el5_8.1:i386 cyrus-sasl-plain:2.1.22-7.el5_8.1:x86_64 cyrus-sasl:2.1.22-7.el5_8.1:i386 cyrus-sasl:2.1.22-7.el5_8.1:x86_64 db4:4.3.29-10.el5_5.2:i386 db4:4.3.29-10.el5_5.2:x86_64 dbus-glib:0.73-10.el5_5:i386 dbus-glib:0.73-10.el5_5:x86_64 dbus-python:0.70-9.el5_4:x86_64 dbus:1.1.2-16.el5_7:x86_64 expat:1.95.8-11.el5_8:i386 expat:1.95.8-11.el5_8:x86_64 fipscheck-lib:1.2.0-1.el5:x86_64 fipscheck:1.2.0-1.el5:x86_64 fontconfig:2.4.1-7.el5:x86_64 foomatic:3.0.2-38.3.el5_7.1:x86_64 freetype:2.2.1-31.el5_8.1:x86_64 gd:2.0.33-9.4.el5_4.2:x86_64 gdbm:1.8.0-28.el5:i386 gdbm:1.8.0-28.el5:x86_64 giflib:4.1.3-7.3.3.el5:x86_64 glib2:2.12.3-4.el5_3.1:i386 glib2:2.12.3-4.el5_3.1:x86_64 glibc:2.5-107:i686 glibc:2.5-107:x86_64 gmp:4.1.4-10.el5:x86_64 gnome-keyring:0.6.0-1.fc6:x86_64 gnome-mime-data:2.4.2-3.1:x86_64 gnome-vfs2:2.16.2-10.el5:x86_64 gnutls:1.4.1-10.el5:x86_64 gtk2:2.10.4-29.el5:x86_64 hal:0.5.8.1-64.el5:i386 hal:0.5.8.1-64.el5:x86_64 hesiod:3.1.0-8:x86_64 krb5-libs:1.6.1-70.el5:i386 krb5-libs:1.6.1-70.el5:x86_64 libFS:1.0.0-3.1:x86_64 libICE:1.0.1-2.1:x86_64 libIDL:0.8.7-1.fc6:x86_64 libSM:1.0.1-3.1:x86_64 libX11:1.0.3-11.el5_7.1:x86_64 libXau:1.0.1-3.1:x86_64 libXaw:1.0.2-8.1:x86_64 libXcursor:1.1.7-1.2:x86_64 libXdmcp:1.0.1-2.1:x86_64 libXext:1.0.1-2.1:x86_64 libXfixes:4.0.1-2.1:x86_64 libXfont:1.2.2-1.0.4.el5_7:x86_64 libXft:2.1.10-1.1:x86_64 libXi:1.0.1-4.el5_4:x86_64 libXinerama:1.0.1-2.1:x86_64 libXmu:1.0.2-5:x86_64 libXpm:3.5.5-3:x86_64 libXrandr:1.1.1-3.3:x86_64 libXrender:0.9.1-3.1:x86_64 libXres:1.0.1-3.1:x86_64 libXt:1.0.2-3.2.el5:x86_64 libacl:2.2.39-8.el5:x86_64 libaio:0.3.106-5:i386 libaio:0.3.106-5:x86_64 libart_lgpl:2.3.17-4:x86_64 libattr:2.4.32-1.1:x86_64 libbonobo:2.16.0-1.1.el5_5.1:x86_64 libbonoboui:2.16.0-1.fc6:x86_64 libcap:1.10-26:i386 libcap:1.10-26:x86_64 libcroco:0.6.1-2.1:x86_64 libdaemon:0.10-5.el5:i386 libdaemon:0.10-5.el5:x86_64 libevent:1.4.13-1:x86_64 libfontenc:1.0.2-2.2.el5:x86_64 libgcc:4.1.2-54.el5:i386 libgcc:4.1.2-54.el5:x86_64 libgcrypt:1.4.4-5.el5_8.2:i386 libgcrypt:1.4.4-5.el5_8.2:x86_64 libglade2:2.6.0-2:x86_64 libgnome:2.16.0-6.el5:x86_64 libgnomecanvas:2.14.0-4.1:x86_64 libgnomeui:2.16.0-5.el5:x86_64 libgomp:4.4.7-1.el5:x86_64 libgpg-error:1.4-2:i386 libgpg-error:1.4-2:x86_64 libgsf:1.14.1-6.1:x86_64 libgssapi:0.10-2:x86_64 libhugetlbfs:1.3-8.2.el5:i386 libhugetlbfs:1.3-8.2.el5:x86_64 libidn:0.6.5-1.1:x86_64 libjpeg:6b-37:x86_64 libmcrypt:2.5.8-4.el5.centos:x86_64 libnotify:0.4.2-6.el5:x86_64 libpng:1.2.10-17.el5_8:x86_64 librsvg2:2.16.1-1.el5:x86_64 libselinux:1.33.4-5.7.el5:i386 libselinux:1.33.4-5.7.el5:x86_64 libsemanage:1.9.1-4.4.el5:x86_64 libsepol:1.15.2-3.el5:i386 libsepol:1.15.2-3.el5:x86_64 libstdc++:4.1.2-54.el5:i386 libstdc++:4.1.2-54.el5:x86_64 libsysfs:2.1.0-1.el5:x86_64 libtermcap:2.0.8-46.1:i386 libtermcap:2.0.8-46.1:x86_64 libtiff:3.8.2-15.el5_8:x86_64 libtool-ltdl:1.5.22-7.el5_4:x86_64 libusb:0.1.12-6.el5:i386 libusb:0.1.12-6.el5:x86_64 libutempter:1.1.4-4.el5:i386 libutempter:1.1.4-4.el5:x86_64 libvolume_id:095-14.29.el5:i386 libvolume_id:095-14.29.el5:x86_64 libwnck:2.16.0-4.fc6:x86_64 libwvstreams:4.2.2-2.1:x86_64 lockdev:1.0.1-10:x86_64 m2crypto:0.16-9.el5:x86_64 mozldap:6.0.5-2.el5:x86_64 ncurses:5.5-24.20060715:i386 ncurses:5.5-24.20060715:x86_64 newt-perl:1.08-9.2.2:x86_64 newt:0.52.2-15.el5:x86_64 nfs-utils-lib:1.0.8-7.9.el5:x86_64 notification-daemon:0.3.5-9.el5:x86_64 nspr:4.9.1-6.el5:i386 nspr:4.9.1-6.el5:x86_64 nss:3.13.5-8.el5:i386 nss:3.13.5-8.el5:x86_64 nss_db:2.2-35.4.el5_5:i386 nss_db:2.2-35.4.el5_5:x86_64 oddjob-libs:0.27-12.el5:x86_64 openssl:0.9.8e-22.el5_8.4:i686 openssl:0.9.8e-22.el5_8.4:x86_64 pango:1.14.9-8.el5.centos.3:x86_64 pcre:6.6-6.el5_6.1:x86_64 pcsc-lite-libs:1.4.4-4.el5_5:x86_64 pkinit-nss:0.7.6-1.el5:x86_64 readline:5.1-3.el5:i386 readline:5.1-3.el5:x86_64 rhpl:0.194.1-2:x86_64 shared-mime-info:0.19-5.el5:x86_64 slang:2.0.6-4.el5:x86_64 startup-notification:0.8-4.1:x86_64 words:3.0-9.1:noarch zlib:1.2.3-7.el5:i386 zlib:1.2.3-7.el5:x86_64
bash:3.2-32.el5:x86_64 tcsh:6.14-17.el5_5.2:x86_64
opsview:3.20131016.0.14175-1.ct5:x86_64
hicolor-icon-theme:0.9-2.1:noarch redhat-menus:6.7.8-3.el5:noarch
bitstream-vera-fonts:1.10-7:noarch urw-fonts:2.3-6.1.1:noarch xorg-x11-font-utils:7.1-3:x86_64 xorg-x11-fonts-ISO8859-1-75dpi:7.1-2.1.el5:noarch xorg-x11-fonts-Type1:7.1-2.1.el5:noarch
-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.2.6 (GNU/Linux) mQGiBEWfB6MRBACrnYW6yKMT+MwJlCIhoyTxGf3mAxmnAiDEy6HcYN8rivssVTJk CFtQBlBOpLV/OW2YtKrCO2xHn46eNfnMri8FGT8g+9JF3MUVi7kiV1He4iJynHXB +F2ZqIvHf3IaUj1ys+p8TK64FDFxDQDrGQfIsD/+pkSGx53/877IrvdwjwCguQcr Ioip5TH0Fj0OLUY4asYVZH8EAIqFHEqsY+9ziP+2R3/FyxSllKkjwcMLrBug+cYO LYDD6eQXE9Mq8XKGFDj9ZB/0+JzK/XQeStheeFG75q3noq5oCPVFO4czuKErIRAB qKbDBhaTj3JhOgM12XsUYn+rI6NeMV2ZogoQCC2tWmDETfRpYp2moo53NuFWHbAy XjETA/sHEeQT9huHzdi/lebNBj0L8nBGfLN1nSRP1GtvagBvkR4RZ6DTQyl0UzOJ RA3ywWlrL9IV9mrpb1Fmn60l2jTMMCc7J6LacmPK906N+FcN/Docj1M4s/4CNanQ NhzcFhAFtQL56SNyLTCk1XzhssGZ/jwGnNbU/aaj4wOj0Uef5LRGQ2VudE9TLTUg S2V5IChDZW50T1MgNSBPZmZpY2lhbCBTaWduaW5nIEtleSkgPGNlbnRvcy01LWtl eUBjZW50b3Mub3JnPohkBBMRAgAkBQJFnwekAhsDBQkSzAMABgsJCAcDAgMVAgMD FgIBAh4BAheAAAoJEKikR9zoViiXKlEAmwSoZDvZo+WChcg3s/SpNoWCKhMAAJwI E2aXpZVrpsQnInUQWwkdrTiL5YhMBBMRAgAMBQJFnwiSBYMSzAIRAAoJEDjCFhY5 bKCk0hAAn134bIx3wSbq58E6P6U5RT7Z2Zx4AJ9VxnVkoGHkVIgSdsxHUgRjo27N F7kBDQRFnwezEAQA/HnJ5yiozwgtf6jt+kii8iua+WnjqBKomPHOQ8moxbWdv5Ks 4e1DPhzRqxhshjmub4SuJ93sgMSAF2ayC9t51mSJV33KfzPF2gIahcMqfABe/2hJ aMzcQZHrGJCEX6ek8l8SFKou7vICzyajRSIK8gxWKBuQknP/9LKsoczV+xsAAwUD /idXPkk4vRRHsCwc6I23fdI0ur52bzEqHiAIswNfO521YgLk2W1xyCLc2aYjc8Ni nrMX1tCnEx0/gK7ICyJoWH1Vc7//79sWFtX2EaTO+Q07xjFX4E66WxJlCo9lOjos Vk5qc7R+xzLDoLGFtbzaTRQFzf6yr7QTu+BebWLoPwNTiE8EGBECAA8FAkWfB7MC GwwFCRLMAwAACgkQqKRH3OhWKJfvvACfbsF1WK193zM7vSc4uq51XsceLwgAoI0/ 9GxdNhGQEAweSlQfhPa3yYXH =o/Mx -----END PGP PUBLIC KEY BLOCK-----
-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.2.6 (GNU/Linux) mQGiBEWfBuERBACrwDH+6QvpyaOgzhXiemsIX+q4HlhX/HDmrmZOUd7i9VmZNogP 6LRRiTygn2+UphaGV3NDA36ZB/1JRpgvgpzbpZNeAoFvsljIbxGIwkH2JgRF6oNo eGB3QYzDQJvYVIejk79M0ed3oor4w8OiNVcdxLyVIthFrjrrCqwRP3bLZwCgtY9t Ezf5WL63Ue45vdht7A2GH+0D/iNAnWKsU7FUMFZrcwMaMbyP7YG8z0+zXUOgtgyP tbgJG5yikNT3vJypb42gbKfcriUUDC5AeiRmkR8QPvYuOm34rM90+wx2LGqXWnHM IyLAyl8TS3MQmePem8bfTGTNYxtt3Q7iadez2WYTLBSlmM6hbxZfdwm1hhyM0AJU YyFUA/9kHH+CUBxKb1UgG7TSp53Po/5p/Yyuty+RJ7zIGv6SiN/JK4/ntWfm5WS5 ZprSdE5ODoFQ/Gs3/VB/eolg2fBW1DcftH6lKHT3GKEOaicGX+T9eOMerZZedm5U vDA9mFvWnOdOxK8LuRgVqip4jCnWICchpatmdP0whJQHQ6MGLLRMQ2VudE9TLTUg QmV0YSBLZXkgKENlbnRPUyA1IEJldGEgU2lnbmluZyBLZXkpIDxjZW50b3MtNS1i ZXRhLWtleUBjZW50b3Mub3JnPohkBBMRAgAkBQJFnwbhAhsDBQkSzAMABgsJCAcD AgMVAgMDFgIBAh4BAheAAAoJEM/aaIEJLXsrWDkAoKcqa+AAdAWvp5qlJkGQiRy8 aNFDAJ4qRfIxMiLinmjbqcuygWMp61wY5ohMBBMRAgAMBQJFnwhtBYMSzAF0AAoJ EDjCFhY5bKCkG/wAn14LDlJqjZv1Wz0WNfhr80+qJrf6AKCaIZExwo4ApQpESk/F SApLd/pEILkBDQRFnwbrEAQAwKzjI2aTB/sS9HuQ4CHCwrj4vr0HxMMwQikYBIvy MYTtek04KDTKoJL5g3411DsfDW9VRGJdFCHvldgam/5UVfO6nywLkdwAA5TQA5dv 8YE8jTtwdy5Y1QKFc8LaIBZK0+ZbhEvdNfv67egvfcxZc5PvpBZ3C03n+iQ3wPcg PhcAAwUD/iYkq4LG/je43Qa5rTz5kF5rIiX7Bk5vXT7XSFOFKwHy8V+PGEoVM1W8 +EHIlmTycwIlsVp3by6qCDkMYu4V6VukxZNzJyeoMICiYIXUPh6NKHRoqaYlu6ZO eFN1TQNXmodPk+iNtdbcby/zAklNqoO/dWSwd8NAo8s6WAHq3VPpiE8EGBECAA8F AkWfBusCGwwFCRLMAwAACgkQz9pogQkteysXkACgoraCU0EBC+W8TuxrsePO20ma D0IAoLRRQLTEXL0p3K0WE+LfyTr9EVG5 =mH0S -----END PGP PUBLIC KEY BLOCK-----
The following public key can be used to verify RPM packages downloaded from http://dag.wieers.com/apt/ using 'rpm -K' if you have the GNU GPG package. Questions about this key should be sent to: Dag Wieers <dag@wieers.com> -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.2.1 (GNU/Linux) mQGiBD9JMT0RBAC9Q2B0AloUMTxaK73sD0cOu1MMdD8yuDagbMlDtUYA1aGeJVO6 TV02JLGr67OBY+UkYuC1c3PUwmb3+jakZd5bW1L8E2L705wS0129xQOZPz6J+alF 5rTzVkiefg8ch1yEcMayK20NdyOmhDGXQXNQS8OJFLTIC6bJs+7MZL83/wCg3cG3 3q7MWHm3IpJb+6QKpB9YH58D/2WjPDK+7YIky/JbFBT4JPgTSBy611+bLqHA6PXq 39tzY6un8KDznAMNtm+NAsr6FEG8PHe406+tbgd7tBkecz3HPX8nR5v0JtDT+gzN 8fM3kAiAzjCHUAFWVAMAZLr5TXuoq4lGTTxvZbwTjZfyjCm7gIieCu8+qnPWh6hm 30NgA/0ZyEHG6I4rOWqPks4vZuD+wlp5XL8moBXEKfEVOMh2MCNDRGnvVHu1P3eD oHOooVMt9sWrGcgxpYuupPNL4Uf6B6smiLlH6D4tEg+qCxC17zABI5572XJTJ170 JklZJrPGtnkPrrKMamnN9MU4RjGmjh9JZPa7rKjZHyWP/z/CBrQ1RGFnIFdpZWVy cyAoRGFnIEFwdCBSZXBvc2l0b3J5IHYxLjApIDxkYWdAd2llZXJzLmNvbT6IWQQT EQIAGQUCP0kxPQQLBwMCAxUCAwMWAgECHgECF4AACgkQog5SFGuNeeYvDQCeKHST hIq/WzFBXtJOnQkJGSqAoHoAnRtsJVWYmzYKHqzkRx1qAzL18Sd0iEYEEBECAAYF Aj9JMWAACgkQoj2iXPqnmevnOACfRQaageMcESHVE1+RSuP3txPUvoEAoJAtOHon g+3SzVNSZLn/g7/Ljfw+uQENBD9JMT8QBACj1QzRptL6hbpWl5DdQ2T+3ekEjJGt llCwt4Mwt/yOHDhzLe8SzUNyYxTXUL4TPfFvVW9/j8WOkNGvffbs7g84k7a5h/+l IJTTlP9V9NruDt1dlrBe+mWF6eCY55OFHjb6nOIkcJwKxRd3nGlWnLsz0ce9Hjrg 6lMrn0lPsMV6swADBQP9H42sss6mlqnJEFA97Fl3V9s+7UVJoAIA5uSVXxEOwVoh Vq7uECQRvWzif6tzOY+vHkUxOBRvD6oIU6tlmuG3WByKyA1d0MTqMr3eWieSYf/L n5VA9NuD7NwjFA1kLkoDwfSbsF51LppTMkUggzwgvwE46MB6yyuqAVI1kReAWw+I RgQYEQIABgUCP0kxPwAKCRCiDlIUa4155oktAKDAzm9QYbDpk6SrQhkSFy016BjE BACeJU1hpElFnUZCL4yKj4EuLnlo8kc= =mqUt -----END PGP PUBLIC KEY BLOCK-----
-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.5 (GNU/Linux) mQENBEYf44wBCADaqfT9Bmam4xpAnj6lUc6cIOm54NQu84zzvnyEFQdGoOXKO9nj +CL3veeGil625QbF+oIpoJ/XsE82j+HuXRfUaJJjKO2liyJX6VJfWVczijrkIQs+ XmUlTcdX7QlUJw2FnqN0ePhq0Rt+VcZ5HEbrsYwYTYoOHN1ZuYl7kNVUtA4TLEaT gj+BfSm7cAGThNJ9oD8ynWNgkPUOCW3zf/SFohRONoMidg9Pwtg0S5jSQdEAWoxE BEUgv2Ba923SXwi3jX+as87uCrnzvieBD6VRCaR1M8S7MMAT9jhNQ/3+rQTj+3Xm A+dYjevAbrbrctfSYoPPzAE3EdUvROSZJrXjABEBAAG0PUZhYmlhbiBBcnJvdGlu IChSUE1TIHNpZ25pbmcga2V5KSA8ZmFiaWFuLmFycm90aW5AYXJyZmFiLm5ldD6J ATYEEwECACAFAkYf44wCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRDWKUb1 ne8xkSy0B/44GQKbfN0NC/gw02Ud8AWTc7ZCeBDdm7wvbYCtYGQaTv4Ei7YpTNRl ISRIIpbXpDD/Og/FF+d843NP93Li3ZGPajTS/Pz1il4nVOyZOHsAjPmpXOzHDZ6H iOsDT8QUmSYxFOsOtBivnhnazwJ64+eOuxUN75OQLp/G+qNEfNvCdr93NLlJPwHI N7mVvgiEyT2F2fK7nUY+Cbl8o+9aNoDSVP8S7j8HC7JtNoGdNlFn1ejvIubWWJB3 7QFy8bMD+nNkvL+PnOwCyKPpKOybs53Zy5m0teiT9tsi58E9plZtfkekGDd4aIec Sgs/Y3J1TAK6/l0G48NYynM30WDtph2l =sO1X -----END PGP PUBLIC KEY BLOCK-----
%__prelink_undo_cmd /usr/sbin/prelink prelink -y library
%_i18ndomains redhat-dist
ia32e-redhat-linux
%nil %{!?nil} %_usr /usr %_usrsrc %{_usr}/src %_var /var %__awk gawk %__bzip2 /usr/bin/bzip2 %__cat /bin/cat %__chgrp /bin/chgrp %__chmod /bin/chmod %__chown /bin/chown %__cp /bin/cp %__cpio /bin/cpio %__file /usr/bin/file %__gpg /usr/bin/gpg %__grep /bin/grep %__gzip /bin/gzip %__id /usr/bin/id %__install /usr/bin/install %__ln_s ln -s %__make /usr/bin/make %__mkdir /bin/mkdir %__mkdir_p /bin/mkdir -p %__mv /bin/mv %__patch /usr/bin/patch %__perl /usr/bin/perl %__pgp /usr/bin/pgp %__python /usr/bin/python %__rm /bin/rm %__rsh /usr/bin/rsh %__sed /bin/sed %__ssh /usr/bin/ssh %__tar /bin/tar %__unzip /usr/bin/unzip %__xz %{_bindir}/xz %__lzma %{__xz} --format=lzma %__ar ar %__as as %__cc gcc %__cpp gcc -E %__cxx g++ %__ld /usr/bin/ld %__nm /usr/bin/nm %__objcopy /usr/bin/objcopy %__objdump /usr/bin/objdump %__ranlib ranlib %__remsh %{__rsh} %__strip /usr/bin/strip %__libtoolize libtoolize %__aclocal aclocal %__autoheader autoheader %__automake automake %__autoconf autoconf %defined() %{expand:%%{?%{1}:1}%%{!?%{1}:0}} %undefined() %{expand:%%{?%{1}:0}%%{!?%{1}:1}} %with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}} %without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}} %bcond_with() %{expand:%%{?_with_%{1}:%%global with_%{1} 1}} %bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}} %_builddir %{_topdir}/BUILD %_buildshell /bin/sh %_bzip2bin %{__bzip2} %_dbpath %{_var}/lib/rpm %_dbpath_rebuild %{_dbpath} %__debug_install_post \ /usr/lib/rpm/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_find_debuginfo_opts} "%{_builddir}/%{?buildsubdir}"\ %{nil} %debug_package \ %ifnarch noarch\ %global __debug_package 1\ %package debug\ Summary: Debug information for package %{name}\ Group: Development/Debug\ AutoReqProv: 0\ %description debug\ This package provides debug information for package %{name}.\ Debug information is useful when developing applications that use this\ package or when debugging this package.\ %files debug -f debugfiles.list\ %defattr(-,root,root)\ %endif\ %{nil} %_defaultdocdir %{_usr}/doc %_gzipbin %{__gzip} %_instchangelog 5 %_pgpbin %{__pgp} %_rpmdir %{_topdir}/RPMS %_rpmfilename %{_build_name_fmt} %_signature gpg %_sourcedir %{_topdir}/SOURCES %_specdir %{_topdir}/SPECS %_srcrpmdir %{_topdir}/SRPMS %_tmppath %{_var}/tmp %_topdir %{_usrsrc}/redhat %_unzipbin %{__unzip} %_install_script_path /sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin %_install_langs all %_javadir %{_datadir}/java %_javadocdir %{_datadir}/javadoc %_query_selector_match default %_default_patch_fuzz -1 %_package_version 30005 %__check_files /usr/lib/rpm/check-files %{buildroot} %_unpackaged_files_terminate_build 1 %_missing_doc_files_terminate_build 1 %_use_internal_dependency_generator 1 %_filter_GLIBC_PRIVATE 0 %__policy_tree %{expand:%%global __policy_tree %{lua:\ t="targeted"\ f = io.open("/etc/selinux/config")\ if f then\ for l in f:lines() do\ if "SELINUXTYPE=" == string.sub(l,0,12) then t=string.sub(l,13); end\ end\ f:close()\ end\ print (t)\ }}%{__policy_tree} %__file_context_path /etc/selinux/%{__policy_tree}/contexts/files/file_contexts %_build_file_context_path %{nil} %_install_file_context_path %{__file_context_path} %_verify_file_context_path %{__file_context_path} %__find_provides /usr/lib/rpm/find-provides %__find_requires /usr/lib/rpm/find-requires %__perl_provides /usr/lib/rpm/perl.prov %__perl_requires /usr/lib/rpm/perl.req %__python_provides /usr/lib/rpm/pythondeps.sh --provides %__python_requires /usr/lib/rpm/pythondeps.sh --requires %__mono_provides /usr/lib/rpm/mono-find-provides %{_builddir}/%{?buildsubdir} %{buildroot} %{_libdir} %__mono_requires /usr/lib/rpm/mono-find-requires %{_builddir}/%{?buildsubdir} %{buildroot} %{_libdir} %__dbi_cdb create cdb mpool mp_mmapsize=16Mb mp_size=1Mb %__dbi_other %{?_tmppath:tmpdir=%{_tmppath}} %{?__dbi_cdb} %__dbi_rebuild nofsync !log !txn !cdb %__dbi_transient %{__dbi_rebuild} temporary private %__dbi_perms perms=0644 %__dbi_htconfig \ hash \ %{__dbi_other}\ %{__dbi_perms}\ %{nil} %__dbi_htconfig_current %{__dbi_htconfig} %__dbi_htconfig_rebuild %{__dbi_htconfig} %{__dbi_rebuild} %_dbi_htconfig \ %{?_rpmdb_rebuild:%{__dbi_htconfig_rebuild}}\ %{!?_rpmdb_rebuild:%{__dbi_htconfig_current}}\ %{nil} %__dbi_btconfig \ btree \ %{__dbi_other}\ %{__dbi_perms}\ %{nil} %__dbi_btconfig_current %{__dbi_btconfig} %__dbi_btconfig_rebuild %{__dbi_btconfig} %{__dbi_rebuild} %_dbi_btconfig \ %{?_rpmdb_rebuild:%{__dbi_btconfig_rebuild}}\ %{!?_rpmdb_rebuild:%{__dbi_btconfig_current}}\ %{nil} %_dbi_tags Packages:Name:Basenames:Group:Requirename:Providename:Conflictname:Triggername:Dirnames:Requireversion:Provideversion:Installtid:Sigmd5:Sha1header:Filemd5s:Depends:Pubkeys %_dbi_config_Packages %{_dbi_htconfig} lockdbfd %_dbi_config_Depends %{_dbi_htconfig} temporary private %_dbi_config_Dirnames %{_dbi_btconfig} %_dbi_config_Requireversion %{_dbi_btconfig} %_dbi_config_Provideversion %{_dbi_btconfig} %_dbi_config_Installtid %{_dbi_btconfig} %_dbi_config_Removetid %{_dbi_btconfig} %_dbi_config %{_dbi_htconfig} %_dbapi 3 %_dbapi_rebuild 3 %__gpg_check_password_cmd %{__gpg} \ gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so - %__pgp_check_password_cmd %{__pgp} \ pgp +batchmode=on +verbose=0 "%{_pgp_name}" -sf %__pgp5_check_password_cmd %{__pgp} \ pgps +batchmode=on +verbose=0 +armor=off "%{_pgp_name}" -f %__gpg_sign_cmd %{__gpg} \ gpg --batch --no-verbose --no-armor --passphrase-fd 3 --no-secmem-warning \ -u "%{_gpg_name}" -sbo %{__signature_filename} %{__plaintext_filename} %__pgp_sign_cmd %{__pgp} \ pgp +batchmode=on +verbose=0 +armor=off \ "+myname=%{_pgp_name}" -sb %{__plaintext_filename} %{__signature_filename} %__pgp5_sign_cmd %{__pgp} \ pgps +batchmode=on +verbose=0 +armor=off \ "+myname=%{_pgp_name}" -b %{__plaintext_filename} -o %{__signature_filename} %_build_name_fmt %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm %_transaction_color 3 %_autorelocate_path %{nil} %_autorelocate_dcolor 0 %_repackage_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm %_repackage_dir /var/spool/repackage %_repackage_root %{nil} %_repackage_all_erasures 0 %_rollback_transaction_on_failure 0 %__vsflags 0xf0000 %_vsflags_build %{__vsflags} %_vsflags_erase %{__vsflags} %_vsflags_install %{__vsflags} %_vsflags_query %{__vsflags} %_vsflags_rebuilddb %{__vsflags} %_vsflags_up2date %{__vsflags} %_vsflags_verify %{__vsflags} %_dependency_whiteout \ %{nil} %_query_all_fmt %%{name}-%%{version}-%%{release} %_rpmlock_path %{_dbpath}/__db.000 %_bhpath file://localhost/mnt/dist %_bhcoll @(7.3|7.2|7.1|7.1sbe|7.1k|7.0|7.01j|7.0j|7.0sbe|7.0tc|6.2|6.2ha|6.2ee|6.1|6.0|5.2|5.1|5.0) %_bhN @(SRPMS|i386|alpha|sparc|s390|ia64) %_bhVR RedHat %_bhA RPMS %_cache_dbpath /var/spool/up2date/cache %_arch x86_64 %_build_arch x86_64 %_vendor redhat %_os linux %_gnu -gnu %_target_platform %{_target_cpu}-%{_vendor}-%{_target_os}%{?_gnu} %optflags -O2 %__arch_install_post %{nil} %__os_install_post %{___build_post} %___build_shell %{?_buildshell:%{_buildshell}}%{!?_buildshell:/bin/sh} %___build_args -e %___build_cmd %{?_sudo:%{_sudo} }%{?_remsh:%{_remsh} %{_remhost} }%{?_remsudo:%{_remsudo} }%{?_remchroot:%{_remchroot} %{_remroot} }%{___build_shell} %{___build_args} %___build_pre \ RPM_SOURCE_DIR=\"%{u2p:%{_sourcedir}}\"\ RPM_BUILD_DIR=\"%{u2p:%{_builddir}}\"\ RPM_OPT_FLAGS=\"%{optflags}\"\ RPM_ARCH=\"%{_arch}\"\ RPM_OS=\"%{_os}\"\ export RPM_SOURCE_DIR RPM_BUILD_DIR RPM_OPT_FLAGS RPM_ARCH RPM_OS\ RPM_DOC_DIR=\"%{_docdir}\"\ export RPM_DOC_DIR\ RPM_PACKAGE_NAME=\"%{name}\"\ RPM_PACKAGE_VERSION=\"%{version}\"\ RPM_PACKAGE_RELEASE=\"%{release}\"\ export RPM_PACKAGE_NAME RPM_PACKAGE_VERSION RPM_PACKAGE_RELEASE\ %{?buildroot:RPM_BUILD_ROOT=\"%{u2p:%{buildroot}}\"\ export RPM_BUILD_ROOT}\ %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\ export CLASSPATH}\ PKG_CONFIG_PATH=\"%{_libdir}/pkgconfig:%{_datadir}/pkgconfig\"\ export PKG_CONFIG_PATH\ \ %{verbose:set -x}%{!verbose:exec > /dev/null}\ umask 022\ cd \"%{u2p:%{_builddir}}\"\ %___build_post exit 0 %___build_template #!%{___build_shell}\ %{___build_pre}\ %{nil} %__spec_prep_shell %{___build_shell} %__spec_prep_args %{___build_args} %__spec_prep_cmd %{___build_cmd} %__spec_prep_pre %{___build_pre} %__spec_prep_body %{___build_body} %__spec_prep_post %{___build_post} %__spec_prep_template #!%{__spec_prep_shell}\ %{__spec_prep_pre}\ %{nil} %__spec_build_shell %{___build_shell} %__spec_build_args %{___build_args} %__spec_build_cmd %{___build_cmd} %__spec_build_pre %{___build_pre} %__spec_build_body %{___build_body} %__spec_build_post %{___build_post} %__spec_build_template #!%{__spec_build_shell}\ %{__spec_build_pre}\ %{nil} %__spec_install_shell %{___build_shell} %__spec_install_args %{___build_args} %__spec_install_cmd %{___build_cmd} %__spec_install_pre %{___build_pre} %__spec_install_body %{___build_body} %__spec_install_post\ %{?__debug_package:%{__debug_install_post}}\ %{__arch_install_post}\ %{__os_install_post}\ %{nil} %__spec_install_template #!%{__spec_install_shell}\ %{__spec_install_pre}\ %{nil} %__spec_check_shell %{___build_shell} %__spec_check_args %{___build_args} %__spec_check_cmd %{___build_cmd} %__spec_check_pre %{___build_pre} %__spec_check_body %{___build_body} %__spec_check_post %{___build_post} %__spec_check_template #!%{__spec_check_shell}\ %{__spec_check_pre}\ %{nil} %__spec_clean_shell %{___build_shell} %__spec_clean_args %{___build_args} %__spec_clean_cmd %{___build_cmd} %__spec_clean_pre %{___build_pre} %__spec_clean_body %{___build_body} %__spec_clean_post %{___build_post} %__spec_clean_template #!%{__spec_clean_shell}\ %{__spec_clean_pre}\ %{nil} %__spec_rmbuild_shell %{___build_shell} %__spec_rmbuild_args %{___build_args} %__spec_rmbuild_cmd %{___build_cmd} %__spec_rmbuild_pre %{___build_pre} %__spec_rmbuild_body %{___build_body} %__spec_rmbuild_post %{___build_post} %__spec_rmbuild_template #!%{__spec_rmbuild_shell}\ %{__spec_rmbuild_pre}\ %{nil} %_prefix /usr %_exec_prefix %{_prefix} %_bindir %{_exec_prefix}/bin %_sbindir %{_exec_prefix}/sbin %_libexecdir %{_exec_prefix}/libexec %_datadir %{_prefix}/share %_sysconfdir %{_prefix}/etc %_sharedstatedir %{_prefix}/com %_localstatedir %{_prefix}/var %_lib lib %_libdir %{_exec_prefix}/%{_lib} %_includedir %{_prefix}/include %_oldincludedir /usr/include %_infodir %{_prefix}/info %_mandir %{_prefix}/man %_build %{_host} %_build_alias %{_host_alias} %_build_cpu %{_host_cpu} %_build_vendor %{_host_vendor} %_build_os %{_host_os} %_host x86_64-redhat-linux-gnu %_host_alias %{nil} %_host_cpu x86_64 %_host_vendor redhat %_host_os linux-gnu %_target %{_host} %_target_alias %{_host_alias} %_target_cpu %{_host_cpu} %_target_vendor %{_host_vendor} %_target_os %{_host_os} %configure \ CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \ CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \ ./configure --host=%{_host} --build=%{_build} \\\ --target=%{_target_platform} \\\ --program-prefix=%{?_program_prefix} \\\ --prefix=%{_prefix} \\\ --exec-prefix=%{_exec_prefix} \\\ --bindir=%{_bindir} \\\ --sbindir=%{_sbindir} \\\ --sysconfdir=%{_sysconfdir} \\\ --datadir=%{_datadir} \\\ --includedir=%{_includedir} \\\ --libdir=%{_libdir} \\\ --libexecdir=%{_libexecdir} \\\ --localstatedir=%{_localstatedir} \\\ --sharedstatedir=%{_sharedstatedir} \\\ --mandir=%{_mandir} \\\ --infodir=%{_infodir} %makeinstall \ make \\\ prefix=%{?buildroot:%{buildroot}}%{_prefix} \\\ exec_prefix=%{?buildroot:%{buildroot}}%{_exec_prefix} \\\ bindir=%{?buildroot:%{buildroot}}%{_bindir} \\\ sbindir=%{?buildroot:%{buildroot}}%{_sbindir} \\\ sysconfdir=%{?buildroot:%{buildroot}}%{_sysconfdir} \\\ datadir=%{?buildroot:%{buildroot}}%{_datadir} \\\ includedir=%{?buildroot:%{buildroot}}%{_includedir} \\\ libdir=%{?buildroot:%{buildroot}}%{_libdir} \\\ libexecdir=%{?buildroot:%{buildroot}}%{_libexecdir} \\\ localstatedir=%{?buildroot:%{buildroot}}%{_localstatedir} \\\ sharedstatedir=%{?buildroot:%{buildroot}}%{_sharedstatedir} \\\ mandir=%{?buildroot:%{buildroot}}%{_mandir} \\\ infodir=%{?buildroot:%{buildroot}}%{_infodir} \\\ install %GNUconfigure(MCs:) \ CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS; \ LDFLAGS="${LDFLAGS:-%{-s:-s}}" ; export LDFLAGS; \ %{-C:_mydir="`pwd`"; %{-M: %{__mkdir} -p %{-C*};} cd %{-C*}} \ dirs="`find ${_mydir} -name configure.in -print`"; export dirs; \ for coin in `echo ${dirs}` \ do \ dr=`dirname ${coin}`; \ if test -f ${dr}/NO-AUTO-GEN; then \ : \ else \ macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < ${coin}`; \ ( cd ${dr}; \ aclocalinclude="${ACLOCAL_FLAGS}"; \ for k in ${macrodirs}; do \ if test -d ${k}; then \ aclocalinclude="${aclocalinclude} -I ${k}"; \ fi \ done \ if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then \ if grep "sed.*POTFILES" configure.in >/dev/null; then \ : do nothing -- we still have an old unmodified configure.in \ else \ test -r ${dr}/aclocal.m4 || touch ${dr}/aclocal.m4; \ echo "no" | gettextize --force --copy; \ test -r ${dr}/aclocal.m4 && %{__chmod} u+w ${dr}/aclocal.m4; \ fi \ fi \ if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then \ %{__libtoolize} --force --copy; \ fi \ aclocal ${aclocalinclude}; \ if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then \ %{__autoheader}; \ fi \ echo "Running automake --gnu ${am_opt} ..."; \ %{__automake} --add-missing --gnu ${am_opt}; \ %{__autoconf}; \ ); \ fi \ done \ %{-C:${_mydir}}%{!-C:.}/configure %{_target_platform} --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} --datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} --infodir=%{_infodir} %* ; \ %{-C:cd ${_mydir}; unset _mydir} %requires_eq() %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not") %perl_sitearch %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch) %perl_sitelib %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib) %perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch) %perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib) %perl_archlib %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib) %perl_privlib %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib) %ix86 i386 i486 i586 i686 pentium3 pentium4 athlon geode %arm armv3l armv4b armv4l armv4tl armv5tel armv5tejl armv6l %alpha alpha alphaev56 alphaev6 alphaev67 %find_lang /usr/lib/rpm/find-lang.sh %{buildroot}
Name : gpg-pubkey Relocations: (not relocatable) Version : 6b8d79e6 Vendor: (none) Release : 3f49313d Build Date: Sat May 10 22:41:40 2014 Install Date: Sat May 10 22:41:40 2014 Build Host: localhost Group : Public Keys Source RPM: (none) Size : 0 License: pubkey Signature : (none) Summary : gpg(Dag Wieers (Dag Apt Repository v1.0) <dag@wieers.com>) Description : -----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.4.2.3 (NSS-3) mQGiBD9JMT0RBAC9Q2B0AloUMTxaK73sD0cOu1MMdD8yuDagbMlDtUYA1aGeJVO6 TV02JLGr67OBY+UkYuC1c3PUwmb3+jakZd5bW1L8E2L705wS0129xQOZPz6J+alF 5rTzVkiefg8ch1yEcMayK20NdyOmhDGXQXNQS8OJFLTIC6bJs+7MZL83/wCg3cG3 3q7MWHm3IpJb+6QKpB9YH58D/2WjPDK+7YIky/JbFBT4JPgTSBy611+bLqHA6PXq 39tzY6un8KDznAMNtm+NAsr6FEG8PHe406+tbgd7tBkecz3HPX8nR5v0JtDT+gzN 8fM3kAiAzjCHUAFWVAMAZLr5TXuoq4lGTTxvZbwTjZfyjCm7gIieCu8+qnPWh6hm 30NgA/0ZyEHG6I4rOWqPks4vZuD+wlp5XL8moBXEKfEVOMh2MCNDRGnvVHu1P3eD oHOooVMt9sWrGcgxpYuupPNL4Uf6B6smiLlH6D4tEg+qCxC17zABI5572XJTJ170 JklZJrPGtnkPrrKMamnN9MU4RjGmjh9JZPa7rKjZHyWP/z/CBrQ1RGFnIFdpZWVy cyAoRGFnIEFwdCBSZXBvc2l0b3J5IHYxLjApIDxkYWdAd2llZXJzLmNvbT6IWQQT EQIAGQUCP0kxPQQLBwMCAxUCAwMWAgECHgECF4AACgkQog5SFGuNeeYvDQCeKHST hIq/WzFBXtJOnQkJGSqAoHoAnRtsJVWYmzYKHqzkRx1qAzL18Sd0iEYEEBECAAYF Aj9JMWAACgkQoj2iXPqnmevnOACfRQaageMcESHVE1+RSuP3txPUvoEAoJAtOHon g+3SzVNSZLn/g7/Ljfw+uQENBD9JMT8QBACj1QzRptL6hbpWl5DdQ2T+3ekEjJGt llCwt4Mwt/yOHDhzLe8SzUNyYxTXUL4TPfFvVW9/j8WOkNGvffbs7g84k7a5h/+l IJTTlP9V9NruDt1dlrBe+mWF6eCY55OFHjb6nOIkcJwKxRd3nGlWnLsz0ce9Hjrg 6lMrn0lPsMV6swADBQP9H42sss6mlqnJEFA97Fl3V9s+7UVJoAIA5uSVXxEOwVoh Vq7uECQRvWzif6tzOY+vHkUxOBRvD6oIU6tlmuG3WByKyA1d0MTqMr3eWieSYf/L n5VA9NuD7NwjFA1kLkoDwfSbsF51LppTMkUggzwgvwE46MB6yyuqAVI1kReAWw+I RgQYEQIABgUCP0kxPwAKCRCiDlIUa4155oktAKDAzm9QYbDpk6SrQhkSFy016BjE BACeJU1hpElFnUZCL4yKj4EuLnlo8kc= =mqUt-----END PGP PUBLIC KEY BLOCK-----
Name : gpg-pubkey Relocations: (not relocatable) Version : e8562897 Vendor: (none) Release : 459f07a4 Build Date: Sat May 10 22:58:11 2014 Install Date: Sat May 10 22:58:11 2014 Build Host: localhost Group : Public Keys Source RPM: (none) Size : 0 License: pubkey Signature : (none) Summary : gpg(CentOS-5 Key (CentOS 5 Official Signing Key) <centos-5-key@centos.org>) Description : -----BEGIN PGP PUBLIC KEY BLOCK----- Version: rpm-4.4.2.3 (NSS-3) mQGiBEWfB6MRBACrnYW6yKMT+MwJlCIhoyTxGf3mAxmnAiDEy6HcYN8rivssVTJk CFtQBlBOpLV/OW2YtKrCO2xHn46eNfnMri8FGT8g+9JF3MUVi7kiV1He4iJynHXB +F2ZqIvHf3IaUj1ys+p8TK64FDFxDQDrGQfIsD/+pkSGx53/877IrvdwjwCguQcr Ioip5TH0Fj0OLUY4asYVZH8EAIqFHEqsY+9ziP+2R3/FyxSllKkjwcMLrBug+cYO LYDD6eQXE9Mq8XKGFDj9ZB/0+JzK/XQeStheeFG75q3noq5oCPVFO4czuKErIRAB qKbDBhaTj3JhOgM12XsUYn+rI6NeMV2ZogoQCC2tWmDETfRpYp2moo53NuFWHbAy XjETA/sHEeQT9huHzdi/lebNBj0L8nBGfLN1nSRP1GtvagBvkR4RZ6DTQyl0UzOJ RA3ywWlrL9IV9mrpb1Fmn60l2jTMMCc7J6LacmPK906N+FcN/Docj1M4s/4CNanQ NhzcFhAFtQL56SNyLTCk1XzhssGZ/jwGnNbU/aaj4wOj0Uef5LRGQ2VudE9TLTUg S2V5IChDZW50T1MgNSBPZmZpY2lhbCBTaWduaW5nIEtleSkgPGNlbnRvcy01LWtl eUBjZW50b3Mub3JnPohkBBMRAgAkBQJFnwekAhsDBQkSzAMABgsJCAcDAgMVAgMD FgIBAh4BAheAAAoJEKikR9zoViiXKlEAmwSoZDvZo+WChcg3s/SpNoWCKhMAAJwI E2aXpZVrpsQnInUQWwkdrTiL5YhMBBMRAgAMBQJFnwiSBYMSzAIRAAoJEDjCFhY5 bKCk0hAAn134bIx3wSbq58E6P6U5RT7Z2Zx4AJ9VxnVkoGHkVIgSdsxHUgRjo27N F7kBDQRFnwezEAQA/HnJ5yiozwgtf6jt+kii8iua+WnjqBKomPHOQ8moxbWdv5Ks 4e1DPhzRqxhshjmub4SuJ93sgMSAF2ayC9t51mSJV33KfzPF2gIahcMqfABe/2hJ aMzcQZHrGJCEX6ek8l8SFKou7vICzyajRSIK8gxWKBuQknP/9LKsoczV+xsAAwUD /idXPkk4vRRHsCwc6I23fdI0ur52bzEqHiAIswNfO521YgLk2W1xyCLc2aYjc8Ni nrMX1tCnEx0/gK7ICyJoWH1Vc7//79sWFtX2EaTO+Q07xjFX4E66WxJlCo9lOjos Vk5qc7R+xzLDoLGFtbzaTRQFzf6yr7QTu+BebWLoPwNTiE8EGBECAA8FAkWfB7MC GwwFCRLMAwAACgkQqKRH3OhWKJfvvACfbsF1WK193zM7vSc4uq51XsceLwgAoI0/ 9GxdNhGQEAweSlQfhPa3yYXH =o/Mx-----END PGP PUBLIC KEY BLOCK-----
[main] cachedir=/var/cache/yum keepcache=0 debuglevel=2 logfile=/var/log/yum.log distroverpkg=redhat-release tolerant=1 exactarch=1 obsoletes=1 gpgcheck=1 plugins=1 bugtracker_url=http://bugs.centos.org/yum5bug metadata_expire=1h installonly_limit = 5
[base]:[base] [base]:name=CentOS-$releasever - Base [base]:mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os [base]:gpgcheck=1 [base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [updates]:[updates] [updates]:name=CentOS-$releasever - Updates [updates]:mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates [updates]:gpgcheck=1 [updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [extras]:[extras] [extras]:name=CentOS-$releasever - Extras [extras]:mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras [extras]:gpgcheck=1 [extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [centosplus]:[centosplus] [centosplus]:name=CentOS-$releasever - Plus [centosplus]:mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus [centosplus]:gpgcheck=1 [centosplus]:enabled=0 [centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [contrib]:[contrib] [contrib]:name=CentOS-$releasever - Contrib [contrib]:mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib [contrib]:gpgcheck=1 [contrib]:enabled=0 [contrib]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
[debug]:[debug] [debug]:name=CentOS-5 - Debuginfo [debug]:baseurl=http://debuginfo.centos.org/5/$basearch/ [debug]:gpgcheck=0 [debug]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [debug]:enabled=0
[c5-media]:[c5-media] [c5-media]:name=CentOS-$releasever - Media [c5-media]:baseurl=file:///media/CentOS/ [c5-media]: file:///media/cdrom/ [c5-media]: file:///media/cdrecorder/ [c5-media]:gpgcheck=1 [c5-media]:enabled=0 [c5-media]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
[C5.8-base]:[C5.8-base] [C5.8-base]:name=CentOS-5.8 - Base [C5.8-base]:baseurl=http://vault.centos.org/5.8/os/$basearch/ [C5.8-base]:gpgcheck=1 [C5.8-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.8-base]:enabled=0 [C5.8-updates]:[C5.8-updates] [C5.8-updates]:name=CentOS-5.8 - Updates [C5.8-updates]:baseurl=http://vault.centos.org/5.8/updates/$basearch/ [C5.8-updates]:gpgcheck=1 [C5.8-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.8-updates]:enabled=0 [C5.8-extras]:[C5.8-extras] [C5.8-extras]:name=CentOS-5.8 - Extras [C5.8-extras]:baseurl=http://vault.centos.org/5.8/extras/$basearch/ [C5.8-extras]:gpgcheck=1 [C5.8-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.8-extras]:enabled=0 [C5.8-centosplus]:[C5.8-centosplus] [C5.8-centosplus]:name=CentOS-5.8 - Plus [C5.8-centosplus]:baseurl=http://vault.centos.org/5.8/centosplus/$basearch/ [C5.8-centosplus]:gpgcheck=1 [C5.8-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.8-centosplus]:enabled=0 [C5.7-base]:[C5.7-base] [C5.7-base]:name=CentOS-5.7 - Base [C5.7-base]:baseurl=http://vault.centos.org/5.7/os/$basearch/ [C5.7-base]:gpgcheck=1 [C5.7-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.7-base]:enabled=0 [C5.7-updates]:[C5.7-updates] [C5.7-updates]:name=CentOS-5.7 - Updates [C5.7-updates]:baseurl=http://vault.centos.org/5.7/updates/$basearch/ [C5.7-updates]:gpgcheck=1 [C5.7-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.7-updates]:enabled=0 [C5.7-extras]:[C5.7-extras] [C5.7-extras]:name=CentOS-5.7 - Extras [C5.7-extras]:baseurl=http://vault.centos.org/5.7/extras/$basearch/ [C5.7-extras]:gpgcheck=1 [C5.7-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.7-extras]:enabled=0 [C5.7-centosplus]:[C5.7-centosplus] [C5.7-centosplus]:name=CentOS-5.7 - Plus [C5.7-centosplus]:baseurl=http://vault.centos.org/5.7/centosplus/$basearch/ [C5.7-centosplus]:gpgcheck=1 [C5.7-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.7-centosplus]:enabled=0 [C5.6-base]:[C5.6-base] [C5.6-base]:name=CentOS-5.6 - Base [C5.6-base]:baseurl=http://vault.centos.org/5.6/os/$basearch/ [C5.6-base]:gpgcheck=1 [C5.6-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.6-base]:enabled=0 [C5.6-updates]:[C5.6-updates] [C5.6-updates]:name=CentOS-5.6 - Updates [C5.6-updates]:baseurl=http://vault.centos.org/5.6/updates/$basearch/ [C5.6-updates]:gpgcheck=1 [C5.6-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.6-updates]:enabled=0 [C5.6-extras]:[C5.6-extras] [C5.6-extras]:name=CentOS-5.6 - Extras [C5.6-extras]:baseurl=http://vault.centos.org/5.6/extras/$basearch/ [C5.6-extras]:gpgcheck=1 [C5.6-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.6-extras]:enabled=0 [C5.6-centosplus]:[C5.6-centosplus] [C5.6-centosplus]:name=CentOS-5.6 - Plus [C5.6-centosplus]:baseurl=http://vault.centos.org/5.6/centosplus/$basearch/ [C5.6-centosplus]:gpgcheck=1 [C5.6-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.6-centosplus]:enabled=0 [C5.5-base]:[C5.5-base] [C5.5-base]:name=CentOS-5.5 - Base [C5.5-base]:baseurl=http://vault.centos.org/5.5/os/$basearch/ [C5.5-base]:gpgcheck=1 [C5.5-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.5-base]:enabled=0 [C5.5-updates]:[C5.5-updates] [C5.5-updates]:name=CentOS-5.5 - Updates [C5.5-updates]:baseurl=http://vault.centos.org/5.5/updates/$basearch/ [C5.5-updates]:gpgcheck=1 [C5.5-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.5-updates]:enabled=0 [C5.5-extras]:[C5.5-extras] [C5.5-extras]:name=CentOS-5.5 - Extras [C5.5-extras]:baseurl=http://vault.centos.org/5.5/extras/$basearch/ [C5.5-extras]:gpgcheck=1 [C5.5-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.5-extras]:enabled=0 [C5.5-centosplus]:[C5.5-centosplus] [C5.5-centosplus]:name=CentOS-5.5 - Plus [C5.5-centosplus]:baseurl=http://vault.centos.org/5.5/centosplus/$basearch/ [C5.5-centosplus]:gpgcheck=1 [C5.5-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.5-centosplus]:enabled=0 [C5.4-base]:[C5.4-base] [C5.4-base]:name=CentOS-5.4 - Base [C5.4-base]:baseurl=http://vault.centos.org/5.4/os/$basearch/ [C5.4-base]:gpgcheck=1 [C5.4-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.4-base]:enabled=0 [C5.4-updates]:[C5.4-updates] [C5.4-updates]:name=CentOS-5.4 - Updates [C5.4-updates]:baseurl=http://vault.centos.org/5.4/updates/$basearch/ [C5.4-updates]:gpgcheck=1 [C5.4-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.4-updates]:enabled=0 [C5.4-extras]:[C5.4-extras] [C5.4-extras]:name=CentOS-5.4 - Extras [C5.4-extras]:baseurl=http://vault.centos.org/5.4/extras/$basearch/ [C5.4-extras]:gpgcheck=1 [C5.4-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.4-extras]:enabled=0 [C5.4-centosplus]:[C5.4-centosplus] [C5.4-centosplus]:name=CentOS-5.4 - Plus [C5.4-centosplus]:baseurl=http://vault.centos.org/5.4/centosplus/$basearch/ [C5.4-centosplus]:gpgcheck=1 [C5.4-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.4-centosplus]:enabled=0 [C5.3-base]:[C5.3-base] [C5.3-base]:name=CentOS-5.3 - Base [C5.3-base]:baseurl=http://vault.centos.org/5.3/os/$basearch/ [C5.3-base]:gpgcheck=1 [C5.3-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.3-base]:enabled=0 [C5.3-updates]:[C5.3-updates] [C5.3-updates]:name=CentOS-5.3 - Updates [C5.3-updates]:baseurl=http://vault.centos.org/5.3/updates/$basearch/ [C5.3-updates]:gpgcheck=1 [C5.3-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.3-updates]:enabled=0 [C5.3-extras]:[C5.3-extras] [C5.3-extras]:name=CentOS-5.3 - Extras [C5.3-extras]:baseurl=http://vault.centos.org/5.3/extras/$basearch/ [C5.3-extras]:gpgcheck=1 [C5.3-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.3-extras]:enabled=0 [C5.3-centosplus]:[C5.3-centosplus] [C5.3-centosplus]:name=CentOS-5.3 - Plus [C5.3-centosplus]:baseurl=http://vault.centos.org/5.3/centosplus/$basearch/ [C5.3-centosplus]:gpgcheck=1 [C5.3-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.3-centosplus]:enabled=0 [C5.2-base]:[C5.2-base] [C5.2-base]:name=CentOS-5.2 - Base [C5.2-base]:baseurl=http://vault.centos.org/5.2/os/$basearch/ [C5.2-base]:gpgcheck=1 [C5.2-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.2-base]:enabled=0 [C5.2-updates]:[C5.2-updates] [C5.2-updates]:name=CentOS-5.2 - Updates [C5.2-updates]:baseurl=http://vault.centos.org/5.2/updates/$basearch/ [C5.2-updates]:gpgcheck=1 [C5.2-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.2-updates]:enabled=0 [C5.2-extras]:[C5.2-extras] [C5.2-extras]:name=CentOS-5.2 - Extras [C5.2-extras]:baseurl=http://vault.centos.org/5.2/extras/$basearch/ [C5.2-extras]:gpgcheck=1 [C5.2-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.2-extras]:enabled=0 [C5.2-centosplus]:[C5.2-centosplus] [C5.2-centosplus]:name=CentOS-5.2 - Plus [C5.2-centosplus]:baseurl=http://vault.centos.org/5.2/centosplus/$basearch/ [C5.2-centosplus]:gpgcheck=1 [C5.2-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.2-centosplus]:enabled=0 [C5.1-base]:[C5.1-base] [C5.1-base]:name=CentOS-5.1 - Base [C5.1-base]:baseurl=http://vault.centos.org/5.1/os/$basearch/ [C5.1-base]:gpgcheck=1 [C5.1-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.1-base]:enabled=0 [C5.1-updates]:[C5.1-updates] [C5.1-updates]:name=CentOS-5.1 - Updates [C5.1-updates]:baseurl=http://vault.centos.org/5.1/updates/$basearch/ [C5.1-updates]:gpgcheck=1 [C5.1-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.1-updates]:enabled=0 [C5.1-extras]:[C5.1-extras] [C5.1-extras]:name=CentOS-5.1 - Extras [C5.1-extras]:baseurl=http://vault.centos.org/5.1/extras/$basearch/ [C5.1-extras]:gpgcheck=1 [C5.1-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.1-extras]:enabled=0 [C5.1-centosplus]:[C5.1-centosplus] [C5.1-centosplus]:name=CentOS-5.1 - Plus [C5.1-centosplus]:baseurl=http://vault.centos.org/5.1/centosplus/$basearch/ [C5.1-centosplus]:gpgcheck=1 [C5.1-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.1-centosplus]:enabled=0 [C5.0-base]:[C5.0-base] [C5.0-base]:name=CentOS-5.0 - Base [C5.0-base]:baseurl=http://vault.centos.org/5.0/os/$basearch/ [C5.0-base]:gpgcheck=1 [C5.0-base]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.0-base]:enabled=0 [C5.0-updates]:[C5.0-updates] [C5.0-updates]:name=CentOS-5.0 - Updates [C5.0-updates]:baseurl=http://vault.centos.org/5.0/updates/$basearch/ [C5.0-updates]:gpgcheck=1 [C5.0-updates]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.0-updates]:enabled=0 [C5.0-extras]:[C5.0-extras] [C5.0-extras]:name=CentOS-5.0 - Extras [C5.0-extras]:baseurl=http://vault.centos.org/5.0/extras/$basearch/ [C5.0-extras]:gpgcheck=1 [C5.0-extras]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.0-extras]:enabled=0 [C5.0-centosplus]:[C5.0-centosplus] [C5.0-centosplus]:name=CentOS-5.0 - Plus [C5.0-centosplus]:baseurl=http://vault.centos.org/5.0/centosplus/$basearch/ [C5.0-centosplus]:gpgcheck=1 [C5.0-centosplus]:gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [C5.0-centosplus]:enabled=0
http://apt.sw.be/redhat/el5/en/$ARCH/rpmforge http://archive.cs.uu.nl/mirror/dag.wieers/redhat/el5/en/$ARCH/rpmforge http://ftp2.lcpe.uni-sofia.bg/freshrpms/pub/dag/redhat/el5/en/$ARCH/rpmforge http://ftp-stud.fht-esslingen.de/dag/redhat/el5/en/$ARCH/rpmforge http://mirror.cpsc.ucalgary.ca/mirror/dag/redhat/el5/en/$ARCH/rpmforge http://mirrors.ircam.fr/pub/dag/redhat/el5/en/$ARCH/rpmforge http://rh-mirror.linux.iastate.edu/pub/dag/redhat/el5/en/$ARCH/rpmforge http://rpmfind.net/linux/dag/redhat/el5/en/$ARCH/rpmforge http://wftp.tu-chemnitz.de/pub/linux/dag/redhat/el5/en/$ARCH/rpmforge http://www.mirrorservice.org/sites/apt.sw.be/redhat/el5/en/$ARCH/rpmforge
http://apt.sw.be/redhat/el5/en/$ARCH/extras http://archive.cs.uu.nl/mirror/dag.wieers/redhat/el5/en/$ARCH/extras http://ftp2.lcpe.uni-sofia.bg/freshrpms/pub/dag/redhat/el5/en/$ARCH/extras http://ftp-stud.fht-esslingen.de/dag/redhat/el5/en/$ARCH/extras http://mirror.cpsc.ucalgary.ca/mirror/dag/redhat/el5/en/$ARCH/extras http://mirrors.ircam.fr/pub/dag/redhat/el5/en/$ARCH/extras http://rh-mirror.linux.iastate.edu/pub/dag/redhat/el5/en/$ARCH/extras http://rpmfind.net/linux/dag/redhat/el5/en/$ARCH/extras http://wftp.tu-chemnitz.de/pub/linux/dag/redhat/el5/en/$ARCH/extras http://www.mirrorservice.org/sites/apt.sw.be/redhat/el5/en/$ARCH/extras
http://apt.sw.be/redhat/el5/en/$ARCH/testing http://archive.cs.uu.nl/mirror/dag.wieers/redhat/el5/en/$ARCH/testing http://ftp2.lcpe.uni-sofia.bg/freshrpms/pub/dag/redhat/el5/en/$ARCH/testing http://ftp-stud.fht-esslingen.de/dag/redhat/el5/en/$ARCH/testing http://mirror.cpsc.ucalgary.ca/mirror/dag/redhat/el5/en/$ARCH/testing http://mirrors.ircam.fr/pub/dag/redhat/el5/en/$ARCH/testing http://rh-mirror.linux.iastate.edu/pub/dag/redhat/el5/en/$ARCH/testing http://rpmfind.net/linux/dag/redhat/el5/en/$ARCH/testing http://wftp.tu-chemnitz.de/pub/linux/dag/redhat/el5/en/$ARCH/testing http://www.mirrorservice.org/sites/apt.sw.be/redhat/el5/en/$ARCH/testing
[opsview]:[opsview] [opsview]:name = Opsview [opsview]:baseurl = http://downloads.opsview.com/opsview-core/latest/yum/centos/5/$basearch [opsview]:enabled = 1 [opsview]:protect = 0 [opsview]:gpgcheck = 0
[rpmforge]:[rpmforge] [rpmforge]:name = RHEL $releasever - RPMforge.net - dag [rpmforge]:baseurl = http://apt.sw.be/redhat/el5/en/$basearch/rpmforge [rpmforge]:mirrorlist = http://mirrorlist.repoforge.org/el5/mirrors-rpmforge [rpmforge]:enabled = 1 [rpmforge]:protect = 0 [rpmforge]:gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag [rpmforge]:gpgcheck = 1 [rpmforge-extras]:[rpmforge-extras] [rpmforge-extras]:name = RHEL $releasever - RPMforge.net - extras [rpmforge-extras]:baseurl = http://apt.sw.be/redhat/el5/en/$basearch/extras [rpmforge-extras]:mirrorlist = http://mirrorlist.repoforge.org/el5/mirrors-rpmforge-extras [rpmforge-extras]:enabled = 0 [rpmforge-extras]:protect = 0 [rpmforge-extras]:gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag [rpmforge-extras]:gpgcheck = 1 [rpmforge-testing]:[rpmforge-testing] [rpmforge-testing]:name = RHEL $releasever - RPMforge.net - testing [rpmforge-testing]:baseurl = http://apt.sw.be/redhat/el5/en/$basearch/testing [rpmforge-testing]:mirrorlist = http://mirrorlist.repoforge.org/el5/mirrors-rpmforge-testing [rpmforge-testing]:enabled = 0 [rpmforge-testing]:protect = 0 [rpmforge-testing]:gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag [rpmforge-testing]:gpgcheck = 1
[main] run_interval = 3600 updaterefresh = 600 emit_via = dbus dbus_listener = yes do_update = no do_download = no do_download_deps = no
[main] enabled=1 verbose=0 socket_timeout=3 hostfilepath=/var/cache/yum/timedhosts.txt maxhostfileage=10 maxthreads=15
[main] enabled=1
base extras opsview rpmforge updates
etags -> /usr/bin/etags.emacs ksh -> /bin/ksh93 ksh-man -> /usr/share/man/man1/ksh93.1.gz ksh-usrbin -> /bin/ksh93 mta -> /usr/sbin/sendmail.sendmail mta-aliasesman -> /usr/share/man/man5/aliases.sendmail.5.gz mta-mailq -> /usr/bin/mailq.sendmail mta-mailqman -> /usr/share/man/man1/mailq.sendmail.1.gz mta-newaliases -> /usr/bin/newaliases.sendmail mta-newaliasesman -> /usr/share/man/man1/newaliases.sendmail.1.gz mta-pam -> /etc/pam.d/smtp.sendmail mta-rmail -> /usr/bin/rmail.sendmail mta-sendmail -> /usr/lib/sendmail.sendmail mta-sendmailman -> /usr/share/man/man8/sendmail.sendmail.8.gz tcl-config.x86_64 -> /usr/lib64/tclConfig.threads.sh tcl-lib.x86_64 -> /usr/lib64/libtcl8.4.threads.so tcl-libstub.x86_64 -> /usr/lib64/libtclstub8.4.threads.a tcl.x86_64 -> /usr/bin/tclsh8.4.threads
log_file = /var/log/audit/audit.log log_format = RAW log_group = root priority_boost = 4 flush = INCREMENTAL freq = 20 num_logs = 4 disp_qos = lossy dispatcher = /sbin/audispd name_format = NONE max_log_file = 5 max_log_file_action = ROTATE space_left = 75 space_left_action = SYSLOG action_mail_acct = root admin_space_left = 50 admin_space_left_action = SUSPEND disk_full_action = SUSPEND disk_error_action = SUSPEND tcp_listen_queue = 5 tcp_max_per_addr = 1 tcp_client_max_idle = 0 enable_krb5 = no krb5_principal = auditd
-D -b 320
TERM linux TERM linux-c TERM mach-color TERM console TERM con132x25 TERM con132x30 TERM con132x43 TERM con132x60 TERM con80x25 TERM con80x28 TERM con80x30 TERM con80x43 TERM con80x50 TERM con80x60 TERM cygwin TERM dtterm TERM putty TERM xterm TERM xterm-color TERM xterm-debian TERM rxvt TERM screen TERM screen-bce TERM screen-w TERM vt100 TERM Eterm NORMAL 00 # global default, although everything should be something. FILE 00 # normal file DIR 01;34 # directory LINK 01;36 # symbolic link. (If you set this to 'target' instead of a # numerical value, the color is as for the file pointed to.) FIFO 40;33 # pipe SOCK 01;35 # socket DOOR 01;35 # door BLK 40;33;01 # block device driver CHR 40;33;01 # character device driver ORPHAN 40;31;01 # symlink to nonexistent file SETUID 37;41 # file that is setuid (u+s) SETGID 30;43 # file that is setgid (g+s) STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w) OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable EXEC 01;32 .tar 01;31 # archives or compressed (bright red) .tgz 01;31 .arj 01;31 .taz 01;31 .lzh 01;31 .zip 01;31 .z 01;31 .Z 01;31 .gz 01;31 .bz2 01;31 .deb 01;31 .rpm 01;31 .jar 01;31 .jpg 01;35 .jpeg 01;35 .gif 01;35 .bmp 01;35 .pbm 01;35 .pgm 01;35 .ppm 01;35 .tga 01;35 .xbm 01;35 .xpm 01;35 .tif 01;35 .tiff 01;35 .png 01;35 .mov 01;35 .mpg 01;35 .mpeg 01;35 .avi 01;35 .fli 01;35 .gl 01;35 .dl 01;35 .xcf 01;35 .xwd 01;35 .flac 01;35 .mp3 01;35 .mpc 01;35 .ogg 01;35 .wav 01;35
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <type>session</type> <listen>unix:tmpdir=/tmp</listen> <standard_session_servicedirs /> <policy context="default"> <allow send_destination="*" eavesdrop="true"/> <allow eavesdrop="true"/> <allow own="*"/> </policy> <includedir>session.d</includedir> <include ignore_missing="yes">session-local.conf</include> <include if_selinux_enabled="yes" selinux_root_relative="yes">contexts/dbus_contexts</include> <limit name="max_incoming_bytes">1000000000</limit> <limit name="max_outgoing_bytes">1000000000</limit> <limit name="max_message_size">1000000000</limit> <limit name="service_start_timeout">120000</limit> <limit name="auth_timeout">240000</limit> <limit name="max_completed_connections">100000</limit> <limit name="max_incomplete_connections">10000</limit> <limit name="max_connections_per_user">100000</limit> <limit name="max_pending_service_starts">10000</limit> <limit name="max_names_per_connection">50000</limit> <limit name="max_match_rules_per_connection">50000</limit> <limit name="max_replies_per_connection">50000</limit> <limit name="reply_timeout">300000</limit> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <type>system</type> <user>dbus</user> <fork/> <standard_system_servicedirs/> <servicehelper>/lib64/dbus-1/dbus-daemon-launch-helper</servicehelper> <pidfile>/var/run/messagebus.pid</pidfile> <auth>EXTERNAL</auth> <listen>unix:path=/var/run/dbus/system_bus_socket</listen> <policy context="default"> <deny send_interface="*"/> <deny receive_interface="*"/> <deny own="*"/> <allow user="*"/> <allow send_destination="org.freedesktop.DBus"/> <allow receive_sender="org.freedesktop.DBus"/> <allow send_requested_reply="true"/> <allow receive_requested_reply="true"/> </policy> <includedir>system.d</includedir> <include ignore_missing="yes">system-local.conf</include> <include if_selinux_enabled="yes" selinux_root_relative="yes">contexts/dbus_contexts</include> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="org.freedesktop.NetworkManager"/> <allow send_destination="org.freedesktop.NetworkManager"/> <allow send_interface="org.freedesktop.NetworkManager"/> <allow own="org.freedesktop.NetworkManager.PPP"/> <allow send_destination="org.freedesktop.NetworkManager.PPP"/> <allow send_interface="org.freedesktop.NetworkManager.PPP"/> </policy> <policy user="haldaemon"> <allow send_destination="org.freedesktop.NetworkManager"/> </policy> <policy at_console="true"> <allow send_destination="org.freedesktop.NetworkManager"/> <allow send_interface="org.freedesktop.NetworkManager"/> </policy> <policy context="default"> <deny own="org.freedesktop.NetworkManager"/> <deny send_destination="org.freedesktop.NetworkManager"/> <deny send_interface="org.freedesktop.NetworkManager"/> <deny own="org.freedesktop.NetworkManager.PPP"/> <deny send_destination="org.freedesktop.NetworkManager.PPP"/> <deny send_interface="org.freedesktop.NetworkManager.PPP"/> </policy> <limit name="max_replies_per_connection">512</limit> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="avahi"> <allow own="org.freedesktop.Avahi"/> </policy> <policy user="root"> <allow own="org.freedesktop.Avahi"/> </policy> <policy context="default"> <allow send_destination="org.freedesktop.Avahi"/> <allow receive_sender="org.freedesktop.Avahi"/> <deny send_interface="org.freedesktop.Avahi.Server" send_member="SetHostName"/> </policy> <policy group="avahi"> <allow send_destination="org.freedesktop.Avahi"/> <allow receive_sender="org.freedesktop.Avahi"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="org.bluez"/> </policy> <policy at_console="true"> <allow send_destination="org.bluez.Adapter"/> <allow receive_sender="org.bluez.Adapter"/> <allow send_path="/org/bluez/Adapter"/> <allow send_destination="org.bluez.Manager"/> <allow receive_sender="org.bluez.Manager"/> <allow send_path="/org/bluez/Manager"/> <allow send_destination="org.bluez.Security"/> <allow receive_sender="org.bluez.Security"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="haldaemon"> <allow own="org.freedesktop.Hal"/> </policy> <policy user="root"> <allow own="org.freedesktop.Hal"/> </policy> <policy context="default"> <allow send_interface="org.freedesktop.Hal.Manager"/> <allow send_interface="org.freedesktop.Hal.Device"/> <allow receive_interface="org.freedesktop.Hal.Manager" receive_sender="org.freedesktop.Hal"/> <allow receive_interface="org.freedesktop.Hal.Device" receive_sender="org.freedesktop.Hal"/> <allow send_interface="org.freedesktop.Hal.Device.SystemPowerManagement"/> <allow send_interface="org.freedesktop.Hal.Device.LaptopPanel"/> <allow send_interface="org.freedesktop.Hal.Device.Volume"/> <allow send_interface="org.freedesktop.Hal.Device.Volume.Crypto"/> <allow receive_interface="org.freedesktop.Hal.Device.SystemPowerManagement" receive_sender="org.freedesktop.Hal"/> <allow receive_interface="org.freedesktop.Hal.Device.LaptopPanel" receive_sender="org.freedesktop.Hal"/> <allow receive_interface="org.freedesktop.Hal.Device.Volume" receive_sender="org.freedesktop.Hal"/> <allow receive_interface="org.freedesktop.Hal.Device.Volume.Crypto" receive_sender="org.freedesktop.Hal"/> </policy> <policy context="default"> <deny send_interface="org.freedesktop.Hal.Device.SystemPowerManagement"/> <deny send_interface="org.freedesktop.Hal.Device.VideoAdapterPM"/> <deny send_interface="org.freedesktop.Hal.Device.LaptopPanel"/> <deny send_interface="org.freedesktop.Hal.Device.Volume"/> <deny send_interface="org.freedesktop.Hal.Device.Volume.Crypto"/> </policy> <policy at_console="true"> <allow send_interface="org.freedesktop.Hal.Device.SystemPowerManagement"/> <allow send_interface="org.freedesktop.Hal.Device.LaptopPanel"/> <allow send_interface="org.freedesktop.Hal.Device.Volume"/> <allow send_interface="org.freedesktop.Hal.Device.Volume.Crypto"/> </policy> <policy user="0"> <allow send_interface="org.freedesktop.Hal.Device.SystemPowerManagement"/> <allow send_interface="org.freedesktop.Hal.Device.VideoAdapterPM"/> <allow send_interface="org.freedesktop.Hal.Device.LaptopPanel"/> <allow send_interface="org.freedesktop.Hal.Device.Volume"/> <allow send_interface="org.freedesktop.Hal.Device.Volume.Crypto"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <servicedir>/usr/share/dbus-1/services</servicedir> <policy user="named"> <allow own="com.redhat.named"/> <allow send_interface="com.redhat.named"/> <allow send_destination="com.redhat.named"/> </policy> <policy user="root"> <allow send_interface="com.redhat.named"/> <allow send_destination="com.redhat.named"/> </policy> <policy context="default"> <deny own="com.redhat.named"/> <deny send_destination="com.redhat.named"/> <deny send_interface="com.redhat.named"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="org.freedesktop.nm_avahi_autoipd"/> <allow send_interface="org.freedesktop.nm_avahi_autoipd"/> </policy> <policy context="default"> <deny own="org.freedesktop.nm_avahi_autoipd"/> <deny send_interface="org.freedesktop.nm_avahi_autoipd"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="org.freedesktop.nm_dhcp_client"/> <allow send_interface="org.freedesktop.nm_dhcp_client"/> </policy> <policy context="default"> <deny own="org.freedesktop.nm_dhcp_client"/> <deny send_interface="org.freedesktop.nm_dhcp_client"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="org.freedesktop.nm_dispatcher"/> <allow send_interface="org.freedesktop.nm_dispatcher"/> </policy> <policy context="default"> <deny own="org.freedesktop.nm_dispatcher"/> <deny send_interface="org.freedesktop.nm_dispatcher"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="org.freedesktop.NetworkManagerSystemSettings"/> <allow send_destination="org.freedesktop.NetworkManagerSystemSettings"/> <allow send_interface="org.freedesktop.NetworkManagerSettings"/> <allow send_interface="org.freedesktop.NetworkManagerSettings.Secrets"/> </policy> <policy context="default"> <deny own="org.freedesktop.NetworkManagerSystemSettings"/> <allow send_destination="org.freedesktop.NetworkManagerSystemSettings"/> <allow send_interface="org.freedesktop.NetworkManagerSettings"/> <deny send_interface="org.freedesktop.NetworkManagerSettings.Connection.Secrets"/> </policy> <limit name="max_replies_per_connection">512</limit> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="com.redhat.oddjob"/> </policy> <policy context="default"> <allow send_destination="com.redhat.oddjob" send_path="/com/redhat/oddjob" send_interface="com.redhat.oddjob" send_member="quit"/> </policy> <policy context="default"> <allow send_destination="com.redhat.oddjob" send_path="/com/redhat/oddjob" send_interface="com.redhat.oddjob" send_member="mkhomedirfor"/> </policy> <policy context="default"> <allow send_destination="com.redhat.oddjob" send_path="/com/redhat/oddjob" send_interface="com.redhat.oddjob" send_member="mkmyhomedir"/> </policy> <policy context="default"> <allow send_destination="com.redhat.oddjob" send_path="/com/redhat/oddjob" send_interface="com.redhat.oddjob" send_member="list"/> </policy> <policy context="default"> <allow send_destination="com.redhat.oddjob" send_path="/com/redhat/oddjob" send_interface="com.redhat.oddjob" send_member="reload"/> </policy> <policy context="default"> <allow send_destination="com.redhat.oddjob" send_path="/com/redhat/oddjob" send_interface="org.freedesktop.DBus.Introspectable"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="fi.epitest.hostap.WPASupplicant"/> <allow send_destination="fi.epitest.hostap.WPASupplicant"/> <allow send_interface="fi.epitest.hostap.WPASupplicant"/> </policy> <policy context="default"> <deny own="fi.epitest.hostap.WPASupplicant"/> <deny send_destination="fi.epitest.hostap.WPASupplicant"/> <deny send_interface="fi.epitest.hostap.WPASupplicant"/> </policy> </busconfig>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> <busconfig> <policy user="root"> <allow own="edu.duke.linux.yum"/> <allow send_destination="edu.duke.linux.yum"/> <allow send_interface="edu.duke.linux.yum"/> </policy> <policy at_console="true"> <allow own="edu.duke.linux.yum"/> <allow send_destination="edu.duke.linux.yum"/> <allow send_interface="edu.duke.linux.yum"/> </policy> <policy context="default"> <deny own="edu.duke.linux.yum"/> <deny send_destination="edu.duke.linux.yum"/> <deny send_interface="edu.duke.linux.yum"/> </policy> </busconfig>
Linux version 2.6.18-348.el5 (mockbuild@builder10.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-54)) #1 SMP Tue Jan 8 17:53:53 EST 2013 Command line: ro root=/dev/VolGroup00/LogVol00 BIOS-provided physical RAM map: BIOS-e820: 0000000000010000 - 000000000009fc00 (usable) BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) BIOS-e820: 0000000000100000 - 000000001fff0000 (usable) BIOS-e820: 000000001fff0000 - 0000000020000000 (ACPI data) BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved) BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved) BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved) DMI 2.5 present. DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006 ACPI: RSDP (v002 VBOX ) @ 0x00000000000e0000 ACPI: XSDT (v001 VBOX VBOXXSDT 0x00000001 ASL 0x00000061) @ 0x000000001fff0030 ACPI: FADT (v004 VBOX VBOXFACP 0x00000001 ASL 0x00000061) @ 0x000000001fff00f0 ACPI: MADT (v002 VBOX VBOXAPIC 0x00000001 ASL 0x00000061) @ 0x000000001fff0240 ACPI: SSDT (v001 VBOX VBOXCPUT 0x00000002 INTL 0x20100528) @ 0x000000001fff02a0 ACPI: DSDT (v002 VBOX VBOXBIOS 0x00000002 INTL 0x20100528) @ 0x(null) No NUMA configuration found Faking a node at 0000000000000000-000000001fff0000 Bootmem setup node 0 0000000000000000-000000001fff0000 bootmap start 19000 pages 4 Memory for crash kernel (0x0 to 0x0) notwithin permissible range disabling kdump Setting up node 0 0-1fff0 On node 0 totalpages: 127646 DMA zone: 2421 pages, LIFO batch:0 DMA32 zone: 125225 pages, LIFO batch:31 ACPI: PM-Timer IO Port: 0x4008 ACPI: Local APIC address 0xfee00000 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) Processor #0 7:10 APIC version 20 ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Setting APIC routing to physical flat Using ACPI (MADT) for SMP configuration information Nosave address range: 000000000009f000 - 00000000000a0000 Nosave address range: 00000000000a0000 - 00000000000f0000 Nosave address range: 00000000000f0000 - 0000000000100000 Allocating PCI resources starting at 30000000 (gap: 20000000:dec00000) SMP: Allowing 1 CPUs, 0 hotplug CPUs Built 1 zonelists. Total pages: 127646 Kernel command line: ro root=/dev/VolGroup00/LogVol00 Initializing CPU#0 PID hash table entries: 2048 (order: 11, 16384 bytes) Console: colour VGA+ 80x25 Dentry cache hash table entries: 65536 (order: 7, 524288 bytes) Inode-cache hash table entries: 32768 (order: 6, 262144 bytes) Checking aperture... ACPI: DMAR not present Memory: 506032k/524224k available (2627k kernel code, 17740k reserved, 1677k data, 224k init) Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.53 BogoMIPS (lpj=2394767) Security Framework v1.0.0 initialized SELinux: Initializing. SELinux: Starting in permissive mode selinux_register_security: Registering secondary module capability Capability LSM initialized as secondary Mount-cache hash table entries: 256 CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 256K CPU: L3 cache: 6144K using mwait in idle threads. CPU: Hyper-Threading is disabled MCE: Machine Check Exception Reporting is disabled. SMP alternatives: switching to UP code Freeing SMP alternatives: 32k freed ACPI: Core revision 20060707 activating NMI Watchdog ... done. Using local APIC timer interrupts. WARNING calibrate_APIC_clock: the APIC timer calibration may be wrong. Detected 62.666 MHz APIC timer. Brought up 1 CPUs CPU#0: NMI watchdog performance counter calibration - 45->65 NMI watchdog testing PASSED. time.c: Using 3.579545 MHz WALL PM GTOD PIT/TSC timer. time.c: Detected 2394.767 MHz processor. sizeof(vma)=176 bytes sizeof(page)=56 bytes sizeof(inode)=560 bytes sizeof(dentry)=216 bytes sizeof(ext3inode)=760 bytes sizeof(buffer_head)=96 bytes sizeof(skbuff)=248 bytes checking if image is initramfs... it is Freeing initrd memory: 3439k freed NET: Registered protocol family 16 ACPI: bus type pci registered PCI: Using configuration type 1 ACPI: Interpreter enabled ACPI: Using IOAPIC for interrupt routing ACPI: No dock devices found. ACPI: PCI Root Bridge [PCI0] (0000:00) pci 0000:00:01.1: reg 20: [io 0xd000-0xd00f] pci 0000:00:02.0: reg 10: [mem 0xe0000000-0xe0ffffff pref] pci 0000:00:03.0: reg 10: [mem 0xf0000000-0xf001ffff] pci 0000:00:03.0: reg 18: [io 0xd010-0xd017] pci 0000:00:04.0: reg 10: [io 0xd020-0xd03f] pci 0000:00:04.0: reg 14: [mem 0xf0400000-0xf07fffff] pci 0000:00:04.0: reg 18: [mem 0xf0800000-0xf0803fff pref] pci 0000:00:05.0: reg 10: [io 0xd100-0xd1ff] pci 0000:00:05.0: reg 14: [io 0xd200-0xd23f] PCI quirk: region 4000-403f claimed by PIIX4 ACPI PCI quirk: region 4100-410f claimed by PIIX4 SMB pci 0000:00:08.0: reg 10: [mem 0xf0820000-0xf083ffff] pci 0000:00:08.0: reg 18: [io 0xd240-0xd247] pci 0000:00:0d.0: reg 10: [io 0xd248-0xd24f] pci 0000:00:0d.0: reg 14: [io 0xd250-0xd253] pci 0000:00:0d.0: reg 18: [io 0xd258-0xd25f] pci 0000:00:0d.0: reg 1c: [io 0xd260-0xd263] pci 0000:00:0d.0: reg 20: [io 0xd270-0xd27f] pci 0000:00:0d.0: reg 24: [mem 0xf0840000-0xf0841fff] host bridge window [io 0x0000-0x0cf7] (ignored) host bridge window [io 0x0d00-0xffff] (ignored) host bridge window [mem 0x000a0000-0x000bffff] (ignored) host bridge window [mem 0x20000000-0xfdffffff] (ignored) ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11) ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11) ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11) ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11) Linux Plug and Play Support v0.97 (c) Adam Belay pnp: PnP ACPI init pnp: PnP ACPI: found 4 devices usbcore: registered new driver usbfs usbcore: registered new driver hub PCI: Using ACPI for IRQ routing PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report NetLabel: Initializing NetLabel: domain hash size = 128 NetLabel: protocols = UNLABELED CIPSOv4 NetLabel: unlabeled traffic allowed by default ACPI: DMAR not present PCI-GART: No AMD northbridge found. NET: Registered protocol family 2 IP route cache hash table entries: 4096 (order: 3, 32768 bytes) TCP established hash table entries: 16384 (order: 6, 262144 bytes) TCP bind hash table entries: 8192 (order: 5, 131072 bytes) TCP: Hash tables configured (established 16384 bind 8192) TCP reno registered audit: initializing netlink socket (disabled) type=2000 audit(1576879206.368:1): initialized Total HugeTLB memory allocated, 0 VFS: Disk quotas dquot_6.5.1 Dquot-cache hash table entries: 512 (order 0, 4096 bytes) SELinux: Registering netfilter hooks Initializing Cryptographic API alg: No test for crc32c (crc32c-generic) ksign: Installing public key data Loading keyring - Added public key 691B840A64868995 - User ID: CentOS (Kernel Module GPG key) io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered (default) Limiting direct PCI/PCI transfers. Activating ISA DMA hang workarounds. Boot video device is 0000:00:02.0 pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Real Time Clock Driver v1.12ac Non-volatile memory driver v1.2 Linux agpgart interface v0.101 (c) Dave Jones Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled brd: module loaded Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx PIIX4: IDE controller at PCI slot 0000:00:01.1 PIIX4: chipset revision 1 PIIX4: not 100% native mode: will probe irqs later ide0: BM-DMA at 0xd000-0xd007, BIOS settings: hda:pio, hdb:pio ide1: BM-DMA at 0xd008-0xd00f, BIOS settings: hdc:DMA, hdd:pio Probing IDE interface ide0... Probing IDE interface ide1... hdc: VBOX CD-ROM, ATAPI CD/DVD-ROM drive ide1 at 0x170-0x177,0x376 on irq 15 Probing IDE interface ide0... ide-floppy driver 0.99.newide usbcore: registered new driver hiddev usbcore: registered new driver usbhid drivers/usb/input/hid-core.c: v2.6:USB HID core driver PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12 serio: i8042 KBD port at 0x60,0x64 irq 1 serio: i8042 AUX port at 0x60,0x64 irq 12 mice: PS/2 mouse device common for all mice md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27 md: bitmap version 4.39 TCP bic registered Initializing IPsec netlink socket NET: Registered protocol family 1 NET: Registered protocol family 17 input: AT Translated Set 2 keyboard as /class/input/input0 ACPI: (supports S0 S1 S4 S5) Initalizing network drop monitor service Freeing unused kernel memory: 224k freed Write protecting the kernel read-only data: 532k input: ImExPS/2 Generic Explorer Mouse as /class/input/input1 ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI) USB Universal Host Controller Interface driver v3.0 SCSI subsystem initialized libata version 3.00 loaded. ahci 0000:00:0d.0: version 3.0 GSI 16 sharing vector 0xA9 and IRQ 16 ACPI: PCI Interrupt 0000:00:0d.0[A] -> GSI 21 (level, low) -> IRQ 169 ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 2 ports 3 Gbps 0x3 impl SATA mode ahci 0000:00:0d.0: flags: 64bit ncq stag only ahci 0000:00:0d.0: setting latency timer to 64 scsi0 : ahci scsi1 : ahci ata1: SATA max UDMA/133 abar m8192@0xf0840000 port 0xf0840100 irq 169 ata2: SATA max UDMA/133 abar m8192@0xf0840000 port 0xf0840180 irq 169 ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) ata1.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133 ata1.00: 16777216 sectors, multi 128: LBA48 NCQ (depth 31/32) ata1.00: configured for UDMA/133 ata2: SATA link down (SStatus 0 SControl 300) Vendor: ATA Model: VBOX HARDDISK Rev: 1.0 Type: Direct-Access ANSI SCSI revision: 05 SCSI device sda: 16777216 512-byte hdwr sectors (8590 MB) sda: Write Protect is off sda: Mode Sense: 00 3a 00 00 SCSI device sda: drive cache: write back SCSI device sda: 16777216 512-byte hdwr sectors (8590 MB) sda: Write Protect is off sda: Mode Sense: 00 3a 00 00 SCSI device sda: drive cache: write back sda: sda1 sda2 sd 0:0:0:0: Attached scsi disk sda device-mapper: uevent: version 1.0.3 device-mapper: ioctl: 4.11.6-ioctl (2011-02-18) initialised: dm-devel@redhat.com device-mapper: dm-raid45: initialized v0.2594l EXT3-fs: INFO: recovery required on readonly filesystem. EXT3-fs: write access will be enabled during recovery. kjournald starting. Commit interval 5 seconds EXT3-fs: dm-0: orphan cleanup on readonly fs ext3_orphan_cleanup: deleting unreferenced inode 1511121 ext3_orphan_cleanup: deleting unreferenced inode 1511119 ext3_orphan_cleanup: deleting unreferenced inode 1736720 ext3_orphan_cleanup: deleting unreferenced inode 1736715 ext3_orphan_cleanup: deleting unreferenced inode 1736714 ext3_orphan_cleanup: deleting unreferenced inode 1736713 ext3_orphan_cleanup: deleting unreferenced inode 1736711 EXT3-fs: dm-0: 7 orphan inodes deleted EXT3-fs: recovery complete. EXT3-fs: mounted filesystem with ordered data mode. security: 3 users, 6 roles, 2068 types, 279 bools, 1 sens, 1024 cats security: 61 classes, 83512 rules SELinux: Completing initialization. SELinux: Setting up existing superblocks. SELinux: initialized (dev dm-0, type ext3), uses xattr SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses genfs_contexts SELinux: initialized (dev devpts, type devpts), uses transition SIDs SELinux: initialized (dev eventpollfs, type eventpollfs), uses task SIDs SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs SELinux: initialized (dev futexfs, type futexfs), uses genfs_contexts SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts SELinux: initialized (dev pipefs, type pipefs), uses task SIDs SELinux: initialized (dev sockfs, type sockfs), uses task SIDs SELinux: initialized (dev cpuset, type cpuset), uses genfs_contexts SELinux: initialized (dev proc, type proc), uses genfs_contexts SELinux: initialized (dev bdev, type bdev), uses genfs_contexts SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts type=1403 audit(1576879231.168:2): policy loaded auid=4294967295 ses=4294967295 SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts Intel(R) PRO/1000 Network Driver - version 7.3.21-k4-3-NAPI Copyright (c) 1999-2006 Intel Corporation. GSI 17 sharing vector 0xB9 and IRQ 17 ACPI: PCI Interrupt 0000:00:03.0[A] -> GSI 19 (level, low) -> IRQ 185 e1000 0000:00:03.0: setting latency timer to 64 input: PC Speaker as /class/input/input2 e1000: 0000:00:03.0: e1000_probe: (PCI:33MHz:32-bit) 08:00:27:e8:7a:02 hdc: ATAPI 32X DVD-ROM drive, 128kB Cache, UDMA(33) Uniform CD-ROM driver Revision: 3.20 e1000: eth0: e1000_probe: Intel(R) PRO/1000 Network Connection GSI 18 sharing vector 0xC1 and IRQ 18 ACPI: PCI Interrupt 0000:00:08.0[A] -> GSI 16 (level, low) -> IRQ 193 e1000 0000:00:08.0: setting latency timer to 64 e1000: 0000:00:08.0: e1000_probe: (PCI:33MHz:32-bit) 08:00:27:f7:cf:17 e1000: eth1: e1000_probe: Intel(R) PRO/1000 Network Connection ACPI: PCI Interrupt 0000:00:05.0[A] -> GSI 21 (level, low) -> IRQ 169 Intel ICH 0000:00:05.0: setting latency timer to 64 sd 0:0:0:0: Attached scsi generic sg0 type 0 intel8x0_measure_ac97_clock: measured 49846 usecs intel8x0: measured clock 0 rejected intel8x0: clocking to 48000 floppy0: no floppy controllers found work still pending lp: driver loaded but no devices found ACPI: AC Adapter [AC] (on-line) ACPI: Battery Slot [BAT0] (battery present) ACPI: Power Button (FF) [PWRF] ACPI: Sleep Button (FF) [SLPF] ACPI: Mapper loaded dell-wmi: No known WMI GUID found input: Video Bus as /class/input/input3 ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) md: Autodetecting RAID arrays. md: autorun ... md: ... autorun DONE. device-mapper: multipath: version 1.0.6 loaded EXT3 FS on dm-0, internal journal kjournald starting. Commit interval 5 seconds EXT3 FS on sda1, internal journal EXT3-fs: mounted filesystem with ordered data mode. SELinux: initialized (dev sda1, type ext3), uses xattr SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs Adding 1048568k swap on /dev/VolGroup00/LogVol01. Priority:-1 extents:1 across:1048568k SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts IA-32 Microcode Update Driver: v1.14a <tigran@veritas.com> Loading iSCSI transport class v2.0-871. 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com> All bugs added by David S. Miller <davem@redhat.com> libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits. libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0. Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010) iscsi: registered transport (cxgb3i) NET: Registered protocol family 10 lo: Disabled Privacy Extensions IPv6 over IPv4 tunneling driver sit0: Disabled Privacy Extensions cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.12 (June 29, 2012) Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Jun 18, 2012) iscsi: registered transport (bnx2i) iscsi: registered transport (tcp) iscsi: registered transport (iser) iscsi: registered transport (be2iscsi) ip6_tables: (C) 2000-2006 Netfilter Core Team ip_tables: (C) 2000-2006 Netfilter Core Team Netfilter messages via NETLINK v0.30. ip_conntrack version 2.4 (2047 buckets, 16376 max) - 304 bytes per conntrack 8021q: adding VLAN 0 to HW filter on device eth0 ADDRCONF(NETDEV_UP): eth0: link is not ready e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 8021q: adding VLAN 0 to HW filter on device eth1 ADDRCONF(NETDEV_UP): eth1: link is not ready e1000: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts Bluetooth: Core ver 2.10 NET: Registered protocol family 31 Bluetooth: HCI device and connection manager initialized Bluetooth: HCI socket layer initialized Bluetooth: L2CAP ver 2.8 Bluetooth: L2CAP socket layer initialized Bluetooth: RFCOMM socket layer initialized Bluetooth: RFCOMM TTY layer initialized Bluetooth: RFCOMM ver 1.8 Bluetooth: HIDP (Human Interface Emulation) ver 1.1 eth0: no IPv6 routers present SELinux: initialized (dev autofs, type autofs), uses genfs_contexts SELinux: initialized (dev autofs, type autofs), uses genfs_contexts SELinux: initialized (dev autofs, type autofs), uses genfs_contexts eth1: no IPv6 routers present
/system/dns_sd: display_local = merged extra_domains = /system/storage: /system/storage/default_options: /system/storage/default_options/ntfs: mount_options = [umask=222] /system/storage/default_options/vfat: mount_options = [shortname=winnt,uid=] /system/storage/default_options/iso9660: mount_options = [uid=] /system/storage/default_options/udf: mount_options = [uid=] /system/proxy: socks_host = mode = none secure_host = ftp_host = socks_port = 0 secure_port = 0 ftp_port = 0 autoconfig_url = /system/http_proxy: use_http_proxy = false use_authentication = false host = authentication_user = ignore_hosts = [localhost,127.0.0.0/8] authentication_password = port = 8080 /system/smb: workgroup =
if [ "$PS1" ]; then if [ -z "$PROMPT_COMMAND" ]; then case $TERM in xterm*) if [ -e /etc/sysconfig/bash-prompt-xterm ]; then PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm else PROMPT_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"' fi ;; screen) if [ -e /etc/sysconfig/bash-prompt-screen ]; then PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen else PROMPT_COMMAND='printf "\033]0;%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"' fi ;; *) [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default ;; esac fi shopt -s checkwinsize [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ " fi if ! shopt -q login_shell ; then # We're not a login shell pathmunge () { if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi fi } if [ $UID -gt 99 ] && [ "`id -gn`" = "`id -un`" ]; then umask 002 else umask 022 fi for i in /etc/profile.d/*.sh; do if [ -r "$i" ]; then if [ "$PS1" ]; then . $i else . $i >/dev/null 2>&1 fi fi done unset i unset pathmunge fi
CentOS release 5.9 (Final) Kernel \r on an \m
MAIL_DIR /var/spool/mail PASS_MAX_DAYS 99999 PASS_MIN_DAYS 0 PASS_MIN_LEN 5 PASS_WARN_AGE 7 UID_MIN 500 UID_MAX 60000 GID_MIN 500 GID_MAX 60000 CREATE_HOME yes UMASK 077 USERGROUPS_ENAB yes MD5_CRYPT_ENAB yes ENCRYPT_METHOD MD5
pathmunge () { if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi fi } if [ -z "$EUID" -a -x /usr/bin/id ]; then EUID=`id -u` UID=`id -ru` fi if [ "$EUID" = "0" ]; then pathmunge /sbin pathmunge /usr/sbin pathmunge /usr/local/sbin fi ulimit -S -c 0 > /dev/null 2>&1 if [ -x /usr/bin/id ]; then USER="`id -un`" LOGNAME=$USER MAIL="/var/spool/mail/$USER" fi HOSTNAME=`/bin/hostname` HISTSIZE=1000 if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then INPUTRC=/etc/inputrc fi export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC if [ $UID -gt 99 ] && [ "`id -gn`" = "`id -un`" ]; then umask 002 else umask 022 fi for i in /etc/profile.d/*.sh ; do if [ -r "$i" ]; then if [ "${-#*i}" != "$-" ]; then . $i else . $i >/dev/null 2>&1 fi fi done unset i unset pathmunge
alias ll 'ls -l' alias l. 'ls -d .*' set COLORS=/etc/DIR_COLORS if ($?TERM) then if ( -e "/etc/DIR_COLORS.$TERM" ) set COLORS="/etc/DIR_COLORS.$TERM" endif if ( -f ~/.dircolors ) set COLORS=~/.dircolors if ($?TERM) then if ( -f ~/.dircolors."$TERM" ) set COLORS=~/.dircolors."$TERM" endif if ( -f ~/.dir_colors ) set COLORS=~/.dir_colors if ($?TERM) then if ( -f ~/.dir_colors."$TERM" ) set COLORS=~/.dir_colors."$TERM" endif if ( ! -e "$COLORS" ) exit eval "`dircolors -c $COLORS`" if ( "$LS_COLORS" == '' ) then exit endif set color_none=`sed -n '/^COLOR.*none/Ip' < $COLORS` if ( "$color_none" == '' ) then alias ll 'ls -l --color=tty' alias l. 'ls -d .* --color=tty' alias ls 'ls --color=tty' endif unset color_none
alias ll='ls -l' 2>/dev/null alias l.='ls -d .*' 2>/dev/null COLORS=/etc/DIR_COLORS [ -e "/etc/DIR_COLORS.$TERM" ] && COLORS="/etc/DIR_COLORS.$TERM" [ -e "$HOME/.dircolors" ] && COLORS="$HOME/.dircolors" [ -e "$HOME/.dir_colors" ] && COLORS="$HOME/.dir_colors" [ -e "$HOME/.dircolors.$TERM" ] && COLORS="$HOME/.dircolors.$TERM" [ -e "$HOME/.dir_colors.$TERM" ] && COLORS="$HOME/.dir_colors.$TERM" [ -e "$COLORS" ] || return eval "`dircolors --sh "$COLORS" 2>/dev/null`" [ -z "$LS_COLORS" ] && return if ! egrep -qi "^COLOR.*none" $COLORS >/dev/null 2>/dev/null ; then alias ll='ls -l --color=tty' 2>/dev/null alias l.='ls -d .* --color=tty' 2>/dev/null alias ls='ls --color=tty' 2>/dev/null fi
setenv G_BROKEN_FILENAMES 1
export G_BROKEN_FILENAMES=1
if ( "${path}" !~ */usr/kerberos/bin* ) then set path = ( /usr/kerberos/bin $path ) endif if ( "${path}" !~ */usr/kerberos/sbin* ) then if ( `id -u` == 0 ) then set path = ( /usr/kerberos/sbin $path ) endif endif
if ! echo ${PATH} | /bin/grep -q /usr/kerberos/bin ; then PATH=/usr/kerberos/bin:${PATH} fi if ! echo ${PATH} | /bin/grep -q /usr/kerberos/sbin ; then if [ `/usr/bin/id -u` = 0 ] ; then PATH=/usr/kerberos/sbin:${PATH} fi fi
set sourced=0 if ($?LANG) then set sourced=1 else foreach file (/etc/sysconfig/i18n $HOME/.i18n) if ( -f $file ) then eval `grep -v '^[[:blank:]]*#' $file | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|'` endif set sourced=1 end endif if ($?GDM_LANG) then set sourced=1 setenv LANG $GDM_LANG if ($?LANGUAGE) then unsetenv LANGUAGE endif if ("$GDM_LANG" == "zh_CN.GB18030") then setenv LANGUAGE "zh_CN.GB18030:zh_CN.GB2312:zh_CN" endif endif if ($sourced == 1) then if ($?LC_ALL && $?LANG) then if ($LC_ALL == $LANG) then unsetenv LC_ALL endif endif set consoletype=`/sbin/consoletype stdout` if ($?CHARSET) then switch ($CHARSET) case 8859-1: case 8859-2: case 8859-5: case 8859-8: case 8859-15: case koi*: case latin2*: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( "$consoletype" == "vt" ) then /bin/echo -n -e '\033(K' >/dev/tty endif endif endif breaksw endsw endif if ($?SYSFONTACM) then switch ($SYSFONTACM) case iso01*: case iso02*: case iso05*: case iso08*: case iso15*: case koi*: case latin2-ucw*: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( "$consoletype" == "vt" ) then /bin/echo -n -e '\033(K' > /dev/tty endif endif endif breaksw endsw endif if ($?LANG) then switch ($LANG) case *.utf8*: case *.UTF-8*: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( "$consoletype" == "vt" ) then switch ($LANG) case en_IN*: breaksw case ja*: case ko*: case si*: case zh*: case *_IN*: setenv LANG en_US.UTF-8 breaksw endsw if ( -x /bin/unicode_start ) then if { /sbin/consoletype fg } then if ( $?SYSFONT ) then if ( $?SYSFONTACM ) then unicode_start $SYSFONT $SYSFONTACM else unicode_start $SYSFONT endif endif endif endif endif endif endif breaksw case *: if ( $?TERM ) then if ( "$TERM" == "linux" ) then if ( "$consoletype" == "vt" ) then switch ($LANG) case en_IN*: breaksw case ja*: case ko*: case si*: case zh*: case *_IN*: setenv LANG en_US breaksw endsw if ( -x /bin/unicode_stop ) then if { /sbin/consoletype fg } then /bin/unicode_stop endif endif endif endif endif breaksw endsw endif unsetenv SYSFONTACM unsetenv SYSFONT endif
sourced=0 if [ -z "$sysxkbmap" -a -n "$LANG" ]; then sourced=1 else for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do [ -f $langfile ] && . $langfile && sourced=1 done fi if [ -n "$GDM_LANG" ]; then sourced=1 LANG="$GDM_LANG" unset LANGUAGE if [ "$GDM_LANG" = "zh_CN.GB18030" ]; then export LANGUAGE="zh_CN.GB18030:zh_CN.GB2312:zh_CN" fi fi if [ "$sourced" = 1 ]; then [ -n "$LANG" ] && export LANG || unset LANG [ -n "$LC_ADDRESS" ] && export LC_ADDRESS || unset LC_ADDRESS [ -n "$LC_CTYPE" ] && export LC_CTYPE || unset LC_CTYPE [ -n "$LC_COLLATE" ] && export LC_COLLATE || unset LC_COLLATE [ -n "$LC_IDENTIFICATION" ] && export LC_IDENTIFICATION || unset LC_IDENTIFICATION [ -n "$LC_MEASUREMENT" ] && export LC_MEASUREMENT || unset LC_MEASUREMENT [ -n "$LC_MESSAGES" ] && export LC_MESSAGES || unset LC_MESSAGES [ -n "$LC_MONETARY" ] && export LC_MONETARY || unset LC_MONETARY [ -n "$LC_NAME" ] && export LC_NAME || unset LC_NAME [ -n "$LC_NUMERIC" ] && export LC_NUMERIC || unset LC_NUMERIC [ -n "$LC_PAPER" ] && export LC_PAPER || unset LC_PAPER [ -n "$LC_TELEPHONE" ] && export LC_TELEPHONE || unset LC_TELEPHONE [ -n "$LC_TIME" ] && export LC_TIME || unset LC_TIME if [ -n "$LC_ALL" ]; then if [ "$LC_ALL" != "$LANG" ]; then export LC_ALL else unset LC_ALL fi else unset LC_ALL fi [ -n "$LANGUAGE" ] && export LANGUAGE || unset LANGUAGE [ -n "$LINGUAS" ] && export LINGUAS || unset LINGUAS [ -n "$_XKB_CHARSET" ] && export _XKB_CHARSET || unset _XKB_CHARSET consoletype=$CONSOLETYPE if [ -z "$consoletype" ]; then consoletype=$(/sbin/consoletype stdout) fi if [ -n "$CHARSET" ]; then case $CHARSET in 8859-1|8859-2|8859-5|8859-8|8859-15|koi*) if [ "$TERM" = "linux" -a "$consoletype" = "vt" ]; then echo -n -e '\033(K' 2>/dev/null > /proc/$$/fd/0 fi ;; esac elif [ -n "$SYSFONTACM" ]; then case $SYSFONTACM in iso01*|iso02*|iso05*|iso08*|iso15*|koi*|latin2-ucw*) if [ "$TERM" = "linux" -a "$consoletype" = "vt" ]; then echo -n -e '\033(K' 2>/dev/null > /proc/$$/fd/0 fi ;; esac fi if [ -n "$LANG" ]; then case $LANG in *.utf8*|*.UTF-8*) if [ "$TERM" = "linux" ]; then if [ "$consoletype" = "vt" ]; then case $LANG in ja*) LANG=en_US.UTF-8 ;; ko*) LANG=en_US.UTF-8 ;; si*) LANG=en_US.UTF-8 ;; zh*) LANG=en_US.UTF-8 ;; en_IN*) ;; *_IN*) LANG=en_US.UTF-8 ;; esac [ -x /bin/unicode_start ] && /sbin/consoletype fg && /bin/unicode_start $SYSFONT $SYSFONTACM fi fi ;; *) if [ "$TERM" = "linux" ]; then if [ "$consoletype" = "vt" ]; then case $LANG in ja*) LANG=en_US ;; ko*) LANG=en_US ;; si*) LANG=en_US ;; zh*) LANG=en_US ;; en_IN*) ;; *_IN*) LANG=en_US ;; esac [ -x /bin/unicode_stop ] && /sbin/consoletype fg && /bin/unicode_stop fi fi ;; esac fi unset SYSFONTACM SYSFONT fi unset sourced unset langfile
if ( -x /usr/bin/lesspipe.sh ) then setenv LESSOPEN "|/usr/bin/lesspipe.sh %s" endif
[ -x /usr/bin/lesspipe.sh ] && export LESSOPEN="|/usr/bin/lesspipe.sh %s"
if ( -x /usr/bin/id ) then if ( "`/usr/bin/id -u`" > 100 ) then alias vi vim endif endif
if [ -n "$BASH_VERSION" -o -n "$KSH_VERSION" -o -n "$ZSH_VERSION" ]; then [ -x /usr/bin/id ] || return tmpid=$(/usr/bin/id -u) [ "$tmpid" = "" ] && tmpid=0 [ $tmpid -le 100 ] && return alias vi >/dev/null 2>&1 || alias vi=vim fi
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
/bin/sh /bin/bash /sbin/nologin /bin/tcsh /bin/csh /bin/ksh
if ($uid > 99 && "`id -gn`" == "`id -un`") then umask 002 else umask 022 endif if ($?prompt) then if ($?tcsh) then set promptchars='$#' set prompt=\[$user'@%m %c]%# ' else set prompt=\[$user@`hostname -s`\]\$\ endif endif if ( $?tcsh ) then bindkey "^[[3~" delete-char endif bindkey "^R" i-search-back set echo_style = both set histdup = erase set savehist = (1024 merge) setenv MAIL "/var/spool/mail/$USER" limit coredumpsize 0 if (! $?loginsh) then if ( -d /etc/profile.d ) then set nonomatch foreach i ( /etc/profile.d/*.csh ) if ( -r $i ) then if ($?prompt) then source $i else source $i >&/dev/null endif endif end unset i nonomatch endif endif
if ($?PATH) then else if ( $uid == 0 ) then setenv PATH "/sbin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/usr/local/bin" else setenv PATH "/bin:/usr/bin:/usr/local/bin" endif endif setenv HOSTNAME `/bin/hostname` set history=1000 if ( ! -f $HOME/.inputrc ) then setenv INPUTRC /etc/inputrc endif if ( -d /etc/profile.d ) then set nonomatch foreach i ( /etc/profile.d/*.csh ) if ( -r $i ) then if ($?prompt) then source $i else source $i >& /dev/null endif endif end unset i nonomatch endif
CentOS release 5.9 (Final) Kernel \r on an \m
/etc/man.config: FHS /etc/man.config: MANPATH /usr/man /etc/man.config: MANPATH /usr/share/man /etc/man.config: MANPATH /usr/local/man /etc/man.config: MANPATH /usr/local/share/man /etc/man.config: MANPATH /usr/X11R6/man /etc/man.config: MANPATH_MAP /bin /usr/share/man /etc/man.config: MANPATH_MAP /sbin /usr/share/man /etc/man.config: MANPATH_MAP /usr/bin /usr/share/man /etc/man.config: MANPATH_MAP /usr/sbin /usr/share/man /etc/man.config: MANPATH_MAP /usr/local/bin /usr/local/share/man /etc/man.config: MANPATH_MAP /usr/local/sbin /usr/local/share/man /etc/man.config: MANPATH_MAP /usr/X11R6/bin /usr/X11R6/man /etc/man.config: MANPATH_MAP /usr/bin/X11 /usr/X11R6/man /etc/man.config: MANPATH_MAP /usr/bin/mh /usr/share/man /etc/man.config: TROFF /usr/bin/groff -Tps -mandoc /etc/man.config: NROFF /usr/bin/nroff -c --legacy NROFF_OLD_CHARSET -mandoc 2>/dev/null /etc/man.config: EQN /usr/bin/geqn -Tps /etc/man.config: NEQN /usr/bin/geqn -Tutf8 /etc/man.config: TBL /usr/bin/gtbl /etc/man.config: REFER /usr/bin/grefer /etc/man.config: PIC /usr/bin/gpic /etc/man.config: VGRIND /etc/man.config: GRAP /etc/man.config: PAGER /usr/bin/less -is /etc/man.config: BROWSER /usr/bin/less -is /etc/man.config: HTMLPAGER /bin/cat /etc/man.config: CAT /bin/cat /etc/man.config: CMP /usr/bin/cmp -s /etc/man.config: COMPRESS /usr/bin/bzip2 /etc/man.config: COMPRESS_EXT .bz2 /etc/man.config: MANSECT 1:1p:8:2:3:3p:4:5:6:7:9:0p:n:l:p:o:1x:2x:3x:4x:5x:6x:7x:8x /etc/man.config: .gz /usr/bin/gunzip -c /etc/man.config: .bz2 /usr/bin/bzip2 -c -d /etc/man.config: .z /etc/man.config: .Z /bin/zcat /etc/man.config: .F /etc/man.config: .Y
UID PID PPID C STIME TTY TIME CMD root 1 0 0 23:00 ? 00:00:00 init [3] root 2 1 0 23:00 ? 00:00:00 [migration/0] root 3 1 0 23:00 ? 00:00:00 [ksoftirqd/0] root 4 1 0 23:00 ? 00:00:00 [watchdog/0] root 5 1 0 23:00 ? 00:00:00 [events/0] root 6 1 0 23:00 ? 00:00:00 [khelper] root 11 1 0 23:00 ? 00:00:00 [kthread] root 15 11 0 23:00 ? 00:00:00 [kblockd/0] root 16 11 0 23:00 ? 00:00:00 [kacpid] root 54 11 0 23:00 ? 00:00:00 [cqueue/0] root 57 11 0 23:00 ? 00:00:00 [khubd] root 59 11 0 23:00 ? 00:00:00 [kseriod] root 129 11 0 23:00 ? 00:00:00 [khungtaskd] root 130 11 0 23:00 ? 00:00:00 [pdflush] root 131 11 0 23:00 ? 00:00:00 [pdflush] root 132 11 0 23:00 ? 00:00:00 [kswapd0] root 133 11 0 23:00 ? 00:00:00 [aio/0] root 270 11 0 23:00 ? 00:00:00 [kpsmoused] root 296 11 0 23:00 ? 00:00:00 [ata/0] root 297 11 0 23:00 ? 00:00:00 [ata_aux] root 300 11 0 23:00 ? 00:00:00 [scsi_eh_0] root 301 11 0 23:00 ? 00:00:00 [scsi_eh_1] root 306 11 0 23:00 ? 00:00:00 [kstriped] root 315 11 0 23:00 ? 00:00:00 [ksnapd] root 326 11 0 23:00 ? 00:00:00 [kjournald] root 356 11 0 23:00 ? 00:00:00 [kauditd] root 1083 11 0 23:00 ? 00:00:00 [kmpathd/0] root 1084 11 0 23:00 ? 00:00:00 [kmpath_handlerd] root 1104 11 0 23:00 ? 00:00:00 [kjournald] root 1274 11 0 23:00 ? 00:00:00 [iscsi_eh] root 1309 11 0 23:00 ? 00:00:00 [cnic_wq] root 1315 11 0 23:00 ? 00:00:00 [bnx2i_thread/0] root 1325 11 0 23:00 ? 00:00:00 [ib_addr] root 1332 11 0 23:00 ? 00:00:00 [ib_mcast] root 1333 11 0 23:00 ? 00:00:00 [ib_inform] root 1334 11 0 23:00 ? 00:00:00 [local_sa] root 1337 11 0 23:00 ? 00:00:00 [iw_cm_wq] root 1340 11 0 23:00 ? 00:00:00 [ib_cm/0] root 1343 11 0 23:00 ? 00:00:00 [rdma_cm] root 2110 11 0 23:00 ? 00:00:00 [rpciod/0] root 389 1 0 23:00 ? 00:00:00 /sbin/udevd -d root 1358 1 0 23:00 ? 00:00:00 iscsiuio root 1363 1 0 23:00 ? 00:00:00 iscsid root 1364 1 0 23:00 ? 00:00:00 iscsid root 1451 1 0 23:00 ? 00:00:00 mcstransd root 1740 1 0 23:00 ? 00:00:00 /sbin/dhclient -1 -q -lf /var/lib/dhclient/dhclient-eth0.leases -pf /var/run/dhclient-eth0.pid eth0 root 1942 1 0 23:00 ? 00:00:00 auditd root 1944 1942 0 23:00 ? 00:00:00 /sbin/audispd root 1965 1 0 23:00 ? 00:00:00 /usr/sbin/restorecond root 1978 1 0 23:00 ? 00:00:00 syslogd -m 0 root 1981 1 0 23:00 ? 00:00:00 klogd -x rpc 2076 1 0 23:00 ? 00:00:00 portmap rpcuser 2116 1 0 23:00 ? 00:00:00 rpc.statd root 2152 1 0 23:00 ? 00:00:00 rpc.idmapd root 2187 1 0 23:00 ? 00:00:00 /usr/sbin/hv_kvp_daemon dbus 2201 1 0 23:00 ? 00:00:00 dbus-daemon --system root 2215 1 0 23:00 ? 00:00:00 /usr/sbin/hcid root 2228 1 0 23:00 ? 00:00:00 /usr/sbin/sdpd root 2239 1 0 23:00 ? 00:00:00 [krfcommd] root 2284 1 0 23:00 ? 00:00:00 pcscd root 2298 1 0 23:00 ? 00:00:00 /usr/sbin/acpid 68 2312 1 0 23:00 ? 00:00:00 hald root 2313 2312 0 23:00 ? 00:00:00 hald-runner 68 2320 2313 0 23:00 ? 00:00:00 hald-addon-acpi: listening on acpid socket /var/run/acpid.socket 68 2324 2313 0 23:00 ? 00:00:00 hald-addon-keyboard: listening on /dev/input/event0 68 2333 2313 0 23:00 ? 00:00:00 hald-addon-keyboard: listening on /dev/input/event3 root 2337 2313 0 23:00 ? 00:00:01 hald-addon-storage: polling /dev/hdc root 2357 1 0 23:00 ? 00:00:00 /usr/bin/hidd --server root 2398 1 0 23:00 ? 00:00:00 automount --pid-file /var/run/autofs.pid root 2422 1 0 23:00 ? 00:00:00 /usr/sbin/sshd root 3227 2422 0 23:01 ? 00:00:00 sshd: scc [priv] scc 3229 3227 0 23:01 ? 00:00:00 sshd: scc@pts/0 scc 3230 3229 0 23:01 pts/0 00:00:00 -bash root 3258 3230 0 23:01 pts/0 00:00:00 sudo -i root 3259 3258 0 23:01 pts/0 00:00:00 -bash root 15262 3259 0 23:18 pts/0 00:00:00 /bin/sh ./get_scc root 8640 15262 0 23:20 pts/0 00:00:00 /bin/sh /optbin/scc -p scp -s fc29srv:/var/opt/scc-srv/data/transfer/cp root 8686 8640 0 23:20 pts/0 00:00:00 /bin/sh /optbin/scc-log -c -e -S -l -m 0 root 8738 8686 0 23:20 pts/0 00:00:00 /bin/sh /optbin/scc-collect -e -S root 8814 8738 0 23:20 pts/0 00:00:00 ps -Hef root 8815 8738 0 23:20 pts/0 00:00:00 cut -c1-300 root 2438 1 0 23:00 ? 00:00:00 xinetd -stayalive -pidfile /var/run/xinetd.pid root 2479 1 0 23:00 ? 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql mysql 2561 2479 0 23:00 ? 00:00:00 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-external-locking --log-error=/var/log/mysqld.log --socket=/var/lib/mysql/mysql.sock root 2589 1 0 23:00 ? 00:00:00 gpm -m /dev/input/mice -t exps2 root 2602 1 0 23:00 ? 00:00:00 crond xfs 2627 1 0 23:00 ? 00:00:00 xfs -droppriv -daemon root 2640 1 0 23:00 ? 00:00:00 anacron -s root 2652 1 0 23:00 ? 00:00:00 /usr/sbin/atd avahi 2678 1 0 23:00 ? 00:00:00 avahi-daemon: running [centos59.local] avahi 2679 2678 0 23:00 ? 00:00:00 avahi-daemon: chroot helper nagios 2869 1 0 23:00 ? 00:00:00 import_ndologsd nagios 2872 1 0 23:00 ? 00:00:00 import_perfdatarrd nagios 2874 1 0 23:00 ? 00:00:00 import_ndoconfigend nagios 2876 1 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg nagios 2878 2876 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh nagios 2879 2876 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh nagios 2880 2876 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh nagios 2881 2876 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh nagios 2882 2876 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg nagios 2885 1 0 23:00 ? 00:00:00 opsviewd nagios 2887 1 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nsca -c /usr/local/nagios/etc/nsca.cfg --single nagios 2889 1 0 23:00 ? 00:00:00 /usr/bin/perl /usr/local/nagios/bin/nrd nagios 2898 2889 0 23:00 ? 00:00:00 /usr/bin/perl /usr/local/nagios/bin/nrd nagios 2899 2889 0 23:00 ? 00:00:00 /usr/bin/perl /usr/local/nagios/bin/nrd nagios 2900 2889 0 23:00 ? 00:00:00 /usr/bin/perl /usr/local/nagios/bin/nrd nagios 2901 2889 0 23:00 ? 00:00:00 /usr/bin/perl /usr/local/nagios/bin/nrd nagios 3011 1 0 23:00 ? 00:00:00 /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d root 3161 1 0 23:00 ? 00:00:00 /usr/bin/python -tt /usr/sbin/yum-updatesd root 3163 1 0 23:00 ? 00:00:00 /usr/libexec/gam_server nagios 3189 1 0 23:01 ? 00:00:00 starman master nagios 3190 3189 0 23:01 ? 00:00:00 starman worker nagios 3191 3189 0 23:01 ? 00:00:00 starman worker nagios 3192 3189 0 23:01 ? 00:00:00 starman worker root 3208 1 0 23:01 ? 00:00:00 /usr/sbin/smartd -q never root 3211 1 0 23:01 tty1 00:00:00 /sbin/mingetty tty1 root 3212 1 0 23:01 tty2 00:00:00 /sbin/mingetty tty2 root 3213 1 0 23:01 tty3 00:00:00 /sbin/mingetty tty3 root 3214 1 0 23:01 tty4 00:00:00 /sbin/mingetty tty4 root 3215 1 0 23:01 tty5 00:00:00 /sbin/mingetty tty5 root 3216 1 0 23:01 tty6 00:00:00 /sbin/mingetty tty6 root 6681 1 0 23:20 pts/0 00:00:00 /usr/libexec/gconfd-2 4
dirs /var/cache/man dirs /var/gdm dirs /var/lock dirs /var/log dirs /var/run empty /tmp empty /var/cache/foomatic empty /var/cache/logwatch empty /var/cache/mod_ssl empty /var/cache/mod_proxy empty /var/cache/php-pear empty /var/cache/systemtap empty /var/db/nscd empty /var/lib/dav empty /var/lib/dhcp empty /var/lib/dhclient empty /var/lib/php empty /var/lib/ups empty /var/tmp empty /var/tux files /etc/adjtime files /etc/fstab files /etc/mtab files /etc/ntp.conf files /etc/resolv.conf files /etc/lvm/.cache files /var/account files /var/arpwatch files /var/cache/alchemist files /var/lib/iscsi files /var/lib/logrotate.status files /var/lib/ntp files /var/lib/xen files /var/lib/xend files /var/empty/sshd/etc/localtime files /var/lib/random-seed
console vc/1 vc/2 vc/3 vc/4 vc/5 vc/6 vc/7 vc/8 vc/9 vc/10 vc/11 tty1 tty2 tty3 tty4 tty5 tty6 tty7 tty8 tty9 tty10 tty11
USER=root PROGRAM=/usr/share/authconfig/authconfig.py
USER=root PROGRAM=/usr/share/authconfig/authconfig-tui.py
FALLBACK=true
FALLBACK=true
USER=<user> PROGRAM=/usr/sbin/kbdrate SESSION=false
USER=root PROGRAM=/usr/sbin/system-config-network SESSION=true
FALLBACK=true
FALLBACK=true
USER=root PROGRAM=/usr/sbin/system-config-services SESSION=true
FALLBACK=false PROGRAM=/usr/sbin/setup USER=root GUI=no
USER=root PROGRAM=/usr/share/system-config-httpd/system-config-httpd SESSION=true
USER=root PROGRAM=/usr/sbin/system-config-network SESSION=true
USER=root PROGRAM=/usr/sbin/system-config-network-cmd SESSION=true
USER=root PROGRAM=/usr/share/system-config-nfs/system-config-nfs.py SESSION=true
USER=root PROGRAM=/usr/sbin/system-config-printer SESSION=true FALLBACK=true
USER=root PROGRAM=/usr/share/system-config-samba/system-config-samba.py SESSION=true
USER=root PROGRAM=/usr/share/system-config-securitylevel/system-config-securitylevel.py SESSION=true
USER=root PROGRAM=/usr/sbin/system-config-services SESSION=true
console consoledevs tty[0-9][0-9]* vc/[0-9][0-9]* :[0-9]\.[0-9] :[0-9] /sbin/pam_console_apply lock logfail wait -t tty -s /sbin/pam_console_apply unlock logfail wait -r -t tty -s
<console>=tty[0-9][0-9]* vc/[0-9][0-9]* :[0-9]\.[0-9] :[0-9] <xconsole>=:[0-9]\.[0-9] :[0-9]
<floppy>=/dev/fd[0-1]* \ /dev/floppy* /mnt/floppy* <sound>=/dev/dsp* /dev/audio* /dev/midi* \ /dev/mixer* /dev/sequencer* \ /dev/sound/* /dev/beep \ /dev/snd/* /dev/adsp* <cdrom>=/dev/cdrom* /dev/cdroms/* /dev/cdwriter* /mnt/cdrom* <pilot>=/dev/pilot <jaz>=/mnt/jaz* <zip>=/mnt/pocketzip* /mnt/zip* /dev/zip* <ls120>=/dev/ls120 /mnt/ls120* <scanner>=/dev/scanner* /dev/usb/scanner* <rio500>=/dev/usb/rio500 <camera>=/mnt/camera* /dev/usb/dc2xx* /dev/usb/mdc800* <memstick>=/mnt/memstick* <flash>=/mnt/flash* /dev/flash* <diskonkey>=/mnt/diskonkey* <rem_ide>=/mnt/microdrive* <fb>=/dev/fb /dev/fb[0-9]* \ /dev/fb/* <kbd>=/dev/kbd <joystick>=/dev/js[0-9]* <v4l>=/dev/video* /dev/radio* /dev/winradio* /dev/vtx* /dev/vbi* \ /dev/video/* <gpm>=/dev/gpmctl <dri>=/dev/nvidia* /dev/3dfx* /dev/dri/card* <mainboard>=/dev/apm_bios <pmu>=/dev/pmu <bluetooth>=/dev/rfcomm* <raw1394>=/dev/raw1394 <irda>=/dev/ircomm* <dvb>=/dev/dvb/adapter*/* <console> 0660 <floppy> 0660 root.floppy <console> 0600 <sound> 0660 root.audio <console> 0600 <cdrom> 0660 root.disk <console> 0600 <pilot> 0660 root.uucp <console> 0600 <jaz> 0660 root.disk <console> 0600 <zip> 0660 root.disk <console> 0600 <ls120> 0660 root.disk <console> 0600 <scanner> 0600 root <console> 0600 <camera> 0600 root.disk <console> 0600 <memstick> 0600 root.disk <console> 0600 <flash> 0600 root.disk <console> 0600 <diskonkey> 0660 root.disk <console> 0600 <rem_ide> 0660 root.disk <console> 0600 <fb> 0600 root <console> 0600 <kbd> 0600 root <console> 0600 <joystick> 0600 root <console> 0600 <v4l> 0600 root <console> 0700 <gpm> 0700 root <console> 0600 <mainboard> 0600 root <console> 0600 <rio500> 0600 root <console> 0600 <pmu> 0600 root <console> 0600 <bluetooth> 0600 root <console> 0600 <raw1394> 0600 root <console> 0600 <irda> 0600 root <console> 0600 <dvb> 0600 root <xconsole> 0600 /dev/console 0600 root.root <console> 0600 <dri> 0600 root
#!/bin/sh -p exit 0
[global] ;debug = yes ;cached_login = yes ;krb5_auth = yes ;krb5_ccache_type = FILE ;require_membership_of =
[logging] default = FILE:/var/log/krb5libs.log kdc = FILE:/var/log/krb5kdc.log admin_server = FILE:/var/log/kadmind.log [libdefaults] default_realm = EXAMPLE.COM dns_lookup_realm = false dns_lookup_kdc = false ticket_lifetime = 24h forwardable = yes [realms] EXAMPLE.COM = { kdc = kerberos.example.com:88 admin_server = kerberos.example.com:749 default_domain = example.com } [domain_realm] .example.com = EXAMPLE.COM example.com = EXAMPLE.COM [appdefaults] pam = { debug = false ticket_lifetime = 36000 renew_lifetime = 36000 forwardable = true krb4_convert = false }
SELinux status: enabled SELinuxfs mount: /selinux Current mode: permissive Mode from config file: permissive Policy version: 21 Policy from config file: targeted
SELINUX=permissive SELINUXTYPE=targeted
/etc/services /etc/resolv.conf /etc/localtime /etc/samba/secrets.tdb /etc/mtab /var/run/utmp /var/log/faillog /var/log/tallylog /var/log/wtmp /etc/lvm/.cache ~/web ~/www ~/public_html ~/public_git ~/.mozilla/plugins/libflashplayer.so
module-store = direct
[files] /etc/passwd /etc/shadow /bin/bash /bin/login /bin/sh /sbin/agetty /sbin/init /sbin/mingetty /usr/sbin/sshd /lib/libc.so.6 /lib/ld-linux.so.2 /lib/ld.so.1 [process] /sbin/mingetty /sbin/agetty /usr/sbin/sshd
semanage {login|user|port|interface|node|fcontext} -l [-n] semanage login -{a|d|m} [-sr] login_name semanage user -{a|d|m} [-LrRP] selinux_name semanage port -{a|d|m} [-tr] [ -p protocol ] port | port_range semanage interface -{a|d|m} [-tr] interface_spec semanage node -{a|d|m} [-tr] [ -p protocol ] [-M netmask] addr semanage fcontext -{a|d|m} [-frst] file_spec Primary Options: -a, --add Add a OBJECT record NAME -d, --delete Delete a OBJECT record NAME -m, --modify Modify a OBJECT record NAME -l, --list List the OBJECTS -h, --help Display this message -n, --noheading Do not print heading when listing OBJECTS -S, --store Select and alternate SELinux store to manage Object-specific Options (see above): -f, --ftype File Type of OBJECT "" (all files) -- (regular file) -d (directory) -c (character device) -b (block device) -s (socket) -l (symbolic link) -p (named pipe) -p, --proto Port protocol (tcp or udp) or internet protocol version of node (ipv4 or ipv6) -M, --mask Netmask -P, --prefix Prefix for home directory labeling -L, --level Default SELinux Level (MLS/MCS Systems only) -R, --roles SELinux Roles (ex: "sysadm_r staff_r") -s, --seuser SELinux User Name -t, --type SELinux Type for the object -r, --range MLS/MCS Security Range (MLS/MCS Systems only) boolean not defined
SELinux Interface Context
Login Name SELinux User MLS/MCS Range __default__ user_u s0 root root SystemLow-SystemHigh
semanage {login|user|port|interface|node|fcontext} -l [-n] semanage login -{a|d|m} [-sr] login_name semanage user -{a|d|m} [-LrRP] selinux_name semanage port -{a|d|m} [-tr] [ -p protocol ] port | port_range semanage interface -{a|d|m} [-tr] interface_spec semanage node -{a|d|m} [-tr] [ -p protocol ] [-M netmask] addr semanage fcontext -{a|d|m} [-frst] file_spec Primary Options: -a, --add Add a OBJECT record NAME -d, --delete Delete a OBJECT record NAME -m, --modify Modify a OBJECT record NAME -l, --list List the OBJECTS -h, --help Display this message -n, --noheading Do not print heading when listing OBJECTS -S, --store Select and alternate SELinux store to manage Object-specific Options (see above): -f, --ftype File Type of OBJECT "" (all files) -- (regular file) -d (directory) -c (character device) -b (block device) -s (socket) -l (symbolic link) -p (named pipe) -p, --proto Port protocol (tcp or udp) or internet protocol version of node (ipv4 or ipv6) -M, --mask Netmask -P, --prefix Prefix for home directory labeling -L, --level Default SELinux Level (MLS/MCS Systems only) -R, --roles SELinux Roles (ex: "sysadm_r staff_r") -s, --seuser SELinux User Name -t, --type SELinux Type for the object -r, --range MLS/MCS Security Range (MLS/MCS Systems only) module not defined
IP Address Netmask Protocol Context 0.0.0.0 255.255.255.255 ipv4 system_u:object_r:inaddr_any_node_t:s0 127.0.0.1 255.255.255.255 ipv4 system_u:object_r:lo_node_t:s0 :: ffff:ffff:ffff:ffff:ffff:ffff:: ipv6 system_u:object_r:compat_ipv4_node_t:s0 :: ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff ipv6 system_u:object_r:unspec_node_t:s0 ::ffff:0.0.0.0 ffff:ffff:ffff:ffff:ffff:ffff:: ipv6 system_u:object_r:mapped_ipv4_node_t:s0 fe80:: ffff:ffff:ffff:ffff:: ipv6 system_u:object_r:link_local_node_t:s0 fec0:: ffc0:: ipv6 system_u:object_r:site_local_node_t:s0 ff00:: ff00:: ipv6 system_u:object_r:multicast_node_t:s0
SELinux Port Type Proto Port Number afs_bos_port_t udp 7007 afs_fs_port_t tcp 2040 afs_fs_port_t udp 7000, 7005 afs_ka_port_t udp 7004 afs_pt_port_t udp 7002 afs_vl_port_t udp 7003 agentx_port_t tcp 705 agentx_port_t udp 705 amanda_port_t tcp 10080, 10081, 10082, 10083 amanda_port_t udp 10080, 10081 amavisd_recv_port_t tcp 10024 amavisd_send_port_t tcp 10025 apcupsd_port_t tcp 3551 apcupsd_port_t udp 3551 apertus_ldp_port_t tcp 539 apertus_ldp_port_t udp 539 asterisk_port_t tcp 1720 asterisk_port_t udp 2427, 2727, 4569 audit_port_t tcp 60 auth_port_t tcp 113 bgp_port_t tcp 179, 2605 bgp_port_t udp 179, 2605 clamd_port_t tcp 3310 clockspeed_port_t udp 4041 cluster_port_t tcp 5149, 40040, 50006, 50007, 50008 cluster_port_t udp 5149, 50006, 50007, 50008 cma_port_t tcp 1050 cma_port_t udp 1050 comsat_port_t udp 512 cvs_port_t tcp 2401 cvs_port_t udp 2401 dbskkd_port_t tcp 1178 dcc_port_t udp 6276, 6277 dhcpc_port_t udp 68 dhcpd_port_t tcp 647, 847, 7911 dhcpd_port_t udp 67, 647, 847 dict_port_t tcp 2628 distccd_port_t tcp 3632 dns_port_t tcp 53 dns_port_t udp 53 epmap_port_t tcp 135 epmap_port_t udp 135 fingerd_port_t tcp 79 ftp_data_port_t tcp 20 ftp_port_t tcp 21 gatekeeper_port_t tcp 1721, 7000 gatekeeper_port_t udp 1718, 1719 giftd_port_t tcp 1213 gopher_port_t tcp 70 gopher_port_t udp 70 hi_reserved_port_t tcp 600-1023 hi_reserved_port_t udp 600-1023 howl_port_t tcp 5335 howl_port_t udp 5353 hplip_port_t tcp 1782, 2207, 2208, 8290, 50000, 50002, 8292, 9100, 9101, 9102, 9220, 9221, 9222, 9280, 9281, 9282, 9290, 9291, 9292 http_cache_port_t tcp 3128, 8080, 8118, 11211, 10001-10010 http_cache_port_t udp 3130, 11211 http_port_t tcp 80, 443, 488, 8008, 8009, 8443 i18n_input_port_t tcp 9010 imaze_port_t tcp 5323 imaze_port_t udp 5323 inetd_child_port_t tcp 1, 7, 9, 13, 19, 37, 512, 543, 544, 891, 892, 2105, 5666 inetd_child_port_t udp 1, 7, 9, 13, 19, 37, 891, 892 innd_port_t tcp 119 ipp_port_t tcp 631 ipp_port_t udp 631 ipsecnat_port_t tcp 4500 ipsecnat_port_t udp 4500 ircd_port_t tcp 6667 isakmp_port_t udp 500 iscsi_port_t tcp 3260 isns_port_t tcp 3205 isns_port_t udp 3205 jabber_client_port_t tcp 5222, 5223 jabber_interserver_port_t tcp 5269 kerberos_admin_port_t tcp 464, 749 kerberos_admin_port_t udp 464 kerberos_master_port_t tcp 4444 kerberos_master_port_t udp 4444 kerberos_port_t tcp 88, 750 kerberos_port_t udp 88, 750 kprop_port_t tcp 754 ktalkd_port_t udp 517, 518 ldap_port_t tcp 389, 636 ldap_port_t udp 389, 636 lmtp_port_t tcp 24 lmtp_port_t udp 24 mail_port_t tcp 2000, 3905 monopd_port_t tcp 1234 movaz_ssc_port_t tcp 5252 mssql_port_t tcp 1433, 1434 mssql_port_t udp 1433, 1434 mysqld_port_t tcp 1186, 3306 nessus_port_t tcp 1241 netsupport_port_t tcp 5404, 5405 netsupport_port_t udp 5404, 5405 nmbd_port_t udp 137, 138, 139 ntp_port_t udp 123 ocsp_port_t tcp 9080 openvpn_port_t tcp 1194, 9997 openvpn_port_t udp 1194 pegasus_http_port_t tcp 5988 pegasus_https_port_t tcp 5989 pgpkeyserver_port_t tcp 11371 pgpkeyserver_port_t udp 11371 piranha_port_t tcp 3636 pki_ca_port_t tcp 9180, 9701, 9443, 9444, 9445 pki_kra_port_t tcp 10180, 10701, 10443, 10444, 10445 pki_ocsp_port_t tcp 11180, 11701, 11443, 11444, 11445 pki_ra_port_t tcp 12888, 12889 pki_tks_port_t tcp 13180, 13701, 13443, 13444, 13445 pki_tps_port_t tcp 7888, 7889 pop_port_t tcp 106, 109, 110, 143, 220, 993, 995, 1109 portmap_port_t tcp 111 portmap_port_t udp 111 postgresql_port_t tcp 5432 postgrey_port_t tcp 60000 prelude_port_t tcp 4690 prelude_port_t udp 4690 printer_port_t tcp 515 ptal_port_t tcp 5703 pxe_port_t udp 4011 pyzor_port_t udp 24441 radacct_port_t udp 1646, 1813 radius_port_t udp 1645, 1812 razor_port_t tcp 2703 ricci_modcluster_port_t tcp 16851 ricci_modcluster_port_t udp 16851 ricci_port_t tcp 11111 ricci_port_t udp 11111 rlogind_port_t tcp 513 rndc_port_t tcp 953 router_port_t tcp 521 router_port_t udp 520, 521 rsh_port_t tcp 514 rsync_port_t tcp 873 rsync_port_t udp 873 sip_port_t tcp 5060, 5061 sip_port_t udp 5060, 5061 smbd_port_t tcp 137-139, 445 smtp_port_t tcp 25, 465, 587 snmp_port_t tcp 199, 1161 snmp_port_t udp 161, 162 soundd_port_t tcp 8000, 9433, 16001 spamd_port_t tcp 783 squid_port_t tcp 3401, 4827 squid_port_t udp 3401, 4827 ssh_port_t tcp 22 swat_port_t tcp 901 syslogd_port_t tcp 6514 syslogd_port_t udp 514, 6514 telnetd_port_t tcp 23 tftp_port_t udp 69 tomcat_port_t tcp 1701 tor_port_t tcp 6969, 9001, 9030, 9050, 9051 traceroute_port_t udp 64000, 64001, 64002, 64003, 64004, 64005, 64006, 64007, 64008, 64009, 64010 transproxy_port_t tcp 8081 uucpd_port_t tcp 540 virt_migration_port_t tcp 49152, 49153-49216 virt_port_t tcp 16509, 16514 virt_port_t udp 16509, 16514 vnc_port_t tcp 5900 wccp_port_t udp 2048 xen_port_t tcp 8002 xfs_port_t tcp 7100 xserver_port_t tcp 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020 zarafa_port_t tcp 236, 237 zebra_port_t tcp 2600, 2601, 2602, 2603, 2604, 2606 zebra_port_t udp 2600, 2601, 2602, 2603, 2604, 2606 zope_port_t tcp 8021
Labeling MLS/ MLS/ SELinux User Prefix MCS Level MCS Range SELinux Roles root user s0 SystemLow-SystemHigh system_r sysadm_r user_r system_u user s0 SystemLow-SystemHigh system_r user_u user s0 SystemLow-SystemHigh system_r sysadm_r user_r
semanage {login|user|port|interface|node|fcontext} -l [-n] semanage login -{a|d|m} [-sr] login_name semanage user -{a|d|m} [-LrRP] selinux_name semanage port -{a|d|m} [-tr] [ -p protocol ] port | port_range semanage interface -{a|d|m} [-tr] interface_spec semanage node -{a|d|m} [-tr] [ -p protocol ] [-M netmask] addr semanage fcontext -{a|d|m} [-frst] file_spec Primary Options: -a, --add Add a OBJECT record NAME -d, --delete Delete a OBJECT record NAME -m, --modify Modify a OBJECT record NAME -l, --list List the OBJECTS -h, --help Display this message -n, --noheading Do not print heading when listing OBJECTS -S, --store Select and alternate SELinux store to manage Object-specific Options (see above): -f, --ftype File Type of OBJECT "" (all files) -- (regular file) -d (directory) -c (character device) -b (block device) -s (socket) -l (symbolic link) -p (named pipe) -p, --proto Port protocol (tcp or udp) or internet protocol version of node (ipv4 or ipv6) -M, --mask Netmask -P, --prefix Prefix for home directory labeling -L, --level Default SELinux Level (MLS/MCS Systems only) -R, --roles SELinux Roles (ex: "sysadm_r staff_r") -s, --seuser SELinux User Name -t, --type SELinux Type for the object -r, --range MLS/MCS Security Range (MLS/MCS Systems only) -o not defined
include ld.so.conf.d/*.conf
/usr/lib64/mysql
(hwcap: 0x0008000000000000)
ld-linux-x86-64.so.2 -> ld-2.5.so libBrokenLocale.so.1 -> libBrokenLocale-2.5.so libSegFault.so -> libSegFault.so libacl.so.1 -> libacl.so.1.1.0 libanl.so.1 -> libanl-2.5.so libasound.so.2 -> libasound.so.2.0.0 libattr.so.1 -> libattr.so.1.1.0 libaudit.so.0 -> libaudit.so.0.0.0 libauparse.so.0 -> libauparse.so.0.0.0 libblkid.so.1 -> libblkid.so.1.0 libc.so.6 -> libc-2.5.so libcap.so.1 -> libcap.so.1.10 libcidn.so.1 -> libcidn-2.5.so libcom_err.so.2 -> libcom_err.so.2.1 libcrypt.so.1 -> libcrypt-2.5.so libcrypto.so.6 -> libcrypto.so.0.9.8e libdb-4.3.so -> libdb-4.3.so libdbus-1.so.3 -> libdbus-1.so.3.4.0 libdevmapper-event-lvm2.so.2.02 -> libdevmapper-event-lvm2.so.2.02 libdevmapper-event.so.1.02 -> libdevmapper-event.so.1.02 libdevmapper.so.1.02 -> libdevmapper.so.1.02 libdl.so.2 -> libdl-2.5.so libdmraid-events-isw.so.1.0.0.rc13-17 -> libdmraid-events-isw.so.1.0.0.rc13-17 libdmraid.so.1.0.0.rc13-17 -> libdmraid.so.1.0.0.rc13-17 libe2p.so.2 -> libe2p.so.2.3 libexpat.so.0 -> libexpat.so.0.5.0 libext2fs.so.2 -> libext2fs.so.2.4 libgcc_s.so.1 -> libgcc_s-4.1.2-20080825.so.1 libglib-2.0.so.0 -> libglib-2.0.so.0.1200.3 libgmodule-2.0.so.0 -> libgmodule-2.0.so.0.1200.3 libgobject-2.0.so.0 -> libgobject-2.0.so.0.1200.3 libgthread-2.0.so.0 -> libgthread-2.0.so.0.1200.3 libiw.so.28 -> libiw.so.28 libkeyutils.so.1 -> libkeyutils-1.2.so liblvm2cmd.so.2.02 -> liblvm2cmd.so.2.02 libm.so.6 -> libm-2.5.so libnsl.so.1 -> libnsl-2.5.so libnss_compat.so.2 -> libnss_compat-2.5.so libnss_db.so.2 -> libnss_db-2.2.so libnss_dns.so.2 -> libnss_dns-2.5.so libnss_files.so.2 -> libnss_files-2.5.so libnss_hesiod.so.2 -> libnss_hesiod-2.5.so libnss_ldap.so.2 -> libnss_ldap-2.5.so libnss_nis.so.2 -> libnss_nis-2.5.so libnss_nisplus.so.2 -> libnss_nisplus-2.5.so libnss_winbind.so.2 -> libnss_winbind.so.2 libnss_wins.so.2 -> libnss_wins.so.2 libpam.so.0 -> libpam.so.0.81.5 libpam_misc.so.0 -> libpam_misc.so.0.81.2 libpamc.so.0 -> libpamc.so.0.81.0 libpcre.so.0 -> libpcre.so.0.0.1 libproc-3.2.7.so -> libproc-3.2.7.so libpthread.so.0 -> libpthread-2.5.so libresolv.so.2 -> libresolv-2.5.so librt.so.1 -> librt-2.5.so libselinux.so.1 -> libselinux.so.1 libsemanage.so.1 -> libsemanage.so.1 libsepol.so.1 -> libsepol.so.1 libss.so.2 -> libss.so.2.0 libssl.so.6 -> libssl.so.0.9.8e libtermcap.so.2 -> libtermcap.so.2.0.8 libthread_db.so.1 -> libthread_db-1.0.so libutil.so.1 -> libutil-2.5.so libuuid.so.1 -> libuuid.so.1.2 libvolume_id.so.0 -> libvolume_id.so.0.66.0 libwrap.so.0 -> libwrap.so.0.7.6 libz.so.1 -> libz.so.1.2.3
ld-linux.so.2 -> ld-2.5.so libBrokenLocale.so.1 -> libBrokenLocale-2.5.so libSegFault.so -> libSegFault.so libanl.so.1 -> libanl-2.5.so libaudit.so.0 -> libaudit.so.0.0.0 libauparse.so.0 -> libauparse.so.0.0.0 libblkid.so.1 -> libblkid.so.1.0 libc.so.6 -> libc-2.5.so libcap.so.1 -> libcap.so.1.10 libcidn.so.1 -> libcidn-2.5.so libcom_err.so.2 -> libcom_err.so.2.1 libcrypt.so.1 -> libcrypt-2.5.so libcrypto.so.6 -> libcrypto.so.0.9.8e libdb-4.3.so -> libdb-4.3.so libdbus-1.so.3 -> libdbus-1.so.3.4.0 libdevmapper-event.so.1.02 -> libdevmapper-event.so.1.02 libdevmapper.so.1.02 -> libdevmapper.so.1.02 libdl.so.2 -> libdl-2.5.so libe2p.so.2 -> libe2p.so.2.3 libexpat.so.0 -> libexpat.so.0.5.0 libext2fs.so.2 -> libext2fs.so.2.4 libgcc_s.so.1 -> libgcc_s-4.1.2-20080825.so.1 libglib-2.0.so.0 -> libglib-2.0.so.0.1200.3 libgmodule-2.0.so.0 -> libgmodule-2.0.so.0.1200.3 libgobject-2.0.so.0 -> libgobject-2.0.so.0.1200.3 libgthread-2.0.so.0 -> libgthread-2.0.so.0.1200.3 libiw.so.28 -> libiw.so.28 libkeyutils.so.1 -> libkeyutils-1.2.so libm.so.6 -> libm-2.5.so libnsl.so.1 -> libnsl-2.5.so libnss_compat.so.2 -> libnss_compat-2.5.so libnss_db.so.2 -> libnss_db-2.2.so libnss_dns.so.2 -> libnss_dns-2.5.so libnss_files.so.2 -> libnss_files-2.5.so libnss_hesiod.so.2 -> libnss_hesiod-2.5.so libnss_ldap.so.2 -> libnss_ldap-2.5.so libnss_nis.so.2 -> libnss_nis-2.5.so libnss_nisplus.so.2 -> libnss_nisplus-2.5.so libpam.so.0 -> libpam.so.0.81.5 libpam_misc.so.0 -> libpam_misc.so.0.81.2 libpamc.so.0 -> libpamc.so.0.81.0 libpthread.so.0 -> libpthread-2.5.so libresolv.so.2 -> libresolv-2.5.so librt.so.1 -> librt-2.5.so libselinux.so.1 -> libselinux.so.1 libsepol.so.1 -> libsepol.so.1 libss.so.2 -> libss.so.2.0 libssl.so.6 -> libssl.so.0.9.8e libtermcap.so.2 -> libtermcap.so.2.0.8 libthread_db.so.1 -> libthread_db-1.0.so libutil.so.1 -> libutil-2.5.so libuuid.so.1 -> libuuid.so.1.2 libvolume_id.so.0 -> libvolume_id.so.0.66.0 libwrap.so.0 -> libwrap.so.0.7.6 libz.so.1 -> libz.so.1.2.3
libmysqlclient.so.15 -> libmysqlclient.so.15.0.0 libmysqlclient_r.so.15 -> libmysqlclient_r.so.15.0.0
(hwcap: 0x0000000004000000)
(hwcap: 0x8000000000000000)
libFS.so.6 -> libFS.so.6.0.0 libICE.so.6 -> libICE.so.6.3.0 libIDL-2.so.0 -> libIDL-2.so.0.0.0 libIPMIlanserv.so.0 -> libIPMIlanserv.so.0.0.1 libORBit-2.so.0 -> libORBit-2.so.0.1.0 libORBit-imodule-2.so.0 -> libORBit-imodule-2.so.0.0.0 libORBitCosNaming-2.so.0 -> libORBitCosNaming-2.so.0.1.0 libOpenIPMI.so.0 -> libOpenIPMI.so.0.0.5 libOpenIPMIcmdlang.so.0 -> libOpenIPMIcmdlang.so.0.0.5 libOpenIPMIglib.so.0 -> libOpenIPMIglib.so.0.0.1 libOpenIPMIposix.so.0 -> libOpenIPMIposix.so.0.0.1 libOpenIPMIpthread.so.0 -> libOpenIPMIpthread.so.0.0.1 libOpenIPMItcl.so.0 -> libOpenIPMItcl.so.0.0.1 libOpenIPMIui.so.1 -> libOpenIPMIui.so.1.0.1 libOpenIPMIutils.so.0 -> libOpenIPMIutils.so.0.0.1 libSM.so.6 -> libSM.so.6.0.0 libX11.so.6 -> libX11.so.6.2.0 libXRes.so.1 -> libXRes.so.1.0.0 libXau.so.6 -> libXau.so.6.0.0 libXaw.so.6 -> libXaw6.so.6.0.1 libXaw.so.7 -> libXaw7.so.7.0.0 libXaw3d.so.7 -> libXaw3d.so.7.0 libXcursor.so.1 -> libXcursor.so.1.0.2 libXdmcp.so.6 -> libXdmcp.so.6.0.0 libXext.so.6 -> libXext.so.6.4.0 libXfixes.so.3 -> libXfixes.so.3.1.0 libXfont.so.1 -> libXfont.so.1.4.1 libXft.so.2 -> libXft.so.2.1.2 libXi.so.6 -> libXi.so.6.0.0 libXinerama.so.1 -> libXinerama.so.1.0.0 libXmu.so.6 -> libXmu.so.6.2.0 libXmuu.so.1 -> libXmuu.so.1.0.0 libXpm.so.4 -> libXpm.so.4.11.0 libXrandr.so.2 -> libXrandr.so.2.0.0 libXrender.so.1 -> libXrender.so.1.3.0 libXt.so.6 -> libXt.so.6.0.0 libaio.so.1 -> libaio.so.1.0.1 libaio.so.1.0.0 -> libaio.so.1.0.0 libalchemist.so.0 -> libalchemist.so.0.0.0 libapol.so.3 -> libapol.so.3 libapr-1.so.0 -> libapr-1.so.0.2.7 libaprutil-1.so.0 -> libaprutil-1.so.0.2.7 libart_lgpl_2.so.2 -> libart_lgpl_2.so.2.3.17 libaspell.so.15 -> libaspell.so.15.1.3 libatk-1.0.so.0 -> libatk-1.0.so.0.1212.0 libaudiofile.so.0 -> libaudiofile.so.0.0.2 libavahi-client.so.3 -> libavahi-client.so.3.2.1 libavahi-common.so.3 -> libavahi-common.so.3.4.3 libavahi-core.so.4 -> libavahi-core.so.4.0.5 libavahi-glib.so.1 -> libavahi-glib.so.1.0.1 libbdevid.so.5.1.19.6 -> libbdevid.so.5.1.19.6 libbfd-2.17.50.0.6-20.el5_8.3.so -> libbfd-2.17.50.0.6-20.el5_8.3.so libbind.so.4 -> libbind.so.4.1.2 libbind9.so.0 -> libbind9.so.0.0.11 libbluetooth.so.2 -> libbluetooth.so.2.4.1 libbonobo-2.so.0 -> libbonobo-2.so.0.0.0 libbonobo-activation.so.4 -> libbonobo-activation.so.4.0.0 libbonoboui-2.so.0 -> libbonoboui-2.so.0.0.0 libbz2.so.1 -> libbz2.so.1.0.3 libcairo.so.2 -> libcairo.so.2.9.2 libcapi20.so.3 -> libcapi20.so.3.0.4 libcdt.so.4 -> libcdt.so.4.0.0 libcgraph.so.4 -> libcgraph.so.4.0.0 libckyapplet.so.1 -> libckyapplet.so.1.0.0 libcrack.so.2 -> libcrack.so.2.8.0 libcroco-0.6.so.3 -> libcroco-0.6.so.3.0.1 libcryptsetup.so.0 -> libcryptsetup.so.0.0.0 libcups.so.2 -> libcups.so.2 libcupsimage.so.2 -> libcupsimage.so.2 libcurl.so.3 -> libcurl.so.3.0.0 libdaemon.so.0 -> libdaemon.so.0.2.4 libdb_cxx-4.3.so -> libdb_cxx-4.3.so libdbi.so.0 -> libdbi.so.0.0.5 libdbus-glib-1.so.2 -> libdbus-glib-1.so.2.1.0 libdes425.so.3 -> libdes425.so.3.0 libdistcache.so.1 -> libdistcache.so.1.0.1 libdistcacheserver.so.1 -> libdistcacheserver.so.1.0.1 libdns.so.26 -> libdns.so.26.0.2 libecpg.so.5 -> libecpg.so.5.1 libecpg_compat.so.2 -> libecpg_compat.so.2.1 libelf.so.1 -> libelf-0.137.so libesd.so.0 -> libesd.so.0.2.36 libesddsp.so.0 -> libesddsp.so.0.2.36 libevent-1.4.so.2 -> libevent-1.4.so.2.1.3 libevent_core-1.4.so.2 -> libevent_core-1.4.so.2.1.3 libevent_extra-1.4.so.2 -> libevent_extra-1.4.so.2.1.3 libexslt.so.0 -> libexslt.so.0.8.13 libfam.so.0 -> libfam.so.0.0.0 libfipscheck.so.1 -> libfipscheck.so.1.1.0 libfontconfig.so.1 -> libfontconfig.so.1.1.0 libfontenc.so.1 -> libfontenc.so.1.0.0 libform.so.5 -> libform.so.5.5 libformw.so.5 -> libformw.so.5.5 libfreebl3.so -> libfreebl3.so libfreetype.so.6 -> libfreetype.so.6.3.10 libgamin-1.so.0 -> libgamin-1.so.0.1.7 libgconf-2.so.4 -> libgconf-2.so.4.1.0 libgcrypt.so.11 -> libgcrypt.so.11.5.2 libgd.so.2 -> libgd.so.2.0.0 libgdbm.so.2 -> libgdbm.so.2.0.0 libgdk-x11-2.0.so.0 -> libgdk-x11-2.0.so.0.1000.4 libgdk_pixbuf-2.0.so.0 -> libgdk_pixbuf-2.0.so.0.1000.4 libgdk_pixbuf_xlib-2.0.so.0 -> libgdk_pixbuf_xlib-2.0.so.0.1000.4 libgettextlib-0.17.so -> libgettextlib-0.17.so libgettextsrc-0.17.so -> libgettextsrc-0.17.so libgif.so.4 -> libgif.so.4.1.3 libglade-2.0.so.0 -> libglade-2.0.so.0.0.7 libgmp.so.3 -> libgmp.so.3.3.3 libgmpxx.so.3 -> libgmpxx.so.3.0.5 libgnome-2.so.0 -> libgnome-2.so.0.1600.0 libgnome-keyring.so.0 -> libgnome-keyring.so.0.0.1 libgnomecanvas-2.so.0 -> libgnomecanvas-2.so.0.1400.0 libgnomeui-2.so.0 -> libgnomeui-2.so.0.1600.0 libgnomevfs-2.so.0 -> libgnomevfs-2.so.0.1600.2 libgnutls-extra.so.13 -> libgnutls-extra.so.13.0.6 libgnutls-openssl.so.13 -> libgnutls-openssl.so.13.0.6 libgnutls.so.13 -> libgnutls.so.13.0.6 libgomp.so.1 -> libgomp.so.1.0.0 libgpg-error.so.0 -> libgpg-error.so.0.3.0 libgpm.so.1 -> libgpm.so.1.19.0 libgraph.so.4 -> libgraph.so.4.0.0 libgs.so.8 -> libgs.so.8.70 libgsf-1.so.114 -> libgsf-1.so.114.0.1 libgsf-gnome-1.so.114 -> libgsf-gnome-1.so.114.0.1 libgssapi.so.2 -> libgssapi.so.2.0.0 libgssapi_krb5.so.2 -> libgssapi_krb5.so.2.2 libgssrpc.so.4 -> libgssrpc.so.4.0 libgtk-x11-2.0.so.0 -> libgtk-x11-2.0.so.0.1000.4 libgvc.so.5 -> libgvc.so.5.0.0 libhal-storage.so.1 -> libhal-storage.so.1.0.0 libhal.so.1 -> libhal.so.1.0.0 libhesiod.so.0 -> libhesiod.so.0.0.0 libhistory.so.5 -> libhistory.so.5.1 libhugetlbfs.so -> libhugetlbfs.so libidn.so.11 -> libidn.so.11.5.19 libijs-0.35.so -> libijs.so libisc.so.15 -> libisc.so.15.0.2 libisccc.so.0 -> libisccc.so.0.2.3 libisccfg.so.1 -> libisccfg.so.1.0.10 libiscsi.so.0 -> libiscsi.so.0 libjpeg.so.62 -> libjpeg.so.62.0.0 libk5crypto.so.3 -> libk5crypto.so.3.1 libkadm5clnt.so.5 -> libkadm5clnt.so.5.1 libkadm5srv.so.5 -> libkadm5srv.so.5.1 libkdb5.so.4 -> libkdb5.so.4.0 libkrb4.so.2 -> libkrb4.so.2.0 libkrb5.so.3 -> libkrb5.so.3.3 libkrb5support.so.0 -> libkrb5support.so.0.1 liblber-2.3.so.0 -> liblber-2.3.so.0.2.31 libldap-2.3.so.0 -> libldap-2.3.so.0.2.31 libldap60.so -> libldap60.so libldap_r-2.3.so.0 -> libldap_r-2.3.so.0.2.31 libldif60.so -> libldif60.so liblftp-jobs.so.0 -> liblftp-jobs.so.0.0.0 liblftp-tasks.so.0 -> liblftp-tasks.so.0.0.0 liblockdev.so.1 -> liblockdev.so.1.0.1 libltdl.so.3 -> libltdl.so.3.1.4 liblwres.so.9 -> liblwres.so.9.2.0 libmagic.so.1 -> libmagic.so.1.0.0 libmcrypt.so.4 -> libmcrypt.so.4.4.8 libmenu.so.5 -> libmenu.so.5.5 libmenuw.so.5 -> libmenuw.so.5.5 libmp.so.3 -> libmp.so.3.1.7 libnal.so.1 -> libnal.so.1.0.1 libncurses.so.5 -> libncurses.so.5.5 libncursesw.so.5 -> libncursesw.so.5.5 libneon.so.25 -> libneon.so.25.0.5 libnetsnmp.so.10 -> libnetsnmp.so.10.0.3 libnetsnmpagent.so.10 -> libnetsnmpagent.so.10.0.3 libnetsnmphelpers.so.10 -> libnetsnmphelpers.so.10.0.3 libnetsnmpmibs.so.10 -> libnetsnmpmibs.so.10.0.3 libnetsnmptrapd.so.10 -> libnetsnmptrapd.so.10.0.3 libnewt.so.0.52 -> libnewt.so.0.52.1 libnfsidmap.so.0 -> libnfsidmap.so.0.2.0 libnfsidmap_nsswitch.so.0 -> libnfsidmap_nsswitch.so.0.0.0 libnfsidmap_static.so.0 -> libnfsidmap_static.so.0.0.0 libnfsidmap_umich_ldap.so.0 -> libnfsidmap_umich_ldap.so.0.0.0 libnm-util.so.1 -> libnm-util.so.1.0.0 libnm_glib.so.0 -> libnm_glib.so.0.1.0 libnm_glib_vpn.so.0 -> libnm_glib_vpn.so.0.0.0 libnotify.so.1 -> libnotify.so.1.1.0 libnspr4.so -> libnspr4.so libnss3.so -> libnss3.so libnssckbi.so -> libnssckbi.so libnssutil3.so -> libnssutil3.so libnuma.so.1 -> libnuma.so.1 liboddjob.so.0 -> liboddjob.so.0.0.0 libopcodes-2.17.50.0.6-20.el5_8.3.so -> libopcodes-2.17.50.0.6-20.el5_8.3.so libpanel.so.5 -> libpanel.so.5.5 libpanelw.so.5 -> libpanelw.so.5.5 libpango-1.0.so.0 -> libpango-1.0.so.0.1400.9 libpangocairo-1.0.so.0 -> libpangocairo-1.0.so.0.1400.9 libpangoft2-1.0.so.0 -> libpangoft2-1.0.so.0.1400.9 libpangox-1.0.so.0 -> libpangox-1.0.so.0.1400.9 libpangoxft-1.0.so.0 -> libpangoxft-1.0.so.0.1400.9 libparted-1.8.so.0 -> libparted-1.8.so.0.0.1 libpathplan.so.4 -> libpathplan.so.4.0.0 libpcap.so.0.9.4 -> libpcap.so.0.9.4 libpcrecpp.so.0 -> libpcrecpp.so.0.0.0 libpcreposix.so.0 -> libpcreposix.so.0.0.0 libpcsclite.so.1 -> libpcsclite.so.1.0.0 libpgtypes.so.2 -> libpgtypes.so.2.1 libplc4.so -> libplc4.so libplds4.so -> libplds4.so libpng.so.3 -> libpng.so.3.10.0 libpng12.so.0 -> libpng12.so.0.10.0 libpoldiff.so.1 -> libpoldiff.so.1 libpopt.so.0 -> libpopt.so.0.0.0 libpq.so.4 -> libpq.so.4.1 libprldap60.so -> libprldap60.so libpspell.so.15 -> libpspell.so.15.1.3 libpython2.4.so.1.0 -> libpython2.4.so.1.0 libqpol.so.1 -> libqpol.so.1 libreadline.so.5 -> libreadline.so.5.1 librpcsecgss.so.2 -> librpcsecgss.so.2.0.1 librpm-4.4.so -> librpm-4.4.so librpmbuild-4.4.so -> librpmbuild-4.4.so librpmdb-4.4.so -> librpmdb-4.4.so librpmio-4.4.so -> librpmio-4.4.so librrd.so.4 -> librrd.so.4.2.0 librrd_th.so.4 -> librrd_th.so.4.2.0 librsvg-2.so.2 -> librsvg-2.so.2.16.1 libruby.so.1.8 -> libruby.so.1.8.5 libsasl2.so.2 -> libsasl2.so.2.0.22 libsefs.so.3 -> libsefs.so.3 libsensors.so.3 -> libsensors.so.3.1.6 libslang.so.2 -> libslang.so.2.0.6 libsmbclient.so.0 -> libsmbclient.so.0 libsmime3.so -> libsmime3.so libsnmp.so.10 -> libsnmp.so.10.0.3 libsoftokn3.so -> libsoftokn3.so libsqlite3.so.0 -> libsqlite3.so.0.8.6 libssl3.so -> libssl3.so libssldap60.so -> libssldap60.so libstartup-notification-1.so.0 -> libstartup-notification-1.so.0.0.0 libstdc++.so.6 -> libstdc++.so.6.0.8 libstunnel.so -> libstunnel.so libsvrcore.so.0 -> libsvrcore.so.0.0.0 libsysfs.so.2 -> libsysfs.so.2.0.1 libtcl8.4.so -> libtcl8.4.threads.so libtiff.so.3 -> libtiff.so.3.8.2 libtiffxx.so.3 -> libtiffxx.so.3.8.2 libtk8.4.so -> libtk8.4.so libungif.so.4 -> libungif.so.4.1.3 libuniconf.so.4.2 -> libuniconf.so.4.2 libusb-0.1.so.4 -> libusb-0.1.so.4.4.4 libusbpp-0.1.so.4 -> libusbpp-0.1.so.4.4.4 libuser.so.1 -> libuser.so.1.1.6 libutempter.so.0 -> libutempter.so.1.1.4 libwnck-1.so.18 -> libwnck-1.so.18.2.3 libwvbase.so.4.2 -> libwvbase.so.4.2 libwvstreams.so.4.2 -> libwvstreams.so.4.2 libwvtelephony.so.4.2 -> libwvtelephony.so.4.2 libwvutils.so.4.2 -> libwvutils.so.4.2 libxml2.so.2 -> libxml2.so.2.6.26 libxslt.so.1 -> libxslt.so.1.1.17 libz.so.1 -> libz.so.1.2.3
libaio.so.1 -> libaio.so.1.0.1 libaio.so.1.0.0 -> libaio.so.1.0.0 libaspell.so.15 -> libaspell.so.15.1.3 libbdevid.so.5.1.19.6 -> libbdevid.so.5.1.19.6 libckyapplet.so.1 -> libckyapplet.so.1.0.0 libcrack.so.2 -> libcrack.so.2.8.0 libcryptsetup.so.0 -> libcryptsetup.so.0.0.0 libdaemon.so.0 -> libdaemon.so.0.2.4 libdb_cxx-4.3.so -> libdb_cxx-4.3.so libdbus-glib-1.so.2 -> libdbus-glib-1.so.2.1.0 libdes425.so.3 -> libdes425.so.3.0 libdistcache.so.1 -> libdistcache.so.1.0.1 libdistcacheserver.so.1 -> libdistcacheserver.so.1.0.1 libform.so.5 -> libform.so.5.5 libformw.so.5 -> libformw.so.5.5 libfreebl3.so -> libfreebl3.so libgcrypt.so.11 -> libgcrypt.so.11.5.2 libgdbm.so.2 -> libgdbm.so.2.0.0 libgpg-error.so.0 -> libgpg-error.so.0.3.0 libgpm.so.1 -> libgpm.so.1.19.0 libgssapi_krb5.so.2 -> libgssapi_krb5.so.2.2 libgssrpc.so.4 -> libgssrpc.so.4.0 libhal-storage.so.1 -> libhal-storage.so.1.0.0 libhal.so.1 -> libhal.so.1.0.0 libhistory.so.5 -> libhistory.so.5.1 libhugetlbfs.so -> libhugetlbfs.so libk5crypto.so.3 -> libk5crypto.so.3.1 libkadm5clnt.so.5 -> libkadm5clnt.so.5.1 libkadm5srv.so.5 -> libkadm5srv.so.5.1 libkdb5.so.4 -> libkdb5.so.4.0 libkrb4.so.2 -> libkrb4.so.2.0 libkrb5.so.3 -> libkrb5.so.3.3 libkrb5support.so.0 -> libkrb5support.so.0.1 liblber-2.3.so.0 -> liblber-2.3.so.0.2.31 libldap-2.3.so.0 -> libldap-2.3.so.0.2.31 libldap_r-2.3.so.0 -> libldap_r-2.3.so.0.2.31 libmenu.so.5 -> libmenu.so.5.5 libmenuw.so.5 -> libmenuw.so.5.5 libnal.so.1 -> libnal.so.1.0.1 libncurses.so.5 -> libncurses.so.5.5 libncursesw.so.5 -> libncursesw.so.5.5 libnm-util.so.1 -> libnm-util.so.1.0.0 libnm_glib.so.0 -> libnm_glib.so.0.1.0 libnm_glib_vpn.so.0 -> libnm_glib_vpn.so.0.0.0 libnspr4.so -> libnspr4.so libnss3.so -> libnss3.so libnssckbi.so -> libnssckbi.so libnssutil3.so -> libnssutil3.so libnuma.so.1 -> libnuma.so.1 libpanel.so.5 -> libpanel.so.5.5 libpanelw.so.5 -> libpanelw.so.5.5 libparted-1.8.so.0 -> libparted-1.8.so.0.0.1 libplc4.so -> libplc4.so libplds4.so -> libplds4.so libpspell.so.15 -> libpspell.so.15.1.3 libreadline.so.5 -> libreadline.so.5.1 libsasl2.so.2 -> libsasl2.so.2.0.22 libsmime3.so -> libsmime3.so libsoftokn3.so -> libsoftokn3.so libssl3.so -> libssl3.so libstdc++.so.6 -> libstdc++.so.6.0.8 libsvrcore.so.0 -> libsvrcore.so.0.0.0 libusb-0.1.so.4 -> libusb-0.1.so.4.4.4 libusbpp-0.1.so.4 -> libusbpp-0.1.so.4.4.4 libutempter.so.0 -> libutempter.so.1.1.4 libz.so.1 -> libz.so.1.2.3
-c /etc/prelink.conf.d/*.conf -b *.la -b *.png -b *.py -b *.pl -b *.pm -b *.sh -b *.xml -b *.xslt -b *.a -b *.js -b /lib/modules -b /usr/lib/locale -b /usr/X11R6/lib{,64}/X11/xfig -b /usr/lib{,64}/libfreebl3.so -b /usr/lib{,64}/libsoftokn3.so -l /bin -l /usr/bin -l /sbin -l /usr/sbin -l /usr/X11R6/bin -l /usr/kerberos/bin -l /usr/games -l /usr/libexec -l /var/ftp/bin -l /lib{,64} -l /usr/lib{,64} -l /usr/X11R6/lib{,64} -l /usr/kerberos/lib{,64} -l /usr/X11R6/LessTif -l /var/ftp/lib{,64}
Installed auxprop mechanisms are: sasldb List of auxprop plugins follows Plugin "sasldb" , API version: 4 supports store: yes
Installed SASL (client side) mechanisms are: ANONYMOUS LOGIN PLAIN EXTERNAL List of client plugins follows Plugin "anonymous" [loaded], API version: 4 SASL mechanism: ANONYMOUS, best SSF: 0 security flags: NO_PLAINTEXT features: WANT_CLIENT_FIRST Plugin "login" [loaded], API version: 4 SASL mechanism: LOGIN, best SSF: 0 security flags: NO_ANONYMOUS features: SERVER_FIRST Plugin "plain" [loaded], API version: 4 SASL mechanism: PLAIN, best SSF: 0 security flags: NO_ANONYMOUS features: WANT_CLIENT_FIRST|PROXY_AUTHENTICATION Plugin "EXTERNAL" [loaded], API version: 4 SASL mechanism: EXTERNAL, best SSF: 0 security flags: NO_ANONYMOUS|NO_PLAINTEXT|NO_DICTIONARY features: WANT_CLIENT_FIRST|PROXY_AUTHENTICATION
Installed SASL (server side) mechanisms are: ANONYMOUS LOGIN PLAIN EXTERNAL List of server plugins follows Plugin "anonymous" [loaded], API version: 4 SASL mechanism: ANONYMOUS, best SSF: 0, supports setpass: no security flags: NO_PLAINTEXT features: WANT_CLIENT_FIRST Plugin "login" [loaded], API version: 4 SASL mechanism: LOGIN, best SSF: 0, supports setpass: no security flags: NO_ANONYMOUS features: Plugin "plain" [loaded], API version: 4 SASL mechanism: PLAIN, best SSF: 0, supports setpass: no security flags: NO_ANONYMOUS features: WANT_CLIENT_FIRST|PROXY_AUTHENTICATION
/usr/sbin/netconfig|Network configuration
/usr/share/authconfig/authconfig-tui.py|Authentication configuration
/usr/bin/system-config-display|X configuration
/usr/bin/system-config-keyboard --text|Keyboard configuration
/usr/sbin/Xconfigurator|X configuration
/usr/sbin/authconfig|Authentication configuration
/usr/sbin/kbdconfig|Keyboard configuration
/usr/sbin/lokkit|Firewall configuration
/usr/sbin/mouseconfig|Mouse configuration
/usr/sbin/ntsysv|System services
/usr/sbin/printconf-tui|Printer configuration
/usr/sbin/sndconfig|Sound card configuration
/usr/sbin/system-config-network-tui|Network configuration
/usr/sbin/system-config-printer-tui|Printer configuration
/usr/sbin/timeconfig|Timezone configuration
POSIX_VERSION: POSIX2_VERSION: 200112 XOPEN_VERSION:
glibc 2.5
Filename Type Size Priority /dev/mapper/VolGroup00-LogVol01 partition 1048568 -1
net.ipv4.ip_forward = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.accept_source_route = 0 kernel.sysrq = 0 kernel.core_uses_pid = 1 net.ipv4.tcp_syncookies = 1 kernel.msgmnb = 65536 kernel.msgmax = 65536 kernel.shmmax = 68719476736 kernel.shmall = 4294967296
vm.block_dump = 0 vm.dirty_background_bytes = 0 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_writeback_centisecs = 500 vm.drop_caches = 0 vm.flush_mmap_pages = 1 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 vm.max_map_count = 65536 vm.max_reclaims_in_progress = 0 vm.max_writeback_pages = 1024 vm.min_free_kbytes = 2858 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 4096 vm.nr_hugepages = 0 vm.nr_pdflush_threads = 2 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 3 vm.pagecache = 100 vm.panic_on_oom = 0 vm.percpu_pagelist_fraction = 0 vm.swap_token_timeout = 300 0 vm.swappiness = 60 vm.topdown_allocate_fast = 0 vm.vfs_cache_pressure = 100 vm.vm_devzero_optimized = 1 vm.zone_reclaim_interval = 30 vm.zone_reclaim_mode = 0
Section "ServerLayout" Identifier "Default Layout" Screen 0 "Screen0" 0 0 InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "Device" Identifier "Videocard0" Driver "vesa" EndSection Section "Screen" Identifier "Screen0" Device "Videocard0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection
CREATE_MAIL_SPOOL=yes EXPIRE= GROUP=100 HOME=/home INACTIVE=-1 SHELL=/bin/bash SKEL=/etc/skel
[import] login_defs = /etc/login.defs default_useradd = /etc/default/useradd [defaults] crypt_style = md5 modules = files shadow create_modules = files shadow [userdefaults] LU_USERNAME = %n LU_GIDNUMBER = %u [groupdefaults] LU_GROUPNAME = %n [files] [shadow] [ldap] [krb5] [sasl]
/usr/bin/clear
if [ -f ~/.bashrc ]; then . ~/.bashrc fi PATH=$PATH:$HOME/bin export PATH
if [ -f /etc/bashrc ]; then . /etc/bashrc fi
;; .emacs ;;; uncomment this line to disable loading of "default.el" at startup ;; (setq inhibit-default-init t) ;; turn on font-lock mode (when (fboundp 'global-font-lock-mode) (global-font-lock-mode t)) ;; enable visual feedback on selections ;(setq transient-mark-mode t) ;; default to better frame titles (setq frame-title-format (concat "%b - emacs@" (system-name))) ;; default to unified diffs (setq diff-switches "-u") ;; always end a file with a newline ;(setq require-final-newline 'query)
root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt mail:x:8:12:mail:/var/spool/mail:/sbin/nologin news:x:9:13:news:/etc/news: uucp:x:10:14:uucp:/var/spool/uucp:/sbin/nologin operator:x:11:0:operator:/root:/sbin/nologin games:x:12:100:games:/usr/games:/sbin/nologin gopher:x:13:30:gopher:/var/gopher:/sbin/nologin ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin nobody:x:99:99:Nobody:/:/sbin/nologin nscd:x:28:28:NSCD Daemon:/:/sbin/nologin distcache:x:94:94:Distcache:/:/sbin/nologin vcsa:x:69:69:virtual console memory owner:/dev:/sbin/nologin pcap:x:77:77::/var/arpwatch:/sbin/nologin dbus:x:81:81:System message bus:/:/sbin/nologin apache:x:48:48:Apache:/var/www:/sbin/nologin rpc:x:32:32:Portmapper RPC user:/:/sbin/nologin avahi:x:70:70:Avahi daemon:/:/sbin/nologin mailnull:x:47:47::/var/spool/mqueue:/sbin/nologin smmsp:x:51:51::/var/spool/mqueue:/sbin/nologin named:x:25:25:Named:/var/named:/sbin/nologin sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin webalizer:x:67:67:Webalizer:/var/www/usage:/sbin/nologin dovecot:x:97:97:dovecot:/usr/libexec/dovecot:/sbin/nologin squid:x:23:23::/var/spool/squid:/sbin/nologin xfs:x:43:43:X Font Server:/etc/X11/fs:/sbin/nologin haldaemon:x:68:68:HAL daemon:/:/sbin/nologin avahi-autoipd:x:100:101:avahi-autoipd:/var/lib/avahi-autoipd:/sbin/nologin rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin scc:x:500:500::/home/scc:/bin/bash mysql:x:27:27:MySQL Server:/var/lib/mysql:/bin/bash rrdcached:x:101:102:rrdcached:/var/rrdtool/rrdcached:/sbin/nologin nagios:x:102:103:nagios:/var/log/nagios:/bin/bash opsview:x:103:104:opsview:/opt/opsview/home:/bin/bash
root:ERASED:15966:0:99999:7::: bin:*:15966:0:99999:7::: daemon:*:15966:0:99999:7::: adm:*:15966:0:99999:7::: lp:*:15966:0:99999:7::: sync:*:15966:0:99999:7::: shutdown:*:15966:0:99999:7::: halt:*:15966:0:99999:7::: mail:*:15966:0:99999:7::: news:*:15966:0:99999:7::: uucp:*:15966:0:99999:7::: operator:*:15966:0:99999:7::: games:*:15966:0:99999:7::: gopher:*:15966:0:99999:7::: ftp:*:15966:0:99999:7::: nobody:*:15966:0:99999:7::: nscd:LOCKED:15966:0:99999:7::: distcache:LOCKED:15966:0:99999:7::: vcsa:LOCKED:15966:0:99999:7::: pcap:LOCKED:15966:0:99999:7::: dbus:LOCKED:15966:0:99999:7::: apache:LOCKED:15966:0:99999:7::: rpc:LOCKED:15966:0:99999:7::: avahi:LOCKED:15966:0:99999:7::: mailnull:LOCKED:15966:0:99999:7::: smmsp:LOCKED:15966:0:99999:7::: named:LOCKED:15966:0:99999:7::: sshd:LOCKED:15966:0:99999:7::: webalizer:LOCKED:15966:0:99999:7::: dovecot:LOCKED:15966:0:99999:7::: squid:LOCKED:15966:0:99999:7::: xfs:LOCKED:15966:0:99999:7::: haldaemon:LOCKED:15966:0:99999:7::: avahi-autoipd:LOCKED:15966:0:99999:7::: rpcuser:LOCKED:15966:0:99999:7::: nfsnobody:LOCKED:15966:0:99999:7::: scc:ERASED:15966:0:99999:7::: mysql:LOCKED:16200:::::: rrdcached:LOCKED:16200:::::: nagios:LOCKED:16200:::::: opsview:LOCKED:16200::::::
adm:4:root,adm,daemon apache:48: audio:63: avahi-autoipd:101: avahi:70: bin:1:root,bin,daemon daemon:2:root,bin,daemon dbus:81: dip:40: disk:6:root distcache:94: dovecot:97: floppy:19: ftp:50: games:20: gopher:30: haldaemon:68: kmem:9: lock:54: lp:7:daemon,lp mail:12:mail mailnull:47: man:15: mem:8: mysql:27: nagcmd:105:nagios,apache nagios:103: named:25: news:13:news nobody:99: nscd:28: opsview:104: pcap:77: root:0:root rpc:32: rpcuser:29: rrdcached:102: slocate:21: smmsp:51: squid:23: sshd:74: sys:3:root,bin,adm tty:5: users:100: utempter:35: utmp:22: uucp:14:uucp vcsa:69: webalizer:67: wheel:10:root xfs:43: nfsnobody:65534: scc:500:
ssh known hosts: 192.168.178.137 ssh-rsa ssh known hosts: 192.168.0.19 ssh-rsa ssh known hosts: centos64,192.168.56.10 ssh-rsa ssh known hosts: fc27srv,192.168.56.39 ssh-rsa ssh known hosts: fc29srv,192.168.56.45 ssh-rsa
authorized_keys: ssh-rsa rsa-key-20130912_scc
root rpc scc
pwck: no changes user adm: directory /var/adm does not exist user avahi-autoipd: directory /var/lib/avahi-autoipd does not exist user gopher: directory /var/gopher does not exist user pcap: directory /var/arpwatch does not exist user uucp: directory /var/spool/uucp does not exist
-rw------- root root /boot/grub/./grub.conf -rw-r--r-- root root /boot/grub/device.map -rw------- root root /boot/grub/grub.conf -rw-r--r-- root root /etc/default/nss -rw------- root root /etc/default/useradd -rw-r--r-- root root /etc/inittab -rwxr-xr-x root root /etc/rc.d/rc.local -rwxr-xr-x root root /etc/rc.d/rc.sysinit -rw-r--r-- root root /etc/readahead.d/default.early -rw-r--r-- root root /etc/readahead.d/default.later -rw-r--r-- root root /etc/sysconfig/atd -rw-r----- root root /etc/sysconfig/auditd -rw-r--r-- root root /etc/sysconfig/authconfig -rw-r--r-- root root /etc/sysconfig/autofs -rw-r--r-- root root /etc/sysconfig/bluetooth -rw-r--r-- root root /etc/sysconfig/cbq/avpkt -rw-r--r-- root root /etc/sysconfig/cbq/cbq-0000.example -rw-r--r-- root root /etc/sysconfig/clock -rw-r--r-- root root /etc/sysconfig/conman -rw-r--r-- root root /etc/sysconfig/cpuspeed -rw-r--r-- root root /etc/sysconfig/crond -rw-r--r-- root root /etc/sysconfig/desktop -rw-r--r-- root root /etc/sysconfig/dovecot -rw-r--r-- root root /etc/sysconfig/dund -rw-r--r-- root root /etc/sysconfig/firstboot -rw-r--r-- root root /etc/sysconfig/grub -rw-r--r-- root root /etc/sysconfig/hidd -rw-r--r-- root root /etc/sysconfig/httpd -rw-r--r-- root root /etc/sysconfig/hwconf -rw-r--r-- root root /etc/sysconfig/i18n -rw-r--r-- root root /etc/sysconfig/init -rw------- root root /etc/sysconfig/ip6tables -rw------- root root /etc/sysconfig/ip6tables-config -rw------- root root /etc/sysconfig/iptables -rw-r--r-- root root /etc/sysconfig/iptables-config -rw-r--r-- root root /etc/sysconfig/irda -rw-r--r-- root root /etc/sysconfig/irqbalance -rw-r--r-- root root /etc/sysconfig/kernel -rw-r--r-- root root /etc/sysconfig/keyboard -rw-r--r-- root root /etc/sysconfig/krb524 -rw-r--r-- root root /etc/sysconfig/kudzu -rw-r--r-- root root /etc/sysconfig/lm_sensors -rwxr-xr-x root root /etc/sysconfig/mkinitrd/multipath -rwxr-xr-x root root /etc/sysconfig/modules/udev-stw.modules -rw-r----- root named /etc/sysconfig/named -rw-r--r-- root root /etc/sysconfig/netconsole -rw-r--r-- root root /etc/sysconfig/network -rw-r--r-- root root /etc/sysconfig/nfs -rw-r--r-- root root /etc/sysconfig/pand -rw-r--r-- root root /etc/sysconfig/pm-action -rw-r--r-- root root /etc/sysconfig/prelink -rw-r--r-- root root /etc/sysconfig/raid-check -rw-r--r-- root root /etc/sysconfig/rawdevices -rw-r--r-- root root /etc/sysconfig/readonly-root -rw-r--r-- root root /etc/sysconfig/rrdcached -rw-r--r-- root root /etc/sysconfig/run-parts -rw-r--r-- root root /etc/sysconfig/samba -rw-r--r-- root root /etc/sysconfig/saslauthd -rw-r--r-- root root /etc/sysconfig/sendmail -rw-r--r-- root root /etc/sysconfig/smartmontools -rwxr-xr-x root root /etc/sysconfig/snmpd.options -rwxr-xr-x root root /etc/sysconfig/snmptrapd.options -rw-r--r-- root root /etc/sysconfig/spamassassin -rw-r--r-- root root /etc/sysconfig/squid -rw-r--r-- root root /etc/sysconfig/syslog -rw-r--r-- root root /etc/sysconfig/system-config-securitylevel -rw-r--r-- root root /etc/sysconfig/tux -rw-r--r-- root root /etc/sysconfig/udev-stw -rw-r--r-- root root /etc/sysconfig/wpa_supplicant -rw-r--r-- root root /etc/sysconfig/xinetd -r--r--r-- root root /proc/cmdline
-rw-r--r-- root root /etc/iscsi/initiatorname.iscsi -rw------- root root /etc/iscsi/iscsid.conf -rwxr-xr-x root root /etc/mcelog.conf -rw-r--r-- root root /etc/multipath.conf -rw-r--r-- root root /etc/sysconfig/hwconf -rw-r--r-- root root /etc/udev/rules.d/05-udev-early.rules -rw-r--r-- root root /etc/udev/rules.d/40-multipath.rules -rw-r--r-- root root /etc/udev/rules.d/50-udev.rules -rw-r--r-- root root /etc/udev/rules.d/51-hotplug.rules -rw-r--r-- root root /etc/udev/rules.d/60-net.rules -rw-r--r-- root root /etc/udev/rules.d/60-pcmcia.rules -rw-r--r-- root root /etc/udev/rules.d/60-raw.rules -rw-r--r-- root root /etc/udev/rules.d/85-pcscd_ccid.rules -rw-r--r-- root root /etc/udev/rules.d/90-dm.rules -rw-r--r-- root root /etc/udev/rules.d/90-hal.rules -rw-r--r-- root root /etc/udev/rules.d/95-pam-console.rules -rw-r--r-- root root /etc/udev/rules.d/bluetooth.rules -rw-r--r-- root root /etc/udev/udev.conf -r--r--r-- root root /proc/devices -r--r--r-- root root /proc/dma -r--r--r-- root root /proc/ide/drivers -r--r--r-- root root /proc/ide/hdc/driver -r--r--r-- root root /proc/ide/hdc/model -r--r--r-- root root /proc/ioports -r--r--r-- root root /proc/scsi/scsi -r--r--r-- root root /proc/tty/driver/serial
-rw-r--r-- root root /etc/depmod.d/depmod.conf.dist -rw-r--r-- root root /etc/modprobe.conf -rw-r--r-- root root /etc/modprobe.d/anaconda.conf -rw-r--r-- root root /etc/modprobe.d/blacklist-compat -rw-r--r-- root root /etc/modprobe.d/blacklist-firewire -rw-r--r-- root root /etc/modprobe.d/blacklist.conf -rw-r--r-- root root /etc/modprobe.d/modprobe.conf.dist -rw-r--r-- root root /lib/modules/2.6.18-348.el5/modules.dep
-rw-r--r-- root root /etc/avahi/avahi-daemon.conf -rw-r--r-- root root /etc/avahi/hosts -rw-r--r-- root root /etc/conman.conf -rw-r--r-- root root /etc/dnsmasq.conf -rw-r--r-- root root /etc/host.conf -rw-r--r-- root root /etc/hosts -rw-r--r-- root root /etc/idmapd.conf -rw-r--r-- root root /etc/iproute2/ematch_map -rw-r--r-- root root /etc/iproute2/rt_dsfield -rw-r--r-- root root /etc/iproute2/rt_protos -rw-r--r-- root root /etc/iproute2/rt_realms -rw-r--r-- root root /etc/iproute2/rt_scopes -rw-r--r-- root root /etc/iproute2/rt_tables -rw-r--r-- root root /etc/lftp.conf -rw-r--r-- root root /etc/nscd.conf -rw-r--r-- root root /etc/nsswitch.conf -rw------- root root /etc/ppp/chap-secrets -rw-r--r-- root root /etc/ppp/ioptions -rw-r--r-- root root /etc/ppp/options -rw------- root root /etc/ppp/pap-secrets -rw-r--r-- root root /etc/protocols -rw-r--r-- root root /etc/rpc -rw-r--r-- root root /etc/services -rw-r--r-- root root /etc/sysconfig/network-scripts/ifcfg-eth0 -rw-r--r-- root root /etc/sysconfig/network-scripts/ifcfg-eth1 -rw-r--r-- root root /etc/sysconfig/network-scripts/ifcfg-lo -rw------- root root /etc/vsftpd/ftpusers -rw------- root root /etc/vsftpd/user_list -rw------- root root /etc/vsftpd/vsftpd.conf -rw-r--r-- root root /etc/wgetrc -rw-r--r-- root root /etc/wvdial.conf -rw-r--r-- root root /etc/xinetd.conf -rw-r--r-- root root /etc/xinetd.d/chargen-dgram -rw-r--r-- root root /etc/xinetd.d/chargen-stream -rw-r--r-- root root /etc/xinetd.d/daytime-dgram -rw-r--r-- root root /etc/xinetd.d/daytime-stream -rw-r--r-- root root /etc/xinetd.d/discard-dgram -rw-r--r-- root root /etc/xinetd.d/discard-stream -rw-r--r-- root root /etc/xinetd.d/echo-dgram -rw-r--r-- root root /etc/xinetd.d/echo-stream -rw-r--r-- root root /etc/xinetd.d/eklogin -rw-r--r-- root root /etc/xinetd.d/ekrb5-telnet -rw-r--r-- root root /etc/xinetd.d/gssftp -rw-r--r-- root root /etc/xinetd.d/klogin -rw-r--r-- root root /etc/xinetd.d/krb5-telnet -rw-r--r-- root root /etc/xinetd.d/kshell -rw-r--r-- root root /etc/xinetd.d/rmcp -rw-r--r-- root root /etc/xinetd.d/rsync -rw-r--r-- root root /etc/xinetd.d/tcpmux-server -rw-r--r-- root root /etc/xinetd.d/time-dgram -rw-r--r-- root root /etc/xinetd.d/time-stream -rw-r--r-- root root /etc/yp.conf
-rw-r--r-- root root /etc/aliases lrwxrwxrwx root root /etc/alternatives/mta-pam -> /etc/pam.d/smtp.sendmail -rw-r--r-- root root /etc/anacrontab -rw-r--r-- root root /etc/cron.d/mrtg -rw------- root root /etc/cron.d/sa-update -rwxr-xr-x root root /etc/cron.daily/00webalizer -rwxr-xr-x root root /etc/cron.daily/0anacron -rwxr-xr-x root root /etc/cron.daily/certwatch -rwxr-xr-x root root /etc/cron.daily/inn-cron-expire -rwxr-xr-x root root /etc/cron.daily/logrotate -rwxr-xr-x root root /etc/cron.daily/makewhatis.cron -rwxr-xr-x root root /etc/cron.daily/mlocate.cron -rwxr-xr-x root root /etc/cron.daily/prelink -rwxr-xr-x root root /etc/cron.daily/rpm -rwxr-xr-x root root /etc/cron.daily/tmpwatch -rw-r--r-- root root /etc/cron.deny -rwxr-xr-x root root /etc/cron.hourly/inn-cron-nntpsend -rwxr-xr-x root root /etc/cron.hourly/inn-cron-rnews -rwxr-xr-x root root /etc/cron.hourly/mcelog.cron -rwxr-xr-x root root /etc/cron.monthly/0anacron -rwxr-xr-x root root /etc/cron.weekly/0anacron -rwxr-xr-x root root /etc/cron.weekly/99-raid-check -rwxr-xr-x root root /etc/cron.weekly/makewhatis.cron -rw-r--r-- root root /etc/crontab -rw-r----- root apache /etc/httpd/conf.d/02_auth_tkt.conf -rw-r--r-- root root /etc/httpd/conf.d/manual.conf -rw-r--r-- root root /etc/httpd/conf.d/mrtg.conf -rw-r--r-- root root /etc/httpd/conf.d/opsview.conf -rw-r--r-- root root /etc/httpd/conf.d/perl.conf -rw-r--r-- root root /etc/httpd/conf.d/php.conf -rw-r--r-- root root /etc/httpd/conf.d/proxy_ajp.conf -rw-r--r-- root root /etc/httpd/conf.d/python.conf -rw-r--r-- root root /etc/httpd/conf.d/scc.conf -rw-r--r-- root root /etc/httpd/conf.d/squid.conf -rw-r--r-- root root /etc/httpd/conf.d/ssl.conf -rw-r--r-- root root /etc/httpd/conf.d/webalizer.conf -rw-r--r-- root root /etc/httpd/conf.d/welcome.conf -rw-r--r-- root root /etc/httpd/conf/httpd.conf -rw-r--r-- root root /etc/initlog.conf -rw-r--r-- root root /etc/ldap.conf -rw-r--r-- root root /etc/logrotate.conf -rw-r--r-- root root /etc/logrotate.d/acpid -rw-r--r-- root root /etc/logrotate.d/conman -rw-r--r-- root root /etc/logrotate.d/httpd -rw-r--r-- root root /etc/logrotate.d/iscsiuiolog -rw-r--r-- root root /etc/logrotate.d/mgetty -rw-r--r-- root root /etc/logrotate.d/mysqld -rw-r----- root named /etc/logrotate.d/named -rw-r--r-- root root /etc/logrotate.d/ppp -rw-r--r-- root root /etc/logrotate.d/psacct -rw-r--r-- root root /etc/logrotate.d/rpm -rw-r--r-- root root /etc/logrotate.d/sa-update -rw-r--r-- root root /etc/logrotate.d/samba -rw-r--r-- root root /etc/logrotate.d/snmpd -rw-r--r-- root root /etc/logrotate.d/squid -rw-r--r-- root root /etc/logrotate.d/syslog -rw-r--r-- root root /etc/logrotate.d/tux -rw-r--r-- root root /etc/logrotate.d/vsftpd.log -rw-r--r-- root root /etc/logrotate.d/wpa_supplicant -rw-r--r-- root root /etc/logrotate.d/yum -rw-r--r-- root root /etc/logwatch/conf/ignore.conf -rw-r--r-- root root /etc/logwatch/conf/logwatch.conf -rw-r--r-- root root /etc/logwatch/conf/override.conf -rw-r--r-- root root /etc/mail.rc -rw-r--r-- root root /etc/mail/access -rw-r--r-- root root /etc/mail/domaintable -rw-r--r-- root root /etc/mail/local-host-names -rw-r--r-- root root /etc/mail/mailertable -rw-r--r-- root root /etc/mail/sendmail.cf -rw-r--r-- root root /etc/mail/sendmail.mc -rw-r--r-- root root /etc/mail/trusted-users -rw-r--r-- root root /etc/mail/virtusertable -rw-r--r-- root root /etc/my.cnf -rw-r--r-- root root /etc/openldap/ldap.conf -rw-r----- root daemon /etc/pam.d/atd -rw-r--r-- root root /etc/pam.d/authconfig -rw-r--r-- root root /etc/pam.d/authconfig-tui -rw-r--r-- root root /etc/pam.d/chfn -rw-r--r-- root root /etc/pam.d/chsh -rw-r--r-- root root /etc/pam.d/config-util -rw------- root root /etc/pam.d/crond -rw-r--r-- root root /etc/pam.d/dovecot -rw-r--r-- root root /etc/pam.d/eject -rw-r--r-- root root /etc/pam.d/ekshell -rw-r--r-- root root /etc/pam.d/gssftp -rw-r--r-- root root /etc/pam.d/halt -rw-r--r-- root root /etc/pam.d/kbdrate -rw-r--r-- root root /etc/pam.d/kshell -rw-r--r-- root root /etc/pam.d/ksu -rw-r--r-- root root /etc/pam.d/login -rw-r--r-- root root /etc/pam.d/neat -rw-r--r-- root root /etc/pam.d/newrole -rw-r--r-- root root /etc/pam.d/other -rw-r--r-- root root /etc/pam.d/passwd -rw-r--r-- root root /etc/pam.d/pm-hibernate -rw-r--r-- root root /etc/pam.d/pm-powersave -rw-r--r-- root root /etc/pam.d/pm-suspend -rw-r--r-- root root /etc/pam.d/pm-suspend-hybrid -rw-r--r-- root root /etc/pam.d/poweroff -rw-r--r-- root root /etc/pam.d/ppp -rw-r--r-- root root /etc/pam.d/reboot -rw-r--r-- root root /etc/pam.d/remote -rw-r--r-- root root /etc/pam.d/run_init -rw-r--r-- root root /etc/pam.d/runuser -rw-r--r-- root root /etc/pam.d/runuser-l -rw-r--r-- root root /etc/pam.d/samba -rw-r--r-- root root /etc/pam.d/setup -rw-r--r-- root root /etc/pam.d/smtp.sendmail -rw-r--r-- root root /etc/pam.d/squid -rw-r--r-- root root /etc/pam.d/sshd -rw-r--r-- root root /etc/pam.d/su -rw-r--r-- root root /etc/pam.d/su-l -rw-r--r-- root root /etc/pam.d/sudo -rw-r--r-- root root /etc/pam.d/sudo-i -rw-r--r-- root root /etc/pam.d/system-auth-ac -rw-r--r-- root root /etc/pam.d/system-config-httpd -rw-r--r-- root root /etc/pam.d/system-config-network -rw-r--r-- root root /etc/pam.d/system-config-network-cmd -rw-r--r-- root root /etc/pam.d/system-config-nfs -rw-r--r-- root root /etc/pam.d/system-config-printer -rw-r--r-- root root /etc/pam.d/system-config-samba -rw-r--r-- root root /etc/pam.d/system-config-securitylevel -rwxr-xr-x root root /etc/pam.d/system-config-services -rw-r--r-- root root /etc/pam.d/vsftpd -rw-r--r-- root root /etc/pam_pkcs11/pam_pkcs11.conf -rw-r--r-- root root /etc/pam_pkcs11/pkcs11_eventmgr.conf -rw-r--r-- root root /etc/pam_smb.conf -rw-r--r-- root root /etc/php.d/dbase.ini -rw-r--r-- root root /etc/php.d/ldap.ini -rw-r--r-- root root /etc/php.d/mbstring.ini -rw-r--r-- root root /etc/php.d/mysql.ini -rw-r--r-- root root /etc/php.d/mysqli.ini -rw-r--r-- root root /etc/php.d/pdo.ini -rw-r--r-- root root /etc/php.d/pdo_mysql.ini -rw-r--r-- root root /etc/php.d/pdo_sqlite.ini -rw-r--r-- root root /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 -rw-r--r-- root root /etc/pki/rpm-gpg/RPM-GPG-KEY-beta -rw-r--r-- root root /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag -rw-r--r-- root root /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-fabian -rw-r--r-- root root /etc/rpm/macros.prelink -rw-r--r-- root root /etc/rpm/macros.specspo -rw-r--r-- root root /etc/rpm/platform -rw-r--r-- root root /etc/setuptool.d/98netconfig -rw-r--r-- root root /etc/setuptool.d/98system-config-authentication -rw-r--r-- root root /etc/setuptool.d/98system-config-display -rw-r--r-- root root /etc/setuptool.d/98system-config-keyboard -rw-r--r-- root root /etc/setuptool.d/99Xconfigurator -rw-r--r-- root root /etc/setuptool.d/99authconfig -rw-r--r-- root root /etc/setuptool.d/99kbdconfig -rw-r--r-- root root /etc/setuptool.d/99lokkit -rw-r--r-- root root /etc/setuptool.d/99mouseconfig -rw-r--r-- root root /etc/setuptool.d/99ntsysv -rw-r--r-- root root /etc/setuptool.d/99printconf-tui -rw-r--r-- root root /etc/setuptool.d/99sndconfig -rw-r--r-- root root /etc/setuptool.d/99system-config-network-tui -rw-r--r-- root root /etc/setuptool.d/99system-config-printer-tui -rw-r--r-- root root /etc/setuptool.d/99timeconfig -rw-r--r-- root squid /etc/squid/cachemgr.conf -rw-r--r-- root root /etc/squid/mime.conf -rw-r--r-- root root /etc/squid/msntauth.conf -rw-r----- root squid /etc/squid/squid.conf -rw-r--r-- root root /etc/ssh/ssh_config -rw-r--r-- root root /etc/ssh/ssh_host_key.pub -rw------- root root /etc/ssh/sshd_config -r--r----- root root /etc/sudoers -rw-r--r-- root root /etc/sysconfig/rhn/sources -rw-r--r-- root root /etc/syslog.conf -rw-r--r-- root root /etc/updatedb.conf -rw-r--r-- root root /etc/yum.conf -rw-r--r-- root root /etc/yum.repos.d/CentOS-Base.repo -rw-r--r-- root root /etc/yum.repos.d/CentOS-Debuginfo.repo -rw-r--r-- root root /etc/yum.repos.d/CentOS-Media.repo -rw-r--r-- root root /etc/yum.repos.d/CentOS-Vault.repo -rw-r--r-- root root /etc/yum.repos.d/mirrors-rpmforge -rw-r--r-- root root /etc/yum.repos.d/mirrors-rpmforge-extras -rw-r--r-- root root /etc/yum.repos.d/mirrors-rpmforge-testing -rw-r--r-- root root /etc/yum.repos.d/opsview.repo -rw-r--r-- root root /etc/yum.repos.d/rpmforge.repo -rw-r--r-- root root /etc/yum/pluginconf.d/fastestmirror.conf -rw-r--r-- root root /etc/yum/pluginconf.d/security.conf -rw-r--r-- root root /etc/yum/yum-updatesd.conf -rw-r--r-- root root /usr/lib/rpm/macros -rwxr-xr-x nagios nagcmd /usr/local/nagios/etc/Log4perl-slave.conf -rwxr-xr-x nagios nagcmd /usr/local/nagios/etc/Log4perl.conf -rw-r----- nagios nagios /usr/local/nagios/etc/cgi.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/checkcommands.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/contactgroups.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/contacts.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/hostgroups.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/hosts.cfg -rw-r----- nagios nagcmd /usr/local/nagios/etc/instance.cfg -rwxr-xr-x nagios nagcmd /usr/local/nagios/etc/logrotate.conf -rw-r----- nagios nagios /usr/local/nagios/etc/master.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/misccommands.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/nagios.cfg -rwxr-xr-x nagios nagcmd /usr/local/nagios/etc/nagiosgraph.conf -rw------- nagios nagios /usr/local/nagios/etc/ndo2db.cfg -rw------- nagios nagios /usr/local/nagios/etc/ndomod.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/notificationmethodvariables.cfg -rw------- nagios nagios /usr/local/nagios/etc/nrd.conf -r--r--r-- nagios nagios /usr/local/nagios/etc/nrpe.cfg -rw------- nagios nagios /usr/local/nagios/etc/nsca.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/opsview.conf -rw------- nagios nagios /usr/local/nagios/etc/send_nrd.cfg -rw------- nagios nagios /usr/local/nagios/etc/send_nsca.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/services.cfg -rw-r----- nagios nagios /usr/local/nagios/etc/timeperiods.cfg -rw-r--r-- nagios nagios /usr/local/opsview-web/etc/Log4perl.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/autorpm.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/cisco.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/clam-update.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/cron.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/daemon.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/dnssec.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/emerge.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/exim.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/extreme-networks.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/http.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/iptables.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/kernel.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/maillog.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/messages.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/netopia.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/netscreen.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/pureftp.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/qmail-pop3d-current.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/qmail-pop3ds-current.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/qmail-send-current.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/qmail-smtpd-current.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/resolver.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/rt314.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/samba.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/secure.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/sonicwall.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/syslog.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/tac_acc.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/up2date.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/vsftpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/windows.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/xferlog.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logfiles/yum.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/logwatch.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/afpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/amavis.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/arpwatch.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/audit.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/automount.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/autorpm.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/cisco.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/clam-update.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/clamav-milter.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/clamav.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/courier.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/cron.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/dhcpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/dnssec.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/dovecot.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/emerge.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/exim.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/eximstats.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/extreme-networks.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/ftpd-messages.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/ftpd-xferlog.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/http.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/identd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/imapd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/in.qpopper.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/init.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/ipop3d.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/iptables.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/kernel.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/mailscanner.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/modprobe.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/mountd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/named.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/netopia.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/netscreen.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/oidentd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/openvpn.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pam.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pam_pwdb.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pam_unix.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pluto.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pop3.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/portsentry.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/postfix.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pound.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/proftpd-messages.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/pureftpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/qmail-pop3d.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/qmail-pop3ds.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/qmail-send.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/qmail-smtpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/qmail.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/raid.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/resolver.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/rt314.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/samba.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/saslauthd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/scsi.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/secure.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/sendmail-largeboxes.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/sendmail.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/shaperd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/slon.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/smartd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/sonicwall.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/sshd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/sshd2.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/stunnel.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/sudo.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/syslogd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/tac_acc.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/up2date.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/vpopmail.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/vsftpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/windows.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/xntpd.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/yum.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/zz-disk_space.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/zz-fortune.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/zz-network.conf -rw-r--r-- root root /usr/share/logwatch/default.conf/services/zz-sys.conf -rwxr-xr-x root root /usr/share/logwatch/scripts/logwatch.pl -r--r----- apache root /var/opt/scc-srv/conf/scc.conf -r--r----- apache root /var/opt/scc-srv/data/www/All/custom/../../custom/scc-realm.conf -r-------- apache root /var/opt/scc-srv/data/www/All/custom/scc-rules.conf -r-------- apache root /var/opt/scc-srv/data/www/All/custom/scc-smt-select -rw------- nagios root /var/spool/cron/nagios
-rw-r--r-- root root /etc/X11/xorg.conf -rw-r----- root root /etc/audit/audit.rules -rw-r----- root root /etc/audit/auditd.conf -rw-r--r-- root root /etc/bashrc -rw-r--r-- root root /etc/csh.cshrc -rw-r--r-- root root /etc/csh.login -rw-r--r-- root root /etc/dbus-1/session.conf -rw-r--r-- root root /etc/dbus-1/system.conf -rw-r--r-- root root /etc/dbus-1/system.d/NetworkManager.conf -rw-r--r-- root root /etc/dbus-1/system.d/avahi-dbus.conf -rw-r--r-- root root /etc/dbus-1/system.d/bluez-hcid.conf -rw-r--r-- root root /etc/dbus-1/system.d/hal.conf -rw-r--r-- root root /etc/dbus-1/system.d/named.conf -rw-r--r-- root root /etc/dbus-1/system.d/nm-avahi-autoipd.conf -rw-r--r-- root root /etc/dbus-1/system.d/nm-dhcp-client.conf -rw-r--r-- root root /etc/dbus-1/system.d/nm-dispatcher.conf -rw-r--r-- root root /etc/dbus-1/system.d/nm-system-settings.conf -rw-r--r-- root root /etc/dbus-1/system.d/oddjob.conf -rw-r--r-- root root /etc/dbus-1/system.d/wpa_supplicant.conf -rw-r--r-- root root /etc/dbus-1/system.d/yum-updatesd.conf -rw-r--r-- root root /etc/environment -rw-r--r-- root root /etc/hosts.allow -rw-r--r-- root root /etc/hosts.deny -rw-r--r-- root root /etc/issue -rw-r--r-- root root /etc/issue.net -rw-r--r-- root root /etc/ld.so.conf -rw-r--r-- root root /etc/ld.so.conf.d/mysql-x86_64.conf -rw-r--r-- root root /etc/login.defs -rw-r--r-- root root /etc/man.config -rw-r--r-- root root /etc/prelink.conf -rw-r--r-- root root /etc/profile -rwxr-xr-x root root /etc/profile.d/colorls.csh -rwxr-xr-x root root /etc/profile.d/colorls.sh -rwxr-xr-x root root /etc/profile.d/glib2.csh -rwxr-xr-x root root /etc/profile.d/glib2.sh -rw-r--r-- root root /etc/profile.d/krb5-workstation.csh -rw-r--r-- root root /etc/profile.d/krb5-workstation.sh -rwxr-xr-x root root /etc/profile.d/lang.csh -rwxr-xr-x root root /etc/profile.d/lang.sh -rwxr-xr-x root root /etc/profile.d/less.csh -rwxr-xr-x root root /etc/profile.d/less.sh -rwxr-xr-x root root /etc/profile.d/vim.csh -rwxr-xr-x root root /etc/profile.d/vim.sh -rwxr-xr-x root root /etc/profile.d/which-2.sh -rw-r--r-- root root /etc/rwtab -rw------- root root /etc/securetty -rw-r--r-- root root /etc/security/access.conf -rw-r--r-- root root /etc/security/chroot.conf -rw-r--r-- root root /etc/security/console.apps/authconfig -rw-r--r-- root root /etc/security/console.apps/authconfig-tui -rw-r--r-- root root /etc/security/console.apps/eject -rw-r--r-- root root /etc/security/console.apps/halt -rw-r--r-- root root /etc/security/console.apps/kbdrate -rw-r--r-- root root /etc/security/console.apps/neat -rw-r--r-- root root /etc/security/console.apps/pm-hibernate -rw-r--r-- root root /etc/security/console.apps/pm-powersave -rw-r--r-- root root /etc/security/console.apps/pm-suspend -rw-r--r-- root root /etc/security/console.apps/pm-suspend-hybrid -rw-r--r-- root root /etc/security/console.apps/poweroff -rw-r--r-- root root /etc/security/console.apps/reboot -rw-r--r-- root root /etc/security/console.apps/setup -rw-r--r-- root root /etc/security/console.apps/system-config-httpd -rw-r--r-- root root /etc/security/console.apps/system-config-network -rw-r--r-- root root /etc/security/console.apps/system-config-network-cmd -rw-r--r-- root root /etc/security/console.apps/system-config-nfs -rw-r--r-- root root /etc/security/console.apps/system-config-printer -rw-r--r-- root root /etc/security/console.apps/system-config-samba -rw-r--r-- root root /etc/security/console.apps/system-config-securitylevel -rwxr-xr-x root root /etc/security/console.apps/system-config-services -rw-r--r-- root root /etc/security/console.handlers -rw-r--r-- root root /etc/security/console.perms -rw-r--r-- root root /etc/security/console.perms.d/50-default.perms -rw-r--r-- root root /etc/security/group.conf -rw-r--r-- root root /etc/security/limits.conf -rw-r--r-- root root /etc/security/namespace.conf -rwxr-xr-x root root /etc/security/namespace.init -rw------- root root /etc/security/opasswd -rw-r--r-- root root /etc/security/pam_env.conf -rw-r--r-- root root /etc/security/pam_winbind.conf -rw-r--r-- root root /etc/security/time.conf -rw-r--r-- root root /etc/selinux/config -rw------- root root /etc/selinux/restorecond.conf -rw-r--r-- root root /etc/selinux/semanage.conf -rw-r--r-- root root /etc/sestatus.conf -rw-r--r-- root root /etc/setuptool.d/98netconfig -rw-r--r-- root root /etc/setuptool.d/98system-config-authentication -rw-r--r-- root root /etc/setuptool.d/98system-config-display -rw-r--r-- root root /etc/setuptool.d/98system-config-keyboard -rw-r--r-- root root /etc/setuptool.d/99Xconfigurator -rw-r--r-- root root /etc/setuptool.d/99authconfig -rw-r--r-- root root /etc/setuptool.d/99kbdconfig -rw-r--r-- root root /etc/setuptool.d/99lokkit -rw-r--r-- root root /etc/setuptool.d/99mouseconfig -rw-r--r-- root root /etc/setuptool.d/99ntsysv -rw-r--r-- root root /etc/setuptool.d/99printconf-tui -rw-r--r-- root root /etc/setuptool.d/99sndconfig -rw-r--r-- root root /etc/setuptool.d/99system-config-network-tui -rw-r--r-- root root /etc/setuptool.d/99system-config-printer-tui -rw-r--r-- root root /etc/setuptool.d/99timeconfig -rw-r--r-- root root /etc/shells -rw-r--r-- root root /etc/sysctl.conf
-rw-r--r-- root root /etc/libuser.conf -rw-r--r-- root root /etc/skel/.bash_logout -rw-r--r-- root root /etc/skel/.bash_profile -rw-r--r-- root root /etc/skel/.bashrc -rw-r--r-- root root /etc/skel/.emacs
-rw-r--r-- root root /etc/auto.master -rw-r--r-- root root /etc/auto.misc -rw------- root root /etc/autofs_ldap_auth.conf -rw-r--r-- root root /etc/exports -rw-r--r-- root root /etc/fstab -rw-r--r-- root root /etc/lvm/lvm.conf -rw-r--r-- root root /etc/mke2fs.conf
Time | Total seconds | Module seconds | Module | Label |
---|---|---|---|---|
23.20.53 | 0 | 0 | scc-collect | start of run |
23.20.53 | 0 | 0 | scc_0000_s_first | start of module |
23.20.53 | 0 | 0 | scc_0000_s_first | end of module |
23.20.53 | 0 | 0 | scc_0000_s_general | start of module |
23.20.55 | 2 | 2 | scc_0000_s_general | end of module |
23.20.55 | 2 | 0 | scc_0100_s_boot | start of module |
23.20.55 | 2 | 0 | scc_0100_s_boot | end of module |
23.20.55 | 2 | 0 | scc_0200_s_hardware | start of module |
23.20.56 | 3 | 1 | scc_0200_s_hardware | end of disk |
23.20.56 | 3 | 1 | scc_0200_s_hardware | end of module |
23.20.56 | 3 | 0 | scc_0300_s_kernel | start of module |
23.20.57 | 4 | 1 | scc_0300_s_kernel | end of module |
23.20.57 | 4 | 0 | scc_0400_s_vol_mngt | start of module |
23.20.57 | 4 | 0 | scc_0400_s_vol_mngt | end of file systems |
23.20.59 | 6 | 2 | scc_0400_s_vol_mngt | end of module |
23.20.59 | 6 | 0 | scc_0500_s_network | start of module |
23.21.00 | 7 | 1 | scc_0500_s_network | end of module |
23.21.00 | 7 | 0 | scc_0600_s_software | start of module |
23.22.10 | 77 | 70 | scc_0600_s_software | end of module |
23.22.10 | 77 | 0 | scc_0610_s_oracle_sapr3 | start of module |
23.22.10 | 77 | 0 | scc_0610_s_oracle_sapr3 | end of module |
23.22.10 | 77 | 0 | scc_0620_s_appl_server | start of module |
23.22.10 | 77 | 0 | scc_0620_s_appl_server | end of module |
23.22.10 | 77 | 0 | scc_0630_s_pkgmngt | start of module |
23.22.10 | 77 | 0 | scc_0630_s_pkgmngt | start of rpm |
23.22.11 | 78 | 1 | scc_0630_s_pkgmngt | end of rpm |
23.22.13 | 80 | 3 | scc_0630_s_pkgmngt | end of module |
23.22.13 | 80 | 0 | scc_0640_s_local | start of module |
23.22.13 | 80 | 0 | scc_0640_s_local | end of module |
23.22.13 | 80 | 0 | scc_0700_s_hp_ov | start of module |
23.22.13 | 80 | 0 | scc_0700_s_hp_ov | end of module |
23.22.13 | 80 | 0 | scc_0800_s_oracle | start of module |
23.22.13 | 80 | 0 | scc_0800_s_oracle | end of module |
23.22.13 | 80 | 0 | scc_0900_s_system | start of module |
23.22.14 | 81 | 1 | scc_0900_s_system | end of module |
23.22.14 | 81 | 0 | scc_1000_s_users | start of module |
23.22.15 | 82 | 1 | scc_1000_s_users | end of module |
23.22.15 | 82 | 0 | scc_1100_s_openstack | start of module |
23.22.15 | 82 | 0 | scc_1100_s_openstack | end of module |
23.22.15 | 82 | 0 | scc_9999_s_perms | start of module |
23.22.15 | 82 | 0 | scc_9999_s_perms | end of module |
23.22.15 | 82 | 82 | scc-collect | end of run |
Help-info is excluded from the fix/var and class counters.
Category | Count | Percentage |
---|---|---|
fix | 33532 | 97 |
var | 1011 | 3 |
total | 34543 | 100 |
Contents of file: /etc/rc.d/rc.local Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.d/rc.local Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.d/rc.sysinit Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/auditd Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/authconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/autofs Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/bluetooth Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/cbq/avpkt Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/cbq/cbq-0000.example Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/clock Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/cpuspeed Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/crond Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/firstboot Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/grub Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/hidd Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/hwconf Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/i18n Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/init Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/ip6tables Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/ip6tables-config Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/iptables Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/iptables-config Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/irda Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/kernel Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/keyboard Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/krb524 Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/kudzu Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/mkinitrd/multipath Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/modules/udev-stw.modules Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/named Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/prelink Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/raid-check Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/readonly-root Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/rrdcached Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/samba Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/saslauthd Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/sendmail Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/smartmontools Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/spamassassin Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/squid Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/syslog Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/system-config-securitylevel Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/tux Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/udev-stw Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/wpa_supplicant Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/xinetd Ignore blank lines and lines starting with character: #
Contents of file: /etc/default/nss Ignore blank lines and lines starting with character: #
Contents of file: /etc/default/useradd Ignore blank lines and lines starting with character: #
Contents of file: /etc/inittab Ignore blank lines and lines starting with character: #
Contents of file: /boot/grub/device.map Ignore blank lines and lines starting with character: #
Contents of file: /boot/grub/./grub.conf Ignore blank lines and lines starting with character: #
Contents of file: /boot/grub/grub.conf Ignore blank lines and lines starting with character: #
Contents of file: /proc/cmdline Ignore blank lines and lines starting with character: #
Contents of file: /etc/readahead.d/default.early Ignore blank lines and lines starting with character: #
Contents of file: /etc/readahead.d/default.later Ignore blank lines and lines starting with character: #
Contents of file: /proc/dma Ignore blank lines and lines starting with character: #
Contents of file: /proc/devices Ignore blank lines and lines starting with character: #
Contents of file: /etc/multipath.conf Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any hardware/device changes in these files will also be detected via the above data. Direct sysctl hardware/device changes will not be detected via the configuration files in the system module.
Contents of file: /etc/iscsi/iscsid.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/iscsi/initiatorname.iscsi Ignore blank lines and lines starting with character: #
Contents of file: /proc/scsi/scsi Ignore blank lines and lines starting with character: #
model: Contents of file: /proc/ide/hdc/model model: Ignore blank lines and lines starting with character: # driver: Contents of file: /proc/ide/hdc/driver driver: Ignore blank lines and lines starting with character: #
Contents of file: /proc/ide/drivers Ignore blank lines and lines starting with character: #
Contents of file: /proc/mdstat Ignore blank lines and lines starting with character: #
Contents of file: /proc/ioports Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/hwconf Ignore blank lines and lines starting with character: -
Contents of file: /etc/mcelog.conf Ignore blank lines and lines starting with character: #
Contents of file: /proc/tty/driver/serial Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/udev.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/05-udev-early.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/40-multipath.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/50-udev.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/51-hotplug.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/60-net.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/60-pcmcia.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/85-pcscd_ccid.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/90-dm.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/90-hal.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/95-pam-console.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/udev/rules.d/bluetooth.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/modprobe.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/modprobe.d/blacklist-compat Ignore blank lines and lines starting with character: #
Contents of file: /etc/modprobe.d/blacklist-firewire Ignore blank lines and lines starting with character: #
Contents of file: /etc/modprobe.d/blacklist.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/modprobe.d/modprobe.conf.dist Ignore blank lines and lines starting with character: #
Contents of file: /etc/depmod.d/depmod.conf.dist Ignore blank lines and lines starting with character: #
Contents of file: /lib/modules/VERSION/modules.dep Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any kernel changes in these files will also be detected via the above data. Direct sysctl kernel changes will not be detected via the configuration files in the system module.
Contents of file: /etc/autofs_ldap_auth.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/mke2fs.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/fstab Ignore blank lines and lines starting with character: # The contents has been sorted and multiple spaces have been replaced by a single space.
Contents of file: /etc/auto.master Ignore blank lines and lines starting with character: #
Contents of file: /etc/auto.misc Ignore blank lines and lines starting with character: #
Contents of file: /etc/lvm/lvm.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/avahi/avahi-daemon.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/dnsmasq.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/idmapd.conf 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/ppp/options 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/wgetrc 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/lftp.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/vsftpd/user_list Ignore blank lines and lines starting with character: #
Contents of file: /etc/vsftpd/ftpusers Ignore blank lines and lines starting with character: #
Contents of file: /etc/vsftpd/vsftpd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network-scripts/ifcfg-eth0 Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network-scripts/ifcfg-eth1 Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysconfig/network-scripts/ifcfg-lo Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/chargen-dgram Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/chargen-stream Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/daytime-dgram Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/daytime-stream Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/discard-dgram Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/discard-stream Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/echo-dgram Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/echo-stream Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/eklogin Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/ekrb5-telnet Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/gssftp Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/klogin Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/krb5-telnet Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/kshell Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/rmcp Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/rsync Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/tcpmux-server Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/time-dgram Ignore blank lines and lines starting with character: #
Contents of file: /etc/xinetd.d/time-stream Ignore blank lines and lines starting with character: #
Contents of file: /etc/iproute2/ematch_map Ignore blank lines and lines starting with character: #
Contents of file: /etc/iproute2/rt_dsfield Ignore blank lines and lines starting with character: #
Contents of file: /etc/iproute2/rt_protos Ignore blank lines and lines starting with character: #
Contents of file: /etc/iproute2/rt_realms Ignore blank lines and lines starting with character: #
Contents of file: /etc/iproute2/rt_scopes Ignore blank lines and lines starting with character: #
Contents of file: /etc/iproute2/rt_tables Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any network changes in these files will also be detected via the above data. Direct sysctl network changes will not be detected via the configuration files in the system module.
Contents of file: /etc/httpd/conf/httpd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/02_auth_tkt.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/manual.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/mrtg.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/opsview.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/perl.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/php.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/proxy_ajp.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/python.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/scc.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/squid.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/ssl.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/webalizer.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/httpd/conf.d/welcome.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.d/mrtg Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/00webalizer Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/0anacron Ignore blank lines and lines starting with character: #
Contents of file: /usr/share/logwatch/scripts/logwatch.pl Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/certwatch Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/inn-cron-expire Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/logrotate Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/makewhatis.cron Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/mlocate.cron Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/prelink Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/rpm Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.daily/tmpwatch Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.hourly/inn-cron-nntpsend Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.hourly/inn-cron-rnews Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.hourly/mcelog.cron Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.monthly/0anacron Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.weekly/0anacron Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.weekly/99-raid-check Ignore blank lines and lines starting with character: #
Contents of file: /etc/cron.weekly/makewhatis.cron 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/anacrontab Ignore blank lines and lines starting with character: #
Contents of file: /var/spool/cron/nagios Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/Log4perl-slave.conf Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/Log4perl.conf Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/logrotate.conf Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/nagiosgraph.conf Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/nrd.conf Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/opsview.conf Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/cgi.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/checkcommands.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/contactgroups.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/contacts.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/hostgroups.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/hosts.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/instance.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/master.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/misccommands.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/nagios.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/ndo2db.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/ndomod.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/notificationmethodvariables.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/nrpe.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/nsca.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/send_nrd.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/send_nsca.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/services.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/nagios/etc/timeperiods.cfg Ignore blank lines and lines starting with character: #
Contents of file: /usr/local/opsview-web/etc/Log4perl.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/ldap.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/openldap/ldap.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/acpid Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/conman Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/httpd Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/iscsiuiolog Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/mgetty Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/named Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/ppp Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/psacct Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/rpm Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/sa-update Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/samba Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/snmpd Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/squid Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/syslog Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/tux Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/vsftpd.log Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/wpa_supplicant Ignore blank lines and lines starting with character: #
Contents of file: /etc/logrotate.d/yum Ignore blank lines and lines starting with character: #
Contents of file: /usr/share/logwatch/default.conf/logwatch.conf Ignore blank lines and lines starting with character: #
autorpm.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/autorpm.conf autorpm.conf : Ignore blank lines and lines starting with character: # cisco.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/cisco.conf cisco.conf : Ignore blank lines and lines starting with character: # clam-update.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/clam-update.conf clam-update.conf : Ignore blank lines and lines starting with character: # cron.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/cron.conf cron.conf : Ignore blank lines and lines starting with character: # daemon.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/daemon.conf daemon.conf : Ignore blank lines and lines starting with character: # dnssec.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/dnssec.conf dnssec.conf : Ignore blank lines and lines starting with character: # emerge.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/emerge.conf emerge.conf : Ignore blank lines and lines starting with character: # exim.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/exim.conf exim.conf : Ignore blank lines and lines starting with character: # extreme-networks.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/extreme-networks.conf extreme-networks.conf : Ignore blank lines and lines starting with character: # http.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/http.conf http.conf : Ignore blank lines and lines starting with character: # iptables.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/iptables.conf iptables.conf : Ignore blank lines and lines starting with character: # kernel.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/kernel.conf kernel.conf : Ignore blank lines and lines starting with character: # maillog.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/maillog.conf maillog.conf : Ignore blank lines and lines starting with character: # messages.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/messages.conf messages.conf : Ignore blank lines and lines starting with character: # netopia.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/netopia.conf netopia.conf : Ignore blank lines and lines starting with character: # netscreen.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/netscreen.conf netscreen.conf : Ignore blank lines and lines starting with character: # pureftp.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/pureftp.conf pureftp.conf : Ignore blank lines and lines starting with character: # qmail-pop3d-current.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/qmail-pop3d-current.conf qmail-pop3d-current.conf : Ignore blank lines and lines starting with character: # qmail-pop3ds-current.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/qmail-pop3ds-current.conf qmail-pop3ds-current.conf : Ignore blank lines and lines starting with character: # qmail-send-current.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/qmail-send-current.conf qmail-send-current.conf : Ignore blank lines and lines starting with character: # qmail-smtpd-current.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/qmail-smtpd-current.conf qmail-smtpd-current.conf : Ignore blank lines and lines starting with character: # resolver.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/resolver.conf resolver.conf : Ignore blank lines and lines starting with character: # rt314.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/rt314.conf rt314.conf : Ignore blank lines and lines starting with character: # samba.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/samba.conf samba.conf : Ignore blank lines and lines starting with character: # secure.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/secure.conf secure.conf : Ignore blank lines and lines starting with character: # sonicwall.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/sonicwall.conf sonicwall.conf : Ignore blank lines and lines starting with character: # syslog.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/syslog.conf syslog.conf : Ignore blank lines and lines starting with character: # tac_acc.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/tac_acc.conf tac_acc.conf : Ignore blank lines and lines starting with character: # up2date.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/up2date.conf up2date.conf : Ignore blank lines and lines starting with character: # vsftpd.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/vsftpd.conf vsftpd.conf : Ignore blank lines and lines starting with character: # windows.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/windows.conf windows.conf : Ignore blank lines and lines starting with character: # xferlog.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/xferlog.conf xferlog.conf : Ignore blank lines and lines starting with character: # yum.conf : Contents of file: /usr/share/logwatch/default.conf/logfiles/yum.conf yum.conf : Ignore blank lines and lines starting with character: #
afpd.conf : Contents of file: /usr/share/logwatch/default.conf/services/afpd.conf afpd.conf : Ignore blank lines and lines starting with character: # amavis.conf : Contents of file: /usr/share/logwatch/default.conf/services/amavis.conf amavis.conf : Ignore blank lines and lines starting with character: # arpwatch.conf : Contents of file: /usr/share/logwatch/default.conf/services/arpwatch.conf arpwatch.conf : Ignore blank lines and lines starting with character: # audit.conf : Contents of file: /usr/share/logwatch/default.conf/services/audit.conf audit.conf : Ignore blank lines and lines starting with character: # automount.conf : Contents of file: /usr/share/logwatch/default.conf/services/automount.conf automount.conf : Ignore blank lines and lines starting with character: # autorpm.conf : Contents of file: /usr/share/logwatch/default.conf/services/autorpm.conf autorpm.conf : Ignore blank lines and lines starting with character: # cisco.conf : Contents of file: /usr/share/logwatch/default.conf/services/cisco.conf cisco.conf : Ignore blank lines and lines starting with character: # clam-update.conf : Contents of file: /usr/share/logwatch/default.conf/services/clam-update.conf clam-update.conf : Ignore blank lines and lines starting with character: # clamav-milter.conf : Contents of file: /usr/share/logwatch/default.conf/services/clamav-milter.conf clamav-milter.conf : Ignore blank lines and lines starting with character: # clamav.conf : Contents of file: /usr/share/logwatch/default.conf/services/clamav.conf clamav.conf : Ignore blank lines and lines starting with character: # courier.conf : Contents of file: /usr/share/logwatch/default.conf/services/courier.conf courier.conf : Ignore blank lines and lines starting with character: # cron.conf : Contents of file: /usr/share/logwatch/default.conf/services/cron.conf cron.conf : Ignore blank lines and lines starting with character: # dhcpd.conf : Contents of file: /usr/share/logwatch/default.conf/services/dhcpd.conf dhcpd.conf : Ignore blank lines and lines starting with character: # dnssec.conf : Contents of file: /usr/share/logwatch/default.conf/services/dnssec.conf dnssec.conf : Ignore blank lines and lines starting with character: # dovecot.conf : Contents of file: /usr/share/logwatch/default.conf/services/dovecot.conf dovecot.conf : Ignore blank lines and lines starting with character: # emerge.conf : Contents of file: /usr/share/logwatch/default.conf/services/emerge.conf emerge.conf : Ignore blank lines and lines starting with character: # exim.conf : Contents of file: /usr/share/logwatch/default.conf/services/exim.conf exim.conf : Ignore blank lines and lines starting with character: # eximstats.conf : Contents of file: /usr/share/logwatch/default.conf/services/eximstats.conf eximstats.conf : Ignore blank lines and lines starting with character: # extreme-networks.conf : Contents of file: /usr/share/logwatch/default.conf/services/extreme-networks.conf extreme-networks.conf : Ignore blank lines and lines starting with character: # ftpd-messages.conf : Contents of file: /usr/share/logwatch/default.conf/services/ftpd-messages.conf ftpd-messages.conf : Ignore blank lines and lines starting with character: # ftpd-xferlog.conf : Contents of file: /usr/share/logwatch/default.conf/services/ftpd-xferlog.conf ftpd-xferlog.conf : Ignore blank lines and lines starting with character: # http.conf : Contents of file: /usr/share/logwatch/default.conf/services/http.conf http.conf : Ignore blank lines and lines starting with character: # identd.conf : Contents of file: /usr/share/logwatch/default.conf/services/identd.conf identd.conf : Ignore blank lines and lines starting with character: # imapd.conf : Contents of file: /usr/share/logwatch/default.conf/services/imapd.conf imapd.conf : Ignore blank lines and lines starting with character: # in.qpopper.conf : Contents of file: /usr/share/logwatch/default.conf/services/in.qpopper.conf in.qpopper.conf : Ignore blank lines and lines starting with character: # init.conf : Contents of file: /usr/share/logwatch/default.conf/services/init.conf init.conf : Ignore blank lines and lines starting with character: # ipop3d.conf : Contents of file: /usr/share/logwatch/default.conf/services/ipop3d.conf ipop3d.conf : Ignore blank lines and lines starting with character: # iptables.conf : Contents of file: /usr/share/logwatch/default.conf/services/iptables.conf iptables.conf : Ignore blank lines and lines starting with character: # kernel.conf : Contents of file: /usr/share/logwatch/default.conf/services/kernel.conf kernel.conf : Ignore blank lines and lines starting with character: # mailscanner.conf : Contents of file: /usr/share/logwatch/default.conf/services/mailscanner.conf mailscanner.conf : Ignore blank lines and lines starting with character: # modprobe.conf : Contents of file: /usr/share/logwatch/default.conf/services/modprobe.conf modprobe.conf : Ignore blank lines and lines starting with character: # mountd.conf : Contents of file: /usr/share/logwatch/default.conf/services/mountd.conf mountd.conf : Ignore blank lines and lines starting with character: # named.conf : Contents of file: /usr/share/logwatch/default.conf/services/named.conf named.conf : Ignore blank lines and lines starting with character: # netopia.conf : Contents of file: /usr/share/logwatch/default.conf/services/netopia.conf netopia.conf : Ignore blank lines and lines starting with character: # netscreen.conf : Contents of file: /usr/share/logwatch/default.conf/services/netscreen.conf netscreen.conf : Ignore blank lines and lines starting with character: # oidentd.conf : Contents of file: /usr/share/logwatch/default.conf/services/oidentd.conf oidentd.conf : Ignore blank lines and lines starting with character: # openvpn.conf : Contents of file: /usr/share/logwatch/default.conf/services/openvpn.conf openvpn.conf : Ignore blank lines and lines starting with character: # pam.conf : Contents of file: /usr/share/logwatch/default.conf/services/pam.conf pam.conf : Ignore blank lines and lines starting with character: # pam_pwdb.conf : Contents of file: /usr/share/logwatch/default.conf/services/pam_pwdb.conf pam_pwdb.conf : Ignore blank lines and lines starting with character: # pam_unix.conf : Contents of file: /usr/share/logwatch/default.conf/services/pam_unix.conf pam_unix.conf : Ignore blank lines and lines starting with character: # pluto.conf : Contents of file: /usr/share/logwatch/default.conf/services/pluto.conf pluto.conf : Ignore blank lines and lines starting with character: # pop3.conf : Contents of file: /usr/share/logwatch/default.conf/services/pop3.conf pop3.conf : Ignore blank lines and lines starting with character: # portsentry.conf : Contents of file: /usr/share/logwatch/default.conf/services/portsentry.conf portsentry.conf : Ignore blank lines and lines starting with character: # postfix.conf : Contents of file: /usr/share/logwatch/default.conf/services/postfix.conf postfix.conf : Ignore blank lines and lines starting with character: # pound.conf : Contents of file: /usr/share/logwatch/default.conf/services/pound.conf pound.conf : Ignore blank lines and lines starting with character: # proftpd-messages.conf : Contents of file: /usr/share/logwatch/default.conf/services/proftpd-messages.conf proftpd-messages.conf : Ignore blank lines and lines starting with character: # pureftpd.conf : Contents of file: /usr/share/logwatch/default.conf/services/pureftpd.conf pureftpd.conf : Ignore blank lines and lines starting with character: # qmail-pop3d.conf : Contents of file: /usr/share/logwatch/default.conf/services/qmail-pop3d.conf qmail-pop3d.conf : Ignore blank lines and lines starting with character: # qmail-pop3ds.conf : Contents of file: /usr/share/logwatch/default.conf/services/qmail-pop3ds.conf qmail-pop3ds.conf : Ignore blank lines and lines starting with character: # qmail-send.conf : Contents of file: /usr/share/logwatch/default.conf/services/qmail-send.conf qmail-send.conf : Ignore blank lines and lines starting with character: # qmail-smtpd.conf : Contents of file: /usr/share/logwatch/default.conf/services/qmail-smtpd.conf qmail-smtpd.conf : Ignore blank lines and lines starting with character: # qmail.conf : Contents of file: /usr/share/logwatch/default.conf/services/qmail.conf qmail.conf : Ignore blank lines and lines starting with character: # raid.conf : Contents of file: /usr/share/logwatch/default.conf/services/raid.conf raid.conf : Ignore blank lines and lines starting with character: # resolver.conf : Contents of file: /usr/share/logwatch/default.conf/services/resolver.conf resolver.conf : Ignore blank lines and lines starting with character: # rt314.conf : Contents of file: /usr/share/logwatch/default.conf/services/rt314.conf rt314.conf : Ignore blank lines and lines starting with character: # samba.conf : Contents of file: /usr/share/logwatch/default.conf/services/samba.conf samba.conf : Ignore blank lines and lines starting with character: # saslauthd.conf : Contents of file: /usr/share/logwatch/default.conf/services/saslauthd.conf saslauthd.conf : Ignore blank lines and lines starting with character: # scsi.conf : Contents of file: /usr/share/logwatch/default.conf/services/scsi.conf scsi.conf : Ignore blank lines and lines starting with character: # secure.conf : Contents of file: /usr/share/logwatch/default.conf/services/secure.conf secure.conf : Ignore blank lines and lines starting with character: # sendmail-largeboxes.conf : Contents of file: /usr/share/logwatch/default.conf/services/sendmail-largeboxes.conf sendmail-largeboxes.conf : Ignore blank lines and lines starting with character: # sendmail.conf : Contents of file: /usr/share/logwatch/default.conf/services/sendmail.conf sendmail.conf : Ignore blank lines and lines starting with character: # shaperd.conf : Contents of file: /usr/share/logwatch/default.conf/services/shaperd.conf shaperd.conf : Ignore blank lines and lines starting with character: # slon.conf : Contents of file: /usr/share/logwatch/default.conf/services/slon.conf slon.conf : Ignore blank lines and lines starting with character: # smartd.conf : Contents of file: /usr/share/logwatch/default.conf/services/smartd.conf smartd.conf : Ignore blank lines and lines starting with character: # sonicwall.conf : Contents of file: /usr/share/logwatch/default.conf/services/sonicwall.conf sonicwall.conf : Ignore blank lines and lines starting with character: # sshd.conf : Contents of file: /usr/share/logwatch/default.conf/services/sshd.conf sshd.conf : Ignore blank lines and lines starting with character: # sshd2.conf : Contents of file: /usr/share/logwatch/default.conf/services/sshd2.conf sshd2.conf : Ignore blank lines and lines starting with character: # stunnel.conf : Contents of file: /usr/share/logwatch/default.conf/services/stunnel.conf stunnel.conf : Ignore blank lines and lines starting with character: # sudo.conf : Contents of file: /usr/share/logwatch/default.conf/services/sudo.conf sudo.conf : Ignore blank lines and lines starting with character: # syslogd.conf : Contents of file: /usr/share/logwatch/default.conf/services/syslogd.conf syslogd.conf : Ignore blank lines and lines starting with character: # tac_acc.conf : Contents of file: /usr/share/logwatch/default.conf/services/tac_acc.conf tac_acc.conf : Ignore blank lines and lines starting with character: # up2date.conf : Contents of file: /usr/share/logwatch/default.conf/services/up2date.conf up2date.conf : Ignore blank lines and lines starting with character: # vpopmail.conf : Contents of file: /usr/share/logwatch/default.conf/services/vpopmail.conf vpopmail.conf : Ignore blank lines and lines starting with character: # vsftpd.conf : Contents of file: /usr/share/logwatch/default.conf/services/vsftpd.conf vsftpd.conf : Ignore blank lines and lines starting with character: # windows.conf : Contents of file: /usr/share/logwatch/default.conf/services/windows.conf windows.conf : Ignore blank lines and lines starting with character: # xntpd.conf : Contents of file: /usr/share/logwatch/default.conf/services/xntpd.conf xntpd.conf : Ignore blank lines and lines starting with character: # yum.conf : Contents of file: /usr/share/logwatch/default.conf/services/yum.conf yum.conf : Ignore blank lines and lines starting with character: # zz-disk_space.conf : Contents of file: /usr/share/logwatch/default.conf/services/zz-disk_space.conf zz-disk_space.conf : Ignore blank lines and lines starting with character: # zz-fortune.conf : Contents of file: /usr/share/logwatch/default.conf/services/zz-fortune.conf zz-fortune.conf : Ignore blank lines and lines starting with character: # zz-network.conf : Contents of file: /usr/share/logwatch/default.conf/services/zz-network.conf zz-network.conf : Ignore blank lines and lines starting with character: # zz-sys.conf : Contents of file: /usr/share/logwatch/default.conf/services/zz-sys.conf zz-sys.conf : Ignore blank lines and lines starting with character: #
Contents of file: /etc/my.cnf Ignore blank lines and lines starting with character: #
Contents of file: /etc/php.d/dbase.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/ldap.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/mbstring.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/mysql.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/mysqli.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/pdo.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/pdo_mysql.ini Ignore blank lines and lines starting with character: ;
Contents of file: /etc/php.d/pdo_sqlite.ini Ignore blank lines and lines starting with character: ;
Contents of file: /var/opt/scc-srv/conf/scc.conf Ignore blank lines and lines starting with character: #
scc-realm.conf: Contents of file: /var/opt/scc-srv/data/www/All/custom/../../custom/scc-realm.conf scc-realm.conf: Ignore blank lines and lines starting with character: # scc-smt-select: Contents of file: /var/opt/scc-srv/data/www/All/custom/scc-smt-select scc-smt-select: Ignore blank lines and lines starting with character: # scc-rules.conf: Contents of file: /var/opt/scc-srv/data/www/All/custom/scc-rules.conf scc-rules.conf: 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_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/pam_smb.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam_pkcs11/pam_pkcs11.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam_pkcs11/pkcs11_eventmgr.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/atd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/authconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/authconfig-tui Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/chfn Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/chsh Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/config-util Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/crond Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/dovecot Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/eject Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/ekshell Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/gssftp Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/halt Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/kbdrate Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/kshell Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/ksu 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/neat Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/newrole 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/pm-hibernate Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/pm-powersave Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/pm-suspend Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/pm-suspend-hybrid Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/poweroff Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/ppp Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/reboot Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/remote Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/run_init Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/runuser Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/runuser-l Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/samba Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-services Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/setup Ignore blank lines and lines starting with character: #
Contents of file: /etc/alternatives/mta-pam Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/smtp.sendmail Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/squid 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/su-l Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/sudo Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/sudo-i Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-auth-ac Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-auth-ac Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-httpd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-network Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-network-cmd Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-nfs Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-printer Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-samba Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-securitylevel Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/system-config-services Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.d/vsftpd Ignore blank lines and lines starting with character: #
/etc/setuptool.d/98netconfig : Contents of file: /etc/setuptool.d/98netconfig /etc/setuptool.d/98netconfig : Ignore blank lines and lines starting with character: # /etc/setuptool.d/98system-config-authentication : Contents of file: /etc/setuptool.d/98system-config-authentication /etc/setuptool.d/98system-config-authentication : Ignore blank lines and lines starting with character: # /etc/setuptool.d/98system-config-display : Contents of file: /etc/setuptool.d/98system-config-display /etc/setuptool.d/98system-config-display : Ignore blank lines and lines starting with character: # /etc/setuptool.d/98system-config-keyboard : Contents of file: /etc/setuptool.d/98system-config-keyboard /etc/setuptool.d/98system-config-keyboard : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99Xconfigurator : Contents of file: /etc/setuptool.d/99Xconfigurator /etc/setuptool.d/99Xconfigurator : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99authconfig : Contents of file: /etc/setuptool.d/99authconfig /etc/setuptool.d/99authconfig : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99kbdconfig : Contents of file: /etc/setuptool.d/99kbdconfig /etc/setuptool.d/99kbdconfig : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99lokkit : Contents of file: /etc/setuptool.d/99lokkit /etc/setuptool.d/99lokkit : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99mouseconfig : Contents of file: /etc/setuptool.d/99mouseconfig /etc/setuptool.d/99mouseconfig : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99ntsysv : Contents of file: /etc/setuptool.d/99ntsysv /etc/setuptool.d/99ntsysv : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99printconf-tui : Contents of file: /etc/setuptool.d/99printconf-tui /etc/setuptool.d/99printconf-tui : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99sndconfig : Contents of file: /etc/setuptool.d/99sndconfig /etc/setuptool.d/99sndconfig : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99system-config-network-tui : Contents of file: /etc/setuptool.d/99system-config-network-tui /etc/setuptool.d/99system-config-network-tui : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99system-config-printer-tui : Contents of file: /etc/setuptool.d/99system-config-printer-tui /etc/setuptool.d/99system-config-printer-tui : Ignore blank lines and lines starting with character: # /etc/setuptool.d/99timeconfig : Contents of file: /etc/setuptool.d/99timeconfig /etc/setuptool.d/99timeconfig : Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail/access 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/sendmail.cf Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail/sendmail.mc Ignore blank lines and lines starting with character: #
Contents of file: /etc/squid/squid.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/squid/cachemgr.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/squid/mime.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/squid/msntauth.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/initlog.conf Ignore blank lines and lines starting with character: #
/etc/sudoers Contents of file: /etc/sudoers /etc/sudoers 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/updatedb.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 Ignore blank lines and lines starting with character: #
Contents of file: /etc/pki/rpm-gpg/RPM-GPG-KEY-beta Ignore blank lines and lines starting with character: #
Contents of file: /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag Ignore blank lines and lines starting with character: #
Contents of file: /etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-fabian Ignore blank lines and lines starting with character: #
Contents of file: /etc/rpm/macros.prelink Ignore blank lines and lines starting with character: #
Contents of file: /etc/rpm/macros.specspo Ignore blank lines and lines starting with character: #
Contents of file: /etc/rpm/platform Ignore blank lines and lines starting with character: #
Contents of file: /usr/lib/rpm/macros Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/CentOS-Base.repo Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/CentOS-Debuginfo.repo Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/CentOS-Media.repo Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/CentOS-Vault.repo Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/mirrors-rpmforge Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/mirrors-rpmforge-extras Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/mirrors-rpmforge-testing Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/opsview.repo Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum.repos.d/rpmforge.repo Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum/yum-updatesd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum/pluginconf.d/fastestmirror.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/yum/pluginconf.d/security.conf Ignore blank lines and lines starting with character: #
The repositories the system currently is subscribed to. This can differ from the used repositories (fix:software:yum:used channel) when a system is no longer subscribed to a repository that was used to install software.
Contents of file: /etc/audit/auditd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/audit/audit.rules Ignore blank lines and lines starting with character: #
Contents of file: /etc/dbus-1/session.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/NetworkManager.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/avahi-dbus.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/bluez-hcid.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/hal.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/named.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/nm-avahi-autoipd.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/nm-dhcp-client.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/nm-dispatcher.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/nm-system-settings.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/oddjob.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/wpa_supplicant.conf Ignore blank lines
Contents of file: /etc/dbus-1/system.d/yum-updatesd.conf Ignore blank lines
Contents of file: /etc/bashrc Ignore blank lines and lines starting with character: #
Contents of file: /etc/issue.net Ignore blank lines and lines starting with character: #
Contents of file: /etc/login.defs 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/profile.d/colorls.csh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/colorls.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/glib2.csh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/glib2.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/krb5-workstation.csh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/krb5-workstation.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/lang.csh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/lang.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/less.csh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/less.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/vim.csh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/vim.sh Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile.d/which-2.sh 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/csh.login Ignore blank lines and lines starting with character: #
Contents of file: /etc/issue Ignore blank lines and lines starting with character: #
/etc/man.config: Contents of file: /etc/man.config /etc/man.config: Ignore blank lines and lines starting with character: #
Contents of file: /etc/rwtab Ignore blank lines and lines starting with character: #
Contents of file: /etc/securetty Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/authconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/authconfig-tui Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/eject Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/halt Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/kbdrate Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/neat Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/poweroff Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/reboot Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-services Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/setup Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-httpd Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-network Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-network-cmd Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-nfs Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-printer Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-samba Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-securitylevel Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.apps/system-config-services Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.handlers Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.perms Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/console.perms.d/50-default.perms Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/namespace.init Ignore blank lines and lines starting with character: #
Contents of file: /etc/security/pam_winbind.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/krb5.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/selinux/config Ignore blank lines and lines starting with character: #
Contents of file: /etc/selinux/restorecond.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/selinux/semanage.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/sestatus.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/ld.so.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/ld.so.conf.d/mysql-x86_64.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/prelink.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/98netconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/98system-config-authentication Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/98system-config-display Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/98system-config-keyboard Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99Xconfigurator Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99authconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99kbdconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99lokkit Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99mouseconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99ntsysv Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99printconf-tui Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99sndconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99system-config-network-tui Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99system-config-printer-tui Ignore blank lines and lines starting with character: #
Contents of file: /etc/setuptool.d/99timeconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/sysctl.conf Ignore blank lines and lines starting with character: #
The configuration files for sysctl are recorded in the system module. Any virtual memory changes in these files will also be detected via the above data. Direct sysctl virtual memory changes will not be detected via the configuration files in the system module.
Contents of file: /etc/X11/xorg.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/libuser.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/skel/.bash_logout Ignore blank lines and lines starting with character: #
Contents of file: /etc/skel/.bash_profile Ignore blank lines and lines starting with character: #
Contents of file: /etc/skel/.bashrc Ignore blank lines and lines starting with character: #
Contents of file: /etc/skel/.emacs 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: #
authorized_keys: Contents of file: /home.ssh/authorized_keys authorized_keys: 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 version 1.26.71 (© Siem Korteweg) on Fri Dec 20 23:22:18 CET 2019