On Fri, Oct 25, 2019 at 11:09:14PM +0300, Esa Kuusisto wrote:
> Hi
> 
> I encountered a BGPD problem after upgrade from 6.5 -> 6.6. BGPD crashes to
> "fatal in RDE: prefix_adjout_update: update for non existing prefix"
> problem.
> 
> Environment:
> Two OpenBGPD instances. Primary (ROUTER1, now 6.5) and secondary 6.6
> (ROUTER2). Two iBGP instances to local switches (SW1 and SW2). One iBGP
> instances between ROUTER1 and ROUTER2.
> ROUTER1 and ROUTER2 advertise one /22 prefix and one /48 prefix to Internet
> peers. ROUTER1 and ROUTER2 advertise 0/0 routes to SW1 and SW2.
> SW1 and SW2 have same AS as ROUTER1 and ROUTER2. SW1 and SW2 advertise
> longer prefixes from /22 (23 or longer) and /48 (prefixlen 64) to ROUTER1
> and ROUTER2.
> Connection is passive in ROUTER1 and ROUTER2 towards SW1 and SW2. After
> BGPD starts and gets connection from SW1 and SW2 it quits when fatal:
> 

How do you announce the default routes to SW1 and SW2?
If you use 'export default-route' please try to replace them with network
0/0 and network ::/0 instead. I think I know why it happens.
up_generate_default() injects the default route without adding it to the
prefix tree first so pt_get() fails since there is no 0/0 around.

