Page MenuHomeVyOS Platform

SteveP (Steve Palmer)
User

Projects

User does not belong to any projects.

User Details

User Since
Oct 17 2018, 4:25 PM (287 w, 8 h)

Recent Activity

Jan 9 2024

SteveP added a comment to T5876: Dhcp bug in latest 1.5 rolling releases.

Hi, If it helps

Jan 9 2024, 9:15 AM · VyOS 1.5 Circinus

Sep 21 2020

SteveP created T2911: new pppoe warnings recently.
Sep 21 2020, 12:02 PM

Mar 9 2020

SteveP created T2112: Ping arguments not working outside of configure mode.
Mar 9 2020, 9:18 AM

Mar 8 2020

SteveP created T2109: Ping by name broken in VyOS 1.3-rolling-202003080217.
Mar 8 2020, 7:15 AM · VyOS 1.3 Equuleus (1.3.0)

Feb 28 2020

SteveP created T2080: traffic-policy shaper error when setting bandwidth.
Feb 28 2020, 8:17 AM · VyOS 1.3 Equuleus (1.3.0)

Feb 27 2020

SteveP added a comment to T2050: Problem migrating from 1.3-rolling-202002050217 to current.

Ah, that is just legacy. Ironically, when I updated the code manually to mitigate this problem, I deleted the root user. Lol. Still, there may still be users out there from the Vyatta days that still have it there. Off topic here but I am also a PPPoE user and am now running the latest version with all the recent PPPoE re-write and all is working fine.

Feb 27 2020, 5:04 PM

Feb 25 2020

SteveP added a comment to T2050: Problem migrating from 1.3-rolling-202002050217 to current.

There you go

Feb 25 2020, 6:16 PM

Feb 23 2020

SteveP added a comment to T2050: Problem migrating from 1.3-rolling-202002050217 to current.

This is the bottom of the config that fails the upgrade

Feb 23 2020, 8:17 PM
SteveP added a comment to T2050: Problem migrating from 1.3-rolling-202002050217 to current.

Hi, That wasn't the problem. I did remove some of the config. I must have left a bit.

Feb 23 2020, 8:12 PM

Feb 18 2020

SteveP added a comment to T2050: Problem migrating from 1.3-rolling-202002050217 to current.
firewall {
    all-ping enable
    broadcast-ping disable
    config-trap disable
    group {
        network-group Private_IPs {
            network 10.0.0.0/8
            network 127.0.0.0/8
            network 172.16.0.0/12
            network 192.168.0.0/16
            network 168.254.0.0/16
            network 169.254.0.0/16
            network 192.0.2.0/24
            network 224.0.0.0/4
            network 240.0.0.0/4
        }
        port-group NetBIOS_TCP {
            port 135-139
            port 445
        }
        port-group NetBIOS_UDP {
            port 137-138
        }
    }
    ipv6-receive-redirects disable
    ipv6-src-route disable
    ip-src-route disable
    log-martians enable
    name accept_all {
        default-action accept
    }
    name private_to_public {
        default-action accept
        rule 9 {
            action accept
            description "Allow admin of Vigor 130"
            destination {
                address 192.168.5.2
                port 443
            }
            protocol tcp
            source {
                address 192.168.3.100
            }
        }
        rule 10 {
            action drop
            description "Stop Local Addresses traversing the WEB"
            destination {
                group {
                    network-group Private_IPs
                }
            }
        }
        rule 20 {
            action drop
            description "Block NetBIOS from LAN to WEB"
            destination {
                group {
                    port-group NetBIOS_TCP
                }
            }
            protocol tcp
        }
        rule 21 {
            action drop
            description "Block NetBIOS from LAN to WEB"
            destination {
                group {
                    port-group NetBIOS_UDP
                }
            }
            protocol udp
        }
    }
    receive-redirects disable
    send-redirects enable
    source-validation disable
    state-policy {
        established {
            action accept
        }
        related {
            action accept
        }
    }
    syn-cookies enable
    twa-hazards-protection disable
}
interfaces {
    ethernet eth0 {
        address 192.168.3.1/24
        duplex auto
        hw-id 4c:02:89:12:16:ce
        smp-affinity auto
        speed auto
    }
    ethernet eth1 {
        address 192.168.1.1/24
        duplex auto
        hw-id 4c:02:89:12:16:cf
        smp-affinity auto
        speed auto
    }
    ethernet eth2 {
        address 192.168.4.1/24
        duplex auto
        hw-id 4c:02:89:12:16:d0
        smp-affinity auto
        speed auto
    }
    ethernet eth3 {
        address 192.168.5.1/24
        duplex auto
        hw-id 4c:02:89:12:16:d1
        mtu 1508
        pppoe 0 {
            default-route auto
            mtu 1500
            name-server none
            password ********
            user-id [email protected]
        }
        smp-affinity auto
        speed auto
    }
    loopback lo {
    }
}
nat {
    source {
        rule 10 {
            outbound-interface pppoe0
            translation {
                address masquerade
            }
        }
    }
}
service {
    dhcp-server {
        shared-network-name ETH0_Pool {
            subnet 192.168.3.0/24 {
                default-router 192.168.3.1
                dns-server 192.168.3.1
                lease 86400
                range 0 {
                    start 192.168.3.100
                    stop 192.168.3.199
                }
                static-mapping NB0001 {
                    ip-address 192.168.3.100
                    mac-address EC:F4:BB:******
                }
            }
        }
        shared-network-name ETH1_Pool {
            subnet 192.168.1.0/24 {
                default-router 192.168.1.1
                dns-server 192.168.1.1
                lease 86400
                range 0 {
                    start 192.168.1.100
                    stop 192.168.1.199
                }
                static-mapping SamsungTV {
                    ip-address 192.168.1.103
                    mac-address cc:b1:1a:******
                }
            }
        }
        shared-network-name ETH2_Pool {
            subnet 192.168.4.0/24 {
                default-router 192.168.4.1
                dns-server 192.168.4.1
                lease 86400
                range 0 {
                    start 192.168.4.100
                    stop 192.168.4.199
                }
            }
        }
    }
    dns {
        forwarding {
            allow-from 0.0.0.0/0
            allow-from ::/0
            cache-size 150
            listen-address 192.168.1.1
            listen-address 192.168.3.1
            listen-address 192.168.4.1
            name-server 194.72.6.51
            name-server 194.74.65.69
        }
    }
    ssh {
        listen-address 192.168.3.1
        port 22
    }
}
system {
    config-management {
        commit-revisions 20
    }
    conntrack {
        expect-table-size 2048
        hash-size 32768
        modules {
            sip {
                disable
            }
        }
        table-size 262144
    }
    console {
        device ttyS0 {
            speed 9600
        }
    }
    host-name home-r1
    login {
        user stevep {
            authentication {
                encrypted-password ********************************************
                plaintext-password ""
            }
            full-name "Steve Palmer"
        }
        user vyos {
            authentication {
                encrypted-password **********************************************
                plaintext-password ""
            }
        }
    }
    name-server 8.8.8.8
    ntp {
        server 0.pool.ntp.org {
        }
        server 1.pool.ntp.org {
        }
        server 2.pool.ntp.org {
        }
    }
    syslog {
        global {
            facility all {
                level notice
            }
            facility protocols {
                level debug
            }
        }
    }
    time-zone Europe/London
}
zone-policy {
    zone local {
        default-action drop
        from private {
            firewall {
                name accept_all
            }
        }
        local-zone
    }
    zone public {
        default-action drop
        description "Public Zone"
        from private {
            firewall {
                name private_to_public
            }
        }
        interface pppoe0
        interface eth3
    }
}
Feb 18 2020, 4:22 PM
SteveP created T2050: Problem migrating from 1.3-rolling-202002050217 to current.
Feb 18 2020, 12:15 PM

Dec 3 2019

SteveP added a comment to T1782: pppoe0: showing as "Coming up".

c-po closed T1840: PPPoE doesn't not rename pppX to pppoeX as Resolved.
Mon, Dec 2, 19:52 · VyOS 1.3 Equuleus

Dec 3 2019, 5:29 AM · VyOS 1.3 Equuleus (1.3.0)

Nov 4 2019

SteveP added a comment to T1782: pppoe0: showing as "Coming up".

ppp0 not renaming to pppoe0 on 1.8.0 https://community.ui.com/questions/ppp0-not-renaming-to-pppoe0-on-1-8-0/b4aeea88-5d52-4222-b065-e6903afdda9a

Nov 4 2019, 6:15 PM · VyOS 1.3 Equuleus (1.3.0)
SteveP added a comment to T1782: pppoe0: showing as "Coming up".

No good I'm afraid. NAT is not working set to pppoe0 and is still offering ppp0.

Nov 4 2019, 4:07 PM · VyOS 1.3 Equuleus (1.3.0)
SteveP added a comment to T1782: pppoe0: showing as "Coming up".

Interface doesn't work if changed to ppp0. The interface seems to expect pppoe0 and everything else seems to expect ppp0. pppoe0 is still showing as 'coming up', even though everything seems to be working

Nov 4 2019, 12:58 PM · VyOS 1.3 Equuleus (1.3.0)
SteveP added a comment to T1782: pppoe0: showing as "Coming up".

More info,

Nov 4 2019, 12:15 PM · VyOS 1.3 Equuleus (1.3.0)
SteveP added a comment to T1782: pppoe0: showing as "Coming up".

After a bit of fiddling, I have found the problem. The config.boot conversion from 1.2 to 1.3 did not chnage the NAT interface entries from pppoe0 to ppp0. Once changed, all is working. As can be seen below, NAT & monitor traffic interface expect ppp0, whilst the actual interface and firewall zones expect pppoe0. I think this is a little confusing and should probably be made consistent one way or the other.. pppoe0: is also still showing as "Coming up" even though everything appears to work so there is still a reporting problem there at the very least.

Nov 4 2019, 10:37 AM · VyOS 1.3 Equuleus (1.3.0)

Nov 1 2019

SteveP added a comment to T1782: pppoe0: showing as "Coming up".

Hi, the routes are there.

Nov 1 2019, 7:14 AM · VyOS 1.3 Equuleus (1.3.0)

Oct 31 2019

SteveP created T1782: pppoe0: showing as "Coming up".
Oct 31 2019, 5:48 PM · VyOS 1.3 Equuleus (1.3.0)

Jun 27 2019

SteveP added a comment to T1066: Missing NICs.

Just booted vyos-1.2.0-rolling+201906230337-amd64.iso (4.19.52) and it does not work so that narrows it down a bit more. Either 4.19.53 or 4.19.54. Or were there any other changes to VyOS between June 23 and June 27 (other than the kernel) that could have fixed it?

