#!/bin/sh
# perf1.sh --
#
# Copyright 2003 Red Hat Inc., Durham, North Carolina. All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation on the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice (including the
# next paragraph) shall be included in all copies or substantial
# portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY
# NON-INFRINGEMEN
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
if test x"$1" == x""; then
echo "Usage: ./perf1.sh <logfile-name>"
exit 1
fi
FILE=$1
ITER=10
if test -e $FILE; then
echo "WARNING: $FILE exists -- will NOT overwrite"
exit 1
fi
function log () {
d=`date`
echo "$d: $1"
echo "==============
echo "$d: $1" >> $FILE
if test x"$2" != x""; then
shift
fi
$* >> $FILE 2>&1
}
function logi () {
d=`date`
printf "$d: %-20.20s (PASS $1 of $ITER)\n" $2
echo "==============
printf "$d: %-20.20s (PASS $1 of $ITER)\n" $2 >> $FILE
shift
if test x"$2" != x""; then
shift
fi
$* >> $FILE 2>&1
}
function ccc () {
log $1 cat $1
}
function ccci () {
logi $1 $2 cat $2
}
function note () {
echo "`date`: (NOTE: $*)"
}
function banner () {
d=`date`
echo "==============
echo "===== $d: $* ====="
echo "==============
echo "===== $d: $* =====" >> $FILE
}
banner "Start of Testing ($FILE)"
banner General System Information
log uname uname -a
log free
log df df -h
log mount
log lsmod
log lspci lspci -v
log dmidecode
log route route -n
log ifconfig
log "ip rule ls" ip rule ls
log "ip route ls" ip route ls
log iptables "iptables -L -n -v"
log sysctl sysctl -a
ccc /proc/cpuinfo
ccc /proc/meminfo
ccc /proc/net/dev
ccc /proc/interrupt
ccc /proc/devices
ccc /proc/cmdline
ccc /proc/scsi/scsi
ccc /etc/modules.co
ccc /var/log/dmesg
banner Performance Snapshot
log ps ps auxwww
log sar sar -A
let t="10*$ITER"
note "The following takes about $t seconds"
log "vmstat" vmstat $ITER 10
note "The following takes about $t seconds"
log "iostat" iostat -k $ITER 10
note "Each pass takes 10 seconds"
for i in `seq 1 $ITER`; do
note "**** PASS $i of $ITER"
logi $i uptime
logi $i free
ccci $i /proc/interrupt
ccci $i /proc/stat
logi $i ifconfig ifconfig -a
sleep 10
done
banner "End of Testing ($FILE)"
사용법은 ./PerformanceAnalysisScript.sh result.txt
=============================================
결과는 다음과 같다.(해석은 불가능하다..-_-;;)
=============================================
==================================================
===== Thu Feb 8 15:29:05 KST 2007: Start of Testing (result.txt) =====
==================================================
===== Thu Feb 8 15:29:05 KST 2007: General System Information =====
==================================================
Thu Feb 8 15:29:05 KST 2007: uname
Linux office002 2.6.18-1.2257.fc5smp #1 SMP Fri Dec 15 16:33:51 EST 2006 i686 i686 i386 GNU/Linux
==================================================
Thu Feb 8 15:29:05 KST 2007: free
total used free shared buffers cached
Mem: 2067176 329648 1737528 0 44204 238376
-/+ buffers/cache: 47068 2020108
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:29:05 KST 2007: df
Filesystem Size Used Avail Use% Mounted on
/dev/md6 29G 863M 27G 4% /
/dev/md5 190M 21M 160M 12% /boot
/dev/md0 48G 42G 3.3G 93% /data
tmpfs 1010M 0 1010M 0% /dev/shm
/dev/md4 9.5G 244M 8.8G 3% /home
/dev/md2 29G 2.3G 25G 9% /usr
/dev/md1 29G 408M 27G 2% /var
==================================================
Thu Feb 8 15:29:05 KST 2007: mount
/dev/md6 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/md5 on /boot type ext3 (rw)
/dev/md0 on /data type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
/dev/md4 on /home type ext3 (rw)
/dev/md2 on /usr type ext3 (rw)
/dev/md1 on /var type ext3 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
automount(pid2343) on /net type autofs (rw,fd=4,pgrp=2343,minproto=2,maxproto=4)
==================================================
Thu Feb 8 15:29:05 KST 2007: lsmod
Module Size Used by
xt_tcpudp 7489 24
ipv6 267361 24
autofs4 25669 1
hidp 24385 2
rfcomm 46297 0
l2cap 31937 10 hidp,rfcomm
bluetooth 59045 5 hidp,rfcomm,l2cap
sunrpc 158589 1
ip_conntrack_netbios_ns 7361 0
ipt_REJECT 9793 1
xt_state 6593 1
ip_conntrack 57249 2 ip_conntrack_netbios_ns,xt_state
nfnetlink 11481 1 ip_conntrack
iptable_filter 7361 1
ip_tables 17925 1 iptable_filter
x_tables 18757 4 xt_tcpudp,ipt_REJECT,xt_state,ip_tables
dm_mirror 33169 0
dm_mod 61785 1 dm_mirror
video 21317 0
sbs 20353 0
i2c_ec 9537 1 sbs
button 11217 0
battery 14533 0
asus_acpi 20825 0
ac 9669 0
lp 17161 0
parport_pc 31461 0
parport 41097 2 lp,parport_pc
e1000 124369 0
sg 38621 0
e100 40649 0
mii 9793 1 e100
floppy 61541 1
ide_cd 42593 2
i2c_i801 11981 0
i2c_core 25793 2 i2c_ec,i2c_i801
serio_raw 11461 0
ehci_hcd 36173 0
uhci_hcd 28109 0
cdrom 38881 1 ide_cd
pcspkr 7489 0
ahci 23365 0
raid1 27073 7
ext3 135497 6
jbd 63209 1 ext3
ata_piix 18121 14
libata 103001 2 ahci,ata_piix
sd_mod 24897 36
scsi_mod 138601 4 sg,ahci,libata,sd_mod
==================================================
Thu Feb 8 15:29:05 KST 2007: lspci
00:00.0 Host bridge: Intel Corporation E7220/E7221 Memory Controller Hub (rev 05)
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, fast devsel, latency 0
Capabilities: [e0] Vendor Specific Information
00:01.0 PCI bridge: Intel Corporation E7220/E7221 PCI Express Root Port (rev 05) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=04, sec-latency=0
I/O behind bridge: 0000e000-0000efff
Memory behind bridge: fbe00000-fbffffff
Capabilities: [88] #0d [0000]
Capabilities: [80] Power Management version 2
Capabilities: [90] Message Signalled Interrupts: 64bit- Queue=0/0 Enable+
Capabilities: [a0] Express Root Port (Slot+) IRQ 0
00:02.0 VGA compatible controller: Intel Corporation E7221 Integrated Graphics Controller (rev 05) (prog-if 00 [VGA])
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, fast devsel, latency 0, IRQ 10
Memory at fbc00000 (32-bit, non-prefetchable) [size=512K]
I/O ports at bc00 [size=8]
Memory at d0000000 (32-bit, prefetchable) [size=256M]
Memory at fbc80000 (32-bit, non-prefetchable) [size=256K]
Capabilities: [d0] Power Management version 2
00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03) (prog-if 00 [UHCI])
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, medium devsel, latency 0, IRQ 209
I/O ports at c080 [size=32]
00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03) (prog-if 00 [UHCI])
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, medium devsel, latency 0, IRQ 201
I/O ports at c000 [size=32]
00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03) (prog-if 20 [EHCI])
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, medium devsel, latency 0, IRQ 209
Memory at fbcff800 (32-bit, non-prefetchable) [size=1K]
Capabilities: [50] Power Management version 2
Capabilities: [58] Debug port
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d3) (prog-if 01 [Subtractive decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
I/O behind bridge: 0000d000-0000dfff
Memory behind bridge: fbd00000-fbdfffff
Capabilities: [50] #0d [0000]
00:1f.0 ISA bridge: Intel Corporation 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge (rev 03)
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, medium devsel, latency 0
00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03) (prog-if 8a [Master SecP PriP])
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, medium devsel, latency 0, IRQ 193
I/O ports at <unassigned>
I/O ports at <unassigned>
I/O ports at <unassigned>
I/O ports at <unassigned>
I/O ports at ffa0 [size=16]
00:1f.2 IDE interface: Intel Corporation 82801FR/FRW (ICH6R/ICH6RW) SATA Controller (rev 03) (prog-if 8f [Master SecP SecO PriP PriO])
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 201
I/O ports at cc00 [size=8]
I/O ports at c880 [size=4]
I/O ports at c800 [size=8]
I/O ports at c480 [size=4]
I/O ports at c400 [size=16]
Memory at fbcffc00 (32-bit, non-prefetchable) [size=1K]
Capabilities: [70] Power Management version 2
00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03)
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: medium devsel, IRQ 201
I/O ports at 0540 [size=32]
01:08.0 Ethernet controller: Intel Corporation 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller (rev 03)
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, medium devsel, latency 64, IRQ 217
Memory at fbdff000 (32-bit, non-prefetchable) [size=4K]
I/O ports at dc00 [size=64]
Capabilities: [dc] Power Management version 2
02:00.0 PCI bridge: Intel Corporation 6700PXH PCI Express-to-PCI Bridge A (rev 09) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=02, secondary=03, subordinate=03, sec-latency=64
I/O behind bridge: 0000e000-0000efff
Memory behind bridge: fbf00000-fbffffff
Capabilities: [44] Express PCI/PCI-X Bridge IRQ 0
Capabilities: [5c] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable-
Capabilities: [6c] Power Management version 2
Capabilities: [d8] PCI-X bridge device
02:00.1 PIC: Intel Corporation 6700/6702PXH I/OxAPIC Interrupt Controller A (rev 09) (prog-if 20 [IO(X)-APIC])
Flags: bus master, fast devsel, latency 0
Memory at fbeff000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Express Endpoint IRQ 0
Capabilities: [6c] Power Management version 2
02:00.2 PCI bridge: Intel Corporation 6700PXH PCI Express-to-PCI Bridge B (rev 09) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=02, secondary=04, subordinate=04, sec-latency=64
Capabilities: [44] Express PCI/PCI-X Bridge IRQ 0
Capabilities: [5c] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable-
Capabilities: [6c] Power Management version 2
Capabilities: [d8] PCI-X bridge device
02:00.3 PIC: Intel Corporation 6700PXH I/OxAPIC Interrupt Controller B (rev 09) (prog-if 20 [IO(X)-APIC])
Flags: bus master, fast devsel, latency 0
Memory at fbefe000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Express Endpoint IRQ 0
Capabilities: [6c] Power Management version 2
03:03.0 Ethernet controller: Intel Corporation 82546GB Gigabit Ethernet Controller (rev 03)
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 225
Memory at fbfe0000 (64-bit, non-prefetchable) [size=128K]
I/O ports at ec00 [size=64]
Capabilities: [dc] Power Management version 2
Capabilities: [e4] PCI-X non-bridge device
Capabilities: [f0] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable-
03:03.1 Ethernet controller: Intel Corporation 82546GB Gigabit Ethernet Controller (rev 03)
Subsystem: Samsung Electronics Co Ltd Unknown device d002
Flags: bus master, 66MHz, medium devsel, latency 64, IRQ 233
Memory at fbfa0000 (64-bit, non-prefetchable) [size=128K]
I/O ports at e880 [size=64]
Capabilities: [dc] Power Management version 2
Capabilities: [e4] PCI-X non-bridge device
Capabilities: [f0] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable-
==================================================
Thu Feb 8 15:29:05 KST 2007: dmidecode
# dmidecode 2.7
SMBIOS 2.3 present.
16 structures occupying 765 bytes.
Table at 0x000FB410.
Handle 0x0000, DMI type 0, 20 bytes.
BIOS Information
Vendor: American Megatrends Inc.
Version: ZSS100.P02.00.035
Release Date: 12/20/2004
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 1024 kB
Characteristics:
ISA is supported
PCI is supported
PNP is supported
APM is supported
BIOS is upgradeable
BIOS shadowing is allowed
ESCD support is available
Boot from CD is supported
Selectable boot is supported
EDD is supported
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 KB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
LS-120 boot is supported
ATAPI Zip drive boot is supported
BIOS boot specification is supported
Handle 0x0001, DMI type 1, 25 bytes.
System Information
Manufacturer: SEC
Product Name: ZSS100
Version:
Serial Number:
UUID: 2958948A-9AAE-11D8-8000-0000F09C1F24
Wake-up Type: Power Switch
Handle 0x0002, DMI type 2, 8 bytes.
Base Board Information
Manufacturer: SEC
Product Name: ZSS100
Version: ......................
Serial Number: O02334CY200013
Handle 0x0003, DMI type 3, 17 bytes.
Chassis Information
Manufacturer: Samsung
Type: Rack Mount Chassis
Lock: Not Present
Version:
Serial Number:
Asset Tag:
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x00000000
Handle 0x0004, DMI type 4, 35 bytes.
Processor Information
Socket Designation: CPU 1
Type: Central Processor
Family: Xeon MP
Manufacturer: Intel
ID: 41 0F 00 00 FF FB EB BF
Signature: Type 0, Family 15, Model 4, Stepping 1
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (Fast floating-point save and restore)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Hyper-threading technology)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Pentium(R) 4 CPU 3.20GHz
Voltage: 3.3 V 2.9 V
External Clock: 800 MHz
Max Speed: 3200 MHz
Current Speed: 3200 MHz
Status: Populated, Enabled
Upgrade: Other
L1 Cache Handle: 0x0005
L2 Cache Handle: 0x0006
L3 Cache Handle: 0x0007
Serial Number: To Be Filled By O.E.M.
Asset Tag: To Be Filled By O.E.M.
Part Number: To Be Filled By O.E.M.
Handle 0x0005, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L1-Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Varies With Memory Address
Location: Internal
Installed Size: 16 KB
Maximum Size: 16 KB
Supported SRAM Types:
Pipeline Burst
Installed SRAM Type: Pipeline Burst
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Data
Associativity: 8-way Set-associative
Handle 0x0006, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L2-Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Varies With Memory Address
Location: Internal
Installed Size: 1024 KB
Maximum Size: 1024 KB
Supported SRAM Types:
Pipeline Burst
Installed SRAM Type: Pipeline Burst
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0007, DMI type 7, 19 bytes.
Cache Information
Socket Designation: L3-Cache
Configuration: Disabled, Not Socketed, Level 3
Operational Mode: Unknown
Location: Internal
Installed Size: 0 KB
Maximum Size: 0 KB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Unknown
System Type: Unknown
Associativity: Unknown
Handle 0x0008, DMI type 5, 24 bytes.
Memory Controller Information
Error Detecting Method: 64-bit ECC
Error Correcting Capabilities:
None
Single-bit Error Correcting
Double-bit Error Correcting
Supported Interleave: Two-way Interleave
Current Interleave: Two-way Interleave
Maximum Memory Module Size: 4096 MB
Maximum Total Memory Size: 16384 MB
Supported Speeds:
Other
Supported Memory Types:
DIMM
SDRAM
Memory Module Voltage: 3.3 V
Associated Memory Slots: 4
0x0009
0x000A
0x000B
0x000C
Enabled Error Correcting Capabilities:
None
Single-bit Error Correcting
Double-bit Error Correcting
Handle 0x0009, DMI type 6, 12 bytes.
Memory Module Information
Socket Designation: DIMM0
Bank Connections: 0 1
Current Speed: Unknown
Type: DIMM SDRAM
Installed Size: 1024 MB (Double-bank Connection)
Enabled Size: 1024 MB (Double-bank Connection)
Error Status: See Event Log
Handle 0x000A, DMI type 6, 12 bytes.
Memory Module Information
Socket Designation: DIMM1
Bank Connections: 2 3
Current Speed: Unknown
Type: DIMM SDRAM
Installed Size: Not Installed
Enabled Size: Not Installed
Error Status: See Event Log
Handle 0x000B, DMI type 6, 12 bytes.
Memory Module Information
Socket Designation: DIMM2
Bank Connections: 4 5
Current Speed: Unknown
Type: DIMM SDRAM
Installed Size: 1024 MB (Double-bank Connection)
Enabled Size: 1024 MB (Double-bank Connection)
Error Status: See Event Log
Handle 0x000C, DMI type 6, 12 bytes.
Memory Module Information
Socket Designation: DIMM3
Bank Connections: 6 7
Current Speed: Unknown
Type: DIMM SDRAM
Installed Size: Not Installed
Enabled Size: Not Installed
Error Status: See Event Log
Handle 0x000D, DMI type 13, 22 bytes.
BIOS Language Information
Installable Languages: 1
en|US|iso8859-1
Currently Installed Language: en|US|iso8859-1
Handle 0x000E, DMI type 32, 20 bytes.
System Boot Information
Status: No errors detected
Handle 0x000F, DMI type 127, 4 bytes.
End Of Table
==================================================
Thu Feb 8 15:29:05 KST 2007: route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
10.0.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth2
10.11.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth2
0.0.0.0 10.0.0.1 0.0.0.0 UG 0 0 0 eth0
==================================================
Thu Feb 8 15:29:05 KST 2007: ifconfig
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:38488 errors:0 dropped:0 overruns:0 frame:0
TX packets:57450 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2864023 (2.7 MiB) TX bytes:82261382 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
==================================================
Thu Feb 8 15:29:05 KST 2007: ip rule ls
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
==================================================
Thu Feb 8 15:29:05 KST 2007: ip route ls
10.0.0.0/16 dev eth0 proto kernel scope link src 10.0.0.51
10.0.0.0/16 dev eth2 proto kernel scope link src 10.0.0.201
10.11.0.0/16 dev eth1 proto kernel scope link src 10.11.0.90
169.254.0.0/16 dev eth2 scope link
default via 10.0.0.1 dev eth0
==================================================
Thu Feb 8 15:29:05 KST 2007: iptables
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
35071 2026K RH-Firewall-1-INPUT all -- * * 0.0.0.0/0 0.0.0.0/0
0 0 PORT01_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:25
0 0 PORT02_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:21
0 0 PORT03_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:8080
0 0 PORT04_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:22
0 0 PORT05_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:23
0 0 PORT06_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:110
0 0 PORT07_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:139
0 0 PORT08_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:3306
0 0 PORT09_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:4559
0 0 PORT10_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:3128
0 0 PORT11_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:53
0 0 PORT12_IN tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp dpt:143
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 RH-Firewall-1-INPUT all -- * * 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT 58811 packets, 82M bytes)
pkts bytes target prot opt in out source destination
0 0 PORT01_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:25
0 0 PORT02_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:21
0 0 PORT03_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:8080
674 93012 PORT04_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:22
0 0 PORT05_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:23
0 0 PORT06_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:110
32 2242 PORT07_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:139
0 0 PORT08_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:3306
0 0 PORT09_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:4559
0 0 PORT10_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:3128
0 0 PORT11_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:53
0 0 PORT12_OUT tcp -- * * 0.0.0.0/0 0.0.0.0/0 tcp spt:143
Chain PORT01_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT01_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT02_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT02_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT03_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT03_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT04_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT04_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT05_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT05_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT06_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT06_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT07_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT07_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT08_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT08_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT09_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT09_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT10_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT10_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT11_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT11_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain PORT12_IN (1 references)
pkts bytes target prot opt in out source destination
Chain PORT12_OUT (1 references)
pkts bytes target prot opt in out source destination
Chain RH-Firewall-1-INPUT (2 references)
pkts bytes target prot opt in out source destination
61 6845 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0
6 408 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0 icmp type 255
31712 1617K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
3188 383K ACCEPT all -- * * 10.0.0.0/16 0.0.0.0/0
104 19201 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
==================================================
Thu Feb 8 15:29:05 KST 2007: sysctl
sunrpc.max_resvport = 1023
sunrpc.min_resvport = 665
sunrpc.tcp_slot_table_entries = 16
sunrpc.udp_slot_table_entries = 16
sunrpc.nlm_debug = 0
sunrpc.nfsd_debug = 0
sunrpc.nfs_debug = 0
sunrpc.rpc_debug = 0
dev.parport.default.spintime = 500
dev.parport.default.timeslice = 200
dev.cdrom.check_media = 0
dev.cdrom.lock = 1
dev.cdrom.debug = 0
dev.cdrom.autoeject = 0
dev.cdrom.autoclose = 1
dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17
dev.cdrom.info =
dev.cdrom.info = drive name: hda
dev.cdrom.info = drive speed: 24
dev.cdrom.info = drive # of slots: 1
dev.cdrom.info = Can close tray: 1
dev.cdrom.info = Can open tray: 1
dev.cdrom.info = Can lock tray: 1
dev.cdrom.info = Can change speed: 1
dev.cdrom.info = Can select disk: 0
dev.cdrom.info = Can read multisession: 1
dev.cdrom.info = Can read MCN: 1
dev.cdrom.info = Reports media changed: 1
dev.cdrom.info = Can play audio: 1
dev.cdrom.info = Can write CD-R: 0
dev.cdrom.info = Can write CD-RW: 0
dev.cdrom.info = Can read DVD: 0
dev.cdrom.info = Can write DVD-R: 0
dev.cdrom.info = Can write DVD-RAM: 0
dev.cdrom.info = Can read MRW: 1
dev.cdrom.info = Can write MRW: 1
dev.cdrom.info = Can write RAM: 0
dev.cdrom.info =
dev.cdrom.info =
dev.scsi.logging_level = 0
dev.raid.speed_limit_max = 200000
dev.raid.speed_limit_min = 1000
dev.hpet.max-user-freq = 64
dev.rtc.max-user-freq = 64
net.ipv6.conf.eth0.router_probe_interval = 60
net.ipv6.conf.eth0.accept_ra_rtr_pref = 1
net.ipv6.conf.eth0.accept_ra_pinfo = 1
net.ipv6.conf.eth0.accept_ra_defrtr = 1
net.ipv6.conf.eth0.max_addresses = 16
net.ipv6.conf.eth0.max_desync_factor = 600
net.ipv6.conf.eth0.regen_max_retry = 5
net.ipv6.conf.eth0.temp_prefered_lft = 86400
net.ipv6.conf.eth0.temp_valid_lft = 604800
net.ipv6.conf.eth0.use_tempaddr = 0
net.ipv6.conf.eth0.force_mld_version = 0
net.ipv6.conf.eth0.router_solicitation_delay = 1
net.ipv6.conf.eth0.router_solicitation_interval = 4
net.ipv6.conf.eth0.router_solicitations = 3
net.ipv6.conf.eth0.dad_transmits = 1
net.ipv6.conf.eth0.autoconf = 1
net.ipv6.conf.eth0.accept_redirects = 1
net.ipv6.conf.eth0.accept_ra = 1
net.ipv6.conf.eth0.mtu = 1500
net.ipv6.conf.eth0.hop_limit = 64
net.ipv6.conf.eth0.forwarding = 0
net.ipv6.conf.default.router_probe_interval = 60
net.ipv6.conf.default.accept_ra_rtr_pref = 1
net.ipv6.conf.default.accept_ra_pinfo = 1
net.ipv6.conf.default.accept_ra_defrtr = 1
net.ipv6.conf.default.max_addresses = 16
net.ipv6.conf.default.max_desync_factor = 600
net.ipv6.conf.default.regen_max_retry = 5
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.conf.default.force_mld_version = 0
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.dad_transmits = 1
net.ipv6.conf.default.autoconf = 1
net.ipv6.conf.default.accept_redirects = 1
net.ipv6.conf.default.accept_ra = 1
net.ipv6.conf.default.mtu = 1280
net.ipv6.conf.default.hop_limit = 64
net.ipv6.conf.default.forwarding = 0
net.ipv6.conf.all.router_probe_interval = 60
net.ipv6.conf.all.accept_ra_rtr_pref = 1
net.ipv6.conf.all.accept_ra_pinfo = 1
net.ipv6.conf.all.accept_ra_defrtr = 1
net.ipv6.conf.all.max_addresses = 16
net.ipv6.conf.all.max_desync_factor = 600
net.ipv6.conf.all.regen_max_retry = 5
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.all.force_mld_version = 0
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.dad_transmits = 1
net.ipv6.conf.all.autoconf = 1
net.ipv6.conf.all.accept_redirects = 1
net.ipv6.conf.all.accept_ra = 1
net.ipv6.conf.all.mtu = 1280
net.ipv6.conf.all.hop_limit = 64
net.ipv6.conf.all.forwarding = 0
net.ipv6.conf.lo.router_probe_interval = 60
net.ipv6.conf.lo.accept_ra_rtr_pref = 1
net.ipv6.conf.lo.accept_ra_pinfo = 1
net.ipv6.conf.lo.accept_ra_defrtr = 1
net.ipv6.conf.lo.max_addresses = 16
net.ipv6.conf.lo.max_desync_factor = 600
net.ipv6.conf.lo.regen_max_retry = 5
net.ipv6.conf.lo.temp_prefered_lft = 86400
net.ipv6.conf.lo.temp_valid_lft = 604800
net.ipv6.conf.lo.use_tempaddr = -1
net.ipv6.conf.lo.force_mld_version = 0
net.ipv6.conf.lo.router_solicitation_delay = 1
net.ipv6.conf.lo.router_solicitation_interval = 4
net.ipv6.conf.lo.router_solicitations = 3
net.ipv6.conf.lo.dad_transmits = 1
net.ipv6.conf.lo.autoconf = 1
net.ipv6.conf.lo.accept_redirects = 1
net.ipv6.conf.lo.accept_ra = 1
net.ipv6.conf.lo.mtu = 16436
net.ipv6.conf.lo.hop_limit = 64
net.ipv6.conf.lo.forwarding = 0
net.ipv6.neigh.eth0.base_reachable_time_ms = 30000
net.ipv6.neigh.eth0.retrans_time_ms = 1000
net.ipv6.neigh.eth0.locktime = 0
net.ipv6.neigh.eth0.proxy_delay = 79
net.ipv6.neigh.eth0.anycast_delay = 99
net.ipv6.neigh.eth0.proxy_qlen = 64
net.ipv6.neigh.eth0.unres_qlen = 3
net.ipv6.neigh.eth0.gc_stale_time = 60
net.ipv6.neigh.eth0.delay_first_probe_time = 5
net.ipv6.neigh.eth0.base_reachable_time = 30
net.ipv6.neigh.eth0.retrans_time = 1000
net.ipv6.neigh.eth0.app_solicit = 0
net.ipv6.neigh.eth0.ucast_solicit = 3
net.ipv6.neigh.eth0.mcast_solicit = 3
net.ipv6.neigh.lo.base_reachable_time_ms = 30000
net.ipv6.neigh.lo.retrans_time_ms = 1000
net.ipv6.neigh.lo.locktime = 0
net.ipv6.neigh.lo.proxy_delay = 79
net.ipv6.neigh.lo.anycast_delay = 99
net.ipv6.neigh.lo.proxy_qlen = 64
net.ipv6.neigh.lo.unres_qlen = 3
net.ipv6.neigh.lo.gc_stale_time = 60
net.ipv6.neigh.lo.delay_first_probe_time = 5
net.ipv6.neigh.lo.base_reachable_time = 30
net.ipv6.neigh.lo.retrans_time = 1000
net.ipv6.neigh.lo.app_solicit = 0
net.ipv6.neigh.lo.ucast_solicit = 3
net.ipv6.neigh.lo.mcast_solicit = 3
net.ipv6.neigh.default.base_reachable_time_ms = 30000
net.ipv6.neigh.default.retrans_time_ms = 1000
net.ipv6.neigh.default.gc_thresh3 = 1024
net.ipv6.neigh.default.gc_thresh2 = 512
net.ipv6.neigh.default.gc_thresh1 = 128
net.ipv6.neigh.default.gc_interval = 30
net.ipv6.neigh.default.locktime = 0
net.ipv6.neigh.default.proxy_delay = 79
net.ipv6.neigh.default.anycast_delay = 99
net.ipv6.neigh.default.proxy_qlen = 64
net.ipv6.neigh.default.unres_qlen = 3
net.ipv6.neigh.default.gc_stale_time = 60
net.ipv6.neigh.default.delay_first_probe_time = 5
net.ipv6.neigh.default.base_reachable_time = 30
net.ipv6.neigh.default.retrans_time = 1000
net.ipv6.neigh.default.app_solicit = 0
net.ipv6.neigh.default.ucast_solicit = 3
net.ipv6.neigh.default.mcast_solicit = 3
net.ipv6.mld_max_msf = 64
net.ipv6.ip6frag_secret_interval = 600
net.ipv6.ip6frag_time = 60
net.ipv6.ip6frag_low_thresh = 196608
net.ipv6.ip6frag_high_thresh = 262144
net.ipv6.bindv6only = 0
net.ipv6.icmp.ratelimit = 1000
net.ipv6.route.gc_min_interval_ms = 500
net.ipv6.route.min_adv_mss = 1
net.ipv6.route.mtu_expires = 600
net.ipv6.route.gc_elasticity = 0
net.ipv6.route.gc_interval = 30
net.ipv6.route.gc_timeout = 60
net.ipv6.route.gc_min_interval = 0
net.ipv6.route.max_size = 4096
net.ipv6.route.gc_thresh = 1024
net.unix.max_dgram_qlen = 10
net.token-ring.rif_timeout = 600000
net.ipv4.ip_conntrack_max = 65536
net.ipv4.netfilter.ip_conntrack_tcp_max_retrans = 3
net.ipv4.netfilter.ip_conntrack_tcp_be_liberal = 0
net.ipv4.netfilter.ip_conntrack_tcp_loose = 3
net.ipv4.netfilter.ip_conntrack_tcp_timeout_max_retrans = 300
net.ipv4.netfilter.ip_conntrack_log_invalid = 0
net.ipv4.netfilter.ip_conntrack_generic_timeout = 600
net.ipv4.netfilter.ip_conntrack_icmp_timeout = 30
net.ipv4.netfilter.ip_conntrack_udp_timeout_stream = 180
net.ipv4.netfilter.ip_conntrack_udp_timeout = 30
net.ipv4.netfilter.ip_conntrack_tcp_timeout_close = 10
net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait = 120
net.ipv4.netfilter.ip_conntrack_tcp_timeout_last_ack = 30
net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait = 60
net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait = 120
net.ipv4.netfilter.ip_conntrack_tcp_timeout_established = 432000
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_checksum = 1
net.ipv4.netfilter.ip_conntrack_buckets = 8192
net.ipv4.netfilter.ip_conntrack_count = 7
net.ipv4.netfilter.ip_conntrack_max = 65536
net.ipv4.conf.eth2.promote_secondaries = 0
net.ipv4.conf.eth2.force_igmp_version = 0
net.ipv4.conf.eth2.disable_policy = 0
net.ipv4.conf.eth2.disable_xfrm = 0
net.ipv4.conf.eth2.arp_accept = 0
net.ipv4.conf.eth2.arp_ignore = 0
net.ipv4.conf.eth2.arp_announce = 0
net.ipv4.conf.eth2.arp_filter = 0
net.ipv4.conf.eth2.tag = 0
net.ipv4.conf.eth2.log_martians = 0
net.ipv4.conf.eth2.bootp_relay = 0
net.ipv4.conf.eth2.medium_id = 0
net.ipv4.conf.eth2.proxy_arp = 0
net.ipv4.conf.eth2.accept_source_route = 0
net.ipv4.conf.eth2.send_redirects = 1
net.ipv4.conf.eth2.rp_filter = 1
net.ipv4.conf.eth2.shared_media = 1
net.ipv4.conf.eth2.secure_redirects = 1
net.ipv4.conf.eth2.accept_redirects = 1
net.ipv4.conf.eth2.mc_forwarding = 0
net.ipv4.conf.eth2.forwarding = 0
net.ipv4.conf.eth1.promote_secondaries = 0
net.ipv4.conf.eth1.force_igmp_version = 0
net.ipv4.conf.eth1.disable_policy = 0
net.ipv4.conf.eth1.disable_xfrm = 0
net.ipv4.conf.eth1.arp_accept = 0
net.ipv4.conf.eth1.arp_ignore = 0
net.ipv4.conf.eth1.arp_announce = 0
net.ipv4.conf.eth1.arp_filter = 0
net.ipv4.conf.eth1.tag = 0
net.ipv4.conf.eth1.log_martians = 0
net.ipv4.conf.eth1.bootp_relay = 0
net.ipv4.conf.eth1.medium_id = 0
net.ipv4.conf.eth1.proxy_arp = 0
net.ipv4.conf.eth1.accept_source_route = 0
net.ipv4.conf.eth1.send_redirects = 1
net.ipv4.conf.eth1.rp_filter = 1
net.ipv4.conf.eth1.shared_media = 1
net.ipv4.conf.eth1.secure_redirects = 1
net.ipv4.conf.eth1.accept_redirects = 1
net.ipv4.conf.eth1.mc_forwarding = 0
net.ipv4.conf.eth1.forwarding = 0
net.ipv4.conf.eth0.promote_secondaries = 0
net.ipv4.conf.eth0.force_igmp_version = 0
net.ipv4.conf.eth0.disable_policy = 0
net.ipv4.conf.eth0.disable_xfrm = 0
net.ipv4.conf.eth0.arp_accept = 0
net.ipv4.conf.eth0.arp_ignore = 0
net.ipv4.conf.eth0.arp_announce = 0
net.ipv4.conf.eth0.arp_filter = 0
net.ipv4.conf.eth0.tag = 0
net.ipv4.conf.eth0.log_martians = 0
net.ipv4.conf.eth0.bootp_relay = 0
net.ipv4.conf.eth0.medium_id = 0
net.ipv4.conf.eth0.proxy_arp = 0
net.ipv4.conf.eth0.accept_source_route = 0
net.ipv4.conf.eth0.send_redirects = 1
net.ipv4.conf.eth0.rp_filter = 1
net.ipv4.conf.eth0.shared_media = 1
net.ipv4.conf.eth0.secure_redirects = 1
net.ipv4.conf.eth0.accept_redirects = 1
net.ipv4.conf.eth0.mc_forwarding = 0
net.ipv4.conf.eth0.forwarding = 0
net.ipv4.conf.lo.promote_secondaries = 0
net.ipv4.conf.lo.force_igmp_version = 0
net.ipv4.conf.lo.disable_policy = 1
net.ipv4.conf.lo.disable_xfrm = 1
net.ipv4.conf.lo.arp_accept = 0
net.ipv4.conf.lo.arp_ignore = 0
net.ipv4.conf.lo.arp_announce = 0
net.ipv4.conf.lo.arp_filter = 0
net.ipv4.conf.lo.tag = 0
net.ipv4.conf.lo.log_martians = 0
net.ipv4.conf.lo.bootp_relay = 0
net.ipv4.conf.lo.medium_id = 0
net.ipv4.conf.lo.proxy_arp = 0
net.ipv4.conf.lo.accept_source_route = 1
net.ipv4.conf.lo.send_redirects = 1
net.ipv4.conf.lo.rp_filter = 0
net.ipv4.conf.lo.shared_media = 1
net.ipv4.conf.lo.secure_redirects = 1
net.ipv4.conf.lo.accept_redirects = 1
net.ipv4.conf.lo.mc_forwarding = 0
net.ipv4.conf.lo.forwarding = 0
net.ipv4.conf.default.promote_secondaries = 0
net.ipv4.conf.default.force_igmp_version = 0
net.ipv4.conf.default.disable_policy = 0
net.ipv4.conf.default.disable_xfrm = 0
net.ipv4.conf.default.arp_accept = 0
net.ipv4.conf.default.arp_ignore = 0
net.ipv4.conf.default.arp_announce = 0
net.ipv4.conf.default.arp_filter = 0
net.ipv4.conf.default.tag = 0
net.ipv4.conf.default.log_martians = 0
net.ipv4.conf.default.bootp_relay = 0
net.ipv4.conf.default.medium_id = 0
net.ipv4.conf.default.proxy_arp = 0
net.ipv4.conf.default.accept_source_route = 0
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.default.shared_media = 1
net.ipv4.conf.default.secure_redirects = 1
net.ipv4.conf.default.accept_redirects = 1
net.ipv4.conf.default.mc_forwarding = 0
net.ipv4.conf.default.forwarding = 0
net.ipv4.conf.all.promote_secondaries = 0
net.ipv4.conf.all.force_igmp_version = 0
net.ipv4.conf.all.disable_policy = 0
net.ipv4.conf.all.disable_xfrm = 0
net.ipv4.conf.all.arp_accept = 0
net.ipv4.conf.all.arp_ignore = 0
net.ipv4.conf.all.arp_announce = 0
net.ipv4.conf.all.arp_filter = 0
net.ipv4.conf.all.tag = 0
net.ipv4.conf.all.log_martians = 0
net.ipv4.conf.all.bootp_relay = 0
net.ipv4.conf.all.medium_id = 0
net.ipv4.conf.all.proxy_arp = 0
net.ipv4.conf.all.accept_source_route = 0
net.ipv4.conf.all.send_redirects = 1
net.ipv4.conf.all.rp_filter = 0
net.ipv4.conf.all.shared_media = 1
net.ipv4.conf.all.secure_redirects = 1
net.ipv4.conf.all.accept_redirects = 1
net.ipv4.conf.all.mc_forwarding = 0
net.ipv4.conf.all.forwarding = 0
net.ipv4.neigh.eth2.base_reachable_time_ms = 30000
net.ipv4.neigh.eth2.retrans_time_ms = 1000
net.ipv4.neigh.eth2.locktime = 99
net.ipv4.neigh.eth2.proxy_delay = 79
net.ipv4.neigh.eth2.anycast_delay = 99
net.ipv4.neigh.eth2.proxy_qlen = 64
net.ipv4.neigh.eth2.unres_qlen = 3
net.ipv4.neigh.eth2.gc_stale_time = 60
net.ipv4.neigh.eth2.delay_first_probe_time = 5
net.ipv4.neigh.eth2.base_reachable_time = 30
net.ipv4.neigh.eth2.retrans_time = 99
net.ipv4.neigh.eth2.app_solicit = 0
net.ipv4.neigh.eth2.ucast_solicit = 3
net.ipv4.neigh.eth2.mcast_solicit = 3
net.ipv4.neigh.eth1.base_reachable_time_ms = 30000
net.ipv4.neigh.eth1.retrans_time_ms = 1000
net.ipv4.neigh.eth1.locktime = 99
net.ipv4.neigh.eth1.proxy_delay = 79
net.ipv4.neigh.eth1.anycast_delay = 99
net.ipv4.neigh.eth1.proxy_qlen = 64
net.ipv4.neigh.eth1.unres_qlen = 3
net.ipv4.neigh.eth1.gc_stale_time = 60
net.ipv4.neigh.eth1.delay_first_probe_time = 5
net.ipv4.neigh.eth1.base_reachable_time = 30
net.ipv4.neigh.eth1.retrans_time = 99
net.ipv4.neigh.eth1.app_solicit = 0
net.ipv4.neigh.eth1.ucast_solicit = 3
net.ipv4.neigh.eth1.mcast_solicit = 3
net.ipv4.neigh.eth0.base_reachable_time_ms = 30000
net.ipv4.neigh.eth0.retrans_time_ms = 1000
net.ipv4.neigh.eth0.locktime = 99
net.ipv4.neigh.eth0.proxy_delay = 79
net.ipv4.neigh.eth0.anycast_delay = 99
net.ipv4.neigh.eth0.proxy_qlen = 64
net.ipv4.neigh.eth0.unres_qlen = 3
net.ipv4.neigh.eth0.gc_stale_time = 60
net.ipv4.neigh.eth0.delay_first_probe_time = 5
net.ipv4.neigh.eth0.base_reachable_time = 30
net.ipv4.neigh.eth0.retrans_time = 99
net.ipv4.neigh.eth0.app_solicit = 0
net.ipv4.neigh.eth0.ucast_solicit = 3
net.ipv4.neigh.eth0.mcast_solicit = 3
net.ipv4.neigh.lo.base_reachable_time_ms = 30000
net.ipv4.neigh.lo.retrans_time_ms = 1000
net.ipv4.neigh.lo.locktime = 99
net.ipv4.neigh.lo.proxy_delay = 79
net.ipv4.neigh.lo.anycast_delay = 99
net.ipv4.neigh.lo.proxy_qlen = 64
net.ipv4.neigh.lo.unres_qlen = 3
net.ipv4.neigh.lo.gc_stale_time = 60
net.ipv4.neigh.lo.delay_first_probe_time = 5
net.ipv4.neigh.lo.base_reachable_time = 30
net.ipv4.neigh.lo.retrans_time = 99
net.ipv4.neigh.lo.app_solicit = 0
net.ipv4.neigh.lo.ucast_solicit = 3
net.ipv4.neigh.lo.mcast_solicit = 3
net.ipv4.neigh.default.base_reachable_time_ms = 30000
net.ipv4.neigh.default.retrans_time_ms = 1000
net.ipv4.neigh.default.gc_thresh3 = 1024
net.ipv4.neigh.default.gc_thresh2 = 512
net.ipv4.neigh.default.gc_thresh1 = 128
net.ipv4.neigh.default.gc_interval = 30
net.ipv4.neigh.default.locktime = 99
net.ipv4.neigh.default.proxy_delay = 79
net.ipv4.neigh.default.anycast_delay = 99
net.ipv4.neigh.default.proxy_qlen = 64
net.ipv4.neigh.default.unres_qlen = 3
net.ipv4.neigh.default.gc_stale_time = 60
net.ipv4.neigh.default.delay_first_probe_time = 5
net.ipv4.neigh.default.base_reachable_time = 30
net.ipv4.neigh.default.retrans_time = 99
net.ipv4.neigh.default.app_solicit = 0
net.ipv4.neigh.default.ucast_solicit = 3
net.ipv4.neigh.default.mcast_solicit = 3
net.ipv4.tcp_slow_start_after_idle = 1
net.ipv4.tcp_dma_copybreak = 4096
net.ipv4.tcp_workaround_signed_windows = 0
net.ipv4.tcp_base_mss = 512
net.ipv4.tcp_mtu_probing = 0
net.ipv4.tcp_abc = 0
net.ipv4.tcp_congestion_control = bic
net.ipv4.tcp_tso_win_divisor = 3
net.ipv4.tcp_moderate_rcvbuf = 1
net.ipv4.tcp_no_metrics_save = 0
net.ipv4.ipfrag_max_dist = 64
net.ipv4.ipfrag_secret_interval = 600
net.ipv4.tcp_low_latency = 0
net.ipv4.tcp_frto = 0
net.ipv4.tcp_tw_reuse = 0
net.ipv4.icmp_ratemask = 6168
net.ipv4.icmp_ratelimit = 1000
net.ipv4.tcp_adv_win_scale = 2
net.ipv4.tcp_app_win = 31
net.ipv4.tcp_rmem = 4096 87380 4194304
net.ipv4.tcp_wmem = 4096 16384 4194304
net.ipv4.tcp_mem = 393216 524288 786432
net.ipv4.tcp_dsack = 1
net.ipv4.tcp_ecn = 0
net.ipv4.tcp_reordering = 3
net.ipv4.tcp_fack = 1
net.ipv4.tcp_orphan_retries = 0
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.igmp_max_msf = 10
net.ipv4.igmp_max_memberships = 20
net.ipv4.route.secret_interval = 600
net.ipv4.route.min_adv_mss = 256
net.ipv4.route.min_pmtu = 552
net.ipv4.route.mtu_expires = 600
net.ipv4.route.gc_elasticity = 8
net.ipv4.route.error_burst = 5000
net.ipv4.route.error_cost = 1000
net.ipv4.route.redirect_silence = 20480
net.ipv4.route.redirect_number = 9
net.ipv4.route.redirect_load = 20
net.ipv4.route.gc_interval = 60
net.ipv4.route.gc_timeout = 300
net.ipv4.route.gc_min_interval_ms = 500
net.ipv4.route.gc_min_interval = 0
net.ipv4.route.max_size = 524288
net.ipv4.route.gc_thresh = 32768
net.ipv4.route.max_delay = 10
net.ipv4.route.min_delay = 2
net.ipv4.icmp_errors_use_inbound_ifaddr = 0
net.ipv4.icmp_ignore_bogus_error_responses = 1
net.ipv4.icmp_echo_ignore_broadcasts = 1
net.ipv4.icmp_echo_ignore_all = 0
net.ipv4.ip_local_port_range = 32768 61000
net.ipv4.tcp_max_syn_backlog = 1024
net.ipv4.tcp_rfc1337 = 0
net.ipv4.tcp_stdurg = 0
net.ipv4.tcp_abort_on_overflow = 0
net.ipv4.tcp_tw_recycle = 0
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_fin_timeout = 60
net.ipv4.tcp_retries2 = 15
net.ipv4.tcp_retries1 = 3
net.ipv4.tcp_keepalive_intvl = 75
net.ipv4.tcp_keepalive_probes = 9
net.ipv4.tcp_keepalive_time = 7200
net.ipv4.ipfrag_time = 30
net.ipv4.ip_dynaddr = 0
net.ipv4.ipfrag_low_thresh = 196608
net.ipv4.ipfrag_high_thresh = 262144
net.ipv4.tcp_max_tw_buckets = 180000
net.ipv4.tcp_max_orphans = 131072
net.ipv4.tcp_synack_retries = 5
net.ipv4.tcp_syn_retries = 5
net.ipv4.ip_nonlocal_bind = 0
net.ipv4.ip_no_pmtu_disc = 0
net.ipv4.ip_default_ttl = 64
net.ipv4.ip_forward = 0
net.ipv4.tcp_retrans_collapse = 1
net.ipv4.tcp_sack = 1
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_timestamps = 1
net.core.netdev_budget = 300
net.core.somaxconn = 128
net.core.xfrm_aevent_rseqth = 2
net.core.xfrm_aevent_etime = 10
net.core.optmem_max = 10240
net.core.message_burst = 10
net.core.message_cost = 5
net.core.netdev_max_backlog = 1000
net.core.dev_weight = 64
net.core.rmem_default = 109568
net.core.wmem_default = 109568
net.core.rmem_max = 131071
net.core.wmem_max = 131071
vm.vdso_enabled = 1
vm.swap_token_timeout = 300
vm.legacy_va_layout = 0
vm.vfs_cache_pressure = 100
vm.block_dump = 0
vm.laptop_mode = 0
vm.max_map_count = 65536
vm.percpu_pagelist_fraction = 0
vm.min_free_kbytes = 3831
vm.drop_caches = 0
vm.lowmem_reserve_ratio = 256 256 32
vm.hugetlb_shm_group = 0
vm.nr_hugepages = 0
vm.swappiness = 60
vm.nr_pdflush_threads = 2
vm.dirty_expire_centisecs = 2999
vm.dirty_writeback_centisecs = 499
vm.dirty_ratio = 40
vm.dirty_background_ratio = 10
vm.page-cluster = 3
vm.overcommit_ratio = 50
vm.panic_on_oom = 0
vm.overcommit_memory = 0
kernel.max_lock_depth = 1024
kernel.acpi_video_flags = 0
kernel.randomize_va_space = 1
kernel.bootloader_type = 113
kernel.unknown_nmi_panic = 0
kernel.ngroups_max = 65536
kernel.printk_ratelimit_burst = 10
kernel.printk_ratelimit = 5
kernel.panic_on_oops = 0
kernel.pid_max = 32768
kernel.overflowgid = 65534
kernel.overflowuid = 65534
kernel.pty.nr = 2
kernel.pty.max = 4096
kernel.random.uuid = b152ba65-8ff4-4811-a73a-54c8153b958e
kernel.random.boot_id = fb2da7bd-7a4d-4e2f-8fab-58357397ac15
kernel.random.write_wakeup_threshold = 128
kernel.random.read_wakeup_threshold = 64
kernel.random.entropy_avail = 3207
kernel.random.poolsize = 4096
kernel.threads-max = 65278
kernel.cad_pid = 1
kernel.sysrq = 0
kernel.sem = 250 32000 32 128
kernel.msgmnb = 16384
kernel.msgmni = 16
kernel.msgmax = 8192
kernel.shmmni = 4096
kernel.shmall = 2097152
kernel.shmmax = 33554432
kernel.acct = 4 2 30
kernel.hotplug =
kernel.modprobe = /sbin/modprobe
kernel.printk = 6 4 1 7
kernel.ctrl-alt-del = 0
kernel.real-root-dev = 0
kernel.cap-bound = -257
kernel.tainted = 0
kernel.core_pattern = core
kernel.core_uses_pid = 1
kernel.vdso_populate = 1
kernel.vdso = 1
kernel.print-fatal-signals = 0
kernel.exec-shield = 1
kernel.panic = 0
kernel.domainname = (none)
kernel.hostname = office002
kernel.version = #1 SMP Fri Dec 15 16:33:51 EST 2006
kernel.osrelease = 2.6.18-1.2257.fc5smp
kernel.ostype = Linux
fs.mqueue.msgsize_max = 8192
fs.mqueue.msg_max = 10
fs.mqueue.queues_max = 256
fs.quota.warnings = 1
fs.quota.syncs = 20
fs.quota.free_dquots = 0
fs.quota.allocated_dquots = 0
fs.quota.cache_hits = 0
fs.quota.writes = 0
fs.quota.reads = 0
fs.quota.drops = 0
fs.quota.lookups = 0
fs.suid_dumpable = 0
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_watches = 8192
fs.inotify.max_user_instances = 128
fs.aio-max-nr = 65536
fs.aio-nr = 0
fs.lease-break-time = 45
fs.dir-notify-enable = 1
fs.leases-enable = 1
fs.overflowgid = 65534
fs.overflowuid = 65534
fs.dentry-state = 7855 5973 45 0 0 0
fs.file-max = 205302
fs.file-nr = 832 0 205302
fs.inode-state = 5999 110 0 0 0 0 0
fs.inode-nr = 5999 110
fs.binfmt_misc.status = enabled==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 15
model : 4
model name : Intel(R) Pentium(R) 4 CPU 3.20GHz
stepping : 1
cpu MHz : 3200.416
cache size : 1024 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc pni monitor ds_cpl cid xtpr
bogomips : 6403.58
processor : 1
vendor_id : GenuineIntel
cpu family : 15
model : 4
model name : Intel(R) Pentium(R) 4 CPU 3.20GHz
stepping : 1
cpu MHz : 3200.416
cache size : 1024 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc pni monitor ds_cpl cid xtpr
bogomips : 6399.37
==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/meminfo
MemTotal: 2067176 kB
MemFree: 1736976 kB
Buffers: 44248 kB
Cached: 238456 kB
SwapCached: 0 kB
Active: 84592 kB
Inactive: 215240 kB
HighTotal: 1171392 kB
HighFree: 909464 kB
LowTotal: 895784 kB
LowFree: 827512 kB
SwapTotal: 2096376 kB
SwapFree: 2096376 kB
Dirty: 220 kB
Writeback: 0 kB
AnonPages: 16964 kB
Mapped: 10344 kB
Slab: 16324 kB
PageTables: 1924 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
CommitLimit: 3129964 kB
Committed_AS: 69440 kB
VmallocTotal: 116728 kB
VmallocUsed: 4048 kB
VmallocChunk: 112308 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
Hugepagesize: 2048 kB
==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/net/dev
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
lo: 6845 61 0 0 0 0 0 0 6845 61 0 0 0 0 0 0
eth0: 2864305 38492 0 0 0 0 0 0 82262320 57457 0 0 0 0 0 0
eth1: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
eth2: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/interrupts
CPU0 CPU1
0: 2014162 1710752 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 15385 16205 IO-APIC-edge ide0
201: 139277 70188 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 43515 IO-APIC-level eth0
225: 1610 152 IO-APIC-level eth1
233: 1465 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3724841 3724839
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/devices
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
21 sg
29 fb
128 ptm
136 pts
180 usb
189 usb_device
216 rfcomm
254 pcmcia
Block devices:
1 ramdisk
2 fd
3 ide0
8 sd
9 md
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
==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/cmdline
ro root=/dev/md6
==================================================
Thu Feb 8 15:29:05 KST 2007: /proc/scsi/scsi
Attached devices:
Host: scsi0 Channel: 00 Id: 00 Lun: 00
Vendor: ATA Model: SAMSUNG SP1614C Rev: SW10
Type: Direct-Access ANSI SCSI revision: 05
Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: ATA Model: SAMSUNG SP1614C Rev: SW10
Type: Direct-Access ANSI SCSI revision: 05
==================================================
Thu Feb 8 15:29:05 KST 2007: /etc/modules.conf
cat: /etc/modules.conf: No such file or directory
==================================================
Thu Feb 8 15:29:05 KST 2007: /var/log/dmesg
Linux version 2.6.18-1.2257.fc5smp (brewbuilder@ls20-bc1-14.build.redhat.com) (gcc version 4.1.1 20060525 (Red Hat 4.1.1-1)) #1 SMP Fri Dec 15 16:33:51 EST 2006
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000007f7f0000 (usable)
BIOS-e820: 000000007f7f0000 - 000000007f7fe000 (ACPI data)
BIOS-e820: 000000007f7fe000 - 000000007f800000 (ACPI NVS)
BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
1143MB HIGHMEM available.
896MB LOWMEM available.
found SMP MP-table at 000ff780
NX (Execute Disable) protection: active
On node 0 totalpages: 522224
DMA zone: 4096 pages, LIFO batch:0
Normal zone: 225280 pages, LIFO batch:31
HighMem zone: 292848 pages, LIFO batch:31
DMI 2.3 present.
Using APIC driver default
ACPI: RSDP (v000 ACPIAM ) @ 0x000f9020
ACPI: RSDT (v001 A M I OEMRSDT 0x12000420 MSFT 0x00000097) @ 0x7f7f0000
ACPI: FADT (v002 A M I OEMFACP 0x12000420 MSFT 0x00000097) @ 0x7f7f0200
ACPI: MADT (v001 A M I OEMAPIC 0x12000420 MSFT 0x00000097) @ 0x7f7f0390
ACPI: OEMB (v001 A M I AMI_OEM 0x12000420 MSFT 0x00000097) @ 0x7f7fe040
ACPI: MCFG (v001 A M I OEMMCFG 0x12000420 MSFT 0x00000097) @ 0x7f7f3ed0
ACPI: DSDT (v001 Victo Victo035 0x00000035 INTL 0x02002026) @ 0x00000000
ACPI: PM-Timer IO Port: 0x808
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Processor #0 15:4 APIC version 20
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Processor #1 15:4 APIC version 20
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
ACPI: IOAPIC (id[0x03] address[0xfec80000] gsi_base[24])
IOAPIC[1]: apic_id 3, version 32, address 0xfec80000, GSI 24-47
ACPI: IOAPIC (id[0x04] address[0xfec80400] gsi_base[48])
IOAPIC[2]: apic_id 4, version 32, address 0xfec80400, GSI 48-71
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 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Enabling APIC mode: Flat. Using 3 I/O APICs
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 80000000 (gap: 7f800000:7f600000)
Detected 3200.416 MHz processor.
Built 1 zonelists. Total pages: 522224
Kernel command line: ro root=/dev/md6
mapped APIC to ffffd000 (fee00000)
mapped IOAPIC to ffffc000 (fec00000)
mapped IOAPIC to ffffb000 (fec80000)
mapped IOAPIC to ffffa000 (fec80400)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
CPU 0 irqstacks, hard=c07a3000 soft=c0783000
PID hash table entries: 4096 (order: 12, 16384 bytes)
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 2064984k/2088896k available (2111k kernel code, 22644k reserved, 850k data, 244k init, 1171392k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay using timer specific routine.. 6403.58 BogoMIPS (lpj=3201791)
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: 512
CPU: After generic identify, caps: bfebfbff 00100000 00000000 00000000 0000441d 00000000 00000000
CPU: After vendor identify, caps: bfebfbff 00100000 00000000 00000000 0000441d 00000000 00000000
monitor/mwait feature present.
using mwait in idle threads.
CPU: Trace cache: 12K uops, L1 D cache: 16K
CPU: L2 cache: 1024K
CPU: Physical Processor ID: 0
CPU: After all inits, caps: bfebfbff 00100000 00000000 00000180 0000441d 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU0: Intel P4/Xeon Extended MCE MSRs (12) available
CPU0: Thermal monitoring enabled
Checking 'hlt' instruction... OK.
SMP alternatives: switching to UP code
ACPI: Core revision 20060707
CPU0: Intel(R) Pentium(R) 4 CPU 3.20GHz stepping 01
SMP alternatives: switching to SMP code
Booting processor 1/1 eip 3000
CPU 1 irqstacks, hard=c07a4000 soft=c0784000
Initializing CPU#1
Calibrating delay using timer specific routine.. 6399.37 BogoMIPS (lpj=3199687)
CPU: After generic identify, caps: bfebfbff 00100000 00000000 00000000 0000441d 00000000 00000000
CPU: After vendor identify, caps: bfebfbff 00100000 00000000 00000000 0000441d 00000000 00000000
monitor/mwait feature present.
CPU: Trace cache: 12K uops, L1 D cache: 16K
CPU: L2 cache: 1024K
CPU: Physical Processor ID: 0
CPU: After all inits, caps: bfebfbff 00100000 00000000 00000180 0000441d 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#1.
CPU1: Intel P4/Xeon Extended MCE MSRs (12) available
CPU1: Thermal monitoring enabled
CPU1: Intel(R) Pentium(R) 4 CPU 3.20GHz stepping 01
Total of 2 processors activated (12802.95 BogoMIPS).
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
checking TSC synchronization across 2 CPUs: passed.
Brought up 2 CPUs
sizeof(vma)=88 bytes
sizeof(page)=32 bytes
sizeof(inode)=424 bytes
sizeof(dentry)=148 bytes
sizeof(ext3inode)=600 bytes
sizeof(buffer_head)=52 bytes
sizeof(skbuff)=172 bytes
sizeof(task_struct)=1408 bytes
migration_cost=76
checking if image is initramfs... it is
Freeing initrd memory: 1066k freed
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: BIOS Bug: MCFG area at e0000000 is not E820-reserved
PCI: Not using MMCONFIG.
PCI: PCI BIOS revision 2.10 entry at 0xf0031, last bus=4
PCI: Using configuration type 1
Setting up standard PCI resources
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
Boot video device is 0000:00:02.0
PCI quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
PCI quirk: region 0480-04bf claimed by ICH6 GPIO
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.1
PCI: PXH quirk detected, disabling MSI for SHPC device
PCI: PXH quirk detected, disabling MSI for SHPC device
PCI: Firmware left 0000:01:08.0 e100 interrupts enabled, disabling
PCI: Transparent bridge - 0000:00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2.PXHA._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2.PXHB._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 15 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
pnp: 00:01: ioport range 0xa20-0xa2f has been reserved
pnp: 00:01: ioport range 0xa64-0xa6c has been reserved
pnp: 00:01: ioport range 0xa6d-0xa6f has been reserved
pnp: 00:01: ioport range 0xa74-0xa74 has been reserved
pnp: 00:01: ioport range 0xa7a-0xa7f has been reserved
pnp: 00:08: ioport range 0x640-0x65f has been reserved
pnp: 00:08: ioport range 0x620-0x63f has been reserved
pnp: 00:08: ioport range 0x600-0x60f has been reserved
PCI: Ignore bogus resource 6 [0:0] of 0000:00:02.0
PCI: Bridge: 0000:02:00.0
IO window: e000-efff
MEM window: fbf00000-fbffffff
PREFETCH window: disabled.
PCI: Bridge: 0000:02:00.2
IO window: disabled.
MEM window: disabled.
PREFETCH window: disabled.
PCI: Bridge: 0000:00:01.0
IO window: e000-efff
MEM window: fbe00000-fbffffff
PREFETCH window: disabled.
PCI: Bridge: 0000:00:1e.0
IO window: d000-dfff
MEM window: fbd00000-fbdfffff
PREFETCH window: disabled.
ACPI: PCI Interrupt 0000:00:01.0[A] -> GSI 16 (level, low) -> IRQ 169
PCI: Setting latency timer of device 0000:00:01.0 to 64
PCI: Setting latency timer of device 0000:02:00.0 to 64
PCI: Setting latency timer of device 0000:02:00.2 to 64
PCI: Setting latency timer of device 0000:00:1e.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 9, 2621440 bytes)
TCP bind hash table entries: 65536 (order: 8, 1310720 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
apm: disabled - APM is not SMP safe.
audit: initializing netlink socket (disabled)
audit(1170944822.810:1): initialized
highmem bounce pool size: 64 pages
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
SELinux: Registering netfilter hooks
Initializing Cryptographic API
ksign: Installing public key data
Loading keyring
- Added public key DA272E53BD0532F6
- User ID: Red Hat, Inc. (Kernel Module GPG key)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
PCI: Setting latency timer of device 0000:00:01.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:01.0:pcie00]
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
ACPI: Processor [CPU1] (supports 8 throttling states)
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
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
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
RAMDISK driver initialized: 16 RAM disks of 16384K size 4096 blocksize
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH6: IDE controller at PCI slot 0000:00:1f.1
ACPI: PCI Interrupt 0000:00:1f.1[A] -> GSI 18 (level, low) -> IRQ 193
ICH6: chipset revision 3
ICH6: not 100% native mode: will probe irqs later
ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:pio
ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:pio, hdd:pio
Probing IDE interface ide0...
hda: SAMSUNG CD-ROM SN-124, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
Probing IDE interface ide1...
ide-floppy driver 0.99.newide
usbcore: registered new driver libusual
usbcore: registered new driver hiddev
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
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
Using IPI No-Shortcut mode
ACPI: (supports S0 S1 S4 S5)
Time: tsc clocksource has been installed.
Freeing unused kernel memory: 244k freed
Write protecting the kernel read-only data: 382k
SCSI subsystem initialized
libata version 2.00 loaded.
ata_piix 0000:00:1f.2: version 2.00
ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
ACPI: PCI Interrupt 0000:00:1f.2[B] -> GSI 19 (level, low) -> IRQ 201
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ata1: SATA max UDMA/133 cmd 0xCC00 ctl 0xC882 bmdma 0xC400 irq 201
ata2: SATA max UDMA/133 cmd 0xC800 ctl 0xC482 bmdma 0xC408 irq 201
scsi0 : ata_piix
ata1.00: ATA-7, max UDMA7, 312581808 sectors: LBA48
ata1.00: ata1: dev 0 multi count 16
ata1.00: configured for UDMA/133
scsi1 : ata_piix
ata2.00: ATA-7, max UDMA7, 312581808 sectors: LBA48
ata2.00: ata2: dev 0 multi count 16
ata2.00: configured for UDMA/133
Vendor: ATA Model: SAMSUNG SP1614C Rev: SW10
Type: Direct-Access ANSI SCSI revision: 05
SCSI device sda: 312581808 512-byte hdwr sectors (160042 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: drive cache: write back
SCSI device sda: 312581808 512-byte hdwr sectors (160042 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: drive cache: write back
sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
sd 0:0:0:0: Attached scsi disk sda
Vendor: ATA Model: SAMSUNG SP1614C Rev: SW10
Type: Direct-Access ANSI SCSI revision: 05
SCSI device sdb: 312581808 512-byte hdwr sectors (160042 MB)
sdb: Write Protect is off
sdb: Mode Sense: 00 3a 00 00
SCSI device sdb: drive cache: write back
SCSI device sdb: 312581808 512-byte hdwr sectors (160042 MB)
sdb: Write Protect is off
sdb: Mode Sense: 00 3a 00 00
SCSI device sdb: drive cache: write back
sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
sd 1:0:0:0: Attached scsi disk sdb
md: raid1 personality registered for level 1
md: Autodetecting RAID arrays.
md: autorun ...
md: considering sdb8 ...
md: adding sdb8 ...
md: sdb7 has different UUID to sdb8
md: sdb6 has different UUID to sdb8
md: sdb5 has different UUID to sdb8
md: sdb3 has different UUID to sdb8
md: sdb2 has different UUID to sdb8
md: sdb1 has different UUID to sdb8
md: adding sda8 ...
md: sda7 has different UUID to sdb8
md: sda6 has different UUID to sdb8
md: sda5 has different UUID to sdb8
md: sda3 has different UUID to sdb8
md: sda2 has different UUID to sdb8
md: sda1 has different UUID to sdb8
md: created md6
md: bind<sda8>
md: bind<sdb8>
md: running: <sdb8><sda8>
raid1: raid set md6 active with 2 out of 2 mirrors
md: considering sdb7 ...
md: adding sdb7 ...
md: sdb6 has different UUID to sdb7
md: sdb5 has different UUID to sdb7
md: sdb3 has different UUID to sdb7
md: sdb2 has different UUID to sdb7
md: sdb1 has different UUID to sdb7
md: adding sda7 ...
md: sda6 has different UUID to sdb7
md: sda5 has different UUID to sdb7
md: sda3 has different UUID to sdb7
md: sda2 has different UUID to sdb7
md: sda1 has different UUID to sdb7
md: created md3
md: bind<sda7>
md: bind<sdb7>
md: running: <sdb7><sda7>
md: md3: raid array is not clean -- starting background reconstruction
raid1: raid set md3 active with 2 out of 2 mirrors
md: considering sdb6 ...
md: syncing RAID array md3
md: minimum _guaranteed_ reconstruction speed: 1000 KB/sec/disc.
md: using maximum available idle IO bandwidth (but not more than 200000 KB/sec) for reconstruction.
md: using 128k window, over a total of 2096384 blocks.
md: adding sdb6 ...
md: sdb5 has different UUID to sdb6
md: sdb3 has different UUID to sdb6
md: sdb2 has different UUID to sdb6
md: sdb1 has different UUID to sdb6
md: adding sda6 ...
md: sda5 has different UUID to sdb6
md: sda3 has different UUID to sdb6
md: sda2 has different UUID to sdb6
md: sda1 has different UUID to sdb6
md: created md4
md: bind<sda6>
md: bind<sdb6>
md: running: <sdb6><sda6>
raid1: raid set md4 active with 2 out of 2 mirrors
md: considering sdb5 ...
md: adding sdb5 ...
md: sdb3 has different UUID to sdb5
md: sdb2 has different UUID to sdb5
md: sdb1 has different UUID to sdb5
md: adding sda5 ...
md: sda3 has different UUID to sdb5
md: sda2 has different UUID to sdb5
md: sda1 has different UUID to sdb5
md: created md2
md: bind<sda5>
md: bind<sdb5>
md: running: <sdb5><sda5>
raid1: raid set md2 active with 2 out of 2 mirrors
md: considering sdb3 ...
md: adding sdb3 ...
md: sdb2 has different UUID to sdb3
md: sdb1 has different UUID to sdb3
md: adding sda3 ...
md: sda2 has different UUID to sdb3
md: sda1 has different UUID to sdb3
md: created md1
md: bind<sda3>
md: bind<sdb3>
md: running: <sdb3><sda3>
md: md1: raid array is not clean -- starting background reconstruction
raid1: raid set md1 active with 2 out of 2 mirrors
md: considering sdb2 ...
md: delaying resync of md1 until md3 has finished resync (they share one or more physical units)
md: adding sdb2 ...
md: sdb1 has different UUID to sdb2
md: adding sda2 ...
md: sda1 has different UUID to sdb2
md: created md0
md: bind<sda2>
md: bind<sdb2>
md: running: <sdb2><sda2>
raid1: raid set md0 active with 2 out of 2 mirrors
md: considering sdb1 ...
md: adding sdb1 ...
md: adding sda1 ...
md: created md5
md: bind<sda1>
md: bind<sdb1>
md: running: <sdb1><sda1>
raid1: raid set md5 active with 2 out of 2 mirrors
md: ... autorun DONE.
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
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: md6: orphan cleanup on readonly fs
ext3_orphan_cleanup: deleting unreferenced inode 5952149
ext3_orphan_cleanup: deleting unreferenced inode 4447883
ext3_orphan_cleanup: deleting unreferenced inode 4611268
ext3_orphan_cleanup: deleting unreferenced inode 4447882
ext3_orphan_cleanup: deleting unreferenced inode 4447909
ext3_orphan_cleanup: deleting unreferenced inode 4448760
ext3_orphan_cleanup: deleting unreferenced inode 4448783
ext3_orphan_cleanup: deleting unreferenced inode 4447976
ext3_orphan_cleanup: deleting unreferenced inode 4447914
ext3_orphan_cleanup: deleting unreferenced inode 4447814
ext3_orphan_cleanup: deleting unreferenced inode 4448780
ext3_orphan_cleanup: deleting unreferenced inode 4447801
ext3_orphan_cleanup: deleting unreferenced inode 4447797
ext3_orphan_cleanup: deleting unreferenced inode 4448782
ext3_orphan_cleanup: deleting unreferenced inode 4447796
ext3_orphan_cleanup: deleting unreferenced inode 5952139
ext3_orphan_cleanup: deleting unreferenced inode 5952138
ext3_orphan_cleanup: deleting unreferenced inode 5952137
ext3_orphan_cleanup: deleting unreferenced inode 5952136
ext3_orphan_cleanup: deleting unreferenced inode 5952135
ext3_orphan_cleanup: deleting unreferenced inode 4447910
ext3_orphan_cleanup: deleting unreferenced inode 4448781
ext3_orphan_cleanup: deleting unreferenced inode 4447769
ext3_orphan_cleanup: deleting unreferenced inode 4447768
ext3_orphan_cleanup: deleting unreferenced inode 4447773
ext3_orphan_cleanup: deleting unreferenced inode 4447905
ext3_orphan_cleanup: deleting unreferenced inode 4448784
ext3_orphan_cleanup: deleting unreferenced inode 4447774
ext3_orphan_cleanup: deleting unreferenced inode 7718338
ext3_orphan_cleanup: deleting unreferenced inode 4448741
ext3_orphan_cleanup: deleting unreferenced inode 4447762
ext3_orphan_cleanup: deleting unreferenced inode 4611348
ext3_orphan_cleanup: deleting unreferenced inode 4611291
ext3_orphan_cleanup: deleting unreferenced inode 4447912
EXT3-fs: md6: 34 orphan inodes deleted
EXT3-fs: recovery complete.
EXT3-fs: mounted filesystem with ordered data mode.
security: 3 users, 6 roles, 1481 types, 152 bools, 1 sens, 256 cats
security: 58 classes, 43474 rules
SELinux: Completing initialization.
SELinux: Setting up existing superblocks.
SELinux: initialized (dev md6, 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 pipefs, type pipefs), uses task SIDs
SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
SELinux: initialized (dev cpuset, type cpuset), not configured for labeling
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
audit(1170944835.669:2): policy loaded auid=4294967295
SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
audit(1170912446.206:3): avc: denied { search } for pid=595 comm="pam_console_app" name="var" dev=md6 ino=3532033 scontext=system_u:system_r:pam_console_t:s0-s0:c0.c255 tcontext=system_u:object_r:file_t:s0 tclass=dir
input: PC Speaker as /class/input/input0
USB Universal Host Controller Interface driver v3.0
ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 209
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
uhci_hcd 0000:00:1d.0: irq 209, io base 0x0000c080
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 2 ports detected
intel_rng: FWH not detected
ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 201
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:1d.1: irq 201, io base 0x0000c000
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
hda: ATAPI 24X CD-ROM drive, 128kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
Floppy drive(s): fd0 is 1.44M
FDC 0 is a National Semiconductor PC87306
ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 209
PCI: Setting latency timer of device 0000:00:1d.7 to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 3
ehci_hcd 0000:00:1d.7: debug port 1
PCI: cache line size of 128 is not supported by device 0000:00:1d.7
ehci_hcd 0000:00:1d.7: irq 209, io mem 0xfbcff800
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 4 ports detected
ACPI: PCI Interrupt 0000:00:1f.3[B] -> GSI 19 (level, low) -> IRQ 201
e100: Intel(R) PRO/100 Network Driver, 3.5.10-k2-NAPI
e100: Copyright(c) 1999-2005 Intel Corporation
ACPI: PCI Interrupt 0000:01:08.0[A] -> GSI 20 (level, low) -> IRQ 217
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 1:0:0:0: Attached scsi generic sg1 type 0
Intel(R) PRO/1000 Network Driver - version 7.1.9-k4-NAPI
Copyright (c) 1999-2006 Intel Corporation.
e100: eth0: e100_probe: addr 0xfbdff000, irq 217, MAC addr 00:00:F0:9D:00:8A
ACPI: PCI Interrupt 0000:03:03.0[A] -> GSI 24 (level, low) -> IRQ 225
e1000: 0000:03:03.0: e1000_probe: (PCI-X:133MHz:64-bit) 00:00:f0:9c:1f:24
e1000: eth1: e1000_probe: Intel(R) PRO/1000 Network Connection
ACPI: PCI Interrupt 0000:03:03.1[B] -> GSI 25 (level, low) -> IRQ 233
e1000: 0000:03:03.1: e1000_probe: (PCI-X:133MHz:64-bit) 00:00:f0:9c:1f:25
e1000: eth2: e1000_probe: Intel(R) PRO/1000 Network Connection
lp: driver loaded but no devices found
ACPI: Power Button (FF) [PWRF]
ACPI: Power Button (CM) [PWRB]
ibm_acpi: ec object not found
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
device-mapper: ioctl: 4.7.0-ioctl (2006-06-24) initialised: dm-devel@redhat.com
md: md3: sync done.
md: syncing RAID array md1
md: minimum _guaranteed_ reconstruction speed: 1000 KB/sec/disc.
RAID1 conf printout:
--- wd:2 rd:2
md: using maximum available idle IO bandwidth (but not more than 200000 KB/sec) for reconstruction.
disk 0, wo:0, o:1, dev:sda7
disk 1, wo:0, o:1, dev:sdb7
md: using 128k window, over a total of 30716160 blocks.
EXT3 FS on md6, internal journal
kjournald starting. Commit interval 5 seconds
EXT3 FS on md5, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev md5, type ext3), uses xattr
kjournald starting. Commit interval 5 seconds
EXT3 FS on md0, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev md0, type ext3), uses xattr
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
kjournald starting. Commit interval 5 seconds
EXT3 FS on md4, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev md4, type ext3), uses xattr
kjournald starting. Commit interval 5 seconds
EXT3 FS on md2, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev md2, type ext3), uses xattr
kjournald starting. Commit interval 5 seconds
EXT3 FS on md1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: initialized (dev md1, type ext3), uses xattr
Adding 2096376k swap on /dev/md3. Priority:-1 extents:1 across:2096376k
SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
==================================================
===== Thu Feb 8 15:29:05 KST 2007: Performance Snapshot =====
==================================================
Thu Feb 8 15:29:05 KST 2007: ps
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 2008 680 ? Ss 14:27 0:00 init [3]
root 2 0.0 0.0 0 0 ? S 14:27 0:00 [migration/0]
root 3 0.0 0.0 0 0 ? SN 14:27 0:00 [ksoftirqd/0]
root 4 0.0 0.0 0 0 ? S 14:27 0:00 [watchdog/0]
root 5 0.0 0.0 0 0 ? S 14:27 0:00 [migration/1]
root 6 0.0 0.0 0 0 ? SN 14:27 0:00 [ksoftirqd/1]
root 7 0.0 0.0 0 0 ? S 14:27 0:00 [watchdog/1]
root 8 0.0 0.0 0 0 ? S< 14:27 0:00 [events/0]
root 9 0.0 0.0 0 0 ? S< 14:27 0:00 [events/1]
root 10 0.0 0.0 0 0 ? S< 14:27 0:00 [khelper]
root 11 0.0 0.0 0 0 ? S< 14:27 0:00 [kthread]
root 15 0.0 0.0 0 0 ? S< 14:27 0:00 [kblockd/0]
root 16 0.0 0.0 0 0 ? S< 14:27 0:00 [kblockd/1]
root 17 0.0 0.0 0 0 ? S< 14:27 0:00 [kacpid]
root 105 0.0 0.0 0 0 ? S< 14:27 0:00 [cqueue/0]
root 106 0.0 0.0 0 0 ? S< 14:27 0:00 [cqueue/1]
root 109 0.0 0.0 0 0 ? S< 14:27 0:00 [khubd]
root 111 0.0 0.0 0 0 ? S< 14:27 0:00 [kseriod]
root 177 0.0 0.0 0 0 ? S 14:27 0:00 [pdflush]
root 178 0.0 0.0 0 0 ? S 14:27 0:00 [pdflush]
root 179 0.0 0.0 0 0 ? S< 14:27 0:00 [kswapd0]
root 180 0.0 0.0 0 0 ? S< 14:27 0:00 [aio/0]
root 181 0.0 0.0 0 0 ? S< 14:27 0:00 [aio/1]
root 336 0.0 0.0 0 0 ? S< 14:27 0:00 [kpsmoused]
root 341 0.0 0.0 1972 660 ? Ss 14:27 0:00 /bin/nash /init
root 355 0.0 0.0 0 0 ? S< 14:27 0:00 [ata/0]
root 356 0.0 0.0 0 0 ? S< 14:27 0:00 [ata/1]
root 357 0.0 0.0 0 0 ? S< 14:27 0:00 [ata_aux]
root 363 0.0 0.0 0 0 ? S< 14:27 0:00 [scsi_eh_0]
root 364 0.0 0.0 0 0 ? S< 14:27 0:00 [scsi_eh_1]
root 412 0.0 0.0 0 0 ? S< 14:27 0:00 [md6_raid1]
root 416 0.0 0.0 0 0 ? S< 14:27 0:00 [md3_raid1]
root 421 0.0 0.0 0 0 ? S< 14:27 0:00 [md4_raid1]
root 425 0.0 0.0 0 0 ? S< 14:27 0:00 [md2_raid1]
root 429 0.2 0.0 0 0 ? S< 14:27 0:08 [md1_raid1]
root 434 0.0 0.0 0 0 ? S< 14:27 0:00 [md0_raid1]
root 438 0.0 0.0 0 0 ? S< 14:27 0:00 [md5_raid1]
root 439 0.0 0.0 0 0 ? S< 14:27 0:00 [kjournald]
root 482 0.0 0.0 0 0 ? S< 14:27 0:00 [kauditd]
root 507 0.0 0.0 2620 1112 ? S<s 14:27 0:00 /sbin/udevd -d
root 1381 0.0 0.0 0 0 ? S< 14:27 0:00 [kmirrord]
root 1408 0.0 0.0 0 0 ? S< 14:29 0:00 [kjournald]
root 1410 0.0 0.0 0 0 ? S< 14:29 0:00 [kjournald]
root 1412 0.0 0.0 0 0 ? S< 14:29 0:00 [kjournald]
root 1414 0.0 0.0 0 0 ? S< 14:29 0:00 [kjournald]
root 1416 0.0 0.0 0 0 ? S< 14:29 0:00 [kjournald]
root 2099 0.0 0.0 1652 600 ? Ss 14:30 0:00 syslogd -m 0
root 2102 0.0 0.0 1604 416 ? Ss 14:30 0:00 klogd -x
root 2111 0.0 0.0 1596 296 ? Ss 14:30 0:00 irqbalance
rpc 2125 0.0 0.0 1736 544 ? Ss 14:30 0:00 portmap
rpcuser 2143 0.0 0.0 1748 716 ? Ss 14:30 0:00 rpc.statd
root 2152 0.0 0.0 1708 304 ? Ss 14:30 0:00 mdadm --monitor --scan -f --pid-file=/var/run/mdadm/mdadm.pid
root 2176 0.0 0.0 4740 600 ? Ss 14:30 0:00 rpc.idmapd
dbus 2188 0.0 0.0 13240 1064 ? Ssl 14:30 0:00 dbus-daemon --system
root 2197 0.0 0.0 2276 900 ? Ss 14:30 0:00 hcid: processing events
root 2200 0.0 0.0 1664 492 ? Ss 14:30 0:00 sdpd
root 2223 0.0 0.0 0 0 ? S< 14:30 0:00 [krfcommd]
root 2256 0.0 0.0 1816 476 ? Ss 14:30 0:00 /usr/bin/hidd --server
root 2343 0.0 0.0 1876 720 ? Ss 14:30 0:00 /usr/sbin/automount --timeout=60 /net program /etc/auto.net
root 2357 0.0 0.0 1920 512 ? S 14:30 0:00 /usr/sbin/smartd -q never
root 2365 0.0 0.0 1600 456 ? Ss 14:30 0:00 /usr/sbin/acpid
root 2373 0.0 0.1 9192 2112 ? Ss 14:30 0:00 cupsd
root 2394 0.0 0.0 5000 1116 ? Ss 14:30 0:00 /usr/sbin/sshd
root 2417 0.0 0.0 2232 808 ? Ss 14:30 0:00 xinetd -stayalive -pidfile /var/run/xinetd.pid
root 2425 0.0 0.0 23232 940 ? Ssl 14:30 0:00 /usr/lib/Acronis/Agent/agent
ganglia 2437 0.0 0.0 2784 1276 ? Ss 14:30 0:00 /usr/sbin/gmond
root 2455 0.0 0.1 8300 2164 ? Ss 14:30 0:00 sendmail: accepting connections
smmsp 2464 0.0 0.0 7340 1700 ? Ss 14:30 0:00 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue
root 2473 0.0 0.0 1824 376 ? Ss 14:30 0:00 gpm -m /dev/input/mice -t exps2
root 2482 0.0 0.0 5208 1196 ? Ss 14:30 0:00 crond
xfs 2508 0.0 0.0 3152 1152 ? Ss 14:30 0:00 xfs -droppriv -daemon
root 2516 0.0 0.0 1604 624 ? SNs 14:30 0:00 anacron -s
root 2523 0.0 0.0 2180 464 ? Ss 14:30 0:00 /usr/sbin/atd
avahi 2537 0.0 0.0 2800 1484 ? Ss 14:30 0:00 avahi-daemon: running [office002.local]
avahi 2538 0.0 0.0 2800 312 ? Ss 14:30 0:00 avahi-daemon: chroot helper process
68 2546 0.0 0.1 5020 3336 ? Ss 14:30 0:00 hald
root 2547 0.0 0.0 3120 1008 ? S 14:30 0:00 hald-runner
68 2553 0.0 0.0 2216 868 ? S 14:30 0:00 /usr/libexec/hald-addon-acpi
root 2562 0.0 0.0 2180 760 ? S 14:30 0:00 /usr/libexec/hald-addon-storage
root 2670 0.0 0.0 2764 1228 ? Ss 14:30 0:00 login -- root
root 2672 0.0 0.0 1588 412 tty3 Ss+ 14:30 0:00 /sbin/mingetty tty3
root 2674 0.0 0.0 1584 412 tty4 Ss+ 14:30 0:00 /sbin/mingetty tty4
root 2676 0.0 0.0 1588 416 tty5 Ss+ 14:30 0:00 /sbin/mingetty tty5
root 2681 0.0 0.0 1588 416 tty6 Ss+ 14:30 0:00 /sbin/mingetty tty6
68 2739 0.0 0.0 2220 868 ? S 14:30 0:00 /usr/libexec/hald-addon-keyboard
root 2758 0.0 0.0 4580 1504 tty1 Ss+ 14:31 0:00 -bash
root 3413 0.0 0.0 2220 772 ? Ss 14:34 0:00 /sbin/dhcdbd --system
root 4741 0.0 0.0 1584 412 tty2 Ss+ 14:38 0:00 /sbin/mingetty tty2
root 4782 0.0 0.1 7840 2436 ? Ss 14:40 0:00 sshd: root@pts/0
root 4846 0.0 0.0 4584 1516 pts/0 Ss+ 14:40 0:00 -bash
root 5677 0.0 0.1 13252 2788 ? Ss 15:05 0:00 smbd -D
root 5680 0.0 0.0 13252 1268 ? S 15:05 0:00 smbd -D
root 5681 0.0 0.0 8676 1524 ? Ss 15:05 0:00 nmbd -D
root 6361 0.1 0.1 7836 2448 ? Ss 15:28 0:00 sshd: root@pts/1
root 6364 0.0 0.0 4580 1500 pts/1 Ss 15:28 0:00 -bash
root 6398 0.0 0.0 5724 1376 ? S 15:29 0:00 crond
root 6399 1.6 0.2 6936 4276 ? Ss 15:29 0:00 /usr/bin/perl /usr/sbin/monitorix.pl update
root 6400 1.0 0.0 4404 1052 pts/1 S+ 15:29 0:00 /bin/sh ./PerformanceAnalysisScript.sh result.txt
root 6449 0.0 0.0 4184 928 pts/1 R+ 15:29 0:00 ps auxwww
==================================================
Thu Feb 8 15:29:05 KST 2007: sar
Linux 2.6.18-1.2257.fc5smp (office002) 02/08/2007
02:29:53 PM LINUX RESTART
02:40:01 PM proc/s
02:50:01 PM 0.56
03:00:01 PM 0.51
03:10:01 PM 0.59
03:20:01 PM 0.51
Average: 0.54
02:40:01 PM cswch/s
02:50:01 PM 392.87
03:00:01 PM 56.28
03:10:01 PM 67.17
03:20:01 PM 77.18
Average: 148.40
02:40:01 PM CPU %user %nice %system %iowait %idle
02:50:01 PM all 0.11 0.00 0.45 0.26 99.18
02:50:01 PM 0 0.11 0.00 0.45 0.26 99.18
02:50:01 PM 1 0.11 0.00 0.46 0.25 99.18
03:00:01 PM all 0.11 0.00 0.06 0.07 99.76
03:00:01 PM 0 0.10 0.00 0.06 0.05 99.80
03:00:01 PM 1 0.12 0.00 0.07 0.09 99.72
03:10:01 PM all 0.13 0.00 0.11 0.25 99.52
03:10:01 PM 0 0.11 0.00 0.06 0.13 99.71
03:10:01 PM 1 0.15 0.00 0.15 0.37 99.33
03:20:01 PM all 0.11 0.00 0.15 0.13 99.60
03:20:01 PM 0 0.11 0.00 0.07 0.15 99.67
03:20:01 PM 1 0.11 0.00 0.24 0.11 99.54
Average: all 0.11 0.00 0.19 0.18 99.51
Average: 0 0.11 0.00 0.16 0.15 99.59
Average: 1 0.12 0.00 0.23 0.21 99.44
02:40:01 PM INTR intr/s
02:50:01 PM sum 1064.05
03:00:01 PM sum 1017.74
03:10:01 PM sum 1028.65
03:20:01 PM sum 1063.49
Average: sum 1043.49
02:40:01 PM CPU i000/s i001/s i006/s i008/s i009/s i014/s i201/s i209/s i217/s i225/s
02:50:01 PM 0 500.01 0.00 0.00 0.00 0.00 4.47 25.73 0.00 0.40 0.47
02:50:01 PM 1 500.11 0.00 0.00 0.00 0.00 4.47 25.66 0.00 2.19 0.02
03:00:01 PM 0 499.78 0.00 0.00 0.00 0.00 4.47 1.94 0.00 0.00 0.50
03:00:01 PM 1 500.33 0.00 0.00 0.00 0.00 4.50 3.25 0.00 2.47 0.00
03:10:01 PM 0 499.78 0.00 0.00 0.00 0.00 4.44 2.93 0.00 0.00 0.50
03:10:01 PM 1 500.33 0.00 0.00 0.00 0.00 4.50 4.47 0.00 11.21 0.00
03:20:01 PM 0 499.94 0.00 0.00 0.00 0.00 4.53 3.60 0.00 0.00 0.50
03:20:01 PM 1 500.16 0.00 0.00 0.00 0.00 4.44 4.14 0.00 45.69 0.00
Average: 0 499.88 0.00 0.00 0.00 0.00 4.48 8.55 0.00 0.10 0.49
Average: 1 500.23 0.00 0.00 0.00 0.00 4.48 9.38 0.00 15.39 0.01
02:40:01 PM pswpin/s pswpout/s
02:50:01 PM 0.00 0.00
03:00:01 PM 0.00 0.00
03:10:01 PM 0.00 0.00
03:20:01 PM 0.00 0.00
Average: 0.00 0.00
02:40:01 PM tps rtps wtps bread/s bwrtn/s
02:50:01 PM 55.40 23.69 31.70 20506.78 20644.42
03:00:01 PM 8.81 0.00 8.81 0.43 134.84
03:10:01 PM 12.32 1.60 10.72 104.45 159.89
03:20:01 PM 12.83 2.37 10.46 380.06 155.85
Average: 22.34 6.92 15.43 5249.16 5274.97
02:40:01 PM frmpg/s bufpg/s campg/s
02:50:01 PM 1.27 0.28 0.12
03:00:01 PM -0.23 0.23 0.03
03:10:01 PM -8.08 0.47 6.44
03:20:01 PM -24.32 0.41 23.75
Average: -7.84 0.35 7.59
02:40:01 PM IFACE rxpck/s txpck/s rxbyt/s txbyt/s rxcmp/s txcmp/s rxmcst/s
02:50:01 PM lo 0.01 0.01 0.55 0.55 0.00 0.00 0.00
02:50:01 PM eth0 2.06 0.20 186.15 30.98 0.00 0.00 0.00
02:50:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:50:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:50:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM eth0 1.97 0.00 192.96 0.00 0.00 0.00 0.00
03:00:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM eth0 9.02 13.04 721.95 17736.42 0.00 0.00 0.00
03:10:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM eth0 40.30 69.94 2739.48 103159.81 0.00 0.00 0.00
03:20:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: lo 0.00 0.00 0.14 0.14 0.00 0.00 0.00
Average: eth0 13.34 20.80 960.21 30234.91 0.00 0.00 0.00
Average: eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:40:01 PM IFACE rxerr/s txerr/s coll/s rxdrop/s txdrop/s txcarr/s rxfram/s rxfifo/s txfifo/s
02:50:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:50:01 PM eth0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:50:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:50:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:50:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM eth0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM eth0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM eth0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: eth0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: eth1 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: eth2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: sit0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:40:01 PM call/s retrans/s read/s write/s access/s getatt/s
02:50:01 PM 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM 0.00 0.00 0.00 0.00 0.00 0.00
Average: 0.00 0.00 0.00 0.00 0.00 0.00
02:40:01 PM scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
02:50:01 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:00:01 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:10:01 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
03:20:01 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
02:40:01 PM pgpgin/s pgpgout/s fault/s majflt/s
02:50:01 PM 0.50 24.21 167.41 0.00
03:00:01 PM 0.11 23.49 157.65 0.00
03:10:01 PM 26.11 28.01 181.47 0.09
03:20:01 PM 95.01 27.48 161.64 0.00
Average: 30.44 25.80 167.04 0.03
02:40:01 PM kbmemfree kbmemused %memused kbbuffers kbcached kbswpfree kbswpused %swpused kbswpcad
02:50:01 PM 1827880 239296 11.58 40680 156976 2096376 0 0.00 0
03:00:01 PM 1827324 239852 11.60 41236 157044 2096376 0 0.00 0
03:10:01 PM 1807936 259240 12.54 42360 172508 2096376 0 0.00 0
03:20:01 PM 1749572 317604 15.36 43344 229516 2096376 0 0.00 0
Average: 1803178 263998 12.77 41905 179011 2096376 0 0.00 0
02:40:01 PM dentunusd file-sz inode-sz super-sz %super-sz dquot-sz %dquot-sz rtsig-sz %rtsig-sz
02:50:01 PM 5794 640 5746 0 0.00 0 0.00 0 0.00
03:00:01 PM 5793 640 5744 0 0.00 0 0.00 0 0.00
03:10:01 PM 5882 768 5848 0 0.00 0 0.00 0 0.00
03:20:01 PM 5885 768 5853 0 0.00 0 0.00 0 0.00
Average: 5838 704 5798 0 0.00 0 0.00 0 0.00
02:40:01 PM totsck tcpsck udpsck rawsck ip-frag
02:50:01 PM 96 5 8 0 0
03:00:01 PM 96 5 8 0 0
03:10:01 PM 107 8 16 0 0
03:20:01 PM 108 8 16 0 0
Average: 102 6 12 0 0
02:40:01 PM runq-sz plist-sz ldavg-1 ldavg-5 ldavg-15
02:50:01 PM 5 96 0.06 0.32 0.59
03:00:01 PM 2 96 0.01 0.09 0.33
03:10:01 PM 4 100 0.07 0.09 0.20
03:20:01 PM 3 100 0.08 0.08 0.11
Average: 4 98 0.06 0.14 0.31
==================================================
Thu Feb 8 15:29:05 KST 2007: vmstat
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
r b swpd free buff cache si so bi bo in cs us sy id wa st
0 0 0 1736908 44260 238568 0 0 60 20 539 190 0 1 96 3 0
0 0 0 1738876 44292 238688 0 0 0 97 1022 65 0 0 100 0 0
0 0 0 1738900 44304 238684 0 0 0 42 1030 57 0 0 100 0 0
0 0 0 1738900 44312 238688 0 0 0 7 1016 72 0 0 100 0 0
0 0 0 1738900 44324 238684 0 0 0 16 1020 54 0 0 100 0 0
0 0 0 1738900 44336 238688 0 0 0 7 1017 55 0 0 100 0 0
0 0 0 1736536 44360 238688 0 0 0 14 1019 57 0 0 99 0 0
0 0 0 1738760 44400 238688 0 0 0 99 1022 92 1 0 99 0 0
0 0 0 1738776 44408 238688 0 0 0 3 1014 52 0 0 100 0 0
0 0 0 1738776 44424 238688 0 0 0 10 1018 78 0 0 100 0 0
==================================================
Thu Feb 8 15:30:35 KST 2007: iostat
Linux 2.6.18-1.2257.fc5smp (office002) 02/08/2007
avg-cpu: %user %nice %system %iowait %idle
0.22 0.00 0.55 2.95 96.27
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 27.06 8668.39 40.60 33066779 154881
sdb 26.19 49.81 8642.34 189996 32967425
md6 3.69 13.18 6.48 50277 24736
md3 0.01 0.04 0.00 164 0
md4 1.13 4.08 0.43 15549 1652
md2 6.89 46.82 6.54 178605 24952
md1 7.08 14.45 19.27 55109 73520
md0 5.74 37.45 3.95 142873 15052
md5 0.09 0.30 0.07 1130 249
avg-cpu: %user %nice %system %iowait %idle
0.00 0.00 0.10 1.95 97.95
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 10.90 0.00 63.60 0 636
sdb 11.00 0.80 63.60 8 636
md6 2.90 0.80 11.20 8 112
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 4.40 0.00 17.60 0 176
md1 6.90 0.00 27.60 0 276
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.00 0.00 0.00 0.00 100.00
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 1.20 0.00 8.39 0 84
sdb 1.20 0.00 8.39 0 84
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 0.80 0.00 3.20 0 32
md1 0.30 0.00 1.20 0 12
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.35 0.00 0.10 0.00 99.55
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 1.00 0.00 6.79 0 68
sdb 1.00 0.00 6.79 0 68
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 0.40 0.00 1.60 0 16
md1 0.50 0.00 2.00 0 20
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.20 0.00 0.20 0.95 98.65
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 4.80 0.00 102.50 0 1024
sdb 4.80 0.00 102.50 0 1024
md6 6.31 0.00 25.23 0 252
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 4.50 0.00 18.02 0 180
md1 12.41 0.00 49.65 0 496
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.00 0.00 0.00 0.15 99.85
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 4.00 0.00 22.80 0 228
sdb 4.00 0.00 22.80 0 228
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 4.10 0.00 16.40 0 164
md1 0.20 0.00 0.80 0 8
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.00 0.00 0.00 0.00 100.00
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 0.90 0.00 5.60 0 56
sdb 0.90 0.00 5.60 0 56
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 0.40 0.00 1.60 0 16
md1 0.20 0.00 0.80 0 8
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.00 0.00 0.00 0.00 100.00
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 3.30 0.00 19.58 0 196
sdb 3.30 0.00 19.58 0 196
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 0.80 0.00 3.20 0 32
md1 2.80 0.00 11.19 0 112
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.00 0.00 0.00 0.00 100.00
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 0.80 0.00 5.19 0 52
sdb 0.90 0.00 5.59 0 56
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 0.50 0.00 2.00 0 20
md1 0.00 0.00 0.00 0 0
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
avg-cpu: %user %nice %system %iowait %idle
0.35 0.00 0.15 0.10 99.40
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
sda 1.70 0.00 10.80 0 108
sdb 1.60 0.00 10.40 0 104
md6 0.00 0.00 0.00 0 0
md3 0.00 0.00 0.00 0 0
md4 0.00 0.00 0.00 0 0
md2 0.60 0.00 2.40 0 24
md1 0.80 0.00 3.20 0 32
md0 0.00 0.00 0.00 0 0
md5 0.00 0.00 0.00 0 0
==================================================
Thu Feb 8 15:32:05 KST 2007: uptime (PASS 1 of 10)
15:32:05 up 1:05, 3 users, load average: 0.05, 0.06, 0.07
==================================================
Thu Feb 8 15:32:05 KST 2007: free (PASS 1 of 10)
total used free shared buffers cached
Mem: 2067176 330772 1736404 0 44580 238728
-/+ buffers/cache: 47464 2019712
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:32:05 KST 2007: /proc/interrupts (PASS 1 of 10)
CPU0 CPU1
0: 2104316 1800853 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16195 17015 IO-APIC-edge ide0
201: 139866 71097 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 43914 IO-APIC-level eth0
225: 1700 152 IO-APIC-level eth1
233: 1555 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3905105 3905103
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:32:05 KST 2007: /proc/stat (PASS 1 of 10)
cpu 1710 0 2814 752406 22578 194 1220 0
cpu0 846 0 1452 366872 20452 119 731 0
cpu1 863 0 1362 385534 2126 75 489 0
intr 4201551 3905173 2574 0 0 4 0 5 0 1 1 0 0 3 0 33210 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 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 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 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 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 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 210963 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45920 0 0 0 0 0 0 0 1852 0 0 0 0 0 0 0 1845 0 0 0 0 0
ctxt 1426458
btime 1170912421
processes 6572
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:32:05 KST 2007: ifconfig (PASS 1 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:38792 errors:0 dropped:0 overruns:0 frame:0
TX packets:57478 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2891301 (2.7 MiB) TX bytes:82265502 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:32:15 KST 2007: uptime (PASS 2 of 10)
15:32:15 up 1:05, 3 users, load average: 0.04, 0.06, 0.07
==================================================
Thu Feb 8 15:32:15 KST 2007: free (PASS 2 of 10)
total used free shared buffers cached
Mem: 2067176 328548 1738628 0 44620 238772
-/+ buffers/cache: 45156 2022020
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:32:16 KST 2007: /proc/interrupts (PASS 2 of 10)
CPU0 CPU1
0: 2104398 1810797 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16196 17104 IO-APIC-edge ide0
201: 139967 71097 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44015 IO-APIC-level eth0
225: 1705 152 IO-APIC-level eth1
233: 1560 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3915131 3915129
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:32:16 KST 2007: /proc/stat (PASS 2 of 10)
cpu 1714 0 2819 754396 22583 194 1221 0
cpu0 847 0 1455 367865 20456 119 732 0
cpu1 867 0 1364 386531 2126 75 489 0
intr 4211878 3915198 2574 0 0 4 0 5 0 1 1 0 0 3 0 33300 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 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 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 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 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 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 211064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46021 0 0 0 0 0 0 0 1857 0 0 0 0 0 0 0 1850 0 0 0 0 0
ctxt 1427321
btime 1170912421
processes 6602
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:32:16 KST 2007: ifconfig (PASS 2 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:38866 errors:0 dropped:0 overruns:0 frame:0
TX packets:57506 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2899519 (2.7 MiB) TX bytes:82269258 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:32:26 KST 2007: uptime (PASS 3 of 10)
15:32:26 up 1:05, 3 users, load average: 0.04, 0.06, 0.07
==================================================
Thu Feb 8 15:32:26 KST 2007: free (PASS 3 of 10)
total used free shared buffers cached
Mem: 2067176 328532 1738644 0 44644 238776
-/+ buffers/cache: 45112 2022064
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:32:26 KST 2007: /proc/interrupts (PASS 3 of 10)
CPU0 CPU1
0: 2114320 1810901 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16285 17105 IO-APIC-edge ide0
201: 139968 71146 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44067 IO-APIC-level eth0
225: 1710 152 IO-APIC-level eth1
233: 1565 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3925158 3925156
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:32:26 KST 2007: /proc/stat (PASS 3 of 10)
cpu 1715 0 2821 756393 22587 194 1222 0
cpu0 847 0 1456 368862 20461 119 732 0
cpu1 867 0 1365 387531 2126 75 489 0
intr 4222108 3925225 2574 0 0 4 0 5 0 1 1 0 0 3 0 33390 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 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 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 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 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 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 211114 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46074 0 0 0 0 0 0 0 1862 0 0 0 0 0 0 0 1855 0 0 0 0 0
ctxt 1428018
btime 1170912421
processes 6615
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:32:26 KST 2007: ifconfig (PASS 3 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:38905 errors:0 dropped:0 overruns:0 frame:0
TX packets:57513 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2902810 (2.7 MiB) TX bytes:82270292 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:32:36 KST 2007: uptime (PASS 4 of 10)
15:32:36 up 1:05, 3 users, load average: 0.03, 0.06, 0.07
==================================================
Thu Feb 8 15:32:36 KST 2007: free (PASS 4 of 10)
total used free shared buffers cached
Mem: 2067176 328656 1738520 0 44668 238780
-/+ buffers/cache: 45208 2021968
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:32:36 KST 2007: /proc/interrupts (PASS 4 of 10)
CPU0 CPU1
0: 2114445 1820802 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16286 17194 IO-APIC-edge ide0
201: 140068 71152 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44111 IO-APIC-level eth0
225: 1715 152 IO-APIC-level eth1
233: 1570 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3935184 3935182
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:32:36 KST 2007: /proc/stat (PASS 4 of 10)
cpu 1716 0 2823 758391 22591 194 1222 0
cpu0 848 0 1457 369859 20465 119 732 0
cpu1 868 0 1366 388532 2126 75 490 0
intr 4232383 3935251 2574 0 0 4 0 5 0 1 1 0 0 3 0 33480 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 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 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 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 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 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 211220 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46117 0 0 0 0 0 0 0 1867 0 0 0 0 0 0 0 1860 0 0 0 0 0
ctxt 1428922
btime 1170912421
processes 6627
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:32:36 KST 2007: ifconfig (PASS 4 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:38939 errors:0 dropped:0 overruns:0 frame:0
TX packets:57519 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2905564 (2.7 MiB) TX bytes:82271272 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:32:46 KST 2007: uptime (PASS 5 of 10)
15:32:46 up 1:05, 3 users, load average: 0.25, 0.10, 0.09
==================================================
Thu Feb 8 15:32:46 KST 2007: free (PASS 5 of 10)
total used free shared buffers cached
Mem: 2067176 328656 1738520 0 44696 238780
-/+ buffers/cache: 45180 2021996
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:32:46 KST 2007: /proc/interrupts (PASS 5 of 10)
CPU0 CPU1
0: 2124325 1820949 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16375 17195 IO-APIC-edge ide0
201: 140073 71357 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44165 IO-APIC-level eth0
225: 1720 152 IO-APIC-level eth1
233: 1575 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3945211 3945209
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:32:46 KST 2007: /proc/stat (PASS 5 of 10)
cpu 1717 0 2825 760329 22654 195 1223 0
cpu0 848 0 1457 370855 20469 119 732 0
cpu1 869 0 1367 389473 2184 75 491 0
intr 4242773 3945277 2574 0 0 4 0 5 0 1 1 0 0 3 0 33570 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 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 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 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 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 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 211430 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46171 0 0 0 0 0 0 0 1872 0 0 0 0 0 0 0 1865 0 0 0 0 0
ctxt 1429651
btime 1170912421
processes 6640
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:32:46 KST 2007: ifconfig (PASS 5 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:38983 errors:0 dropped:0 overruns:0 frame:0
TX packets:57525 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2909627 (2.7 MiB) TX bytes:82272252 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:32:56 KST 2007: uptime (PASS 6 of 10)
15:32:56 up 1:05, 3 users, load average: 0.21, 0.10, 0.08
==================================================
Thu Feb 8 15:32:56 KST 2007: free (PASS 6 of 10)
total used free shared buffers cached
Mem: 2067176 328656 1738520 0 44720 238792
-/+ buffers/cache: 45144 2022032
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:32:56 KST 2007: /proc/interrupts (PASS 6 of 10)
CPU0 CPU1
0: 2124494 1830806 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16376 17284 IO-APIC-edge ide0
201: 140130 71357 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44223 IO-APIC-level eth0
225: 1725 152 IO-APIC-level eth1
233: 1580 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3955238 3955236
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:32:56 KST 2007: /proc/stat (PASS 6 of 10)
cpu 1718 0 2827 762326 22658 195 1224 0
cpu0 848 0 1458 371856 20470 119 733 0
cpu1 869 0 1368 390469 2188 75 491 0
intr 4253015 3955304 2574 0 0 4 0 5 0 1 1 0 0 3 0 33660 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 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 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 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 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 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 211487 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46229 0 0 0 0 0 0 0 1877 0 0 0 0 0 0 0 1870 0 0 0 0 0
ctxt 1430332
btime 1170912421
processes 6653
procs_running 2
procs_blocked 0
==================================================
Thu Feb 8 15:32:56 KST 2007: ifconfig (PASS 6 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:39031 errors:0 dropped:0 overruns:0 frame:0
TX packets:57531 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2914154 (2.7 MiB) TX bytes:82273232 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:33:06 KST 2007: uptime (PASS 7 of 10)
15:33:06 up 1:06, 3 users, load average: 0.18, 0.10, 0.08
==================================================
Thu Feb 8 15:33:06 KST 2007: free (PASS 7 of 10)
total used free shared buffers cached
Mem: 2067176 331020 1736156 0 44752 238796
-/+ buffers/cache: 47472 2019704
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:33:06 KST 2007: /proc/interrupts (PASS 7 of 10)
CPU0 CPU1
0: 2134330 1830998 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16465 17285 IO-APIC-edge ide0
201: 140131 71424 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44279 IO-APIC-level eth0
225: 1730 152 IO-APIC-level eth1
233: 1585 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3965266 3965264
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:33:06 KST 2007: /proc/stat (PASS 7 of 10)
cpu 1727 0 2830 764316 22662 195 1224 0
cpu0 857 0 1460 372848 20470 119 733 0
cpu1 869 0 1369 391467 2192 75 491 0
intr 4263266 3965331 2574 0 0 4 0 5 0 1 1 0 0 3 0 33750 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 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 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 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 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 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 211555 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46285 0 0 0 0 0 0 0 1882 0 0 0 0 0 0 0 1875 0 0 0 0 0
ctxt 1431039
btime 1170912421
processes 6667
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:33:06 KST 2007: ifconfig (PASS 7 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:39077 errors:0 dropped:0 overruns:0 frame:0
TX packets:57537 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2918436 (2.7 MiB) TX bytes:82274212 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:33:16 KST 2007: uptime (PASS 8 of 10)
15:33:16 up 1:06, 3 users, load average: 0.15, 0.09, 0.08
==================================================
Thu Feb 8 15:33:16 KST 2007: free (PASS 8 of 10)
total used free shared buffers cached
Mem: 2067176 328796 1738380 0 44792 238800
-/+ buffers/cache: 45204 2021972
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:33:16 KST 2007: /proc/interrupts (PASS 8 of 10)
CPU0 CPU1
0: 2134544 1840810 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16466 17374 IO-APIC-edge ide0
201: 140266 71436 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44371 IO-APIC-level eth0
225: 1735 152 IO-APIC-level eth1
233: 1590 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3975293 3975291
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:33:16 KST 2007: /proc/stat (PASS 8 of 10)
cpu 1731 0 2834 766305 22668 195 1225 0
cpu0 858 0 1462 373843 20475 119 733 0
cpu1 872 0 1372 392462 2192 76 491 0
intr 4273632 3975358 2574 0 0 4 0 5 0 1 1 0 0 3 0 33840 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 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 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 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 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 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 211702 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46377 0 0 0 0 0 0 0 1887 0 0 0 0 0 0 0 1880 0 0 0 0 0
ctxt 1432032
btime 1170912421
processes 6697
procs_running 2
procs_blocked 0
==================================================
Thu Feb 8 15:33:16 KST 2007: ifconfig (PASS 8 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:39161 errors:0 dropped:0 overruns:0 frame:0
TX packets:57570 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2925522 (2.7 MiB) TX bytes:82278462 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:33:26 KST 2007: uptime (PASS 9 of 10)
15:33:26 up 1:06, 3 users, load average: 0.12, 0.09, 0.08
==================================================
Thu Feb 8 15:33:26 KST 2007: free (PASS 9 of 10)
total used free shared buffers cached
Mem: 2067176 328780 1738396 0 44816 238804
-/+ buffers/cache: 45160 2022016
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:33:26 KST 2007: /proc/interrupts (PASS 9 of 10)
CPU0 CPU1
0: 2144335 1841045 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16555 17375 IO-APIC-edge ide0
201: 140269 71618 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44414 IO-APIC-level eth0
225: 1740 152 IO-APIC-level eth1
233: 1595 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3985319 3985317
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:33:26 KST 2007: /proc/stat (PASS 9 of 10)
cpu 1731 0 2836 768305 22669 195 1225 0
cpu0 858 0 1463 374842 20477 119 733 0
cpu1 873 0 1373 393463 2192 76 492 0
intr 4283986 3985384 2574 0 0 4 0 5 0 1 1 0 0 3 0 33930 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 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 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 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 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 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 211887 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46420 0 0 0 0 0 0 0 1892 0 0 0 0 0 0 0 1885 0 0 0 0 0
ctxt 1432745
btime 1170912421
processes 6710
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:33:26 KST 2007: ifconfig (PASS 9 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:39193 errors:0 dropped:0 overruns:0 frame:0
TX packets:57580 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2928156 (2.7 MiB) TX bytes:82280476 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
Thu Feb 8 15:33:36 KST 2007: uptime (PASS 10 of 10)
15:33:36 up 1:06, 3 users, load average: 0.10, 0.08, 0.08
==================================================
Thu Feb 8 15:33:36 KST 2007: free (PASS 10 of 10)
total used free shared buffers cached
Mem: 2067176 328904 1738272 0 44840 238808
-/+ buffers/cache: 45256 2021920
Swap: 2096376 0 2096376
==================================================
Thu Feb 8 15:33:36 KST 2007: /proc/interrupts (PASS 10 of 10)
CPU0 CPU1
0: 2144592 1850814 IO-APIC-edge timer
1: 1550 1024 IO-APIC-edge i8042
6: 5 0 IO-APIC-edge floppy
8: 1 0 IO-APIC-edge rtc
9: 1 0 IO-APIC-level acpi
14: 16556 17464 IO-APIC-edge ide0
201: 140319 71618 IO-APIC-level libata, uhci_hcd:usb2
209: 0 0 IO-APIC-level uhci_hcd:usb1, ehci_hcd:usb3
217: 2005 44446 IO-APIC-level eth0
225: 1745 152 IO-APIC-level eth1
233: 1600 290 IO-APIC-level eth2
NMI: 0 0
LOC: 3995346 3995344
ERR: 0
MIS: 0
==================================================
Thu Feb 8 15:33:36 KST 2007: /proc/stat (PASS 10 of 10)
cpu 1732 0 2838 770303 22674 195 1226 0
cpu0 859 0 1463 375839 20481 119 733 0
cpu1 873 0 1374 394464 2192 76 492 0
intr 4294194 3995410 2574 0 0 4 0 5 0 1 1 0 0 3 0 34020 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 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 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 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 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 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 211937 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46452 0 0 0 0 0 0 0 1897 0 0 0 0 0 0 0 1890 0 0 0 0 0
ctxt 1433583
btime 1170912421
processes 6722
procs_running 1
procs_blocked 0
==================================================
Thu Feb 8 15:33:36 KST 2007: ifconfig (PASS 10 of 10)
eth0 Link encap:Ethernet HWaddr 00:00:F0:9D:00:8A
inet addr:10.0.0.51 Bcast:10.0.255.255 Mask:255.255.0.0
inet6 addr: fe80::200:f0ff:fe9d:8a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:39215 errors:0 dropped:0 overruns:0 frame:0
TX packets:57586 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2929828 (2.7 MiB) TX bytes:82281456 (78.4 MiB)
eth1 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:24
inet addr:10.11.0.90 Bcast:10.11.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xec00 Memory:fbfe0000-fc000000
eth2 Link encap:Ethernet HWaddr 00:00:F0:9C:1F:25
inet addr:10.0.0.201 Bcast:10.0.255.255 Mask:255.255.0.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
Base address:0xe880 Memory:fbfa0000-fbfc0000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:61 errors:0 dropped:0 overruns:0 frame:0
TX packets:61 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6845 (6.6 KiB) TX bytes:6845 (6.6 KiB)
sit0 Link encap:IPv6-in-IPv4
NOARP MTU:1480 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
==================================================
===== Thu Feb 8 15:33:46 KST 2007: End of Testing (result.txt) =====
=================