Hello! If you are following my debut here in misc@ (if not, please help me to put our OpenBSD to rock this network!), you are somehow familiar with my problems. I was trying to reproduce the panic in another context, but unsuccessful... it only happens in production. Well, this is the ruleset:
RFC1918 = "{ 172.16/12, 192.168/16, 10/8, 127/8 }" table <INT_NET> persist { internal valid IPs } ext_if_1 = "em0" ext_gw_1 = "187.72.X.X" ext_ip_1 = "187.72." ext_if_2 = "em1" ext_gw_2 = "187.72.X.X" ext_ip_2 = "187.72.X.X" ext_if_3 = "alc0" ext_gw_3 = "187.72.X.X" ext_ip_3 = "187.72.X.X" int_if_1 = "em2" int_gw_1 = "187.72.X.X" int_ip_1 = "187.72.X.X" squid_master_if = "em3" squid_master_gw = "187.72.X.X" squid_master_ip = "187.72.X.X" # increase default state limit from 10'000 states on busy systems set limit states 6304000 set limit tables 5000 set limit src-nodes 200000 set limit frags 3000 set optimization aggressive set state-defaults pflow, no-sync set skip on lo #block private nets block in log quick on { \ $ext_if_1, \ $ext_if_2, \ $ext_if_3, \ $squid_master_if, \ $int_if_1 } from $RFC1918 label "blocking RFC1918" match on { $ext_if_1, $ext_if_2, $ext_if_3 } set prio (3,5) match on $int_if_1 set prio (3,5) match on $squid_master_if set prio (3,5) match proto tcp to port { ssh, 9876 } set prio(5,7) ## outbound balancing pass in on $int_if_1 from $int_gw_1 route-to \ { \ ($ext_if_1 $ext_gw_1) , \ ($ext_if_2 $ext_gw_2) weight 10, \ ($ext_if_3 $ext_gw_3) \ } least-states set prio (4,6) label "outbound balancing NATed" pass in on $int_if_1 from <INT_NET> route-to \ { \ ($ext_if_1 $ext_gw_1) , \ ($ext_if_2 $ext_gw_2) weight 10, \ ($ext_if_3 $ext_gw_3) \ } least-states set prio (4,6) label "outbound balancing all but NATed" And the only thing I could save was: May 29 19:38:18 monster /bsd: fatal integer divide fault in supervisor mode May 29 19:38:18 monster /bsd: trap type 8 code 0 rip ffffffff80272252 cs 8 rflags 10246 cr2 208444010 cpl 5 rsp ffff8000330cd920 May 29 19:38:18 monster /bsd: panic: trap type 8, code=0, pc=ffffffff80272252 May 29 19:38:18 monster /bsd: Starting stack trace... May 29 19:38:18 monster /bsd: panic() at panic+0xf5 May 29 19:38:18 monster /bsd: trap() at trap+0x7f1 May 29 19:38:18 monster /bsd: --- trap (number 8) --- May 29 19:38:18 monster /bsd: pf_map_addr() at pf_map_addr+0x8c2 May 29 19:38:18 monster /bsd: pf_set_rt_ifp() at pf_set_rt_ifp+0xf9 May 29 19:38:18 monster /bsd: pf_test_rule() at pf_test_rule+0xe3d May 29 19:38:18 monster /bsd: pf_test() at pf_test+0xd15 May 29 19:38:18 monster /bsd: ipv4_input() at ipv4_input+0x230 May 29 19:38:18 monster /bsd: ipintr() at ipintr+0x7f May 29 19:38:18 monster /bsd: netintr() at netintr+0xd5 May 29 19:38:18 monster /bsd: softintr_dispatch() at softintr_dispatch+0x5d May 29 19:38:18 monster /bsd: Xsoftnet() at Xsoftnet+0x2d May 29 19:38:18 monster /bsd: --- interrupt --- May 29 19:38:18 monster /bsd: end trace frame: 0x0, count: 246 May 29 19:38:18 monster /bsd: 0x8: May 29 19:38:18 monster /bsd: End of stack trace. May 29 19:38:18 monster /bsd: syncing disks... splassert: assertwaitok: want -1 have 1 May 29 19:38:18 monster /bsd: splassert: assertwaitok: want -1 have 1 May 29 19:38:18 monster last message repeated 21 times May 29 19:38:18 monster /bsd: done May 29 19:38:18 monster /bsd: done May 29 19:38:18 monster /bsd: dump to dev 4,1 not possible May 29 19:38:18 monster /bsd: rebooting... Doing the load in boot time, the same problem. Doing the load after another working ruleset, the same problem. This is just annoying, cos I can not do the balancing with PF in this way. The problematic rules, in my tests (on 4a.m., lowest traffic over the network - I guess some pr0n and torrents), are these for load balancing outbound traffic that arrives in on $int_if_1 (em2). My other needs are: put traffic from/to Akamai and another CDNs over an emergenial link - by nat-to. put port 80 traffic to the web over $squid_master, a proprietary cache solution from FreeBSD Brasil - this is almost working, but I notice some problems. But all these are over another threads, just citating here. A fresh dmesg: OpenBSD 5.3 (GENERIC.MP) #62: Tue Mar 12 18:21:20 MDT 2013 dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 17101266944 (16309MB) avail mem = 16623542272 (15853MB) mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xeb420 (75 entries) bios0: vendor American Megatrends Inc. version "F6" date 03/23/2012 bios0: Gigabyte Technology Co., Ltd. Z77X-D3H acpi0 at bios0: rev 2 acpi0: sleep states S0 S3 S4 S5 acpi0: tables DSDT FACP APIC MCFG HPET SSDT SSDT SSDT DMAR acpi0: wakeup devices PS2K(S3) PS2M(S3) P0P1(S4) USB1(S3) USB2(S3) USB3(S3) USB4(S3) USB5(S3) USB6(S3) USB7(S3) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP03(S4) PXSX(S4) RP04(S4) PXSX(S4) RP05(S4) PXSX(S4) RP06(S4) PXSX(S4) RP07(S4) PXSX(S4) RP08(S4) PEGP(S4) PEG0(S4) PEG1(S4) PEG2(S4) PEG3(S4) GLAN(S4) EHC1(S4) EHC2(S4) XHC_(S4) HDEF(S4) PWRB(S3) acpitimer0 at acpi0: 3579545 Hz, 24 bits acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat cpu0 at mainbus0: apid 0 (boot processor) cpu0: Intel(R) Core(TM) i5-3330 CPU @ 3.00GHz, 3027.04 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX ,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,X SAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu0: 256KB 64b/line 8-way L2 cache cpu0: apic clock running at 100MHz cpu1 at mainbus0: apid 2 (application processor) cpu1: Intel(R) Core(TM) i5-3330 CPU @ 3.00GHz, 3026.62 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX ,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,X SAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu1: 256KB 64b/line 8-way L2 cache ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins acpimcfg0 at acpi0 addr 0xf8000000, bus 0-63 acpihpet0 at acpi0: 14318179 Hz acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus -1 (P0P1) acpiprt2 at acpi0: bus 1 (RP01) acpiprt3 at acpi0: bus -1 (RP02) acpiprt4 at acpi0: bus 2 (RP03) acpiprt5 at acpi0: bus 3 (RP04) acpiprt6 at acpi0: bus 4 (RP05) acpiprt7 at acpi0: bus 5 (RP06) acpiprt8 at acpi0: bus 7 (RP07) acpiprt9 at acpi0: bus 8 (RP08) acpiprt10 at acpi0: bus 9 (PEG0) acpiprt11 at acpi0: bus -1 (PEG1) acpiprt12 at acpi0: bus -1 (PEG2) acpiprt13 at acpi0: bus -1 (PEG3) acpiec0 at acpi0: Failed to read resource settings acpicpu0 at acpi0: C3, C1, PSS acpicpu1 at acpi0: C3, C1, PSS acpipwrres0 at acpi0: FN00 acpipwrres1 at acpi0: FN01 acpipwrres2 at acpi0: FN02 acpipwrres3 at acpi0: FN03 acpipwrres4 at acpi0: FN04 acpitz0 at acpi0: critical temperature is 106 degC acpitz1 at acpi0: critical temperature is 106 degC acpibat0 at acpi0: BAT0 not present acpibat1 at acpi0: BAT1 not present acpibat2 at acpi0: BAT2 not present acpibtn0 at acpi0: PWRB acpibtn1 at acpi0: LID0 acpivideo0 at acpi0: GFX0 acpivout0 at acpivideo0: DD02 cpu0: Enhanced SpeedStep 3027 MHz: speeds: 3201, 3200, 3100, 3000, 2900, 2700, 2600, 2500, 2400, 2300, 2200, 2100, 1900, 1800, 1700, 1600 MHz pci0 at mainbus0 bus 0 pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200v2 Host" rev 0x09 ppb0 at pci0 dev 1 function 0 "Intel Xeon E3-1200v2 PCIE" rev 0x09: msi pci1 at ppb0 bus 9 ppb1 at pci1 dev 0 function 0 "IDT 89HPES12N3A" rev 0x0e pci2 at ppb1 bus 10 ppb2 at pci2 dev 2 function 0 "IDT 89HPES12N3A" rev 0x0e pci3 at ppb2 bus 12 em0 at pci3 dev 0 function 0 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:30 em1 at pci3 dev 0 function 1 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:31 ppb3 at pci2 dev 4 function 0 "IDT 89HPES12N3A" rev 0x0e pci4 at ppb3 bus 11 em2 at pci4 dev 0 function 0 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:34 em3 at pci4 dev 0 function 1 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:35 vga1 at pci0 dev 2 function 0 "Intel HD Graphics 2500" rev 0x09 wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) intagp0 at vga1 agp0 at intagp0: aperture at 0xe0000000, size 0x10000000 inteldrm0 at vga1: apic 2 int 16 drm0 at inteldrm0 "Intel 7 Series xHCI" rev 0x04 at pci0 dev 20 function 0 not configured "Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16 usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb4 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi pci5 at ppb4 bus 1 ppb5 at pci0 dev 28 function 2 "Intel 7 Series PCIE" rev 0xc4: msi pci6 at ppb5 bus 2 et0 at pci6 dev 0 function 0 "AT&T/Lucent ET1310" rev 0x02: apic 2 int 18, address 00:13:3b:03:04:a2 etphy0 at et0 phy 0: ET1011 10/100/1000baseT PHY, rev. 2 ppb6 at pci0 dev 28 function 3 "Intel 7 Series PCIE" rev 0xc4: msi pci7 at ppb6 bus 3 et1 at pci7 dev 0 function 0 "AT&T/Lucent ET1310" rev 0x02: apic 2 int 19, address 00:13:3b:03:07:0e etphy1 at et1 phy 0: ET1011 10/100/1000baseT PHY, rev. 2 ppb7 at pci0 dev 28 function 4 "Intel 7 Series PCIE" rev 0xc4: msi pci8 at ppb7 bus 4 vendor "VIA", unknown product 0x3432 (class serial bus subclass USB, rev 0x03) at pci8 dev 0 function 0 not configured ppb8 at pci0 dev 28 function 5 "Intel 82801BA Hub-to-PCI" rev 0xc4: msi pci9 at ppb8 bus 5 ppb9 at pci9 dev 0 function 0 "ITExpress IT8892E PCIE-PCI" rev 0x30 pci10 at ppb9 bus 6 xl0 at pci10 dev 0 function 0 "3Com 3c905B 100Base-TX" rev 0x24: apic 2 int 17, address 00:50:04:ee:61:8a exphy0 at xl0 phy 24: 3Com internal media interface ppb10 at pci0 dev 28 function 6 "Intel 7 Series PCIE" rev 0xc4: msi pci11 at ppb10 bus 7 alc0 at pci11 dev 0 function 0 "Attansic Technology L1D" rev 0xc0: msi, address 90:2b:34:32:87:c9 atphy0 at alc0 phy 0: F1 10/100/1000 PHY, rev. 0 ppb11 at pci0 dev 28 function 7 "Intel 7 Series PCIE" rev 0xc4: msi pci12 at ppb11 bus 8 ahci0 at pci12 dev 0 function 0 "Marvell 88SE9172 SATA" rev 0x11: msi, AHCI 1.0 scsibus0 at ahci0: 32 targets ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 23 usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 pcib0 at pci0 dev 31 function 0 "Intel Z77 LPC" rev 0x04 ahci1 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3 scsibus1 at ahci1: 32 targets sd0 at scsibus1 targ 0 lun 0: <ATA, Samsung SSD 840, DXT0> SCSI3 0/direct fixed naa.500253855016a985 sd0: 114473MB, 512 bytes/sector, 234441648 sectors, thin ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18 iic0 at ichiic0 spdmem0 at iic0 addr 0x51: 8GB DDR3 SDRAM PC3-10600 spdmem1 at iic0 addr 0x53: 8GB DDR3 SDRAM PC3-10600 isa0 at pcib0 isadma0 at isa0 com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo pckbc0 at isa0 port 0x60/5 pckbd0 at pckbc0 (kbd slot) pckbc0: using irq 1 for kbd slot wskbd0 at pckbd0: console keyboard, using wsdisplay0 pcppi0 at isa0 port 0x61 spkr0 at pcppi0 mtrr: Pentium Pro MTRR support uhub2 at uhub0 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 umass0 at uhub2 port 5 configuration 1 interface 0 "SanDisk Cruzer Blade" rev 2.00/1.26 addr 3 umass0: using SCSI over Bulk-Only scsibus2 at umass0: 2 targets, initiator 0 sd1 at scsibus2 targ 1 lun 0: <SanDisk, Cruzer Blade, 1.26> SCSI3 0/direct removable serial.07815567030A73C322CE sd1: 30532MB, 512 bytes/sector, 62530624 sectors uhidev0 at uhub2 port 6 configuration 1 interface 0 "Dell Dell USB Keyboard" rev 1.10/3.01 addr 4 uhidev0: iclass 3/1 ukbd0 at uhidev0: 8 variable keys, 6 key codes wskbd1 at ukbd0 mux 1 wskbd1: connecting to wsdisplay0 uhub3 at uhub1 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 vscsi0 at root scsibus3 at vscsi0: 256 targets softraid0 at root scsibus4 at softraid0: 256 targets root on sd0a (8eb59856ecd1e80b.a) swap on sd0b dump on sd0b WARNING: / was not properly unmounted arp info overwritten for 187.72.98.35 by 00:0c:76:86:02:37 on em2 arp info overwritten for 187.72.98.35 by 00:1c:c0:91:9f:c3 on em2 syncing disks... done rebooting... OpenBSD 5.3 (GENERIC.MP) #62: Tue Mar 12 18:21:20 MDT 2013 dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 17101266944 (16309MB) avail mem = 16623542272 (15853MB) mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xeb420 (75 entries) bios0: vendor American Megatrends Inc. version "F6" date 03/23/2012 bios0: Gigabyte Technology Co., Ltd. Z77X-D3H acpi0 at bios0: rev 2 acpi0: sleep states S0 S3 S4 S5 acpi0: tables DSDT FACP APIC MCFG HPET SSDT SSDT SSDT DMAR acpi0: wakeup devices PS2K(S3) PS2M(S3) P0P1(S4) USB1(S3) USB2(S3) USB3(S3) USB4(S3) USB5(S3) USB6(S3) USB7(S3) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP03(S4) PXSX(S4) RP04(S4) PXSX(S4) RP05(S4) PXSX(S4) RP06(S4) PXSX(S4) RP07(S4) PXSX(S4) RP08(S4) PEGP(S4) PEG0(S4) PEG1(S4) PEG2(S4) PEG3(S4) GLAN(S4) EHC1(S4) EHC2(S4) XHC_(S4) HDEF(S4) PWRB(S3) acpitimer0 at acpi0: 3579545 Hz, 24 bits acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat cpu0 at mainbus0: apid 0 (boot processor) cpu0: Intel(R) Core(TM) i5-3330 CPU @ 3.00GHz, 3027.01 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX ,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,X SAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu0: 256KB 64b/line 8-way L2 cache cpu0: apic clock running at 100MHz cpu1 at mainbus0: apid 2 (application processor) cpu1: Intel(R) Core(TM) i5-3330 CPU @ 3.00GHz, 3026.62 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX ,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,X SAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu1: 256KB 64b/line 8-way L2 cache ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins acpimcfg0 at acpi0 addr 0xf8000000, bus 0-63 acpihpet0 at acpi0: 14318179 Hz acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus -1 (P0P1) acpiprt2 at acpi0: bus 1 (RP01) acpiprt3 at acpi0: bus -1 (RP02) acpiprt4 at acpi0: bus 2 (RP03) acpiprt5 at acpi0: bus 3 (RP04) acpiprt6 at acpi0: bus 4 (RP05) acpiprt7 at acpi0: bus 5 (RP06) acpiprt8 at acpi0: bus 7 (RP07) acpiprt9 at acpi0: bus 8 (RP08) acpiprt10 at acpi0: bus 9 (PEG0) acpiprt11 at acpi0: bus -1 (PEG1) acpiprt12 at acpi0: bus -1 (PEG2) acpiprt13 at acpi0: bus -1 (PEG3) acpiec0 at acpi0: Failed to read resource settings acpicpu0 at acpi0: C3, C1, PSS acpicpu1 at acpi0: C3, C1, PSS acpipwrres0 at acpi0: FN00 acpipwrres1 at acpi0: FN01 acpipwrres2 at acpi0: FN02 acpipwrres3 at acpi0: FN03 acpipwrres4 at acpi0: FN04 acpitz0 at acpi0: critical temperature is 106 degC acpitz1 at acpi0: critical temperature is 106 degC acpibat0 at acpi0: BAT0 not present acpibat1 at acpi0: BAT1 not present acpibat2 at acpi0: BAT2 not present acpibtn0 at acpi0: PWRB acpibtn1 at acpi0: LID0 acpivideo0 at acpi0: GFX0 acpivout0 at acpivideo0: DD02 cpu0: Enhanced SpeedStep 3027 MHz: speeds: 3201, 3200, 3100, 3000, 2900, 2700, 2600, 2500, 2400, 2300, 2200, 2100, 1900, 1800, 1700, 1600 MHz pci0 at mainbus0 bus 0 pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200v2 Host" rev 0x09 ppb0 at pci0 dev 1 function 0 "Intel Xeon E3-1200v2 PCIE" rev 0x09: msi pci1 at ppb0 bus 9 ppb1 at pci1 dev 0 function 0 "IDT 89HPES12N3A" rev 0x0e pci2 at ppb1 bus 10 ppb2 at pci2 dev 2 function 0 "IDT 89HPES12N3A" rev 0x0e pci3 at ppb2 bus 12 em0 at pci3 dev 0 function 0 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:30 em1 at pci3 dev 0 function 1 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:31 ppb3 at pci2 dev 4 function 0 "IDT 89HPES12N3A" rev 0x0e pci4 at ppb3 bus 11 em2 at pci4 dev 0 function 0 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:34 em3 at pci4 dev 0 function 1 "Intel PRO/1000 QP (82576)" rev 0x01: msi, address 00:1b:21:5a:93:35 vga1 at pci0 dev 2 function 0 "Intel HD Graphics 2500" rev 0x09 wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) intagp0 at vga1 agp0 at intagp0: aperture at 0xe0000000, size 0x10000000 inteldrm0 at vga1: apic 2 int 16 drm0 at inteldrm0 "Intel 7 Series xHCI" rev 0x04 at pci0 dev 20 function 0 not configured "Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16 usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb4 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi pci5 at ppb4 bus 1 ppb5 at pci0 dev 28 function 2 "Intel 7 Series PCIE" rev 0xc4: msi pci6 at ppb5 bus 2 et0 at pci6 dev 0 function 0 "AT&T/Lucent ET1310" rev 0x02: apic 2 int 18, address 00:13:3b:03:04:a2 etphy0 at et0 phy 0: ET1011 10/100/1000baseT PHY, rev. 2 ppb6 at pci0 dev 28 function 3 "Intel 7 Series PCIE" rev 0xc4: msi pci7 at ppb6 bus 3 et1 at pci7 dev 0 function 0 "AT&T/Lucent ET1310" rev 0x02: apic 2 int 19, address 00:13:3b:03:07:0e etphy1 at et1 phy 0: ET1011 10/100/1000baseT PHY, rev. 2 ppb7 at pci0 dev 28 function 4 "Intel 7 Series PCIE" rev 0xc4: msi pci8 at ppb7 bus 4 vendor "VIA", unknown product 0x3432 (class serial bus subclass USB, rev 0x03) at pci8 dev 0 function 0 not configured ppb8 at pci0 dev 28 function 5 "Intel 82801BA Hub-to-PCI" rev 0xc4: msi pci9 at ppb8 bus 5 ppb9 at pci9 dev 0 function 0 "ITExpress IT8892E PCIE-PCI" rev 0x30 pci10 at ppb9 bus 6 xl0 at pci10 dev 0 function 0 "3Com 3c905B 100Base-TX" rev 0x24: apic 2 int 17, address 00:50:04:ee:61:8a exphy0 at xl0 phy 24: 3Com internal media interface ppb10 at pci0 dev 28 function 6 "Intel 7 Series PCIE" rev 0xc4: msi pci11 at ppb10 bus 7 alc0 at pci11 dev 0 function 0 "Attansic Technology L1D" rev 0xc0: msi, address 90:2b:34:32:87:c9 atphy0 at alc0 phy 0: F1 10/100/1000 PHY, rev. 0 ppb11 at pci0 dev 28 function 7 "Intel 7 Series PCIE" rev 0xc4: msi pci12 at ppb11 bus 8 ahci0 at pci12 dev 0 function 0 "Marvell 88SE9172 SATA" rev 0x11: msi, AHCI 1.0 scsibus0 at ahci0: 32 targets ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 23 usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 pcib0 at pci0 dev 31 function 0 "Intel Z77 LPC" rev 0x04 ahci1 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3 scsibus1 at ahci1: 32 targets sd0 at scsibus1 targ 0 lun 0: <ATA, Samsung SSD 840, DXT0> SCSI3 0/direct fixed naa.500253855016a985 sd0: 114473MB, 512 bytes/sector, 234441648 sectors, thin ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18 iic0 at ichiic0 spdmem0 at iic0 addr 0x51: 8GB DDR3 SDRAM PC3-10600 spdmem1 at iic0 addr 0x53: 8GB DDR3 SDRAM PC3-10600 isa0 at pcib0 isadma0 at isa0 com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo pckbc0 at isa0 port 0x60/5 pckbd0 at pckbc0 (kbd slot) pckbc0: using irq 1 for kbd slot wskbd0 at pckbd0: console keyboard, using wsdisplay0 pcppi0 at isa0 port 0x61 spkr0 at pcppi0 mtrr: Pentium Pro MTRR support uhub2 at uhub0 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 umass0 at uhub2 port 5 configuration 1 interface 0 "SanDisk Cruzer Blade" rev 2.00/1.26 addr 3 umass0: using SCSI over Bulk-Only scsibus2 at umass0: 2 targets, initiator 0 sd1 at scsibus2 targ 1 lun 0: <SanDisk, Cruzer Blade, 1.26> SCSI3 0/direct removable serial.07815567030A73C322CE sd1: 30532MB, 512 bytes/sector, 62530624 sectors uhidev0 at uhub2 port 6 configuration 1 interface 0 "Dell Dell USB Keyboard" rev 1.10/3.01 addr 4 uhidev0: iclass 3/1 ukbd0 at uhidev0: 8 variable keys, 6 key codes wskbd1 at ukbd0 mux 1 wskbd1: connecting to wsdisplay0 uhub3 at uhub1 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 vscsi0 at root scsibus3 at vscsi0: 256 targets softraid0 at root scsibus4 at softraid0: 256 targets root on sd0a (8eb59856ecd1e80b.a) swap on sd0b dump on sd0b arp: attempt to add entry for 187.72.98.35 on em2 by 00:1c:c0:91:9f:c3 on em0 arp info overwritten for 187.72.98.35 by 00:0c:76:86:02:37 on em2 arp info overwritten for 187.72.98.35 by 00:1c:c0:91:9f:c3 on em2 Thank you all!