Hi, Am I really doing something illegal by trying to use 'any' instead of 0.0.0.0/0 in iked.conf as shown possible in the man page?
For some reason policy in iked.conf using 'any' are rejected but accepted if 0.0.0.0/0 is use instead. with this in iked -d output pfkey_flow: unsupported address family 0 dmesg below for both servers as well if you want it. server 1 # cat hostname.em0 inet 66.63.5.250 255.255.255.240 # cat iked.conf ikev2 esp from 66.63.5.250 to 66.63.44.72 psk "Testing" ikev2 esp from 0.0.0.0/0 to 66.63.50.17 peer 66.63.44.72 psk "Testing" #ikev2 esp from any to 66.63.50.17 peer 66.63.44.72 psk "Testing" server 2 # cat hostname.em0 inet 66.63.44.72 255.255.255.224 inet alias 66.63.50.17 255.255.255.240 description LAN # cat iked.conf ikev2 active esp from 66.63.44.72 to 66.63.5.250 psk "Testing" ikev2 active esp from 66.63.50.17 to 0.0.0.0/0 peer 66.63.5.250 psk "Testing" #ikev2 active esp from 66.63.50.17 to any peer 66.63.5.250 psk "Testing" Now results with iked -d on both: server 1 # iked -d ikev2_recv: IKE_SA_INIT request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 0, 520 bytes ikev2_msg_send: IKE_SA_INIT response from 66.63.5.250:500 to 66.63.44.72:500 msgid 0, 432 bytes ikev2_recv: IKE_SA_INIT request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 0, 520 bytes ikev2_msg_send: IKE_SA_INIT response from 66.63.5.250:500 to 66.63.44.72:500 msgid 0, 432 bytes ikev2_recv: IKE_AUTH request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 1, 272 bytes ikev2_msg_send: IKE_AUTH response from 66.63.5.250:500 to 66.63.44.72:500 msgid 1, 240 bytes sa_state: VALID -> ESTABLISHED from 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' ikev2_recv: IKE_AUTH request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 1, 272 bytes ikev2_msg_send: IKE_AUTH response from 66.63.5.250:500 to 66.63.44.72:500 msgid 1, 240 bytes sa_state: VALID -> ESTABLISHED from 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' server 2 # iked -d ikev2_msg_send: IKE_SA_INIT request from 66.63.44.72:500 to 66.63.5.250:500 msgid 0, 520 bytes ikev2_msg_send: IKE_SA_INIT request from 0.0.0.0:500 to 66.63.5.250:500 msgid 0, 520 bytes ikev2_recv: IKE_SA_INIT response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy1' id 0, 432 bytes ikev2_msg_send: IKE_AUTH request from 66.63.44.72:500 to 66.63.5.250:500 msgid 1, 272 bytes ikev2_recv: IKE_SA_INIT response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy2' id 0, 432 bytes ikev2_msg_send: IKE_AUTH request from 66.63.44.72:500 to 66.63.5.250:500 msgid 1, 272 bytes ikev2_recv: IKE_AUTH response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy1' id 1, 240 bytes sa_state: VALID -> ESTABLISHED from 66.63.5.250:500 to 66.63.44.72:500 policy 'policy1' ikev2_recv: IKE_AUTH response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy2' id 1, 240 bytes sa_state: VALID -> ESTABLISHED from 66.63.5.250:500 to 66.63.44.72:500 policy 'policy2' And now with a specific interface for testing as source ping -I 66.63.50.17 4.2.2.2 from server 1 # ping -I 66.63.50.17 4.2.2.2 PING 4.2.2.2 (4.2.2.2): 56 data bytes 64 bytes from 4.2.2.2: icmp_seq=0 ttl=58 time=15.827 ms 64 bytes from 4.2.2.2: icmp_seq=1 ttl=58 time=13.945 ms 64 bytes from 4.2.2.2: icmp_seq=2 ttl=58 time=14.357 ms 64 bytes from 4.2.2.2: icmp_seq=3 ttl=58 time=14.743 ms 64 bytes from 4.2.2.2: icmp_seq=4 ttl=58 time=15.055 ms and tcpdump -ni enc0 on server 2 # tcpdump -ni enc0 tcpdump: listening on enc0, link-type ENC 17:22:35.959985 (authentic,confidential): SPI 0x86f67e90: 66.63.50.17 > 4.2.2.2: icmp: echo request (encap) 17:22:35.963089 (authentic,confidential): SPI 0x34265968: 4.2.2.2 > 66.63.50.17: icmp: echo reply (encap) 17:22:36.966420 (authentic,confidential): SPI 0x86f67e90: 66.63.50.17 > 4.2.2.2: icmp: echo request (encap) 17:22:36.969432 (authentic,confidential): SPI 0x34265968: 4.2.2.2 > 66.63.50.17: icmp: echo reply (encap) 17:22:37.976698 (authentic,confidential): SPI 0x86f67e90: 66.63.50.17 > 4.2.2.2: icmp: echo request (encap) 17:22:37.979702 (authentic,confidential): SPI 0x34265968: 4.2.2.2 > 66.63.50.17: icmp: echo reply (encap) 17:22:38.987136 (authentic,confidential): SPI 0x86f67e90: 66.63.50.17 > 4.2.2.2: icmp: echo request (encap) =================================== Now only change the 0.0.0.0/0 by any. we get unsupported address family 0 The man page does say 'any' is valid, am I missing something? Server 1 # iked -d ikev2_recv: IKE_SA_INIT request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 0, 520 bytes ikev2_msg_send: IKE_SA_INIT response from 66.63.5.250:500 to 66.63.44.72:500 msgid 0, 432 bytes ikev2_recv: IKE_SA_INIT request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 0, 520 bytes ikev2_msg_send: IKE_SA_INIT response from 66.63.5.250:500 to 66.63.44.72:500 msgid 0, 432 bytes ikev2_recv: IKE_AUTH request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 1, 272 bytes ikev2_msg_send: IKE_AUTH response from 66.63.5.250:500 to 66.63.44.72:500 msgid 1, 224 bytes pfkey_flow: unsupported address family 0 sa_state: VALID -> CLOSED from 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' ikev2_recv: IKE_AUTH request from initiator 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' id 1, 256 bytes ikev2_msg_send: IKE_AUTH response from 66.63.5.250:500 to 66.63.44.72:500 msgid 1, 224 bytes pfkey_flow: unsupported address family 0 sa_state: VALID -> CLOSED from 66.63.44.72:500 to 66.63.5.250:500 policy 'policy2' server 2 # iked -d ikev2_msg_send: IKE_SA_INIT request from 66.63.44.72:500 to 66.63.5.250:500 msgid 0, 520 bytes ikev2_msg_send: IKE_SA_INIT request from 0.0.0.0:500 to 66.63.5.250:500 msgid 0, 520 bytes ikev2_recv: IKE_SA_INIT response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy1' id 0, 432 bytes ikev2_msg_send: IKE_AUTH request from 66.63.44.72:500 to 66.63.5.250:500 msgid 1, 272 bytes ikev2_recv: IKE_SA_INIT response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy2' id 0, 432 bytes ikev2_msg_send: IKE_AUTH request from 66.63.44.72:500 to 66.63.5.250:500 msgid 1, 256 bytes ikev2_recv: IKE_AUTH response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy1' id 1, 224 bytes sa_state: VALID -> ESTABLISHED from 66.63.5.250:500 to 66.63.44.72:500 policy 'policy1' ikev2_recv: IKE_AUTH response from responder 66.63.5.250:500 to 66.63.44.72:500 policy 'policy2' id 1, 224 bytes pfkey_flow: unsupported address family 0 ====================== server 1 OpenBSD 5.6-current (GENERIC.MP) #735: Sat Dec 27 13:55:58 MST 2014 dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 17134096384 (16340MB) avail mem = 16674119680 (15901MB) mpath0 at root scsibus0 at mpath0: 256 targets mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xeb5a0 (53 entries) bios0: vendor American Megatrends Inc. version "2.0a" date 10/17/2013 bios0: Supermicro X9SCE acpi0 at bios0: rev 2 acpi0: sleep states S0 S1 S4 S5 acpi0: tables DSDT FACP APIC FPDT MCFG HPET SSDT PRAD SPMI SSDT SSDT acpi0: wakeup devices PS2K(S4) PS2M(S4) UAR1(S4) P0P1(S4) USB1(S4) USB2(S4) USB3(S4) USB4(S4) USB5(S4) USB6(S4) USB7(S4) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) [...] 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) Xeon(R) CPU E3-1220L V2 @ 2.30GHz, 2300.46 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu0: 256KB 64b/line 8-way L2 cache cpu0: smt 0, core 0, package 0 mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges cpu0: apic clock running at 100MHz cpu0: mwait min=64, max=64, C-substates=0.2.1.1.0, IBE cpu1 at mainbus0: apid 2 (application processor) cpu1: Intel(R) Xeon(R) CPU E3-1220L V2 @ 2.30GHz, 2300.02 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu1: 256KB 64b/line 8-way L2 cache cpu1: smt 0, core 1, package 0 cpu2 at mainbus0: apid 1 (application processor) cpu2: Intel(R) Xeon(R) CPU E3-1220L V2 @ 2.30GHz, 2300.03 MHz cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu2: 256KB 64b/line 8-way L2 cache cpu2: smt 1, core 0, package 0 cpu3 at mainbus0: apid 3 (application processor) cpu3: Intel(R) Xeon(R) CPU E3-1220L V2 @ 2.30GHz, 2300.03 MHz cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS cpu3: 256KB 64b/line 8-way L2 cache cpu3: smt 1, core 1, package 0 ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins acpimcfg0 at acpi0 addr 0xe0000000, bus 0-255 acpihpet0 at acpi0: 14318179 Hz acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus 4 (P0P1) acpiprt2 at acpi0: bus -1 (RP01) acpiprt3 at acpi0: bus -1 (RP02) acpiprt4 at acpi0: bus -1 (RP03) acpiprt5 at acpi0: bus -1 (RP04) acpiprt6 at acpi0: bus -1 (RP05) acpiprt7 at acpi0: bus -1 (RP06) acpiprt8 at acpi0: bus -1 (RP07) acpiprt9 at acpi0: bus -1 (RP08) acpiprt10 at acpi0: bus 1 (PEG0) acpiprt11 at acpi0: bus 2 (PEG1) acpiprt12 at acpi0: bus -1 (PEG2) acpiprt13 at acpi0: bus -1 (PEG3) acpiec0 at acpi0: not present acpicpu0 at acpi0: C3, C1, PSS acpicpu1 at acpi0: C3, C1, PSS acpicpu2 at acpi0: C3, C1, PSS acpicpu3 at acpi0: C3, C1, PSS acpipwrres0 at acpi0: FN00, resource for FAN0 acpipwrres1 at acpi0: FN01, resource for FAN1 acpipwrres2 at acpi0: FN02, resource for FAN2 acpipwrres3 at acpi0: FN03, resource for FAN3 acpipwrres4 at acpi0: FN04, resource for FAN4 acpitz0 at acpi0: critical temperature is 90 degC acpitz1 at acpi0: critical temperature is 90 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: DD01 acpivout1 at acpivideo0: DD02 acpivout2 at acpivideo0: DD03 acpivout3 at acpivideo0: DD04 acpivout4 at acpivideo0: DD05 acpivout5 at acpivideo0: DD06 acpivout6 at acpivideo0: DD07 acpivout7 at acpivideo0: DD08 ipmi at mainbus0 not configured cpu0: Enhanced SpeedStep 2300 MHz: speeds: 2301, 2300, 2200, 2100, 2000, 1900, 1800, 1700, 1600, 1500, 1400, 1300, 1200 MHz pci0 at mainbus0 bus 0 pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v2 Host" rev 0x09 ppb0 at pci0 dev 1 function 0 "Intel Core 3G PCIE" rev 0x09: msi pci1 at ppb0 bus 1 ppb1 at pci0 dev 1 function 1 "Intel Core 3G PCIE" rev 0x09: msi pci2 at ppb1 bus 2 em0 at pci2 dev 0 function 0 "Intel I350" rev 0x01: msi, address 00:25:90:e8:17:f6 em1 at pci2 dev 0 function 1 "Intel I350" rev 0x01: msi, address 00:25:90:e8:17:f7 "Intel 6 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured vendor "Intel", unknown product 0x1c3b (class communications subclass miscellaneous, rev 0x04) at pci0 dev 22 function 1 not configured ehci0 at pci0 dev 26 function 0 "Intel 6 Series USB" rev 0x05: 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 ehci1 at pci0 dev 29 function 0 "Intel 6 Series USB" rev 0x05: 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 ppb2 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0xa5 pci3 at ppb2 bus 4 vga1 at pci3 dev 3 function 0 "Matrox MGA G200eW" rev 0x0a wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) pcib0 at pci0 dev 31 function 0 "Intel C204 LPC" rev 0x05 ahci0 at pci0 dev 31 function 2 "Intel 6 Series AHCI" rev 0x05: msi, AHCI 1.3 scsibus1 at ahci0: 32 targets sd0 at scsibus1 targ 0 lun 0: <ATA, INTEL SSDSC2BB12, D201> SCSI3 0/direct fixed naa.55cd2e404b941443 sd0: 114473MB, 512 bytes/sector, 234441648 sectors, thin ichiic0 at pci0 dev 31 function 3 "Intel 6 Series SMBus" rev 0x05: apic 2 int 18 iic0 at ichiic0 sdtemp0 at iic0 addr 0x19: mcp98243 sdtemp1 at iic0 addr 0x1b: mcp98243 lm1 at iic0 addr 0x2c: W83627DHG iic0: addr 0x49 04=01 44=01 84=01 c0=03 c1=01 c4=01 c6=01 ca=01 cb=01 cc=01 cd=02 cf=01 d1=02 d4=07 da=0f db=02 dd=01 de=03 words 00=ffff 01=ffff 02=ffff 03=ffff 04=01ff 05=ffff 06=ffff 07=ffff iic0: addr 0x4a 04=01 44=01 84=01 c0=03 c1=01 c4=01 c6=01 ca=01 cb=01 cc=01 cd=02 cf=01 d1=02 d4=07 da=0f db=02 dd=01 de=03 words 00=ffff 01=ffff 02=ffff 03=ffff 04=01ff 05=ffff 06=ffff 07=ffff spdmem0 at iic0 addr 0x51: 8GB DDR3 SDRAM ECC PC3-12800 with thermal sensor spdmem1 at iic0 addr 0x53: 8GB DDR3 SDRAM ECC PC3-12800 with thermal sensor isa0 at pcib0 isadma0 at isa0 com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo com1: console 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 wbsio0 at isa0 port 0x2e/2: NCT6776F rev 0x33 lm2 at wbsio0 port 0xa30/8: NCT6776F uhub2 at uhub0 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 uhidev0 at uhub2 port 2 configuration 1 interface 0 "Winbond Electronics Corp Hermon USB hidmouse Device" rev 1.10/0.01 addr 3 uhidev0: iclass 3/1 ums0 at uhidev0: 3 buttons, Z dir wsmouse0 at ums0 mux 0 uhidev1 at uhub2 port 2 configuration 1 interface 1 "Winbond Electronics Corp Hermon USB hidmouse Device" rev 1.10/0.01 addr 3 uhidev1: iclass 3/1 ukbd0 at uhidev1: 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 scsibus2 at vscsi0: 256 targets softraid0 at root scsibus3 at softraid0: 256 targets root on sd0a (e5091dcd13532383.a) swap on sd0b dump on sd0b ichiic0: abort failed, status 0x41<BUSY,INUSE> ichiic0: abort failed, status 0x41<BUSY,INUSE> ============================= server 2 OpenBSD 5.6-current (GENERIC.MP) #735: Sat Dec 27 13:55:58 MST 2014 dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 4277665792 (4079MB) avail mem = 4159922176 (3967MB) mpath0 at root scsibus0 at mpath0: 256 targets mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.6 @ 0x9f000 (19 entries) bios0: vendor American Megatrends Inc. version "1.1" date 08/20/10 bios0: Supermicro X7SPA-HF acpi0 at bios0: rev 2 acpi0: sleep states S0 S1 S4 S5 acpi0: tables DSDT FACP APIC MCFG OEMB HPET EINJ BERT ERST HEST acpi0: wakeup devices P0P1(S4) PS2K(S4) PS2M(S4) USB0(S4) USB1(S4) USB2(S4) USB5(S4) EUSB(S4) USB3(S4) USB4(S4) USB6(S4) USBE(S4) P0P4(S4) P0P5(S4) P0P6(S4) P0P7(S4) [...] 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) Atom(TM) CPU D525 @ 1.80GHz, 1800.28 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,NXE,LONG,LAHF,PERF cpu0: 512KB 64b/line 8-way L2 cache cpu0: smt 0, core 0, package 0 mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges cpu0: apic clock running at 199MHz cpu0: mwait min=64, max=64, C-substates=0.1.0.0.0, IBE cpu1 at mainbus0: apid 2 (application processor) cpu1: Intel(R) Atom(TM) CPU D525 @ 1.80GHz, 1800.00 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,NXE,LONG,LAHF,PERF cpu1: 512KB 64b/line 8-way L2 cache cpu1: smt 0, core 1, package 0 cpu2 at mainbus0: apid 1 (application processor) cpu2: Intel(R) Atom(TM) CPU D525 @ 1.80GHz, 1800.00 MHz cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,NXE,LONG,LAHF,PERF cpu2: 512KB 64b/line 8-way L2 cache cpu2: smt 1, core 0, package 0 cpu3 at mainbus0: apid 3 (application processor) cpu3: Intel(R) Atom(TM) CPU D525 @ 1.80GHz, 1800.00 MHz cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,DTES64,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,NXE,LONG,LAHF,PERF cpu3: 512KB 64b/line 8-way L2 cache cpu3: smt 1, core 1, package 0 ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 20, 24 pins ioapic0: misconfigured as apic 1, remapped to apid 4 acpimcfg0 at acpi0 addr 0xe0000000, bus 0-255 acpihpet0 at acpi0: 14318179 Hz acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus 4 (P0P1) acpiprt2 at acpi0: bus 1 (P0P4) acpiprt3 at acpi0: bus -1 (P0P5) acpiprt4 at acpi0: bus -1 (P0P6) acpiprt5 at acpi0: bus -1 (P0P7) acpiprt6 at acpi0: bus 2 (P0P8) acpiprt7 at acpi0: bus 3 (P0P9) acpicpu0 at acpi0 acpicpu1 at acpi0 acpicpu2 at acpi0 acpicpu3 at acpi0 acpibtn0 at acpi0: SLPB acpibtn1 at acpi0: PWRB ipmi at mainbus0 not configured pci0 at mainbus0 bus 0 pchb0 at pci0 dev 0 function 0 "Intel Pineview DMI" rev 0x02 uhci0 at pci0 dev 26 function 0 "Intel 82801I USB" rev 0x02: apic 4 int 16 uhci1 at pci0 dev 26 function 1 "Intel 82801I USB" rev 0x02: apic 4 int 21 uhci2 at pci0 dev 26 function 2 "Intel 82801I USB" rev 0x02: apic 4 int 19 ehci0 at pci0 dev 26 function 7 "Intel 82801I USB" rev 0x02: apic 4 int 18 usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb0 at pci0 dev 28 function 0 "Intel 82801I PCIE" rev 0x02: msi pci1 at ppb0 bus 1 ppb1 at pci0 dev 28 function 4 "Intel 82801I PCIE" rev 0x02: msi pci2 at ppb1 bus 2 em0 at pci2 dev 0 function 0 "Intel 82574L" rev 0x00: msi, address 00:25:90:31:31:c4 ppb2 at pci0 dev 28 function 5 "Intel 82801I PCIE" rev 0x02: msi pci3 at ppb2 bus 3 em1 at pci3 dev 0 function 0 "Intel 82574L" rev 0x00: msi, address 00:25:90:31:31:c5 uhci3 at pci0 dev 29 function 0 "Intel 82801I USB" rev 0x02: apic 4 int 23 uhci4 at pci0 dev 29 function 1 "Intel 82801I USB" rev 0x02: apic 4 int 19 uhci5 at pci0 dev 29 function 2 "Intel 82801I USB" rev 0x02: apic 4 int 18 ehci1 at pci0 dev 29 function 7 "Intel 82801I USB" rev 0x02: apic 4 int 23 usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb3 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0x92 pci4 at ppb3 bus 4 vga1 at pci4 dev 4 function 0 "Matrox MGA G200eW" rev 0x0a wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) pcib0 at pci0 dev 31 function 0 "Intel 82801IR LPC" rev 0x02 ahci0 at pci0 dev 31 function 2 "Intel 82801I AHCI" rev 0x02: msi, AHCI 1.2 scsibus1 at ahci0: 32 targets sd0 at scsibus1 targ 0 lun 0: <ATA, KINGSTON SVP100S, CJRA> SCSI3 0/direct fixed t10.ATA_KINGSTON_SVP100S264G_X0LY103TY19K sd0: 61057MB, 512 bytes/sector, 125045424 sectors, thin ichiic0 at pci0 dev 31 function 3 "Intel 82801I SMBus" rev 0x02: apic 4 int 18 iic0 at ichiic0 lm1 at iic0 addr 0x2d: W83627DHG spdmem0 at iic0 addr 0x50: 2GB DDR3 SDRAM PC3-10600 SO-DIMM spdmem1 at iic0 addr 0x51: 2GB DDR3 SDRAM PC3-10600 SO-DIMM usb2 at uhci0: USB revision 1.0 uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb3 at uhci1: USB revision 1.0 uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb4 at uhci2: USB revision 1.0 uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb5 at uhci3: USB revision 1.0 uhub5 at usb5 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb6 at uhci4: USB revision 1.0 uhub6 at usb6 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb7 at uhci5: USB revision 1.0 uhub7 at usb7 "Intel UHCI root hub" rev 1.00/1.00 addr 1 isa0 at pcib0 isadma0 at isa0 com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo com2 at isa0 port 0x3e8/8 irq 5: 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 wbsio0 at isa0 port 0x2e/2: W83627DHG rev 0x25 lm2 at wbsio0 port 0xca0/8: W83627DHG lm1: disabling sensors due to alias with lm2 uhidev0 at uhub4 port 2 configuration 1 interface 0 "Winbond Electronics Corp Hermon USB hidmouse Device" rev 1.10/0.01 addr 2 uhidev0: iclass 3/1 ums0 at uhidev0: 3 buttons, Z dir wsmouse0 at ums0 mux 0 uhidev1 at uhub4 port 2 configuration 1 interface 1 "Winbond Electronics Corp Hermon USB hidmouse Device" rev 1.10/0.01 addr 2 uhidev1: iclass 3/1 ukbd0 at uhidev1: 8 variable keys, 6 key codes wskbd1 at ukbd0 mux 1 wskbd1: connecting to wsdisplay0 vscsi0 at root scsibus2 at vscsi0: 256 targets softraid0 at root scsibus3 at softraid0: 256 targets root on sd0a (8963eff098c92d09.a) swap on sd0b dump on sd0b