Jun 27 2019, 9:59 AM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

Hi c-po,

Jun 27 2019, 9:20 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jun 3 2019

SteveP added a comment to T1066: Missing NICs.

It didn't fix my problem. I don't think it is caused by the igb driver.

Jun 3 2019, 5:08 AM · VyOS 1.2 Crux (VyOS 1.2.1)

May 30 2019

SteveP added a comment to T1066: Missing NICs.

Hi c-po, There is an igb driver update from Intel. https://sourceforge.net/projects/e1000/files/igb%20stable/5.3.5.22s/

May 30 2019, 12:22 PM · VyOS 1.2 Crux (VyOS 1.2.1)

May 21 2019

SteveP added a comment to T1066: Missing NICs.

I have just tested Kernel 5.1.2 which has a newer igb driver (version: 5.6.0-k) but still no go. Not really sure where to go next.

May 21 2019, 2:09 PM · VyOS 1.2 Crux (VyOS 1.2.1)

May 1 2019

SteveP added a comment to T1066: Missing NICs.

I just had another go with vyos-1.2.0-rolling+201904260337-amd64 and no different. My board has igb not ixgbe (I think that is a different chipset)

May 1 2019, 1:48 PM · VyOS 1.2 Crux (VyOS 1.2.1)

Mar 12 2019

SteveP added a comment to T1066: Missing NICs.

After more testing, this does look more like an upstream regression wrt this particular hardware:

Mar 12 2019, 5:57 PM · VyOS 1.2 Crux (VyOS 1.2.1)

Feb 21 2019

SteveP added a comment to T1066: Missing NICs.

It didn’t cure it I’m afraid. It has, however, changed the error message to:

Feb 21 2019, 10:54 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Feb 11 2019

SteveP added a comment to T533: Support for PPPoE MTU greater than 1492.