> Br
> -Esa
> 
> bgpd -nv
> startup
> ktable_new: rdomain_0 with rtableid 0 rdomain 0
> session engine ready
> rib_new: Adj-RIB-In -> 0
> route decision engine ready
> rib_new: Loc-RIB -> 1
> listening on 127.0.0.1
> listening on 91.C.C.C
> listening on 2001:A:A:A::A
> SE reconfigured
> neighbor 185.X.X.X (InternetPEER1_v4): state change None -> Idle, reason:
> None
> neighbor 185.Y.Y.Y (InternetPEER2_v4): state change None -> Idle, reason:
> None
> neighbor 2a0d:K:K:K::1 (InternetPEER1_v6): state change None -> Idle,
> reason: None
> neighbor 2a0d:K:K:K::2 (InternetPEER2_v6): state change None -> Idle,
> reason: None
> neighbor 91.S.S.S (ROUTER1_v4): state change None -> Idle, reason: None
> neighbor 2001:67c:B:B::aaaa (ROUTER1_v6): state change None -> Idle,
> reason: None
> neighbor 91.T.T.T (SW1_v4): state change None -> Idle, reason: None
> neighbor 91.E.E.E (SW2_v4): state change None -> Idle, reason: None
> neighbor 2001:67c:W:W::2 (SW1_v6): state change None -> Idle, reason: None
> neighbor 2001:67c:W:W::3 (SW2_v6): state change None -> Idle, reason: None
> neighbor 185.X.X.X (InternetPEER1_v4): state change Idle -> Connect,
> reason: Start
> neighbor 185.Y.Y.Y (InternetPEER2_v4): state change Idle -> Connect,
> reason: Start
> neighbor 2a0d:K:K:K::1 (InternetPEER1_v6): state change Idle -> Connect,
> reason: Start
> neighbor 2a0d:K:K:K::2 (InternetPEER2_v6): state change Idle -> Connect,
> reason: Start
> neighbor 91.S.S.S (ROUTER1_v4): state change Idle -> Connect, reason: Start
> neighbor 2001:67c:B:B::aaaa (ROUTER1_v6): state change Idle -> Connect,
> reason: Start
> neighbor 91.T.T.T (SW1_v4): state change Idle -> Active, reason: Start
> neighbor 91.E.E.E (SW2_v4): state change Idle -> Active, reason: Start
> neighbor 2001:67c:W:W::2 (SW1_v6): state change Idle -> Active, reason:
> Start
> neighbor 2001:67c:W:W::3 (SW2_v6): state change Idle -> Active, reason:
> Start
> out filter change: reloading peer neighbor 91.S.S.A (LOCAL)
> RDE reconfigured
> running softreconfig in
> neighbor 185.X.X.X (InternetPEER1_v4): state change Connect -> OpenSent,
> reason: Connection opened
> neighbor 185.Y.Y.Y (InternetPEER2_v4): state change Connect -> OpenSent,
> reason: Connection opened
> softreconfig in done
> starting softreconfig out for rib Loc-RIB
> softreconfig out done for Loc-RIB
> neighbor 2a0d:K:K:K::1 (InternetPEER1_v6): state change Connect ->
> OpenSent, reason: Connection opened
> RDE soft reconfiguration done
> neighbor 185.X.X.X (InternetPEER1_v4): state change OpenSent -> Active,
> reason: Connection closed
> neighbor 185.Y.Y.Y (InternetPEER2_v4): state change OpenSent -> Active,
> reason: Connection closed
> neighbor 2a0d:K:K:K::1 (InternetPEER1_v6): state change OpenSent -> Active,
> reason: Connection closed
> neighbor 2a0d:K:K:K::2 (InternetPEER2_v6): state change Connect ->
> OpenSent, reason: Connection opened
> neighbor 2a0d:K:K:K::2 (InternetPEER2_v6): state change OpenSent -> Active,
> reason: Connection closed
> neighbor 2001:67c:W:W::2 (SW1_v6): state change Active -> OpenSent, reason:
> Connection opened
> neighbor 2001:67c:W:W::2 (SW1_v6): state change OpenSent -> OpenConfirm,
> reason: OPEN message received
> neighbor 2001:67c:W:W::2 (SW1_v6): state change OpenConfirm -> Established,
> reason: KEEPALIVE message received
> fatal in RDE: prefix_adjout_update: update for non existing prefix
> peer closed imsg connection
> peer closed imsg connection
> SE: Lost connection to RDE
> main: Lost connection to RDE
> peer closed imsg connection
> kernel routing table 0 (Loc-RIB) decoupled
> SE: Lost connection to RDE control
> ktable_destroy: freeing ktable Loc-RIB rtableid 0
> peer closed imsg connection
> waiting for children to terminate
> SE: Lost connection to parent
> neighbor 185.X.X.X (InternetPEER1_v4): state change Active -> Idle, reason:
> Stop
> neighbor 185.Y.Y.Y (InternetPEER2_v4): state change Active -> Idle, reason:
> Stop
> neighbor 2a0d:K:K:K::1 (InternetPEER1_v6): state change Active -> Idle,
> reason: Stop
> neighbor 2a0d:K:K:K::2 (InternetPEER2_v6): state change Active -> Idle,
> reason: Stop
> neighbor 91.S.S.S (ROUTER1_v4): state change Connect -> Idle, reason: Stop
> neighbor 2001:67c:B:B::aaaa (ROUTER1_v6): state change Connect -> Idle,
> reason: Stop
> neighbor 91.T.T.T (SW1_v4): state change Active -> Idle, reason: Stop
> neighbor 91.E.E.E (SW2_v4): state change Active -> Idle, reason: Stop
> neighbor 2001:67c:W:W::2 (SW1_v6): sending notification: Cease,
> administratively down
> neighbor 2001:67c:W:W::2 (SW1_v6): state change Established -> Idle,
> reason: Stop
> neighbor 2001:67c:W:W::3 (SW2_v6): state change Active -> Idle, reason: Stop
> session engine exiting
> terminating
> 
> dmesg:OpenBSD 6.6 (RAMDISK_CD) #349: Sat Oct 12 11:03:52 MDT 2019
>     dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/RAMDISK_CD
> real mem = 4278124544 (4079MB)
> avail mem = 4144492544 (3952MB)
> mainbus0 at root
> bios0 at mainbus0: SMBIOS rev. 2.4 @ 0xe0010 (242 entries)
> bios0: vendor Phoenix Technologies LTD version "6.00" date 09/19/2018
> bios0: VMware, Inc. VMware Virtual Platform
> acpi0 at bios0: ACPI 4.0
> acpi0: tables DSDT FACP BOOT APIC MCFG SRAT HPET WAET
> acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> cpu0 at mainbus0: apid 0 (boot processor)
> cpu0: Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz, 2799.65 MHz, 06-3a-00
> cpu0:
> FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,HTT,SSE3,PCLMUL,SSSE3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,ARAT,MELTDOWN
> cpu0: 256KB 64b/line 8-way L2 cache
> cpu0: apic clock running at 65MHz
> cpu at mainbus0: not configured
> ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 11, 24 pins
> acpiprt0 at acpi0: bus 0 (PCI0)
> acpicpu at acpi0 not configured
> "PNP0A03" at acpi0 not configured
> acpicmos0 at acpi0
> "PNP0A05" at acpi0 not configured
> "ACPI0003" at acpi0 not configured
> cpu0: using IvyBridge MDS workaround
> pvbus0 at mainbus0: VMware
> pci0 at mainbus0 bus 0
> pchb0 at pci0 dev 0 function 0 "Intel 82443BX AGP" rev 0x01
> ppb0 at pci0 dev 1 function 0 "Intel 82443BX AGP" rev 0x01
> pci1 at ppb0 bus 1
> "Intel 82371AB PIIX4 ISA" rev 0x08 at pci0 dev 7 function 0 not configured
> pciide0 at pci0 dev 7 function 1 "Intel 82371AB IDE" rev 0x01: DMA, channel
> 0 configured to compatibility, channel 1 configured to compatibility
> pciide0: channel 0 disabled (no drives)
> atapiscsi0 at pciide0 channel 1 drive 0
> scsibus0 at atapiscsi0: 2 targets
> cd0 at scsibus0 targ 0 lun 0: <NECVMWar, VMware IDE CDR10, 1.00> removable
> cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 2
> "Intel 82371AB Power" rev 0x08 at pci0 dev 7 function 3 not configured
> "VMware VMCI" rev 0x10 at pci0 dev 7 function 7 not configured
> vga1 at pci0 dev 15 function 0 "VMware SVGA II" rev 0x00
> vga1: aperture needed
> wsdisplay1 at vga1 mux 1: console (80x25, vt100 emulation)
> mpi0 at pci0 dev 16 function 0 "Symbios Logic 53c1030" rev 0x01: apic 2 int
> 17
> mpi0: 0, firmware 1.3.41.32
> scsibus1 at mpi0: 16 targets, initiator 7
> sd0 at scsibus1 targ 0 lun 0: <VMware, Virtual disk, 2.0>
> sd0: 8192MB, 512 bytes/sector, 16777216 sectors, thin
> mpi0: target 0 Sync at 160MHz width 16bit offset 127 QAS 1 DT 1 IU 1
> ppb1 at pci0 dev 17 function 0 "VMware PCI" rev 0x02
> pci2 at ppb1 bus 2
> ppb2 at pci0 dev 21 function 0 "VMware PCIE" rev 0x01
> pci3 at ppb2 bus 3
> vmx0 at pci3 dev 0 function 0 "VMware VMXNET3" rev 0x01: apic 2 int 18,
> address 00:50:56:8c:05:54
> ppb3 at pci0 dev 21 function 1 "VMware PCIE" rev 0x01
> pci4 at ppb3 bus 4
> ppb4 at pci0 dev 21 function 2 "VMware PCIE" rev 0x01
> pci5 at ppb4 bus 5
> ppb5 at pci0 dev 21 function 3 "VMware PCIE" rev 0x01
> pci6 at ppb5 bus 6
> ppb6 at pci0 dev 21 function 4 "VMware PCIE" rev 0x01
> pci7 at ppb6 bus 7
> ppb7 at pci0 dev 21 function 5 "VMware PCIE" rev 0x01
> pci8 at ppb7 bus 8
> ppb8 at pci0 dev 21 function 6 "VMware PCIE" rev 0x01
> pci9 at ppb8 bus 9
> ppb9 at pci0 dev 21 function 7 "VMware PCIE" rev 0x01
> pci10 at ppb9 bus 10
> ppb10 at pci0 dev 22 function 0 "VMware PCIE" rev 0x01
> pci11 at ppb10 bus 11
> vmx1 at pci11 dev 0 function 0 "VMware VMXNET3" rev 0x01: apic 2 int 19,
> address 00:50:56:8c:38:09
> ppb11 at pci0 dev 22 function 1 "VMware PCIE" rev 0x01
> pci12 at ppb11 bus 12
> ppb12 at pci0 dev 22 function 2 "VMware PCIE" rev 0x01
> pci13 at ppb12 bus 13
> ppb13 at pci0 dev 22 function 3 "VMware PCIE" rev 0x01
> pci14 at ppb13 bus 14
> ppb14 at pci0 dev 22 function 4 "VMware PCIE" rev 0x01
> pci15 at ppb14 bus 15
> ppb15 at pci0 dev 22 function 5 "VMware PCIE" rev 0x01
> pci16 at ppb15 bus 16
> ppb16 at pci0 dev 22 function 6 "VMware PCIE" rev 0x01
> pci17 at ppb16 bus 17
> ppb17 at pci0 dev 22 function 7 "VMware PCIE" rev 0x01
> pci18 at ppb17 bus 18
> ppb18 at pci0 dev 23 function 0 "VMware PCIE" rev 0x01
> pci19 at ppb18 bus 19
> vmx2 at pci19 dev 0 function 0 "VMware VMXNET3" rev 0x01: apic 2 int 16,
> address 00:50:56:8c:e8:fe
> ppb19 at pci0 dev 23 function 1 "VMware PCIE" rev 0x01
> pci20 at ppb19 bus 20
> ppb20 at pci0 dev 23 function 2 "VMware PCIE" rev 0x01
> pci21 at ppb20 bus 21
> ppb21 at pci0 dev 23 function 3 "VMware PCIE" rev 0x01
> pci22 at ppb21 bus 22
> ppb22 at pci0 dev 23 function 4 "VMware PCIE" rev 0x01
> pci23 at ppb22 bus 23
> ppb23 at pci0 dev 23 function 5 "VMware PCIE" rev 0x01
> pci24 at ppb23 bus 24
> ppb24 at pci0 dev 23 function 6 "VMware PCIE" rev 0x01
> pci25 at ppb24 bus 25
> ppb25 at pci0 dev 23 function 7 "VMware PCIE" rev 0x01
> pci26 at ppb25 bus 26
> ppb26 at pci0 dev 24 function 0 "VMware PCIE" rev 0x01
> pci27 at ppb26 bus 27
> ppb27 at pci0 dev 24 function 1 "VMware PCIE" rev 0x01
> pci28 at ppb27 bus 28
> ppb28 at pci0 dev 24 function 2 "VMware PCIE" rev 0x01
> pci29 at ppb28 bus 29
> ppb29 at pci0 dev 24 function 3 "VMware PCIE" rev 0x01
> pci30 at ppb29 bus 30
> ppb30 at pci0 dev 24 function 4 "VMware PCIE" rev 0x01
> pci31 at ppb30 bus 31
> ppb31 at pci0 dev 24 function 5 "VMware PCIE" rev 0x01
> pci32 at ppb31 bus 32
> ppb32 at pci0 dev 24 function 6 "VMware PCIE" rev 0x01
> pci33 at ppb32 bus 33
> ppb33 at pci0 dev 24 function 7 "VMware PCIE" rev 0x01
> pci34 at ppb33 bus 34
> isa0 at mainbus0
> pckbc0 at isa0 port 0x60/5 irq 1 irq 12
> pckbd0 at pckbc0 (kbd slot)
> wskbd0 at pckbd0: console keyboard, using wsdisplay1
> softraid0 at root
> scsibus2 at softraid0: 256 targets
> root on rd0a swap on rd0b dump on rd0b
> syncing disks... done
> rebooting...
> OpenBSD 6.6 (GENERIC.MP) #372: Sat Oct 12 10:56:27 MDT 2019
>     dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
> real mem = 4278124544 (4079MB)
> avail mem = 4135751680 (3944MB)
> mpath0 at root
> scsibus0 at mpath0: 256 targets
> mainbus0 at root
> bios0 at mainbus0: SMBIOS rev. 2.4 @ 0xe0010 (242 entries)
> bios0: vendor Phoenix Technologies LTD version "6.00" date 09/19/2018
> bios0: VMware, Inc. VMware Virtual Platform
> acpi0 at bios0: ACPI 4.0
> acpi0: sleep states S0 S1 S4 S5
> acpi0: tables DSDT FACP BOOT APIC MCFG SRAT HPET WAET
> acpi0: wakeup devices PCI0(S3) USB_(S1) P2P0(S3) S1F0(S3) S2F0(S3) S8F0(S3)
> S16F(S3) S17F(S3) S18F(S3) S22F(S3) S23F(S3) S24F(S3) S25F(S3) PE40(S3)
> S1F0(S3) PE50(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) Xeon(R) CPU E5-2680 v2 @ 2.80GHz, 2799.70 MHz, 06-3a-00
> cpu0:
> FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,HTT,SSE3,PCLMUL,SSSE3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,ARAT,MELTDOWN
> cpu0: 256KB 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 65MHz
> cpu1 at mainbus0: apid 1 (application processor)
> cpu1: Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz, 2799.34 MHz, 06-3a-00
> cpu1:
> FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,MMX,FXSR,SSE,SSE2,SS,HTT,SSE3,PCLMUL,SSSE3,CX16,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,HV,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,ARAT,MELTDOWN
> cpu1: 256KB 64b/line 8-way L2 cache
> cpu1: smt 0, core 1, package 0
> ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 11, 24 pins
> acpimcfg0 at acpi0
> acpimcfg0: addr 0xf0000000, bus 0-127
> acpihpet0 at acpi0: 14318179 Hz
> acpiprt0 at acpi0: bus 0 (PCI0)
> acpicpu0 at acpi0: C1(@1 halt!)
> acpicpu1 at acpi0: C1(@1 halt!)
> acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
> acpicmos0 at acpi0
> "PNP0A05" at acpi0 not configured
> acpiac0 at acpi0: AC unit online
> cpu0: using IvyBridge MDS workaround
> pvbus0 at mainbus0: VMware
> vmt0 at pvbus0
> pci0 at mainbus0 bus 0
> pchb0 at pci0 dev 0 function 0 "Intel 82443BX AGP" rev 0x01
> ppb0 at pci0 dev 1 function 0 "Intel 82443BX AGP" rev 0x01
> pci1 at ppb0 bus 1
> pcib0 at pci0 dev 7 function 0 "Intel 82371AB PIIX4 ISA" rev 0x08
> pciide0 at pci0 dev 7 function 1 "Intel 82371AB IDE" rev 0x01: DMA, channel
> 0 configured to compatibility, channel 1 configured to compatibility
> pciide0: channel 0 disabled (no drives)
> atapiscsi0 at pciide0 channel 1 drive 0
> scsibus1 at atapiscsi0: 2 targets
> cd0 at scsibus1 targ 0 lun 0: <NECVMWar, VMware IDE CDR10, 1.00> removable
> cd0(pciide0:1:0): using PIO mode 4, Ultra-DMA mode 2
> piixpm0 at pci0 dev 7 function 3 "Intel 82371AB Power" rev 0x08: SMBus
> disabled
> "VMware VMCI" rev 0x10 at pci0 dev 7 function 7 not configured
> vga1 at pci0 dev 15 function 0 "VMware SVGA II" rev 0x00
> wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
> wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
> mpi0 at pci0 dev 16 function 0 "Symbios Logic 53c1030" rev 0x01: apic 2 int
> 17
> mpi0: 0, firmware 1.3.41.32
> scsibus2 at mpi0: 16 targets, initiator 7
> sd0 at scsibus2 targ 0 lun 0: <VMware, Virtual disk, 2.0>
> sd0: 8192MB, 512 bytes/sector, 16777216 sectors, thin
> mpi0: target 0 Sync at 160MHz width 16bit offset 127 QAS 1 DT 1 IU 1
> ppb1 at pci0 dev 17 function 0 "VMware PCI" rev 0x02
> pci2 at ppb1 bus 2
> ppb2 at pci0 dev 21 function 0 "VMware PCIE" rev 0x01
> pci3 at ppb2 bus 3
> vmx0 at pci3 dev 0 function 0 "VMware VMXNET3" rev 0x01: apic 2 int 18,
> address 00:50:56:8c:05:54
> ppb3 at pci0 dev 21 function 1 "VMware PCIE" rev 0x01
> pci4 at ppb3 bus 4
> ppb4 at pci0 dev 21 function 2 "VMware PCIE" rev 0x01
> pci5 at ppb4 bus 5
> ppb5 at pci0 dev 21 function 3 "VMware PCIE" rev 0x01
> pci6 at ppb5 bus 6
> ppb6 at pci0 dev 21 function 4 "VMware PCIE" rev 0x01
> pci7 at ppb6 bus 7
> ppb7 at pci0 dev 21 function 5 "VMware PCIE" rev 0x01
> pci8 at ppb7 bus 8
> ppb8 at pci0 dev 21 function 6 "VMware PCIE" rev 0x01
> pci9 at ppb8 bus 9
> ppb9 at pci0 dev 21 function 7 "VMware PCIE" rev 0x01
> pci10 at ppb9 bus 10
> ppb10 at pci0 dev 22 function 0 "VMware PCIE" rev 0x01
> pci11 at ppb10 bus 11
> vmx1 at pci11 dev 0 function 0 "VMware VMXNET3" rev 0x01: apic 2 int 19,
> address 00:50:56:8c:38:09
> ppb11 at pci0 dev 22 function 1 "VMware PCIE" rev 0x01
> pci12 at ppb11 bus 12
> ppb12 at pci0 dev 22 function 2 "VMware PCIE" rev 0x01
> pci13 at ppb12 bus 13
> ppb13 at pci0 dev 22 function 3 "VMware PCIE" rev 0x01
> pci14 at ppb13 bus 14
> ppb14 at pci0 dev 22 function 4 "VMware PCIE" rev 0x01
> pci15 at ppb14 bus 15
> ppb15 at pci0 dev 22 function 5 "VMware PCIE" rev 0x01
> pci16 at ppb15 bus 16
> ppb16 at pci0 dev 22 function 6 "VMware PCIE" rev 0x01
> pci17 at ppb16 bus 17
> ppb17 at pci0 dev 22 function 7 "VMware PCIE" rev 0x01
> pci18 at ppb17 bus 18
> ppb18 at pci0 dev 23 function 0 "VMware PCIE" rev 0x01
> pci19 at ppb18 bus 19
> vmx2 at pci19 dev 0 function 0 "VMware VMXNET3" rev 0x01: apic 2 int 16,
> address 00:50:56:8c:e8:fe
> ppb19 at pci0 dev 23 function 1 "VMware PCIE" rev 0x01
> pci20 at ppb19 bus 20
> ppb20 at pci0 dev 23 function 2 "VMware PCIE" rev 0x01
> pci21 at ppb20 bus 21
> ppb21 at pci0 dev 23 function 3 "VMware PCIE" rev 0x01
> pci22 at ppb21 bus 22
> ppb22 at pci0 dev 23 function 4 "VMware PCIE" rev 0x01
> pci23 at ppb22 bus 23
> ppb23 at pci0 dev 23 function 5 "VMware PCIE" rev 0x01
> pci24 at ppb23 bus 24
> ppb24 at pci0 dev 23 function 6 "VMware PCIE" rev 0x01
> pci25 at ppb24 bus 25
> ppb25 at pci0 dev 23 function 7 "VMware PCIE" rev 0x01
> pci26 at ppb25 bus 26
> ppb26 at pci0 dev 24 function 0 "VMware PCIE" rev 0x01
> pci27 at ppb26 bus 27
> ppb27 at pci0 dev 24 function 1 "VMware PCIE" rev 0x01
> pci28 at ppb27 bus 28
> ppb28 at pci0 dev 24 function 2 "VMware PCIE" rev 0x01
> pci29 at ppb28 bus 29
> ppb29 at pci0 dev 24 function 3 "VMware PCIE" rev 0x01
> pci30 at ppb29 bus 30
> ppb30 at pci0 dev 24 function 4 "VMware PCIE" rev 0x01
> pci31 at ppb30 bus 31
> ppb31 at pci0 dev 24 function 5 "VMware PCIE" rev 0x01
> pci32 at ppb31 bus 32
> ppb32 at pci0 dev 24 function 6 "VMware PCIE" rev 0x01
> pci33 at ppb32 bus 33
> ppb33 at pci0 dev 24 function 7 "VMware PCIE" rev 0x01
> pci34 at ppb33 bus 34
> isa0 at pcib0
> isadma0 at isa0
> pckbc0 at isa0 port 0x60/5 irq 1 irq 12
> pckbd0 at pckbc0 (kbd slot)
> wskbd0 at pckbd0: console keyboard, using wsdisplay0
> pms0 at pckbc0 (aux slot)
> wsmouse0 at pms0 mux 0
> pcppi0 at isa0 port 0x61
> spkr0 at pcppi0
> vscsi0 at root
> scsibus3 at vscsi0: 256 targets
> softraid0 at root
> scsibus4 at softraid0: 256 targets
> root on sd0a (3ed1cbd8120363fd.a) swap on sd0b dump on sd0b

-- 
:wq Claudio

Reply via email to