1.2-RC5 already supports this (and I assume newer but I can't test it with my motherboard for other reasons-T1066). I am with BT (UK) and it works great (see my config below). RC5 does however still contain T1065 which is related to this but has been fixed in a later release candidate (RC11 I think).

 ethernet eth3 {
     address 192.168.5.1/24
     duplex auto
     mtu 1508
     pppoe 0 {
         default-route auto
         mtu 1500
         name-server none
         password xxxxxxxxx
         user-id [email protected]
     }
     smp-affinity auto
[edit]
# set interfaces ethernet eth3 pppoe 0 mtu
Possible completions:
   <68-1500>    Maximum Transmission Unit (MTU) in bytes
   1500
Feb 11 2019, 10:22 AM · VyOS 1.3 Equuleus (1.3.0-epa1)

Feb 2 2019

SteveP added a comment to T1066: Missing NICs.

I have done a bit more work on this problem and, correct me if I'm wrong, I no longer think it is driver related.

Feb 2 2019, 11:30 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 11 2019

SteveP added a comment to T1066: Missing NICs.
Module                  Size  Used by
intel_rapl             24576  0
intel_soc_dts_thermal    16384  0
intel_soc_dts_iosf     16384  1 intel_soc_dts_thermal
snd_hda_codec_hdmi     57344  1
intel_powerclamp       16384  0
coretemp               16384  0
snd_hda_intel          45056  0
kvm_intel             237568  0
snd_hda_codec         151552  2 snd_hda_codec_hdmi,snd_hda_intel
iTCO_wdt               16384  0
kvm                   733184  1 kvm_intel
i915                 1732608  2
uas                    28672  0
iTCO_vendor_support    16384  1 iTCO_wdt
snd_hda_core           94208  3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
snd_hwdep              20480  1 snd_hda_codec
usb_storage            69632  1 uas
irqbypass              16384  1 kvm
snd_pcm               118784  4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
drm_kms_helper        196608  1 i915
snd_timer              36864  1 snd_pcm
evdev                  28672  3
crct10dif_pclmul       16384  0
crc32_pclmul           16384  0
snd                    98304  6 snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_timer,snd_pcm
drm                   475136  3 drm_kms_helper,i915
ghash_clmulni_intel    16384  0
soundcore              16384  1 snd
sg                     36864  0
intel_cstate           16384  0
lpc_ich                28672  0
serio_raw              16384  0
pcspkr                 16384  0
video                  45056  1 i915
pwm_lpss_platform      16384  0
pwm_lpss               16384  1 pwm_lpss_platform
pcc_cpufreq            16384  0
button                 16384  1 i915
ip_tables              28672  0
x_tables               45056  1 ip_tables
autofs4                49152  2
ext4                  741376  1
crc16                  16384  1 ext4
mbcache                16384  1 ext4
jbd2                  118784  1 ext4
crc32c_generic         16384  0
fscrypto               32768  1 ext4
ecb                    16384  0
crypto_simd            16384  0
cryptd                 28672  2 crypto_simd,ghash_clmulni_intel
glue_helper            16384  0
aes_x86_64             20480  0
hid_generic            16384  0
usbhid                 57344  0
hid                   135168  2 usbhid,hid_generic
sd_mod                 53248  3
ata_generic            16384  0
ata_piix               36864  2
crc32c_intel           24576  2
libata                278528  2 ata_piix,ata_generic
i2c_i801               28672  0
scsi_mod              253952  5 sd_mod,usb_storage,uas,libata,sg
psmouse               172032  0
xhci_pci               16384  0
igb                   249856  0
xhci_hcd              270336  1 xhci_pci
i2c_algo_bit           16384  2 igb,i915
dca                    16384  1 igb
usbcore               290816  5 xhci_hcd,usbhid,usb_storage,xhci_pci,uas
usb_common             16384  1 usbcore
thermal                20480  0
fan                    16384  0
Jan 11 2019, 5:44 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

I've put it back with VyOS RC5 on it now. Not a problem, I can install Debian again it doesn't take long. Do you want lsmod output with 4.18.6-1 (all 4 NICs working), 4.18.20-2 (only one NIC working) or would you like both?

Jan 11 2019, 1:53 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

Just installed stretch on it (4.9.0-8-amd64) which as we know works.

Jan 11 2019, 10:19 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 10 2019

SteveP added a comment to T1066: Missing NICs.

Still not working I'm afraid.

Jan 10 2019, 2:23 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

Any particular release to test or just the latest?

Jan 10 2019, 12:48 PM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 7 2019

SteveP added a comment to T1066: Missing NICs.

I'm away from home now so have no access to it until Thursday. I'll pick it
up again than.

Jan 7 2019, 9:21 AM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

[ 0.000000] Linux version 4.14.75-amd64-vyos (jenkins@jessiedevel) (gcc version 4.9.2 (Debian 4.9.2-10+deb8u1)) #31 SMP Sun Oct 28 21:46:14 CET 2018
[ 0.000000] Command line: BOOT_IMAGE=/boot/1.2.0-rc5/vmlinuz boot=live quiet vyos-union=/boot/1.2.0-rc5 console=ttyS0,9600 console=tty0
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000b8918fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000b8919000-0x00000000b8f18fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000b8f19000-0x00000000b9118fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000b9119000-0x00000000b9158fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000b9159000-0x00000000b9ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ba000000-0x00000000ba7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bae00000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed03000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed0c000-0x00000000fed0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1cfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000feffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffd00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Lex BayTrail 3I380D D1 /3I380D D1 , BIOS 3I380D D3 11/09/2015
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0FFD00000 mask FFFC00000 write-protect
[ 0.000000] 1 base 000000000 mask F80000000 write-back
[ 0.000000] 2 base 080000000 mask FC0000000 write-back
[ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0BB000000 mask FFF000000 uncachable
[ 0.000000] 5 base 0BAE00000 mask FFFE00000 uncachable
[ 0.000000] 6 base 100000000 mask FC0000000 write-back
[ 0.000000] 7 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000000] e820: last_pfn = 0xba000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffffffffff2001c0]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[ 0.000000] BRK [0x01fd0000, 0x01fd0fff] PGTABLE
[ 0.000000] BRK [0x01fd1000, 0x01fd1fff] PGTABLE
[ 0.000000] BRK [0x01fd2000, 0x01fd2fff] PGTABLE
[ 0.000000] BRK [0x01fd3000, 0x01fd3fff] PGTABLE
[ 0.000000] BRK [0x01fd4000, 0x01fd4fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x33c0e000-0x35dfefff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 INSYDE)
[ 0.000000] ACPI: XSDT 0x00000000B9158120 0000A4 (v01 INSYDE INSYDE 00000003 01000013)
[ 0.000000] ACPI: FACP 0x00000000B9155000 00010C (v05 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: DSDT 0x00000000B9144000 009F79 (v02 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: FACS 0x00000000B90D2000 000040
[ 0.000000] ACPI: UEFI 0x00000000B9157000 000236 (v01 INSYDE INSYDE 00000001 ACPI 00040000)
[ 0.000000] ACPI: HPET 0x00000000B9154000 000038 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: LPIT 0x00000000B9153000 000104 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: APIC 0x00000000B9152000 000084 (v03 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: MCFG 0x00000000B9151000 00003C (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: SLIC 0x00000000B9150000 000176 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: WDAT 0x00000000B914F000 0001C4 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: WDRT 0x00000000B914E000 000047 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000B9143000 000763 (v01 INSYDE CpuPm 00003000 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000B9142000 000290 (v01 INSYDE Cpu0Tst 00003000 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000B9141000 00017A (v01 INSYDE ApTst 00003000 ACPI 00040000)
[ 0.000000] ACPI: UEFI 0x00000000B9140000 000042 (v01 INSYDE INSYDE 00000000 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000B913F000 00065B (v01 INSYDE SIOACPI 00001000 ACPI 00040000)
[ 0.000000] ACPI: SSDT 0x00000000B913E000 00022B (v01 INSYDE IsctTabl 00001000 ACPI 00040000)
[ 0.000000] ACPI: FPDT 0x00000000B913D000 000044 (v01 INSYDE INSYDE 00000002 ACPI 00040000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x13fff9000-0x13fffcfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000013fffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009dfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000b8918fff]
[ 0.000000] node 0: [mem 0x00000000b9159000-0x00000000b9ffffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000013fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[ 0.000000] On node 0 totalpages: 1021789
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3997 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 11807 pages used for memmap
[ 0.000000] DMA32 zone: 755648 pages, LIFO batch:31
[ 0.000000] Normal zone: 4096 pages used for memmap
[ 0.000000] Normal zone: 262144 pages, LIFO batch:31
[ 0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[ 0.000000] Reserving Intel graphics memory at 0x00000000bb000000-0x00000000beffffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xb8919000-0xb8f18fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xb8f19000-0xb9118fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xb9119000-0xb9158fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xba000000-0xba7fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbadfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbae00000-0xbfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xe3ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe4000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xfed02fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed03000-0xfed03fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed07fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed0c000-0xfed0ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1cfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1d000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeefffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffcfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffd00000-0xffffffff]
[ 0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] percpu: Embedded 43 pages/cpu @ffff88013fc00000 s138008 r8192 d29928 u524288
[ 0.000000] pcpu-alloc: s138008 r8192 d29928 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1005801
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/1.2.0-rc5/vmlinuz boot=live quiet vyos-union=/boot/1.2.0-rc5 console=ttyS0,9600 console=tty0
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Memory: 3903804K/4087156K available (8204K kernel code, 707K rwdata, 1920K rodata, 1020K init, 428K bss, 183352K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.000000] NR_IRQS: 4352, nr_irqs: 1024, preallocated irqs: 16
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.010000] tsc: Detected 1999.200 MHz processor
[ 0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3998.40 BogoMIPS (lpj=19992000)
[ 0.010000] pid_max: default: 32768 minimum: 301
[ 0.010000] ACPI: Core revision 20170728
[ 0.033801] ACPI: 6 ACPI AML tables successfully acquired and loaded
[ 0.033851] Security Framework initialized
[ 0.035475] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.036326] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.036384] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.036415] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.036820] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.036823] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.036836] mce: CPU supports 6 MCE banks
[ 0.036847] process: using mwait in idle threads
[ 0.036853] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[ 0.036855] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[ 0.036860] Spectre V2 : Mitigation: Full generic retpoline
[ 0.036862] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.037134] Freeing SMP alternatives memory: 16K
[ 0.040142] smpboot: Max logical packages: 1
[ 0.041099] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.149123] TSC deadline timer enabled
[ 0.149126] smpboot: CPU0: Intel(R) Celeron(R) CPU J1900 @ 1.99GHz (family: 0x6, model: 0x37, stepping: 0x8)
[ 0.149299] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver.
[ 0.149319] ... version: 3
[ 0.149321] ... bit width: 40
[ 0.149322] ... generic registers: 2
[ 0.149324] ... value mask: 000000ffffffffff
[ 0.149325] ... max period: 0000007fffffffff
[ 0.149327] ... fixed-purpose events: 3
[ 0.149328] ... event mask: 0000000700000003
[ 0.149409] Hierarchical SRCU implementation.
[ 0.150000] smp: Bringing up secondary CPUs ...
[ 0.150000] x86: Booting SMP configuration:
[ 0.150000] .... node #0, CPUs: #1 #2 #3
[ 0.150000] smp: Brought up 1 node, 4 CPUs
[ 0.150000] smpboot: Total of 4 processors activated (15993.60 BogoMIPS)
[ 0.150000] devtmpfs: initialized
[ 0.150000] x86/mm: Memory block size: 128MB
[ 0.150000] PM: Registering ACPI NVS region [mem 0xb8f19000-0xb9118fff] (2097152 bytes)
[ 0.150000] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.150000] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.150000] NET: Registered protocol family 16
[ 0.150000] cpuidle: using governor ladder
[ 0.150000] cpuidle: using governor menu
[ 0.150000] random: get_random_bytes called from kcmp_cookies_init+0x11/0x33 with crng_init=0
[ 0.150000] ACPI: bus type PCI registered
[ 0.150000] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.150000] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[ 0.150000] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
[ 0.150000] PCI: Using configuration type 1 for base access
[ 0.153295] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.153396] ACPI: Added _OSI(Module Device)
[ 0.153396] ACPI: Added _OSI(Processor Device)
[ 0.153396] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.153396] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.163448] ACPI: Dynamic OEM Table Load:
[ 0.163448] ACPI: SSDT 0xFFFF88013A619000 0003BC (v01 PmRef Cpu0Ist 00003000 INTL 20130117)
[ 0.163448] ACPI: Dynamic OEM Table Load:
[ 0.163448] ACPI: SSDT 0xFFFF88013ABA0800 000433 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
[ 0.170856] ACPI: Dynamic OEM Table Load:
[ 0.170868] ACPI: SSDT 0xFFFF88013A608400 00015F (v01 PmRef ApIst 00003000 INTL 20130117)
[ 0.171230] ACPI: Dynamic OEM Table Load:
[ 0.171230] ACPI: SSDT 0xFFFF88013ABD6A80 00008D (v01 PmRef ApCst 00003000 INTL 20130117)
[ 0.172660] ACPI: Interpreter enabled
[ 0.172694] ACPI: (supports S0 S5)
[ 0.172697] ACPI: Using IOAPIC for interrupt routing
[ 0.172786] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.173715] ACPI: GPE 0x02 active on init
[ 0.173749] ACPI: Enabled 6 GPEs in block 00 to 3F
[ 0.182325] ACPI: Power Resource [USBC] (on)
[ 0.191042] ACPI: Power Resource [PLPE] (on)
[ 0.191873] ACPI: Power Resource [PLPE] (on)
[ 0.210036] ACPI: Power Resource [CLK0] (on)
[ 0.210036] ACPI: Power Resource [CLK1] (on)
[ 0.213069] ACPI: Power Resource [FN00] (off)
[ 0.214759] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.214771] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.690163] ACPI: Dynamic OEM Table Load:
[ 0.690178] ACPI: SSDT 0xFFFF88013AB75380 00007B (v01 Insyde ACPI5P0 00001000 INTL 20130117)
[ 0.690465] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.690465] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 0.690472] PCI host bridge to bus 0000:00
[ 0.690472] pci_bus 0000:00: root bus resource [io 0x0070-0x0077]
[ 0.690472] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window]
[ 0.690472] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window]
[ 0.690472] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.690472] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.690472] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.690472] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[ 0.690472] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd0affffe window]
[ 0.690472] pci_bus 0000:00: root bus resource [mem 0x140000000-0x53fffffff window]
[ 0.690472] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.690472] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[ 0.690643] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[ 0.690659] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[ 0.690670] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[ 0.690681] pci 0000:00:02.0: reg 0x20: [io 0x5050-0x5057]
[ 0.690898] pci 0000:00:13.0: [8086:0f21] type 00 class 0x01018f
[ 0.690919] pci 0000:00:13.0: reg 0x10: [io 0x5048-0x504f]
[ 0.690928] pci 0000:00:13.0: reg 0x14: [io 0x505c-0x505f]
[ 0.690938] pci 0000:00:13.0: reg 0x18: [io 0x5040-0x5047]
[ 0.690948] pci 0000:00:13.0: reg 0x1c: [io 0x5058-0x505b]
[ 0.690957] pci 0000:00:13.0: reg 0x20: [io 0x5030-0x503f]
[ 0.690967] pci 0000:00:13.0: reg 0x24: [io 0x5020-0x502f]
[ 0.691172] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[ 0.691194] pci 0000:00:14.0: reg 0x10: [mem 0xd0a00000-0xd0a0ffff 64bit]
[ 0.691257] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.691443] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[ 0.691473] pci 0000:00:1a.0: reg 0x10: [mem 0xd0900000-0xd09fffff]
[ 0.691487] pci 0000:00:1a.0: reg 0x14: [mem 0xd0800000-0xd08fffff]
[ 0.691593] pci 0000:00:1a.0: PME# supported from D0 D3hot
[ 0.691775] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300
[ 0.691801] pci 0000:00:1b.0: reg 0x10: [mem 0xd0a10000-0xd0a13fff 64bit]
[ 0.691876] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.692052] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400
[ 0.692123] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.692312] pci 0000:00:1c.1: [8086:0f4a] type 01 class 0x060400
[ 0.692382] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.692566] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400
[ 0.692635] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.692819] pci 0000:00:1c.3: [8086:0f4e] type 01 class 0x060400
[ 0.692888] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.693075] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[ 0.693327] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500
[ 0.693371] pci 0000:00:1f.3: reg 0x10: [mem 0xd0a15000-0xd0a1501f]
[ 0.693442] pci 0000:00:1f.3: reg 0x20: [io 0x5000-0x501f]
[ 0.693799] pci 0000:01:00.0: [8086:1539] type 00 class 0x020000
[ 0.693837] pci 0000:01:00.0: reg 0x10: [mem 0xd0700000-0xd071ffff]
[ 0.693865] pci 0000:01:00.0: reg 0x18: [io 0x4000-0x401f]
[ 0.693881] pci 0000:01:00.0: reg 0x1c: [mem 0xd0720000-0xd0723fff]
[ 0.694019] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.720030] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.720035] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.720039] pci 0000:00:1c.0: bridge window [mem 0xd0700000-0xd07fffff]
[ 0.720146] pci 0000:02:00.0: [8086:1539] type 00 class 0x020000
[ 0.720184] pci 0000:02:00.0: reg 0x10: [mem 0xd0600000-0xd061ffff]
[ 0.720212] pci 0000:02:00.0: reg 0x18: [io 0x3000-0x301f]
[ 0.720227] pci 0000:02:00.0: reg 0x1c: [mem 0xd0620000-0xd0623fff]
[ 0.720365] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.750028] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.750033] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
[ 0.750038] pci 0000:00:1c.1: bridge window [mem 0xd0600000-0xd06fffff]
[ 0.750148] pci 0000:03:00.0: [8086:1539] type 00 class 0x020000
[ 0.750186] pci 0000:03:00.0: reg 0x10: [mem 0xd0500000-0xd051ffff]
[ 0.750214] pci 0000:03:00.0: reg 0x18: [io 0x2000-0x201f]
[ 0.750230] pci 0000:03:00.0: reg 0x1c: [mem 0xd0520000-0xd0523fff]
[ 0.750368] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.780031] pci 0000:00:1c.2: PCI bridge to [bus 03]
[ 0.780036] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 0.780040] pci 0000:00:1c.2: bridge window [mem 0xd0500000-0xd05fffff]
[ 0.780147] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[ 0.780185] pci 0000:04:00.0: reg 0x10: [mem 0xd0400000-0xd041ffff]
[ 0.780213] pci 0000:04:00.0: reg 0x18: [io 0x1000-0x101f]
[ 0.780229] pci 0000:04:00.0: reg 0x1c: [mem 0xd0420000-0xd0423fff]
[ 0.780367] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 0.810031] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.810036] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff]
[ 0.810041] pci 0000:00:1c.3: bridge window [mem 0xd0400000-0xd04fffff]
[ 0.811894] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.812123] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.812349] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.812576] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.812801] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.813026] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.813258] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.813485] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.820174] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.820178] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.820189] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.820190] vgaarb: loaded
[ 0.820343] SCSI subsystem initialized
[ 0.820374] libata version 3.00 loaded.
[ 0.820374] ACPI: bus type USB registered
[ 0.820374] usbcore: registered new interface driver usbfs
[ 0.820374] usbcore: registered new interface driver hub
[ 0.820374] usbcore: registered new device driver usb
[ 0.820374] EDAC MC: Ver: 3.0.0
[ 0.820503] PCI: Using ACPI for IRQ routing
[ 0.821608] PCI: pci_cache_line_size set to 64 bytes
[ 0.821673] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[ 0.821677] e820: reserve RAM buffer [mem 0xb8919000-0xbbffffff]
[ 0.821679] e820: reserve RAM buffer [mem 0xba000000-0xbbffffff]
[ 0.821930] clocksource: Switched to clocksource refined-jiffies
[ 0.821930] pnp: PnP ACPI init
[ 0.821930] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.821930] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.821930] system 00:01: [io 0x0400-0x047f] has been reserved
[ 0.821930] system 00:01: [io 0x0500-0x05fe] has been reserved
[ 0.821930] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.821930] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.822423] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.823079] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.823999] system 00:04: [mem 0xe0000000-0xefffffff] could not be reserved
[ 0.824004] system 00:04: [mem 0xfed01000-0xfed01fff] has been reserved
[ 0.824007] system 00:04: [mem 0xfed03000-0xfed03fff] has been reserved
[ 0.824011] system 00:04: [mem 0xfed04000-0xfed04fff] has been reserved
[ 0.824014] system 00:04: [mem 0xfed0c000-0xfed0ffff] has been reserved
[ 0.824018] system 00:04: [mem 0xfed08000-0xfed08fff] has been reserved
[ 0.824022] system 00:04: [mem 0xfed1c000-0xfed1cfff] has been reserved
[ 0.824025] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.824029] system 00:04: [mem 0xfef00000-0xfeffffff] has been reserved
[ 0.824046] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.830023] pnp: PnP ACPI: found 5 devices
[ 0.841153] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.841195] clocksource: Switched to clocksource acpi_pm
[ 0.841239] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.841244] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.841250] pci 0000:00:1c.0: bridge window [mem 0xd0700000-0xd07fffff]
[ 0.841258] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.841262] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
[ 0.841267] pci 0000:00:1c.1: bridge window [mem 0xd0600000-0xd06fffff]
[ 0.841275] pci 0000:00:1c.2: PCI bridge to [bus 03]
[ 0.841278] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 0.841283] pci 0000:00:1c.2: bridge window [mem 0xd0500000-0xd05fffff]
[ 0.841291] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.841294] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff]
[ 0.841299] pci 0000:00:1c.3: bridge window [mem 0xd0400000-0xd04fffff]
[ 0.841308] pci_bus 0000:00: resource 4 [io 0x0070-0x0077]
[ 0.841311] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window]
[ 0.841315] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window]
[ 0.841318] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.841321] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 0.841324] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[ 0.841327] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[ 0.841330] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xd0affffe window]
[ 0.841333] pci_bus 0000:00: resource 12 [mem 0x140000000-0x53fffffff window]
[ 0.841336] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 0.841339] pci_bus 0000:01: resource 1 [mem 0xd0700000-0xd07fffff]
[ 0.841343] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.841345] pci_bus 0000:02: resource 1 [mem 0xd0600000-0xd06fffff]
[ 0.841348] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
[ 0.841351] pci_bus 0000:03: resource 1 [mem 0xd0500000-0xd05fffff]
[ 0.841354] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 0.841357] pci_bus 0000:04: resource 1 [mem 0xd0400000-0xd04fffff]
[ 0.841555] NET: Registered protocol family 2
[ 0.841843] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.841978] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.842133] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.842219] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.842257] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.842379] NET: Registered protocol family 1
[ 0.842409] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.842836] PCI: CLS 64 bytes, default 64
[ 0.842951] Trying to unpack rootfs image as initramfs...
[ 1.777345] Freeing initrd memory: 34756K
[ 1.777452] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.777456] software IO TLB [mem 0xb4919000-0xb8919000] (64MB) mapped at [ffff8800b4919000-ffff8800b8918fff]
[ 1.777736] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x39a275294b2, max_idle_ns: 881590412759 ns
[ 1.777772] clocksource: Switched to clocksource tsc
[ 1.777833] Scanning for low memory corruption every 60 seconds
[ 1.778364] audit: initializing netlink subsys (disabled)
[ 1.778445] audit: type=2000 audit(1546801011.777:1): state=initialized audit_enabled=0 res=1
[ 1.778762] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[ 1.782147] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.783794] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.783798] io scheduler noop registered
[ 1.783800] io scheduler deadline registered
[ 1.783875] io scheduler cfq registered (default)
[ 1.783877] io scheduler mq-deadline registered
[ 1.783879] io scheduler kyber registered
[ 1.784968] intel_idle: MWAIT substates: 0x33000020
[ 1.784971] intel_idle: v0.4.1 model 0x37
[ 1.785323] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.789567] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.810320] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.831666] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 1.832397] hpet: number irqs doesn't agree with number of timers
[ 1.839197] brd: module loaded
[ 1.839344] libphy: Fixed MDIO Bus: probed
[ 1.839358] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.839365] ehci-pci: EHCI PCI platform driver
[ 1.839404] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.839717] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.839737] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.840841] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[ 1.840847] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.841316] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.841320] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.841323] usb usb1: Product: xHCI Host Controller
[ 1.841326] usb usb1: Manufacturer: Linux 4.14.75-amd64-vyos xhci-hcd
[ 1.841328] usb usb1: SerialNumber: 0000:00:14.0
[ 1.841641] hub 1-0:1.0: USB hub found
[ 1.841664] hub 1-0:1.0: 6 ports detected
[ 1.842722] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.842730] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.842737] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 1.842845] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.842849] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.842852] usb usb2: Product: xHCI Host Controller
[ 1.842854] usb usb2: Manufacturer: Linux 4.14.75-amd64-vyos xhci-hcd
[ 1.842857] usb usb2: SerialNumber: 0000:00:14.0
[ 1.843092] hub 2-0:1.0: USB hub found
[ 1.843118] hub 2-0:1.0: 1 port detected
[ 1.843484] usbcore: registered new interface driver usbserial
[ 1.843499] usbcore: registered new interface driver usbserial_generic
[ 1.843520] usbserial: USB Serial support registered for generic
[ 1.843574] i8042: PNP: No PS/2 controller found.
[ 1.843576] i8042: Probing ports directly.
[ 1.844062] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.844074] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.844158] rtc_cmos 00:00: RTC can wake from S4
[ 1.844330] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[ 1.844366] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[ 1.844396] intel_pstate: Intel P-state driver initializing
[ 1.845093] No iBFT detected.
[ 1.845325] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 1.845330] NET: Registered protocol family 17
[ 1.845351] Key type dns_resolver registered
[ 1.845933] microcode: sig=0x30678, pf=0x4, revision=0x815
[ 1.846222] microcode: Microcode Update Driver: v2.2.
[ 1.846240] sched_clock: Marking stable (1846208970, 0)->(1847247802, -1038832)
[ 1.846702] registered taskstats version 1
[ 1.847260] rtc_cmos 00:00: setting system clock to 2019-01-06 18:56:52 UTC (1546801012)
[ 1.849375] Freeing unused kernel memory: 1020K
[ 1.890685] Write protecting the kernel read-only data: 12288k
[ 1.893834] Freeing unused kernel memory: 2020K
[ 1.896025] Freeing unused kernel memory: 128K
[ 1.924731] systemd-udevd[813]: starting version 215
[ 1.925846] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.960617] ata_piix 0000:00:13.0: version 2.13
[ 1.960721] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 1.963249] pps_core: LinuxPPS API ver. 1 registered
[ 1.963251] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[ 1.963724] PTP clock support registered
[ 1.964056] dca service started, version 1.12.1
[ 1.965854] ata_piix 0000:00:13.0: MAP [ P0 -- P1 -- ]
[ 1.966079] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.966082] ACPI: Thermal Zone [TZ01] (33 C)
[ 1.967659] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[ 1.967662] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 2.130351] ata_piix 0000:00:13.0: SCR access via SIDPR is available but doesn't work
[ 2.131195] scsi host0: ata_piix
[ 2.131775] scsi host1: ata_piix
[ 2.131858] ata1: SATA max UDMA/133 cmd 0x5048 ctl 0x505c bmdma 0x5030 irq 19
[ 2.131861] ata2: SATA max UDMA/133 cmd 0x5040 ctl 0x5058 bmdma 0x5038 irq 19
[ 2.132404] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 2.210203] usb 1-4: new high-speed USB device number 2 using xhci_hcd
[ 2.228083] pps pps0: new PPS source ptp0
[ 2.228088] igb 0000:01:00.0: added PHC on eth0
[ 2.228091] igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 2.228094] igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:02:89:12:16:ce
[ 2.228098] igb 0000:01:00.0: eth0: PBA No: FFFFFF-0FF
[ 2.228101] igb 0000:01:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 2.311967] ata2.00: ATA-8: mSATA mini 3ME3, S16425, max UDMA/133
[ 2.311970] ata2.00: 15649200 sectors, multi 1: LBA48 NCQ (depth 0/32)
[ 2.312551] ata2.00: configured for UDMA/133
[ 2.313262] scsi 1:0:0:0: Direct-Access ATA mSATA mini 3ME3 25 PQ: 0 ANSI: 5
[ 2.313731] sd 1:0:0:0: Attached scsi generic sg0 type 0
[ 2.313953] sd 1:0:0:0: [sda] 15649200 512-byte logical blocks: (8.01 GB/7.46 GiB)
[ 2.313991] sd 1:0:0:0: [sda] Write Protect is off
[ 2.313995] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.314103] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.315191] sda: sda1
[ 2.316448] sd 1:0:0:0: [sda] Attached SCSI disk
[ 2.402605] usb 1-4: New USB device found, idVendor=14cd, idProduct=8601
[ 2.402610] usb 1-4: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[ 2.402613] usb 1-4: Product: USB 2.0 Hub
[ 2.402615] usb 1-4: Manufacturer: USB Device
[ 2.404463] hub 1-4:1.0: USB hub found
[ 2.404570] hub 1-4:1.0: 4 ports detected
[ 2.485360] pps pps1: new PPS source ptp1
[ 2.485366] igb 0000:02:00.0: added PHC on eth1
[ 2.485368] igb 0000:02:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 2.485372] igb 0000:02:00.0: eth1: (PCIe:2.5Gb/s:Width x1) 4c:02:89:12:16:cf
[ 2.485375] igb 0000:02:00.0: eth1: PBA No: FFFFFF-0FF
[ 2.485378] igb 0000:02:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 2.752406] pps pps2: new PPS source ptp2
[ 2.752412] igb 0000:03:00.0: added PHC on eth2
[ 2.752414] igb 0000:03:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 2.752418] igb 0000:03:00.0: eth2: (PCIe:2.5Gb/s:Width x1) 4c:02:89:12:16:d0
[ 2.752421] igb 0000:03:00.0: eth2: PBA No: FFFFFF-0FF
[ 2.752424] igb 0000:03:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 3.020652] pps pps3: new PPS source ptp3
[ 3.020657] igb 0000:04:00.0: added PHC on eth3
[ 3.020660] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 3.020663] igb 0000:04:00.0: eth3: (PCIe:2.5Gb/s:Width x1) 4c:02:89:12:16:d1
[ 3.020667] igb 0000:04:00.0: eth3: PBA No: FFFFFF-0FF
[ 3.020670] igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 3.242144] random: fast init done
[ 3.279235] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 3.324283] loop: module loaded
[ 3.423060] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 3.427016] usbcore: registered new interface driver usb-storage
[ 8.673779] EXT4-fs (sda1): re-mounted. Opts: data=ordered
[ 9.297135] random: systemd: uninitialized urandom read (16 bytes read)
[ 9.304665] systemd[1]: systemd 215 running in system mode. (+PAM +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ -SECCOMP -APPARMOR)
[ 9.330413] systemd[1]: Detected architecture 'x86-64'.
[ 9.396642] systemd[1]: Inserted module 'autofs4'
[ 9.440233] NET: Registered protocol family 10
[ 9.469625] Segment Routing with IPv6
[ 9.470582] systemd[1]: Inserted module 'ipv6'
[ 9.471485] systemd[1]: Set hostname to <home-r1>.
[ 9.535089] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read)
[ 9.722725] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read)
[ 9.791132] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
[ 9.791814] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[ 9.791940] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 9.791961] systemd[1]: Expecting device dev-ttyS0.device...
[ 9.792276] systemd[1]: Starting Remote File Systems (Pre).
[ 10.210516] systemd-udevd[1270]: starting version 215
[ 10.474525] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[ 10.474546] ACPI: Power Button [PWRB]
[ 10.474653] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[ 10.474680] ACPI: Power Button [PWRF]
[ 10.584161] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 10.632744] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 10.702574] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 10.702634] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[ 10.703915] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 10.990254] systemd-journald[1216]: Received request to flush runtime journal from PID 1
[ 12.201947] fuse init (API version 7.26)
[ 12.868375] Process accounting resumed
[ 12.982822] random: crng init done
[ 12.982826] random: 6 urandom warning(s) missed due to ratelimiting
[ 14.269651] nf_conntrack version 0.5.0 (32768 buckets, 262144 max)
[ 14.561886] Netfilter messages via NETLINK v0.30.
[ 15.251815] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 54.918986] ip_set: protocol 6
[ 87.283931] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 88.748813] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 90.181113] IPv6: ADDRCONF(NETDEV_UP): eth3: link is not ready
[ 90.400554] igb 0000:02:00.0 eth1: igb: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[ 90.880261] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[ 91.648248] IPv6: ADDRCONF(NETDEV_UP): eth2: link is not ready
[ 91.760546] igb 0000:01:00.0 eth0: igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[ 91.880264] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 92.846730] igb 0000:04:00.0: changing MTU from 1500 to 1508
[ 92.877369] PPP generic driver version 2.4.2
[ 92.963389] NET: Registered protocol family 24
[ 95.640541] igb 0000:04:00.0 eth3: igb: eth3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 95.640816] IPv6: ADDRCONF(NETDEV_CHANGE): eth3: link becomes ready
[ 98.203235] pppoe0: renamed from ppp0
[ 223.517095] ISO 9660 Extensions: Microsoft Joliet Level 3
[ 223.525266] ISO 9660 Extensions: RRIP_1991A

Jan 7 2019, 5:30 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 6 2019

SteveP added a comment to T1066: Missing NICs.

No, RC5 is the last one I can use

Jan 6 2019, 8:42 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

[ 0.000000] Linux version 4.19.0-amd64-vyos (jenkins@jessiedevel) (gcc version 4.9.2 (Debian 4.9.2-10+deb8u1)) #32 SMP Mon Nov 5 23:05:00 CET 2018
[ 0.000000] Command line: BOOT_IMAGE=/boot/1.2.0-rc6/vmlinuz boot=live quiet vyos-union=/boot/1.2.0-rc6 console=ttyS0,9600 console=tty0
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000b8918fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000b8919000-0x00000000b8f18fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000b8f19000-0x00000000b9118fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000b9119000-0x00000000b9158fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000b9159000-0x00000000b9ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ba000000-0x00000000ba7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bae00000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed03000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed0c000-0x00000000fed0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1cfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000feffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffd00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Lex BayTrail 3I380D D1 /3I380D D1 , BIOS 3I380D D3 11/09/2015
[ 0.000000] tsc: Detected 1999.200 MHz processor
[ 0.002173] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.002179] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.002192] last_pfn = 0x140000 max_arch_pfn = 0x400000000
[ 0.002198] MTRR default type: uncachable
[ 0.002200] MTRR fixed ranges enabled:
[ 0.002203] 00000-9FFFF write-back
[ 0.002205] A0000-BFFFF uncachable
[ 0.002208] C0000-FFFFF write-protect
[ 0.002210] MTRR variable ranges enabled:
[ 0.002213] 0 base 0FFD00000 mask FFFC00000 write-protect
[ 0.002216] 1 base 000000000 mask F80000000 write-back
[ 0.002218] 2 base 080000000 mask FC0000000 write-back
[ 0.002221] 3 base 0BC000000 mask FFC000000 uncachable
[ 0.002223] 4 base 0BB000000 mask FFF000000 uncachable
[ 0.002226] 5 base 0BAE00000 mask FFFE00000 uncachable
[ 0.002229] 6 base 100000000 mask FC0000000 write-back
[ 0.002230] 7 disabled
[ 0.002378] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.002489] last_pfn = 0xba000 max_arch_pfn = 0x400000000
[ 0.008351] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [(____ptrval____)]
[ 0.009015] Scanning 1 areas for low memory corruption
[ 0.009020] Base memory trampoline at [(____ptrval____)] 98000 size 24576
[ 0.009026] BRK [0x02001000, 0x02001fff] PGTABLE
[ 0.009030] BRK [0x02002000, 0x02002fff] PGTABLE
[ 0.009033] BRK [0x02003000, 0x02003fff] PGTABLE
[ 0.009206] BRK [0x02004000, 0x02004fff] PGTABLE
[ 0.010049] BRK [0x02005000, 0x02005fff] PGTABLE
[ 0.010517] RAMDISK: [mem 0x34232000-0x36110fff]
[ 0.010530] ACPI: Early table checksum verification disabled
[ 0.010623] ACPI: RSDP 0x00000000000FE020 000024 (v02 INSYDE)
[ 0.010630] ACPI: XSDT 0x00000000B9158120 0000A4 (v01 INSYDE INSYDE 00000003 01000013)
[ 0.010641] ACPI: FACP 0x00000000B9155000 00010C (v05 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010653] ACPI: DSDT 0x00000000B9144000 009F79 (v02 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010661] ACPI: FACS 0x00000000B90D2000 000040
[ 0.010667] ACPI: UEFI 0x00000000B9157000 000236 (v01 INSYDE INSYDE 00000001 ACPI 00040000)
[ 0.010675] ACPI: HPET 0x00000000B9154000 000038 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010683] ACPI: LPIT 0x00000000B9153000 000104 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010690] ACPI: APIC 0x00000000B9152000 000084 (v03 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010698] ACPI: MCFG 0x00000000B9151000 00003C (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010706] ACPI: SLIC 0x00000000B9150000 000176 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010713] ACPI: WDAT 0x00000000B914F000 0001C4 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010721] ACPI: WDRT 0x00000000B914E000 000047 (v01 INSYDE INSYDE 00000003 ACPI 00040000)
[ 0.010728] ACPI: SSDT 0x00000000B9143000 000763 (v01 INSYDE CpuPm 00003000 ACPI 00040000)
[ 0.010736] ACPI: SSDT 0x00000000B9142000 000290 (v01 INSYDE Cpu0Tst 00003000 ACPI 00040000)
[ 0.010744] ACPI: SSDT 0x00000000B9141000 00017A (v01 INSYDE ApTst 00003000 ACPI 00040000)
[ 0.010751] ACPI: UEFI 0x00000000B9140000 000042 (v01 INSYDE INSYDE 00000000 ACPI 00040000)
[ 0.010759] ACPI: SSDT 0x00000000B913F000 00065B (v01 INSYDE SIOACPI 00001000 ACPI 00040000)
[ 0.010767] ACPI: SSDT 0x00000000B913E000 00022B (v01 INSYDE IsctTabl 00001000 ACPI 00040000)
[ 0.010774] ACPI: FPDT 0x00000000B913D000 000044 (v01 INSYDE INSYDE 00000002 ACPI 00040000)
[ 0.010791] ACPI: Local APIC address 0xfee00000
[ 0.010928] No NUMA configuration found
[ 0.010931] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[ 0.010937] NODE_DATA(0) allocated [mem 0x13fff9000-0x13fffcfff]
[ 0.010976] Zone ranges:
[ 0.010978] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.010981] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.010984] Normal [mem 0x0000000100000000-0x000000013fffffff]
[ 0.010986] Movable zone start for each node
[ 0.010988] Early memory node ranges
[ 0.010990] node 0: [mem 0x0000000000001000-0x000000000009dfff]
[ 0.010992] node 0: [mem 0x0000000000100000-0x00000000b8918fff]
[ 0.010994] node 0: [mem 0x00000000b9159000-0x00000000b9ffffff]
[ 0.010996] node 0: [mem 0x0000000100000000-0x000000013fffffff]
[ 0.012148] Reserved but unavailable: 26787 pages
[ 0.012152] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[ 0.012156] On node 0 totalpages: 1021789
[ 0.012158] DMA zone: 64 pages used for memmap
[ 0.012160] DMA zone: 21 pages reserved
[ 0.012162] DMA zone: 3997 pages, LIFO batch:0
[ 0.012389] DMA32 zone: 11807 pages used for memmap
[ 0.012391] DMA32 zone: 755648 pages, LIFO batch:63
[ 0.058720] Normal zone: 4096 pages used for memmap
[ 0.058724] Normal zone: 262144 pages, LIFO batch:63
[ 0.072777] x86/hpet: Will disable the HPET for this platform because it's not reliable
[ 0.072785] Reserving Intel graphics memory at [mem 0xbb000000-0xbeffffff]
[ 0.072953] ACPI: PM-Timer IO Port: 0x408
[ 0.072958] ACPI: Local APIC address 0xfee00000
[ 0.072970] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
[ 0.072972] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
[ 0.072974] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
[ 0.072976] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
[ 0.072990] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[ 0.072994] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.072998] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.073001] ACPI: IRQ0 used by override.
[ 0.073004] ACPI: IRQ9 used by override.
[ 0.073010] Using ACPI (MADT) for SMP configuration information
[ 0.073013] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.073022] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.073064] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.073069] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.073070] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.073072] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.073074] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.073078] PM: Registered nosave memory: [mem 0xb8919000-0xb8f18fff]
[ 0.073079] PM: Registered nosave memory: [mem 0xb8f19000-0xb9118fff]
[ 0.073081] PM: Registered nosave memory: [mem 0xb9119000-0xb9158fff]
[ 0.073085] PM: Registered nosave memory: [mem 0xba000000-0xba7fffff]
[ 0.073086] PM: Registered nosave memory: [mem 0xba800000-0xbadfffff]
[ 0.073088] PM: Registered nosave memory: [mem 0xbae00000-0xbfffffff]
[ 0.073090] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
[ 0.073091] PM: Registered nosave memory: [mem 0xe0000000-0xe3ffffff]
[ 0.073093] PM: Registered nosave memory: [mem 0xe4000000-0xfebfffff]
[ 0.073095] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.073096] PM: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
[ 0.073098] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[ 0.073100] PM: Registered nosave memory: [mem 0xfed02000-0xfed02fff]
[ 0.073101] PM: Registered nosave memory: [mem 0xfed03000-0xfed03fff]
[ 0.073103] PM: Registered nosave memory: [mem 0xfed04000-0xfed07fff]
[ 0.073104] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[ 0.073106] PM: Registered nosave memory: [mem 0xfed09000-0xfed0bfff]
[ 0.073108] PM: Registered nosave memory: [mem 0xfed0c000-0xfed0ffff]
[ 0.073109] PM: Registered nosave memory: [mem 0xfed10000-0xfed1bfff]
[ 0.073111] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1cfff]
[ 0.073113] PM: Registered nosave memory: [mem 0xfed1d000-0xfedfffff]
[ 0.073114] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.073116] PM: Registered nosave memory: [mem 0xfee01000-0xfeefffff]
[ 0.073117] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[ 0.073119] PM: Registered nosave memory: [mem 0xff000000-0xffcfffff]
[ 0.073121] PM: Registered nosave memory: [mem 0xffd00000-0xffffffff]
[ 0.073124] [mem 0xc0000000-0xdfffffff] available for PCI devices
[ 0.073126] Booting paravirtualized kernel on bare hardware
[ 0.073132] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.202934] random: get_random_bytes called from start_kernel+0x8f/0x456 with crng_init=0
[ 0.202953] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[ 0.203764] percpu: Embedded 43 pages/cpu @(____ptrval____) s138648 r8192 d29288 u524288
[ 0.203779] pcpu-alloc: s138648 r8192 d29288 u524288 alloc=1*2097152
[ 0.203782] pcpu-alloc: [0] 0 1 2 3
[ 0.203832] Built 1 zonelists, mobility grouping on. Total pages: 1005801
[ 0.203835] Policy zone: Normal
[ 0.203839] Kernel command line: BOOT_IMAGE=/boot/1.2.0-rc6/vmlinuz boot=live quiet vyos-union=/boot/1.2.0-rc6 console=ttyS0,9600 console=tty0
[ 0.266968] Memory: 3906740K/4087156K available (8200K kernel code, 716K rwdata, 1912K rodata, 1036K init, 536K bss, 180416K reserved, 0K cma-reserved)
[ 0.267084] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.267190] rcu: Hierarchical RCU implementation.
[ 0.267193] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[ 0.267196] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.267214] NR_IRQS: 4352, nr_irqs: 1024, preallocated irqs: 16
[ 0.270840] Console: colour VGA+ 80x25
[ 0.270849] console [tty0] enabled
[ 0.270876] console [ttyS0] enabled
[ 0.270909] ACPI: Core revision 20180810
[ 0.271182] APIC: Switch to symmetric I/O mode setup
[ 0.272268] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.321184] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x39a275294b2, max_idle_ns: 881590412759 ns
[ 0.321204] Calibrating delay loop (skipped), value calculated using timer frequency.. 3998.40 BogoMIPS (lpj=19992000)
[ 0.321209] pid_max: default: 32768 minimum: 301
[ 0.321259] Security Framework initialized
[ 0.322876] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.323728] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.323787] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.323824] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.324245] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.324248] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.324260] mce: CPU supports 6 MCE banks
[ 0.324271] process: using mwait in idle threads
[ 0.324277] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[ 0.324280] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[ 0.324284] Spectre V2 : Mitigation: Full generic retpoline
[ 0.324285] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.324580] Freeing SMP alternatives memory: 16K
[ 0.331350] TSC deadline timer enabled
[ 0.331354] smpboot: CPU0: Intel(R) Celeron(R) CPU J1900 @ 1.99GHz (family: 0x6, model: 0x37, stepping: 0x8)
[ 0.331633] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver.
[ 0.331654] ... version: 3
[ 0.331656] ... bit width: 40
[ 0.331657] ... generic registers: 2
[ 0.331659] ... value mask: 000000ffffffffff
[ 0.331660] ... max period: 0000007fffffffff
[ 0.331661] ... fixed-purpose events: 3
[ 0.331663] ... event mask: 0000000700000003
[ 0.331746] rcu: Hierarchical SRCU implementation.
[ 0.332619] smp: Bringing up secondary CPUs ...
[ 0.332840] x86: Booting SMP configuration:
[ 0.332843] .... node #0, CPUs: #1 #2 #3
[ 0.333896] smp: Brought up 1 node, 4 CPUs
[ 0.333896] smpboot: Max logical packages: 1
[ 0.333896] smpboot: Total of 4 processors activated (15993.60 BogoMIPS)
[ 0.333896] devtmpfs: initialized
[ 0.333896] x86/mm: Memory block size: 128MB
[ 0.333896] PM: Registering ACPI NVS region [mem 0xb8f19000-0xb9118fff] (2097152 bytes)
[ 0.333896] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.333896] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.333896] NET: Registered protocol family 16
[ 0.333896] audit: initializing netlink subsys (disabled)
[ 0.333896] audit: type=2000 audit(1546801580.070:1): state=initialized audit_enabled=0 res=1
[ 0.333896] cpuidle: using governor ladder
[ 0.333896] cpuidle: using governor menu
[ 0.333896] ACPI: bus type PCI registered
[ 0.333896] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.333896] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[ 0.333896] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
[ 0.333896] PCI: Using configuration type 1 for base access
[ 0.345728] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.345728] ACPI: Added _OSI(Module Device)
[ 0.345728] ACPI: Added _OSI(Processor Device)
[ 0.345728] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.345728] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.345728] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.345728] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.368546] ACPI: 6 ACPI AML tables successfully acquired and loaded
[ 0.376426] ACPI: Dynamic OEM Table Load:
[ 0.376426] ACPI: SSDT 0xFFFF88013AF69000 0003BC (v01 PmRef Cpu0Ist 00003000 INTL 20130117)
[ 0.376426] ACPI: Dynamic OEM Table Load:
[ 0.376426] ACPI: SSDT 0xFFFF88013AB18000 000433 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
[ 0.376439] ACPI: Dynamic OEM Table Load:
[ 0.376439] ACPI: SSDT 0xFFFF88013AF6CA00 00015F (v01 PmRef ApIst 00003000 INTL 20130117)
[ 0.381294] ACPI: Dynamic OEM Table Load:
[ 0.381306] ACPI: SSDT 0xFFFF88013A5000C0 00008D (v01 PmRef ApCst 00003000 INTL 20130117)
[ 0.382721] ACPI: Interpreter enabled
[ 0.382755] ACPI: (supports S0 S5)
[ 0.382758] ACPI: Using IOAPIC for interrupt routing
[ 0.382849] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.383817] ACPI: Enabled 6 GPEs in block 00 to 3F
[ 0.391538] ACPI: Power Resource [USBC] (on)
[ 0.401222] ACPI: Power Resource [PLPE] (on)
[ 0.401222] ACPI: Power Resource [PLPE] (on)
[ 0.411222] ACPI: Power Resource [CLK0] (on)
[ 0.411321] ACPI: Power Resource [CLK1] (on)
[ 0.416124] ACPI: Power Resource [FN00] (off)
[ 0.417871] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.417884] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.901359] ACPI: Dynamic OEM Table Load:
[ 0.901374] ACPI: SSDT 0xFFFF88013A922F80 00007B (v01 Insyde ACPI5P0 00001000 INTL 20130117)
[ 0.901729] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.901729] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 0.902303] PCI host bridge to bus 0000:00
[ 0.902308] pci_bus 0000:00: root bus resource [io 0x0070-0x0077]
[ 0.902312] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window]
[ 0.902315] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window]
[ 0.902318] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.902321] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.902324] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.902327] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[ 0.902330] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd0affffe window]
[ 0.902333] pci_bus 0000:00: root bus resource [mem 0x140000000-0x53fffffff window]
[ 0.902337] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.902350] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[ 0.902579] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[ 0.902595] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[ 0.902606] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[ 0.902617] pci 0000:00:02.0: reg 0x20: [io 0x5050-0x5057]
[ 0.902844] pci 0000:00:13.0: [8086:0f21] type 00 class 0x01018f
[ 0.902865] pci 0000:00:13.0: reg 0x10: [io 0x5048-0x504f]
[ 0.902875] pci 0000:00:13.0: reg 0x14: [io 0x505c-0x505f]
[ 0.902885] pci 0000:00:13.0: reg 0x18: [io 0x5040-0x5047]
[ 0.902895] pci 0000:00:13.0: reg 0x1c: [io 0x5058-0x505b]
[ 0.902904] pci 0000:00:13.0: reg 0x20: [io 0x5030-0x503f]
[ 0.902914] pci 0000:00:13.0: reg 0x24: [io 0x5020-0x502f]
[ 0.903129] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[ 0.903151] pci 0000:00:14.0: reg 0x10: [mem 0xd0a00000-0xd0a0ffff 64bit]
[ 0.903215] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.903415] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[ 0.903446] pci 0000:00:1a.0: reg 0x10: [mem 0xd0900000-0xd09fffff]
[ 0.903459] pci 0000:00:1a.0: reg 0x14: [mem 0xd0800000-0xd08fffff]
[ 0.903565] pci 0000:00:1a.0: PME# supported from D0 D3hot
[ 0.903760] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300
[ 0.903787] pci 0000:00:1b.0: reg 0x10: [mem 0xd0a10000-0xd0a13fff 64bit]
[ 0.903862] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.904052] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400
[ 0.904124] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.904320] pci 0000:00:1c.1: [8086:0f4a] type 01 class 0x060400
[ 0.904391] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.904587] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400
[ 0.904658] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.904856] pci 0000:00:1c.3: [8086:0f4e] type 01 class 0x060400
[ 0.904927] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.905130] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[ 0.905389] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500
[ 0.905433] pci 0000:00:1f.3: reg 0x10: [mem 0xd0a15000-0xd0a1501f]
[ 0.905504] pci 0000:00:1f.3: reg 0x20: [io 0x5000-0x501f]
[ 0.905877] pci 0000:01:00.0: [8086:1539] type 00 class 0x020000
[ 0.905915] pci 0000:01:00.0: reg 0x10: [mem 0xd0700000-0xd071ffff]
[ 0.905944] pci 0000:01:00.0: reg 0x18: [io 0x4000-0x401f]
[ 0.905959] pci 0000:01:00.0: reg 0x1c: [mem 0xd0720000-0xd0723fff]
[ 0.906100] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.906147] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:1c.0 (capable of 7.876 Gb/s with 8 GT/s x1 link)
[ 0.906272] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.906277] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.906282] pci 0000:00:1c.0: bridge window [mem 0xd0700000-0xd07fffff]
[ 0.906389] pci 0000:02:00.0: [8086:1539] type 00 class 0x020000
[ 0.906427] pci 0000:02:00.0: reg 0x10: [mem 0xd0600000-0xd061ffff]
[ 0.906456] pci 0000:02:00.0: reg 0x18: [io 0x3000-0x301f]
[ 0.906471] pci 0000:02:00.0: reg 0x1c: [mem 0xd0620000-0xd0623fff]
[ 0.906612] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.906658] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:1c.1 (capable of 7.876 Gb/s with 8 GT/s x1 link)
[ 0.906784] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.906789] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
[ 0.906793] pci 0000:00:1c.1: bridge window [mem 0xd0600000-0xd06fffff]
[ 0.906896] pci 0000:03:00.0: [8086:1539] type 00 class 0x020000
[ 0.906935] pci 0000:03:00.0: reg 0x10: [mem 0xd0500000-0xd051ffff]
[ 0.906963] pci 0000:03:00.0: reg 0x18: [io 0x2000-0x201f]
[ 0.906979] pci 0000:03:00.0: reg 0x1c: [mem 0xd0520000-0xd0523fff]
[ 0.907119] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.907165] pci 0000:03:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:1c.2 (capable of 7.876 Gb/s with 8 GT/s x1 link)
[ 0.907290] pci 0000:00:1c.2: PCI bridge to [bus 03]
[ 0.907295] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 0.907299] pci 0000:00:1c.2: bridge window [mem 0xd0500000-0xd05fffff]
[ 0.907403] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[ 0.907441] pci 0000:04:00.0: reg 0x10: [mem 0xd0400000-0xd041ffff]
[ 0.907470] pci 0000:04:00.0: reg 0x18: [io 0x1000-0x101f]
[ 0.907485] pci 0000:04:00.0: reg 0x1c: [mem 0xd0420000-0xd0423fff]
[ 0.907626] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 0.907672] pci 0000:04:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0000:00:1c.3 (capable of 7.876 Gb/s with 8 GT/s x1 link)
[ 0.907799] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.907804] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff]
[ 0.907809] pci 0000:00:1c.3: bridge window [mem 0xd0400000-0xd04fffff]
[ 0.912842] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.913081] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.913317] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.913554] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[ 0.913790] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.914026] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 0.914263] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.914499] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *7
[ 0.918538] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.918538] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.918538] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.918538] vgaarb: loaded
[ 0.918604] SCSI subsystem initialized
[ 0.918604] libata version 3.00 loaded.
[ 0.918604] ACPI: bus type USB registered
[ 0.918604] usbcore: registered new interface driver usbfs
[ 0.918604] usbcore: registered new interface driver hub
[ 0.918604] usbcore: registered new device driver usb
[ 0.918604] EDAC MC: Ver: 3.0.0
[ 0.918604] PCI: Using ACPI for IRQ routing
[ 0.918604] PCI: pci_cache_line_size set to 64 bytes
[ 0.918604] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[ 0.918604] e820: reserve RAM buffer [mem 0xb8919000-0xbbffffff]
[ 0.918604] e820: reserve RAM buffer [mem 0xba000000-0xbbffffff]
[ 0.922259] clocksource: Switched to clocksource tsc-early
[ 0.922467] pnp: PnP ACPI init
[ 0.922585] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.922769] system 00:01: [io 0x0680-0x069f] has been reserved
[ 0.922774] system 00:01: [io 0x0400-0x047f] has been reserved
[ 0.922777] system 00:01: [io 0x0500-0x05fe] has been reserved
[ 0.922782] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.922801] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.923671] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.924363] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.924363] system 00:04: [mem 0xe0000000-0xefffffff] could not be reserved
[ 0.924363] system 00:04: [mem 0xfed01000-0xfed01fff] has been reserved
[ 0.924363] system 00:04: [mem 0xfed03000-0xfed03fff] has been reserved
[ 0.924363] system 00:04: [mem 0xfed04000-0xfed04fff] has been reserved
[ 0.924363] system 00:04: [mem 0xfed0c000-0xfed0ffff] has been reserved
[ 0.924363] system 00:04: [mem 0xfed08000-0xfed08fff] has been reserved
[ 0.924363] system 00:04: [mem 0xfed1c000-0xfed1cfff] has been reserved
[ 0.924363] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.924363] system 00:04: [mem 0xfef00000-0xfeffffff] has been reserved
[ 0.924365] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.928034] pnp: PnP ACPI: found 5 devices
[ 0.938053] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.938100] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.938105] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.938111] pci 0000:00:1c.0: bridge window [mem 0xd0700000-0xd07fffff]
[ 0.938119] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.938123] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
[ 0.938128] pci 0000:00:1c.1: bridge window [mem 0xd0600000-0xd06fffff]
[ 0.938136] pci 0000:00:1c.2: PCI bridge to [bus 03]
[ 0.938139] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 0.938144] pci 0000:00:1c.2: bridge window [mem 0xd0500000-0xd05fffff]
[ 0.938152] pci 0000:00:1c.3: PCI bridge to [bus 04]
[ 0.938155] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff]
[ 0.938160] pci 0000:00:1c.3: bridge window [mem 0xd0400000-0xd04fffff]
[ 0.938169] pci_bus 0000:00: resource 4 [io 0x0070-0x0077]
[ 0.938172] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window]
[ 0.938176] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window]
[ 0.938179] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.938182] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 0.938185] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[ 0.938188] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[ 0.938191] pci_bus 0000:00: resource 11 [mem 0xc0000000-0xd0affffe window]
[ 0.938195] pci_bus 0000:00: resource 12 [mem 0x140000000-0x53fffffff window]
[ 0.938198] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 0.938201] pci_bus 0000:01: resource 1 [mem 0xd0700000-0xd07fffff]
[ 0.938204] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.938207] pci_bus 0000:02: resource 1 [mem 0xd0600000-0xd06fffff]
[ 0.938210] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
[ 0.938213] pci_bus 0000:03: resource 1 [mem 0xd0500000-0xd05fffff]
[ 0.938216] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 0.938219] pci_bus 0000:04: resource 1 [mem 0xd0400000-0xd04fffff]
[ 0.938417] NET: Registered protocol family 2
[ 0.938743] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)
[ 0.938787] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.938926] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.939081] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.939174] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.939220] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.939349] NET: Registered protocol family 1
[ 0.939381] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.939844] PCI: CLS 64 bytes, default 64
[ 0.939939] Trying to unpack rootfs image as initramfs...
[ 1.807908] Freeing initrd memory: 31612K
[ 1.808010] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.808013] software IO TLB: mapped [mem 0xb4919000-0xb8919000] (64MB)
[ 1.808241] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x39a275294b2, max_idle_ns: 881590412759 ns
[ 1.808277] clocksource: Switched to clocksource tsc
[ 1.808352] Scanning for low memory corruption every 60 seconds
[ 1.809126] Initialise system trusted keyrings
[ 1.809226] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[ 1.813614] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.813660] pstore: using deflate compression
[ 1.814808] Key type asymmetric registered
[ 1.814811] Asymmetric key parser 'x509' registered
[ 1.814839] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[ 1.814842] io scheduler noop registered
[ 1.814843] io scheduler deadline registered
[ 1.814919] io scheduler cfq registered (default)
[ 1.814922] io scheduler mq-deadline registered
[ 1.814924] io scheduler kyber registered
[ 1.816076] intel_idle: MWAIT substates: 0x33000020
[ 1.816079] intel_idle: v0.4.1 model 0x37
[ 1.816481] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.820626] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.841378] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.862241] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 1.863712] hpet: number irqs doesn't agree with number of timers
[ 1.872744] brd: module loaded
[ 1.872958] libphy: Fixed MDIO Bus: probed
[ 1.872970] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.872979] ehci-pci: EHCI PCI platform driver
[ 1.873016] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.873328] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.873340] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.874418] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 1.874425] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.875042] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[ 1.875046] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.875049] usb usb1: Product: xHCI Host Controller
[ 1.875051] usb usb1: Manufacturer: Linux 4.19.0-amd64-vyos xhci-hcd
[ 1.875054] usb usb1: SerialNumber: 0000:00:14.0
[ 1.875669] hub 1-0:1.0: USB hub found
[ 1.875873] hub 1-0:1.0: 6 ports detected
[ 1.877119] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.877130] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.877138] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 1.877304] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.19
[ 1.877308] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.877311] usb usb2: Product: xHCI Host Controller
[ 1.877314] usb usb2: Manufacturer: Linux 4.19.0-amd64-vyos xhci-hcd
[ 1.877316] usb usb2: SerialNumber: 0000:00:14.0
[ 1.877554] hub 2-0:1.0: USB hub found
[ 1.877579] hub 2-0:1.0: 1 port detected
[ 1.877959] usbcore: registered new interface driver usbserial_generic
[ 1.877973] usbserial: USB Serial support registered for generic
[ 1.878034] i8042: PNP: No PS/2 controller found.
[ 1.878035] i8042: Probing ports directly.
[ 1.878498] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.878509] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.878609] rtc_cmos 00:00: RTC can wake from S4
[ 1.878835] rtc_cmos 00:00: registered as rtc0
[ 1.878875] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[ 1.878904] intel_pstate: Intel P-state driver initializing
[ 1.879432] No iBFT detected.
[ 1.879675] NET: Registered protocol family 17
[ 1.879691] Key type dns_resolver registered
[ 1.880080] microcode: sig=0x30678, pf=0x4, revision=0x815
[ 1.880164] microcode: Microcode Update Driver: v2.2.
[ 1.880182] sched_clock: Marking stable (1886513908, -6363362)->(1886174609, -6024063)
[ 1.881053] registered taskstats version 1
[ 1.881055] Loading compiled-in X.509 certificates
[ 1.882071] rtc_cmos 00:00: setting system clock to 2019-01-06 19:06:22 UTC (1546801582)
[ 1.884723] Freeing unused kernel image memory: 1036K
[ 1.932259] Write protecting the kernel read-only data: 12288k
[ 1.935416] Freeing unused kernel image memory: 2024K
[ 1.936161] Freeing unused kernel image memory: 136K
[ 1.936166] Run /init as init process
[ 1.966990] systemd-udevd[850]: starting version 215
[ 1.968114] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 2.006999] thermal LNXTHERM:00: registered as thermal_zone0
[ 2.007003] ACPI: Thermal Zone [TZ01] (33 C)
[ 2.007456] ata_piix 0000:00:13.0: version 2.13
[ 2.007622] ata_piix 0000:00:13.0: MAP [ P0 -- P1 -- ]
[ 2.010307] pps_core: LinuxPPS API ver. 1 registered
[ 2.010310] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[ 2.010722] PTP clock support registered
[ 2.011049] dca service started, version 1.12.1
[ 2.012012] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 2.014951] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[ 2.014954] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 2.046728] pps pps0: new PPS source ptp0
[ 2.046733] igb 0000:01:00.0: added PHC on eth0
[ 2.046735] igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 2.046738] igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:02:89:12:16:ce
[ 2.046741] igb 0000:01:00.0: eth0: PBA No: FFFFFF-0FF
[ 2.046743] igb 0000:01:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 2.047614] igb: probe of 0000:02:00.0 failed with error -2
[ 2.048371] igb: probe of 0000:03:00.0 failed with error -2
[ 2.049126] igb: probe of 0000:04:00.0 failed with error -2
[ 2.171784] ata_piix 0000:00:13.0: SCR access via SIDPR is available but doesn't work
[ 2.173717] scsi host0: ata_piix
[ 2.175155] scsi host1: ata_piix
[ 2.175283] ata1: SATA max UDMA/133 cmd 0x5048 ctl 0x505c bmdma 0x5030 irq 19
[ 2.175287] ata2: SATA max UDMA/133 cmd 0x5040 ctl 0x5058 bmdma 0x5038 irq 19
[ 2.242002] usb 1-4: new high-speed USB device number 2 using xhci_hcd
[ 2.353072] ata2.00: ATA-8: mSATA mini 3ME3, S16425, max UDMA/133
[ 2.353075] ata2.00: 15649200 sectors, multi 1: LBA48 NCQ (depth 0/32)
[ 2.354230] scsi 1:0:0:0: Direct-Access ATA mSATA mini 3ME3 25 PQ: 0 ANSI: 5
[ 2.354699] sd 1:0:0:0: Attached scsi generic sg0 type 0
[ 2.354938] sd 1:0:0:0: [sda] 15649200 512-byte logical blocks: (8.01 GB/7.46 GiB)
[ 2.354965] sd 1:0:0:0: [sda] Write Protect is off
[ 2.354968] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.355014] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.357833] sda: sda1
[ 2.359639] sd 1:0:0:0: [sda] Attached SCSI disk
[ 2.424434] usb 1-4: New USB device found, idVendor=14cd, idProduct=8601, bcdDevice= 0.00
[ 2.424439] usb 1-4: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[ 2.424443] usb 1-4: Product: USB 2.0 Hub
[ 2.424445] usb 1-4: Manufacturer: USB Device
[ 2.425556] hub 1-4:1.0: USB hub found
[ 2.425629] hub 1-4:1.0: 4 ports detected
[ 2.623621] random: fast init done
[ 2.630025] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 2.674325] loop: module loaded
[ 2.777107] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.781180] usbcore: registered new interface driver usb-storage
[ 8.055937] EXT4-fs (sda1): re-mounted. Opts: (null)
[ 8.812112] random: systemd: uninitialized urandom read (16 bytes read)
[ 8.831545] systemd[1]: systemd 215 running in system mode. (+PAM +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ -SECCOMP -APPARMOR)
[ 8.862362] systemd[1]: Detected architecture 'x86-64'.
[ 8.939530] systemd[1]: Inserted module 'autofs4'
[ 8.986078] NET: Registered protocol family 10
[ 9.014582] Segment Routing with IPv6
[ 9.016022] systemd[1]: Inserted module 'ipv6'
[ 9.021422] systemd[1]: Set hostname to <localhost.localdomain>.
[ 9.021855] random: systemd: uninitialized urandom read (16 bytes read)
[ 9.021869] systemd[1]: Initializing machine ID from random generator.
[ 9.105839] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read)
[ 9.345825] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
[ 9.346523] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[ 9.346657] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 9.346678] systemd[1]: Expecting device dev-ttyS0.device...
[ 13.998490] systemd-udevd[1361]: starting version 215
[ 14.393150] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[ 14.393167] ACPI: Power Button [PWRB]
[ 14.393278] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[ 14.393963] ACPI: Power Button [PWRF]
[ 14.427679] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 14.438647] cryptd: max_cpu_qlen set to 1000
[ 14.530152] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 14.530232] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[ 14.530411] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 14.776077] systemd-journald[1258]: Received request to flush runtime journal from PID 1
[ 15.610456] fuse init (API version 7.27)
[ 16.294492] Process accounting resumed
[ 16.394368] random: crng init done
[ 16.394373] random: 6 urandom warning(s) missed due to ratelimiting
[ 90.893350] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 93.911712] igb 0000:01:00.0 eth0: igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[ 93.912301] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready

Jan 6 2019, 7:17 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

OK, just getting VyOS back on it as installing Debian wiped the hard disk.

Jan 6 2019, 6:19 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

I don't have the old Buster ISO with Kernel 4.18 anymore.

Jan 6 2019, 5:51 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

I managed to do a full install of Buster (weekly) on it and I can confirm
that the problem IS still there. I confirmed that the kernel is 4.19.12-1. I
then installed the kernel from the sid branch

Jan 6 2019, 4:43 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

I have also realised that, as lspci shows the NICs on the PCI bus even
though they are not there in VyOS 1.2 after RC6, maybe they will be present
during the install but not after the system reboots. When I tested it with
Buster, I only took the install to the point of being presented with the
four NICs, I didn't actually install it and see if they were still there
after the reboot.

Jan 6 2019, 6:07 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 5 2019

SteveP added a comment to T1066: Missing NICs.

I'm based in UK and it is my home router so that would be difficult. They
may lend you one to get it on here
https://wiki.vyos.net/wiki/Network_appliances

Jan 5 2019, 6:21 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

Looks like this might be the salient point:

Jan 5 2019, 5:20 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

It was purchased from here:

Jan 5 2019, 5:15 PM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 4 2019

SteveP added a comment to T1066: Missing NICs.

Still didn’t fix it I’m afraid.

Jan 4 2019, 10:40 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 3 2019

SteveP added a comment to T1066: Missing NICs.

After a bit more digging

Jan 3 2019, 12:23 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

pppoe is on one of the missing NICs so I guess that is why it is missing
from the 1.2 output

Jan 3 2019, 11:02 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Jan 2 2019

SteveP added a comment to T1066: Missing NICs.

Still only one interface I'm afraid.

Jan 2 2019, 6:39 PM · VyOS 1.2 Crux (VyOS 1.2.1)

Dec 19 2018

SteveP added a comment to T1064: dhcp relay with VRRP.

I have just re-tested this with RC11 and can confirm that it was a
configuration error. I had moved the DHCP server to a different VLAN which
was not listed under dhcp-relay {

Dec 19 2018, 6:56 PM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)

Dec 14 2018

SteveP added a comment to T1065: PPPoE MTU on boot up.

Confirmed fixed thanks

Dec 14 2018, 6:09 AM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)

Dec 11 2018

SteveP added a comment to T1065: PPPoE MTU on boot up.

sudo ifconfig pppoe0
pppoe0 Link encap:Point-to-Point Protocol

inet addr:86.174.92.68  P-t-P:172.16.15.188  Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
RX packets:39321606 errors:0 dropped:0 overruns:0 frame:0
TX packets:11454389 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:3
RX bytes:57128999317 (53.2 GiB)  TX bytes:889897287 (848.6 MiB)
Dec 11 2018, 5:44 AM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)

Dec 8 2018

SteveP added a comment to T1065: PPPoE MTU on boot up.

I have had a chance to look at this again and believe we can get what we want from /var/log/Vyatta/ppp_pppoe0.log

Dec 8 2018, 8:15 AM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)

Dec 5 2018

SteveP added a comment to T1065: PPPoE MTU on boot up.

Do you mean test whether my ISP (BT) supports 1500? If that is the case, I know it does. https://community.bt.com/t5/Home-setup-Wi-Fi-network/MTU-1500-on-FTTP-FTTH/m-p/1782374 This thread confirms that it works with UBNT.

Dec 5 2018, 8:57 AM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)

Dec 1 2018

SteveP added a comment to T1066: Missing NICs.

No problem. There is no hurry, I'm happy running RC5 for now.

Dec 1 2018, 12:09 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

Hi, The NICs are all present{F267310}

Dec 1 2018, 9:25 AM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP added a comment to T1066: Missing NICs.

Certainly. I use this one as my home router so no problem. Is this the version you mean? https://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/debian-testing-amd64-netinst.iso

Dec 1 2018, 7:28 AM · VyOS 1.2 Crux (VyOS 1.2.1)

Nov 30 2018

SteveP created T1066: Missing NICs.
Nov 30 2018, 2:51 PM · VyOS 1.2 Crux (VyOS 1.2.1)
SteveP created T1065: PPPoE MTU on boot up.
Nov 30 2018, 2:35 PM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)
SteveP created T1064: dhcp relay with VRRP.
Nov 30 2018, 2:25 PM · VyOS-1.2.0-GA, VyOS 1.2 Crux ( VyOS 1.2.0-rc11)