facter 2.1.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of facter might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/COMMITTERS.md +194 -0
- data/CONTRIBUTING.md +65 -0
- data/Gemfile +53 -0
- data/LICENSE +15 -0
- data/README.md +33 -0
- data/Rakefile +79 -0
- data/bin/facter +20 -0
- data/etc/facter.conf +5 -0
- data/ext/build_defaults.yaml +24 -0
- data/ext/debian/changelog.erb +59 -0
- data/ext/debian/compat +1 -0
- data/ext/debian/control +14 -0
- data/ext/debian/copyright +19 -0
- data/ext/debian/docs +1 -0
- data/ext/debian/lintian-overrides +0 -0
- data/ext/debian/rules +10 -0
- data/ext/debian/source/format +1 -0
- data/ext/facter-diff +74 -0
- data/ext/ips/facter.p5m.erb +10 -0
- data/ext/ips/rules +7 -0
- data/ext/ips/transforms +18 -0
- data/ext/osx/file_mapping.yaml +27 -0
- data/ext/osx/preflight.erb +33 -0
- data/ext/osx/prototype.plist.erb +38 -0
- data/ext/project_data.yaml +36 -0
- data/ext/redhat/facter.spec.erb +220 -0
- data/ext/solaris/pkginfo +7 -0
- data/install.rb +380 -0
- data/lib/facter.rb +261 -0
- data/lib/facter/Cfkey.rb +42 -0
- data/lib/facter/application.rb +204 -0
- data/lib/facter/architecture.rb +50 -0
- data/lib/facter/augeasversion.rb +28 -0
- data/lib/facter/blockdevices.rb +105 -0
- data/lib/facter/core/aggregate.rb +220 -0
- data/lib/facter/core/directed_graph.rb +46 -0
- data/lib/facter/core/execution.rb +123 -0
- data/lib/facter/core/execution/base.rb +81 -0
- data/lib/facter/core/execution/posix.rb +50 -0
- data/lib/facter/core/execution/windows.rb +57 -0
- data/lib/facter/core/logging.rb +169 -0
- data/lib/facter/core/resolvable.rb +94 -0
- data/lib/facter/core/suitable.rb +113 -0
- data/lib/facter/dhcp_servers.rb +39 -0
- data/lib/facter/domain.rb +99 -0
- data/lib/facter/ec2.rb +44 -0
- data/lib/facter/ec2/rest.rb +130 -0
- data/lib/facter/facterversion.rb +15 -0
- data/lib/facter/filesystems.rb +38 -0
- data/lib/facter/fqdn.rb +24 -0
- data/lib/facter/gce.rb +16 -0
- data/lib/facter/gce/metadata.rb +87 -0
- data/lib/facter/hardwareisa.rb +20 -0
- data/lib/facter/hardwaremodel.rb +67 -0
- data/lib/facter/hostname.rb +31 -0
- data/lib/facter/id.rb +21 -0
- data/lib/facter/interfaces.rb +46 -0
- data/lib/facter/ipaddress.rb +171 -0
- data/lib/facter/ipaddress6.rb +82 -0
- data/lib/facter/iphostnumber.rb +29 -0
- data/lib/facter/kernel.rb +22 -0
- data/lib/facter/kernelmajversion.rb +23 -0
- data/lib/facter/kernelrelease.rb +50 -0
- data/lib/facter/kernelversion.rb +22 -0
- data/lib/facter/ldom.rb +47 -0
- data/lib/facter/lsbdistcodename.rb +16 -0
- data/lib/facter/lsbdistdescription.rb +25 -0
- data/lib/facter/lsbdistid.rb +16 -0
- data/lib/facter/lsbdistrelease.rb +16 -0
- data/lib/facter/lsbmajdistrelease.rb +27 -0
- data/lib/facter/lsbrelease.rb +16 -0
- data/lib/facter/macaddress.rb +97 -0
- data/lib/facter/macosx.rb +56 -0
- data/lib/facter/manufacturer.rb +68 -0
- data/lib/facter/memory.rb +168 -0
- data/lib/facter/netmask.rb +42 -0
- data/lib/facter/network.rb +20 -0
- data/lib/facter/operatingsystem.rb +141 -0
- data/lib/facter/operatingsystemmajrelease.rb +47 -0
- data/lib/facter/operatingsystemrelease.rb +250 -0
- data/lib/facter/osfamily.rb +37 -0
- data/lib/facter/partitions.rb +35 -0
- data/lib/facter/path.rb +14 -0
- data/lib/facter/physicalprocessorcount.rb +91 -0
- data/lib/facter/processor.rb +168 -0
- data/lib/facter/ps.rb +30 -0
- data/lib/facter/puppetversion.rb +20 -0
- data/lib/facter/rubysitedir.rb +12 -0
- data/lib/facter/rubyversion.rb +12 -0
- data/lib/facter/selinux.rb +99 -0
- data/lib/facter/ssh.rb +72 -0
- data/lib/facter/timezone.rb +14 -0
- data/lib/facter/uniqueid.rb +4 -0
- data/lib/facter/uptime.rb +34 -0
- data/lib/facter/uptime_days.rb +15 -0
- data/lib/facter/uptime_hours.rb +15 -0
- data/lib/facter/uptime_seconds.rb +24 -0
- data/lib/facter/util/architecture.rb +19 -0
- data/lib/facter/util/collection.rb +161 -0
- data/lib/facter/util/composite_loader.rb +12 -0
- data/lib/facter/util/config.rb +63 -0
- data/lib/facter/util/confine.rb +66 -0
- data/lib/facter/util/dhcp_servers.rb +43 -0
- data/lib/facter/util/directory_loader.rb +83 -0
- data/lib/facter/util/ec2.rb +106 -0
- data/lib/facter/util/fact.rb +204 -0
- data/lib/facter/util/file_read.rb +37 -0
- data/lib/facter/util/formatter.rb +39 -0
- data/lib/facter/util/ip.rb +285 -0
- data/lib/facter/util/ip/windows.rb +215 -0
- data/lib/facter/util/loader.rb +155 -0
- data/lib/facter/util/macaddress.rb +43 -0
- data/lib/facter/util/macosx.rb +73 -0
- data/lib/facter/util/manufacturer.rb +99 -0
- data/lib/facter/util/memory.rb +228 -0
- data/lib/facter/util/netmask.rb +40 -0
- data/lib/facter/util/normalization.rb +94 -0
- data/lib/facter/util/nothing_loader.rb +12 -0
- data/lib/facter/util/operatingsystem.rb +21 -0
- data/lib/facter/util/parser.rb +158 -0
- data/lib/facter/util/partitions.rb +41 -0
- data/lib/facter/util/partitions/linux.rb +65 -0
- data/lib/facter/util/plist.rb +24 -0
- data/lib/facter/util/plist/generator.rb +228 -0
- data/lib/facter/util/plist/parser.rb +226 -0
- data/lib/facter/util/posix.rb +16 -0
- data/lib/facter/util/processor.rb +289 -0
- data/lib/facter/util/registry.rb +11 -0
- data/lib/facter/util/resolution.rb +160 -0
- data/lib/facter/util/solaris_zones.rb +158 -0
- data/lib/facter/util/unix_root.rb +5 -0
- data/lib/facter/util/uptime.rb +81 -0
- data/lib/facter/util/values.rb +109 -0
- data/lib/facter/util/virtual.rb +180 -0
- data/lib/facter/util/vlans.rb +21 -0
- data/lib/facter/util/windows_root.rb +7 -0
- data/lib/facter/util/wmi.rb +16 -0
- data/lib/facter/util/xendomains.rb +10 -0
- data/lib/facter/version.rb +86 -0
- data/lib/facter/virtual.rb +311 -0
- data/lib/facter/vlans.rb +17 -0
- data/lib/facter/xendomains.rb +20 -0
- data/lib/facter/zfs_version.rb +10 -0
- data/lib/facter/zonename.rb +6 -0
- data/lib/facter/zones.rb +17 -0
- data/lib/facter/zpool_version.rb +10 -0
- data/spec/fixtures/cpuinfo/amd64dual +57 -0
- data/spec/fixtures/cpuinfo/amd64quad +79 -0
- data/spec/fixtures/cpuinfo/amd64solo +23 -0
- data/spec/fixtures/cpuinfo/amd64tri +86 -0
- data/spec/fixtures/cpuinfo/amd64twentyfour +600 -0
- data/spec/fixtures/cpuinfo/bbg3-armel +12 -0
- data/spec/fixtures/cpuinfo/beaglexm-armel +12 -0
- data/spec/fixtures/cpuinfo/panda-armel +17 -0
- data/spec/fixtures/cpuinfo/ppc64 +19 -0
- data/spec/fixtures/cpuinfo/sparc +10 -0
- data/spec/fixtures/hpux/machinfo/hppa-rp4440 +26 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx2620 +49 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx6600 +26 -0
- data/spec/fixtures/hpux/machinfo/ia64-rx8640 +53 -0
- data/spec/fixtures/hpux/machinfo/superdome-server-SD32B +53 -0
- data/spec/fixtures/hpux/machinfo/superdome2-16s +31 -0
- data/spec/fixtures/hpux/sched.models +174 -0
- data/spec/fixtures/hpux/unistd.h +1534 -0
- data/spec/fixtures/ifconfig/bsd_ifconfig_all_with_multiple_interfaces +18 -0
- data/spec/fixtures/ifconfig/centos_5_5 +17 -0
- data/spec/fixtures/ifconfig/centos_5_5_eth0 +8 -0
- data/spec/fixtures/ifconfig/darwin_10_3_0 +26 -0
- data/spec/fixtures/ifconfig/darwin_10_3_0_en0 +6 -0
- data/spec/fixtures/ifconfig/darwin_10_6_4 +28 -0
- data/spec/fixtures/ifconfig/darwin_10_6_4_en1 +6 -0
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack +8 -0
- data/spec/fixtures/ifconfig/darwin_10_6_6_dualstack_en1 +7 -0
- data/spec/fixtures/ifconfig/darwin_9_8_0 +26 -0
- data/spec/fixtures/ifconfig/darwin_9_8_0_en0 +6 -0
- data/spec/fixtures/ifconfig/darwin_ifconfig_all_with_multiple_interfaces +23 -0
- data/spec/fixtures/ifconfig/fedora_10 +36 -0
- data/spec/fixtures/ifconfig/fedora_10_eth0 +9 -0
- data/spec/fixtures/ifconfig/fedora_13 +18 -0
- data/spec/fixtures/ifconfig/fedora_13_eth0 +9 -0
- data/spec/fixtures/ifconfig/fedora_8 +38 -0
- data/spec/fixtures/ifconfig/fedora_8_eth0 +9 -0
- data/spec/fixtures/ifconfig/freebsd_6_0 +12 -0
- data/spec/fixtures/ifconfig/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/ifconfig/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_all_with_multiple_interfaces +19 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_no_addr +19 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_no_mac +8 -0
- data/spec/fixtures/ifconfig/linux_ifconfig_venet +24 -0
- data/spec/fixtures/ifconfig/open_solaris_10 +12 -0
- data/spec/fixtures/ifconfig/open_solaris_b132 +20 -0
- data/spec/fixtures/ifconfig/openbsd_bridge_rules +11 -0
- data/spec/fixtures/ifconfig/sunos_ifconfig_all_with_multiple_interfaces +10 -0
- data/spec/fixtures/ifconfig/ubuntu_7_04 +38 -0
- data/spec/fixtures/ifconfig/ubuntu_7_04_eth0 +9 -0
- data/spec/fixtures/ldom/ldom_v1 +6 -0
- data/spec/fixtures/netstat/centos_5_5 +5 -0
- data/spec/fixtures/netstat/darwin_10_3_0 +35 -0
- data/spec/fixtures/netstat/darwin_10_6_4 +29 -0
- data/spec/fixtures/netstat/darwin_10_6_6_dualstack +34 -0
- data/spec/fixtures/netstat/darwin_9_8_0 +28 -0
- data/spec/fixtures/netstat/fedora_10 +7 -0
- data/spec/fixtures/netstat/open_solaris_10 +16 -0
- data/spec/fixtures/netstat/open_solaris_b132 +17 -0
- data/spec/fixtures/netstat/ubuntu_7_04 +7 -0
- data/spec/fixtures/processorcount/solaris-psrinfo +24 -0
- data/spec/fixtures/processorcount/solaris-sparc-kstat-cpu-info +1216 -0
- data/spec/fixtures/processorcount/solaris-x86_64-kstat-cpu-info +225 -0
- data/spec/fixtures/unit/dhcp_servers/nmcli_devices +4 -0
- data/spec/fixtures/unit/dhcp_servers/nmcli_devices_disconnected +4 -0
- data/spec/fixtures/unit/dhcp_servers/nmcli_eth0_dhcp +36 -0
- data/spec/fixtures/unit/dhcp_servers/nmcli_eth0_static +24 -0
- data/spec/fixtures/unit/dhcp_servers/nmcli_wlan0_dhcp +49 -0
- data/spec/fixtures/unit/dhcp_servers/nmcli_wlan0_static +37 -0
- data/spec/fixtures/unit/dhcp_servers/route +3 -0
- data/spec/fixtures/unit/dhcp_servers/route_nogw +1 -0
- data/spec/fixtures/unit/ec2/rest/meta-data/root +20 -0
- data/spec/fixtures/unit/filesystems/linux +28 -0
- data/spec/fixtures/unit/gce/metadata/metadata.json +69 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.em1 +10 -0
- data/spec/fixtures/unit/interfaces/ifconfig_net_tools_1.60.txt.lo +8 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_multiple_127_addresses.txt +20 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_non_english_locale.txt +18 -0
- data/spec/fixtures/unit/ipaddress/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/unit/kernelrelease/openbsd-5.3 +2 -0
- data/spec/fixtures/unit/kernelrelease/openbsd-5.3-current +3 -0
- data/spec/fixtures/unit/memory/aix-svmon +9 -0
- data/spec/fixtures/unit/memory/aix-swap_l +2 -0
- data/spec/fixtures/unit/memory/darwin-swapinfo-multiple +3 -0
- data/spec/fixtures/unit/memory/darwin-swapinfo-single +2 -0
- data/spec/fixtures/unit/memory/darwin-vm_stat +13 -0
- data/spec/fixtures/unit/memory/dragonfly-vmstat +3 -0
- data/spec/fixtures/unit/memory/freebsd-vmstat +3 -0
- data/spec/fixtures/unit/memory/linux-proc_meminfo +10 -0
- data/spec/fixtures/unit/memory/openbsd-vmstat +3 -0
- data/spec/fixtures/unit/memory/smartos_zone_swap_l-single +2 -0
- data/spec/fixtures/unit/memory/solaris-prtconf +4 -0
- data/spec/fixtures/unit/memory/solaris-swap_l-multiple +3 -0
- data/spec/fixtures/unit/memory/solaris-swap_l-single +2 -0
- data/spec/fixtures/unit/memory/solaris-vmstat +3 -0
- data/spec/fixtures/unit/netmask/darwin_10_8_5.txt +30 -0
- data/spec/fixtures/unit/netmask/ifconfig_aix_7.txt +3 -0
- data/spec/fixtures/unit/netmask/ifconfig_net_tools_1.60.txt +19 -0
- data/spec/fixtures/unit/netmask/ifconfig_ubuntu_1204.txt +16 -0
- data/spec/fixtures/unit/selinux/selinux_sestatus +6 -0
- data/spec/fixtures/unit/util/dhcp_servers/route +3 -0
- data/spec/fixtures/unit/util/dhcp_servers/route_nogw +1 -0
- data/spec/fixtures/unit/util/ec2/centos-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-ec2.out +1 -0
- data/spec/fixtures/unit/util/ec2/linux-arp-not-ec2.out +5 -0
- data/spec/fixtures/unit/util/ec2/solaris8_arp_a_not_ec2.out +7 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a-not-ec2.out +6 -0
- data/spec/fixtures/unit/util/ec2/windows-2008-arp-a.out +10 -0
- data/spec/fixtures/unit/util/ip/6.0-STABLE_FreeBSD_ifconfig +12 -0
- data/spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig +26 -0
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_all_with_multiple_interfaces +10 -0
- data/spec/fixtures/unit/util/ip/darwin_ifconfig_single_interface +6 -0
- data/spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig +40 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_lanscan +5 -0
- data/spec/fixtures/unit/util/ip/hpux_1111_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_lanscan +5 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_asterisk_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_lanscan +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_netstat_in +4 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lan4_1 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_ifconfig_lo0 +2 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_lanscan +9 -0
- data/spec/fixtures/unit/util/ip/hpux_1131_nic_bonding_netstat_in +6 -0
- data/spec/fixtures/unit/util/ip/linux_2_6_35_proc_net_bonding_bond0 +19 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_eth0 +10 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_ib0 +8 -0
- data/spec/fixtures/unit/util/ip/linux_get_single_interface_lo +9 -0
- data/spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface +18 -0
- data/spec/fixtures/unit/util/ip/linux_ifconfig_ib0 +8 -0
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces +8 -0
- data/spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface +3 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_all_interfaces +12 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface +7 -0
- data/spec/fixtures/unit/util/ip/windows_netsh_single_interface6 +18 -0
- data/spec/fixtures/unit/util/manufacturer/freebsd_dmidecode +42 -0
- data/spec/fixtures/unit/util/manufacturer/intel_linux_dmidecode +549 -0
- data/spec/fixtures/unit/util/manufacturer/linux_dmidecode_with_spaces +60 -0
- data/spec/fixtures/unit/util/manufacturer/opensolaris_smbios +33 -0
- data/spec/fixtures/unit/util/manufacturer/smartos_smbios +533 -0
- data/spec/fixtures/unit/util/manufacturer/solaris_sunfire_v120_prtdiag +33 -0
- data/spec/fixtures/unit/util/manufacturer/solaris_t5220_prtdiag +136 -0
- data/spec/fixtures/unit/util/operatingsystem/cumuluslinux.txt +8 -0
- data/spec/fixtures/unit/util/operatingsystem/redhat-7.txt +12 -0
- data/spec/fixtures/unit/util/operatingsystem/sabayon.txt +7 -0
- data/spec/fixtures/unit/util/operatingsystem/wheezy.txt +9 -0
- data/spec/fixtures/unit/util/partitions/partitions/mount +9 -0
- data/spec/fixtures/unit/util/processor/solaris-i86pc +28 -0
- data/spec/fixtures/unit/util/processor/solaris-sun4u +151 -0
- data/spec/fixtures/unit/util/processor/x86-pentium2 +41 -0
- data/spec/fixtures/unit/util/uptime/kstat_boot_time +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_darwin +1 -0
- data/spec/fixtures/unit/util/uptime/sysctl_kern_boottime_openbsd +1 -0
- data/spec/fixtures/unit/util/uptime/ubuntu_proc_uptime +1 -0
- data/spec/fixtures/unit/util/virtual/invalid_unicode_dmi_entries +0 -0
- data/spec/fixtures/unit/util/virtual/solaris10_proc_self_status1 +0 -0
- data/spec/fixtures/unit/util/vlans/centos-5-no-vlans +2 -0
- data/spec/fixtures/unit/util/vlans/linux_vlan_config +6 -0
- data/spec/fixtures/unit/util/xendomains/xendomains +4 -0
- data/spec/fixtures/unit/virtual/sysfs_dmi_entries_raw.txt +0 -0
- data/spec/fixtures/unit/zfs_version/freebsd_8.2 +14 -0
- data/spec/fixtures/unit/zfs_version/freebsd_9.0 +13 -0
- data/spec/fixtures/unit/zfs_version/linux-fuse_0.6.9 +14 -0
- data/spec/fixtures/unit/zfs_version/solaris_10 +10 -0
- data/spec/fixtures/unit/zfs_version/solaris_11 +12 -0
- data/spec/fixtures/unit/zpool_version/freebsd_8.2 +26 -0
- data/spec/fixtures/unit/zpool_version/freebsd_9.0 +38 -0
- data/spec/fixtures/unit/zpool_version/linux-fuse_0.6.9 +35 -0
- data/spec/fixtures/unit/zpool_version/solaris_10 +31 -0
- data/spec/fixtures/unit/zpool_version/solaris_11 +43 -0
- data/spec/fixtures/virtual/proc_1_cgroup/in_a_container +9 -0
- data/spec/fixtures/virtual/proc_1_cgroup/in_a_docker_container +8 -0
- data/spec/fixtures/virtual/proc_1_cgroup/not_in_a_container +9 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/guest +37 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_1/host +36 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/guest +39 -0
- data/spec/fixtures/virtual/proc_self_status/vserver_2_3/host +39 -0
- data/spec/integration/facter_spec.rb +39 -0
- data/spec/lib/facter_spec/cpuinfo.rb +15 -0
- data/spec/lib/facter_spec/windows_network.rb +64 -0
- data/spec/puppetlabs_spec/files.rb +57 -0
- data/spec/puppetlabs_spec/fixtures.rb +49 -0
- data/spec/puppetlabs_spec/matchers.rb +87 -0
- data/spec/puppetlabs_spec/verbose.rb +9 -0
- data/spec/puppetlabs_spec_helper.rb +26 -0
- data/spec/shared_contexts/platform.rb +55 -0
- data/spec/shared_formats/parses.rb +3 -0
- data/spec/spec_helper.rb +75 -0
- data/spec/unit/application_spec.rb +101 -0
- data/spec/unit/architecture_spec.rb +63 -0
- data/spec/unit/blockdevices_spec.rb +109 -0
- data/spec/unit/core/aggregate_spec.rb +125 -0
- data/spec/unit/core/directed_graph_spec.rb +79 -0
- data/spec/unit/core/execution/base_spec.rb +130 -0
- data/spec/unit/core/execution/posix_spec.rb +86 -0
- data/spec/unit/core/execution/windows_spec.rb +106 -0
- data/spec/unit/core/execution_spec.rb +42 -0
- data/spec/unit/core/logging_spec.rb +104 -0
- data/spec/unit/core/resolvable_spec.rb +81 -0
- data/spec/unit/core/suitable_spec.rb +106 -0
- data/spec/unit/dhcp_servers_spec.rb +152 -0
- data/spec/unit/domain_spec.rb +310 -0
- data/spec/unit/ec2/rest_spec.rb +145 -0
- data/spec/unit/ec2_spec.rb +127 -0
- data/spec/unit/facter_spec.rb +108 -0
- data/spec/unit/filesystems_spec.rb +50 -0
- data/spec/unit/fqdn_spec.rb +16 -0
- data/spec/unit/gce/metadata_spec.rb +49 -0
- data/spec/unit/gce_spec.rb +34 -0
- data/spec/unit/hardwareisa_spec.rb +41 -0
- data/spec/unit/hardwaremodel_spec.rb +56 -0
- data/spec/unit/hostname_spec.rb +40 -0
- data/spec/unit/id_spec.rb +29 -0
- data/spec/unit/interfaces_spec.rb +57 -0
- data/spec/unit/ipaddress6_spec.rb +161 -0
- data/spec/unit/ipaddress_spec.rb +114 -0
- data/spec/unit/kernel_spec.rb +24 -0
- data/spec/unit/kernelmajversion_spec.rb +22 -0
- data/spec/unit/kernelrelease_spec.rb +69 -0
- data/spec/unit/kernelversion_spec.rb +32 -0
- data/spec/unit/ldom_spec.rb +75 -0
- data/spec/unit/lsbdistcodename_spec.rb +25 -0
- data/spec/unit/lsbdistdescription_spec.rb +25 -0
- data/spec/unit/lsbdistid_spec.rb +25 -0
- data/spec/unit/lsbdistrelease_spec.rb +25 -0
- data/spec/unit/lsbmajdistrelease_spec.rb +13 -0
- data/spec/unit/lsbrelease_spec.rb +25 -0
- data/spec/unit/macaddress_spec.rb +73 -0
- data/spec/unit/manufacturer_spec.rb +115 -0
- data/spec/unit/memory_spec.rb +470 -0
- data/spec/unit/netmask_spec.rb +106 -0
- data/spec/unit/operatingsystem_spec.rb +160 -0
- data/spec/unit/operatingsystemmajrelease_spec.rb +38 -0
- data/spec/unit/operatingsystemrelease_spec.rb +236 -0
- data/spec/unit/osfamily_spec.rb +62 -0
- data/spec/unit/partitions_spec.rb +48 -0
- data/spec/unit/physicalprocessorcount_spec.rb +85 -0
- data/spec/unit/processor_spec.rb +401 -0
- data/spec/unit/ps_spec.rb +42 -0
- data/spec/unit/selinux_spec.rb +114 -0
- data/spec/unit/ssh_spec.rb +77 -0
- data/spec/unit/uniqueid_spec.rb +27 -0
- data/spec/unit/uptime_spec.rb +110 -0
- data/spec/unit/util/collection_spec.rb +258 -0
- data/spec/unit/util/config_spec.rb +97 -0
- data/spec/unit/util/confine_spec.rb +148 -0
- data/spec/unit/util/dhcp_servers_spec.rb +63 -0
- data/spec/unit/util/directory_loader_spec.rb +88 -0
- data/spec/unit/util/ec2_spec.rb +184 -0
- data/spec/unit/util/fact_spec.rb +142 -0
- data/spec/unit/util/file_read_spec.rb +29 -0
- data/spec/unit/util/formatter_spec.rb +50 -0
- data/spec/unit/util/ip/windows_spec.rb +80 -0
- data/spec/unit/util/ip_spec.rb +467 -0
- data/spec/unit/util/loader_spec.rb +286 -0
- data/spec/unit/util/macaddress_spec.rb +141 -0
- data/spec/unit/util/macosx_spec.rb +114 -0
- data/spec/unit/util/manufacturer_spec.rb +223 -0
- data/spec/unit/util/normalization_spec.rb +113 -0
- data/spec/unit/util/operatingsystem_spec.rb +92 -0
- data/spec/unit/util/parser_spec.rb +200 -0
- data/spec/unit/util/partitions/partitions_spec.rb +67 -0
- data/spec/unit/util/partitions_spec.rb +19 -0
- data/spec/unit/util/posix_spec.rb +11 -0
- data/spec/unit/util/processor_spec.rb +92 -0
- data/spec/unit/util/registry_spec.rb +76 -0
- data/spec/unit/util/resolution_spec.rb +129 -0
- data/spec/unit/util/solaris_zones_spec.rb +127 -0
- data/spec/unit/util/uptime_spec.rb +126 -0
- data/spec/unit/util/values_spec.rb +171 -0
- data/spec/unit/util/virtual_spec.rb +364 -0
- data/spec/unit/util/vlans_spec.rb +42 -0
- data/spec/unit/util/wmi_spec.rb +19 -0
- data/spec/unit/util/xendomains_spec.rb +21 -0
- data/spec/unit/version_spec.rb +42 -0
- data/spec/unit/virtual_spec.rb +519 -0
- data/spec/unit/zfs_version_spec.rb +75 -0
- data/spec/unit/zonename_spec.rb +14 -0
- data/spec/unit/zones_spec.rb +55 -0
- data/spec/unit/zpool_version_spec.rb +75 -0
- data/spec/watchr.rb +125 -0
- metadata +815 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
|
2
|
+
inet 127.0.0.1 netmask ff000000
|
3
|
+
hme0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
|
4
|
+
inet 192.168.2.83 netmask ffffff00 broadcast 192.168.2.255
|
5
|
+
ether 8:0:20:d1:6d:79
|
6
|
+
lo0: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
|
7
|
+
inet6 ::1/128
|
8
|
+
hme0: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
|
9
|
+
inet6 fe80::a00:20ff:fed1:6d79/10
|
10
|
+
ether 8:0:20:d1:6d:79
|
11
|
+
hme0:1: flags=2080841<UP,RUNNING,MULTICAST,ADDRCONF,IPv6> mtu 1500 index 2
|
12
|
+
inet6 2404:130:0:1000:a00:20ff:fed1:6d79/64
|
@@ -0,0 +1,20 @@
|
|
1
|
+
lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
|
2
|
+
inet 127.0.0.1 netmask ff000000
|
3
|
+
bge0: flags=1100943<UP,BROADCAST,RUNNING,PROMISC,MULTICAST,ROUTER,IPv4> mtu 1500 index 2
|
4
|
+
inet 202.78.241.97 netmask fffffff8 broadcast 202.78.241.103
|
5
|
+
ether 0:1e:c9:43:55:f9
|
6
|
+
int0: flags=1100843<UP,BROADCAST,RUNNING,MULTICAST,ROUTER,IPv4> mtu 9000 index 3
|
7
|
+
inet 172.31.255.254 netmask ffffff00 broadcast 172.31.255.255
|
8
|
+
ether 2:8:20:89:75:75
|
9
|
+
lo0: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
|
10
|
+
inet6 ::1/128
|
11
|
+
bge0: flags=2100941<UP,RUNNING,PROMISC,MULTICAST,ROUTER,IPv6> mtu 1500 index 2
|
12
|
+
inet6 fe80::ff:0/10
|
13
|
+
ether 0:1e:c9:43:55:f9
|
14
|
+
bge0:1: flags=2180941<UP,RUNNING,PROMISC,MULTICAST,ADDRCONF,ROUTER,IPv6> mtu 1500 index 2
|
15
|
+
inet6 2404:130:40:10::ff:0/64
|
16
|
+
int0: flags=2100841<UP,RUNNING,MULTICAST,ROUTER,IPv6> mtu 9000 index 3
|
17
|
+
inet6 fe80::ff:0/10
|
18
|
+
ether 2:8:20:89:75:75
|
19
|
+
int0:1: flags=2180841<UP,RUNNING,MULTICAST,ADDRCONF,ROUTER,IPv6> mtu 9000 index 3
|
20
|
+
inet6 2404:130:40:18::ff:0/64
|
@@ -0,0 +1,11 @@
|
|
1
|
+
bridge0: flags=41
|
2
|
+
groups: bridge
|
3
|
+
priority 32768 hellotime 2 fwddelay 15 maxage 20 holdcnt 6 proto rstp
|
4
|
+
vlan1 flags=3
|
5
|
+
port 5 ifpriority 0 ifcost 0
|
6
|
+
em0 flags=7
|
7
|
+
port 1 ifpriority 0 ifcost 0
|
8
|
+
block out on em0 src 00:24:21:ef:1b:de
|
9
|
+
pflog0: flags=41 mtu 33152
|
10
|
+
priority: 0
|
11
|
+
groups: pflog
|
@@ -0,0 +1,10 @@
|
|
1
|
+
lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
|
2
|
+
inet 127.0.0.1 netmask ff000000
|
3
|
+
bge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
|
4
|
+
inet 131.252.209.59 netmask ffffff00 broadcast 131.252.209.255
|
5
|
+
lo0: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
|
6
|
+
inet6 ::1/128
|
7
|
+
bge0: flags=2000841<UP,RUNNING,MULTICAST,IPv6> mtu 1500 index 2
|
8
|
+
inet6 fe80::203:baff:fe27:a7c/10
|
9
|
+
bge0:1: flags=2080841<UP,RUNNING,MULTICAST,ADDRCONF,IPv6> mtu 1500 index 2
|
10
|
+
inet6 2610:10:20:209:203:baff:fe27:a7c/64
|
@@ -0,0 +1,38 @@
|
|
1
|
+
ath0 Link encap:Ethernet HWaddr 00:17:F2:49:E0:E6
|
2
|
+
inet6 addr: fe80::217:f2ff:fe49:e0e6/64 Scope:Link
|
3
|
+
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
|
4
|
+
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
|
5
|
+
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
|
6
|
+
collisions:0 txqueuelen:0
|
7
|
+
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
|
8
|
+
|
9
|
+
ath0:avah Link encap:Ethernet HWaddr 00:17:F2:49:E0:E6
|
10
|
+
inet addr:169.254.10.213 Bcast:169.254.255.255 Mask:255.255.0.0
|
11
|
+
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
|
12
|
+
|
13
|
+
eth0 Link encap:Ethernet HWaddr 00:16:CB:A6:D4:3A
|
14
|
+
inet addr:100.100.106.200 Bcast:100.100.106.255 Mask:255.255.255.0
|
15
|
+
inet6 addr: fe80::216:cbff:fea6:d43a/64 Scope:Link
|
16
|
+
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
|
17
|
+
RX packets:1070 errors:0 dropped:0 overruns:0 frame:0
|
18
|
+
TX packets:236 errors:0 dropped:0 overruns:0 carrier:0
|
19
|
+
collisions:0 txqueuelen:1000
|
20
|
+
RX bytes:69905 (68.2 KiB) TX bytes:28435 (27.7 KiB)
|
21
|
+
Interrupt:17
|
22
|
+
|
23
|
+
lo Link encap:Local Loopback
|
24
|
+
inet addr:127.0.0.1 Mask:255.0.0.0
|
25
|
+
inet6 addr: ::1/128 Scope:Host
|
26
|
+
UP LOOPBACK RUNNING MTU:16436 Metric:1
|
27
|
+
RX packets:33 errors:0 dropped:0 overruns:0 frame:0
|
28
|
+
TX packets:33 errors:0 dropped:0 overruns:0 carrier:0
|
29
|
+
collisions:0 txqueuelen:0
|
30
|
+
RX bytes:3067 (2.9 KiB) TX bytes:3067 (2.9 KiB)
|
31
|
+
|
32
|
+
wifi0 Link encap:UNSPEC HWaddr 00-17-F2-49-E0-E6-00-00-00-00-00-00-00-00-00-00
|
33
|
+
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
|
34
|
+
RX packets:2655 errors:0 dropped:0 overruns:0 frame:24795
|
35
|
+
TX packets:193 errors:0 dropped:0 overruns:0 carrier:0
|
36
|
+
collisions:0 txqueuelen:199
|
37
|
+
RX bytes:754290 (736.6 KiB) TX bytes:8878 (8.6 KiB)
|
38
|
+
Interrupt:16
|
@@ -0,0 +1,9 @@
|
|
1
|
+
eth0 Link encap:Ethernet HWaddr 00:16:CB:A6:D4:3A
|
2
|
+
inet addr:100.100.106.200 Bcast:100.100.106.255 Mask:255.255.255.0
|
3
|
+
inet6 addr: fe80::216:cbff:fea6:d43a/64 Scope:Link
|
4
|
+
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
|
5
|
+
RX packets:1131 errors:0 dropped:0 overruns:0 frame:0
|
6
|
+
TX packets:280 errors:0 dropped:0 overruns:0 carrier:0
|
7
|
+
collisions:0 txqueuelen:1000
|
8
|
+
RX bytes:73859 (72.1 KiB) TX bytes:35243 (34.4 KiB)
|
9
|
+
Interrupt:17
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Routing tables
|
2
|
+
|
3
|
+
Internet:
|
4
|
+
Destination Gateway Flags Refs Use Netif Expire
|
5
|
+
default 100.100.104.1 UGSc 21 0 en0
|
6
|
+
100.100.104/24 link#4 UCS 11 0 en0
|
7
|
+
100.100.104.1 0:26:f1:23:2d:0 UHLWI 21 70927 en0 1188
|
8
|
+
100.100.104.12 127.0.0.1 UHS 2 109 lo0
|
9
|
+
100.100.104.16 0:1d:4f:44:cf:8 UHLWI 0 1369 en0 700
|
10
|
+
100.100.104.48 0:1d:4f:45:5a:8c UHLWI 0 2 en0 1173
|
11
|
+
100.100.104.52 0:1d:4f:44:ef:e0 UHLWI 0 184 en0 543
|
12
|
+
100.100.104.62 0:1d:4f:45:5f:8c UHLWI 0 4 en0 478
|
13
|
+
100.100.104.67 0:1d:4f:45:97:2c UHLWI 0 75 en0 851
|
14
|
+
100.100.104.71 0:1d:4f:45:4a:b4 UHLWI 0 12 en0 890
|
15
|
+
100.100.104.76 0:1d:4f:45:99:a8 UHLWI 0 2 en0 1056
|
16
|
+
100.100.104.154 0:25:64:c1:d6:35 UHLWI 0 2640 en0 1200
|
17
|
+
100.100.104.157 0:25:64:c1:cf:67 UHLWI 0 1 en0 1054
|
18
|
+
100.100.104.255 ff:ff:ff:ff:ff:ff UHLWbI 0 2 en0
|
19
|
+
127 127.0.0.1 UCS 0 0 lo0
|
20
|
+
127.0.0.1 127.0.0.1 UH 0 10 lo0
|
21
|
+
169.254 link#4 UCS 0 0 en0
|
22
|
+
172.16.95/24 link#7 UC 0 0 vmnet8
|
23
|
+
172.16.201/24 link#8 UC 0 0 vmnet1
|
24
|
+
|
25
|
+
Internet6:
|
26
|
+
Destination Gateway Flags Netif Expire
|
27
|
+
::1 ::1 UH lo0
|
28
|
+
fe80::%lo0/64 fe80::1%lo0 Uc lo0
|
29
|
+
fe80::1%lo0 link#1 UHL lo0
|
30
|
+
fe80::%en0/64 link#4 UC en0
|
31
|
+
fe80::217:f2ff:fe06:e3c2%en0 0:17:f2:6:e3:c2 UHL lo0
|
32
|
+
ff01::/32 ::1 Um lo0
|
33
|
+
ff02::/32 ::1 UmC lo0
|
34
|
+
ff02::/32 link#4 UmC en0
|
35
|
+
ff02::fb link#4 UHmLW en0
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Routing tables
|
2
|
+
|
3
|
+
Internet:
|
4
|
+
Destination Gateway Flags Refs Use Netif Expire
|
5
|
+
default imana.puppetlabs.l UGSc 18 0 en1
|
6
|
+
127 localhost UCS 0 0 lo0
|
7
|
+
localhost localhost UH 2 161629 lo0
|
8
|
+
169.254 link#5 UCS 0 0 en1
|
9
|
+
172.16.38/24 link#9 UC 1 0 vmnet8
|
10
|
+
172.16.38.255 ff:ff:ff:ff:ff:ff UHLWbI 1 2 vmnet8
|
11
|
+
172.16.135/24 link#8 UC 1 0 vmnet1
|
12
|
+
172.16.135.255 ff:ff:ff:ff:ff:ff UHLWbI 0 2 vmnet1
|
13
|
+
192.168.100 link#5 UCS 17 0 en1
|
14
|
+
imana.puppetlabs.l 0:25:bc:e2:e:56 UHLWI 9 12 en1 1145
|
15
|
+
odys-iphone.puppet 5c:59:48:16:37:86 UHLWI 0 0 en1 1159
|
16
|
+
reinh.puppetlabs.l localhost UHS 0 0 lo0
|
17
|
+
192.168.100.255 ff:ff:ff:ff:ff:ff UHLWbI 0 2 en1
|
18
|
+
|
19
|
+
Internet6:
|
20
|
+
Destination Gateway Flags Netif Expire
|
21
|
+
localhost localhost UH lo0
|
22
|
+
fe80::%lo0 localhost Uc lo0
|
23
|
+
localhost link#1 UHL lo0
|
24
|
+
fe80::%en1 link#5 UC en1
|
25
|
+
fe80::226:b0ff:fef 0:26:b0:f9:ef:cb UHLW en1
|
26
|
+
reinh.local 58:b0:35:7f:25:b3 UHL lo0
|
27
|
+
ff01:: localhost Um lo0
|
28
|
+
ff02:: localhost UmC lo0
|
29
|
+
ff02:: link#5 UmC en1
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Routing tables
|
2
|
+
|
3
|
+
Internet:
|
4
|
+
Destination Gateway Flags Refs Use Netif Expire
|
5
|
+
default 192.168.1.254 UGSc 38 0 en1
|
6
|
+
127 127.0.0.1 UCS 0 0 lo0
|
7
|
+
127.0.0.1 127.0.0.1 UH 14 1044474 lo0
|
8
|
+
169.254 link#5 UCS 0 0 en1
|
9
|
+
192.168.1 link#5 UCS 2 0 en1
|
10
|
+
192.168.1.207 127.0.0.1 UHS 0 1 lo0
|
11
|
+
192.168.1.220 e0:f8:47:98:85:71 UHLWI 0 0 en1 135
|
12
|
+
192.168.1.254 0:4:ed:66:13:cc UHLWI 42 134 en1 1158
|
13
|
+
|
14
|
+
Internet6:
|
15
|
+
Destination Gateway Flags Netif Expire
|
16
|
+
default 2000:44b4:61::16e UGSc tun0
|
17
|
+
::1 ::1 UH lo0
|
18
|
+
2000:44b4:61::16e 2000:44b4:61::16f UH tun0
|
19
|
+
2000:44b4:61::16f link#9 UHL lo0
|
20
|
+
2000:44b4:62:480::/64 link#5 UC en1
|
21
|
+
2000:44b4:62:480::/60 ::1 UGSc lo0
|
22
|
+
2000:44b4:62:480::1 0:25:0:48:19:ef UHL lo0
|
23
|
+
fe80::%lo0/64 fe80::1%lo0 Uc lo0
|
24
|
+
fe80::1%lo0 link#1 UHL lo0
|
25
|
+
fe80::%en1/64 link#5 UC en1
|
26
|
+
fe80::225:ff:fe48:19ef%en1 0:25:0:48:19:ef UHL lo0
|
27
|
+
fe80::a00:27ff:fe02:bcb5%en1 8:0:27:2:bc:b5 UHLW en1
|
28
|
+
fe80::a932:c76f:9c2e:ead8%en1 0:1e:2a:b3:9b:66 UHLW en1
|
29
|
+
fe80::e2f8:47ff:fe98:8571%en1 e0:f8:47:98:85:71 UHLW en1
|
30
|
+
fe80::225:4bff:feca:5672%tun0 link#9 UHL lo0
|
31
|
+
ff01::/32 ::1 Um lo0
|
32
|
+
ff02::/32 ::1 UmC lo0
|
33
|
+
ff02::/32 link#5 UmC en1
|
34
|
+
ff02::/32 fe80::225:4bff:feca:5672%tun0 UmC tun0
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Routing tables
|
2
|
+
|
3
|
+
Internet:
|
4
|
+
Destination Gateway Flags Refs Use Netif Expire
|
5
|
+
default 100.100.107.1 UGSc 25 45789 en0
|
6
|
+
100.100.107/24 link#4 UCS 3 0 en0
|
7
|
+
100.100.107.1 0:26:f1:23:2d:0 UHLW 25 212733 en0 687
|
8
|
+
100.100.107.4 127.0.0.1 UHS 0 332 lo0
|
9
|
+
100.100.107.6 0:17:f2:6:e3:b0 UHLW 0 633 en0 1168
|
10
|
+
100.100.107.255 ff:ff:ff:ff:ff:ff UHLWb 0 6 en0
|
11
|
+
127 127.0.0.1 UCS 0 0 lo0
|
12
|
+
127.0.0.1 127.0.0.1 UH 3 230 lo0
|
13
|
+
169.254 link#4 UCS 0 0 en0
|
14
|
+
192.168.61 link#8 UC 1 0 vmnet1
|
15
|
+
192.168.61.255 ff:ff:ff:ff:ff:ff UHLWb 0 6 vmnet1
|
16
|
+
192.168.210 link#7 UC 1 0 vmnet8
|
17
|
+
192.168.210.255 ff:ff:ff:ff:ff:ff UHLWb 0 6 vmnet8
|
18
|
+
|
19
|
+
Internet6:
|
20
|
+
Destination Gateway Flags Netif Expire
|
21
|
+
::1 link#1 UHL lo0
|
22
|
+
fe80::%lo0/64 fe80::1%lo0 Uc lo0
|
23
|
+
fe80::1%lo0 link#1 UHL lo0
|
24
|
+
fe80::%en0/64 link#4 UC en0
|
25
|
+
fe80::217:f2ff:fe06:e42e%en0 0:17:f2:6:e4:2e UHL lo0
|
26
|
+
ff01::/32 ::1 U lo0
|
27
|
+
ff02::/32 fe80::1%lo0 UC lo0
|
28
|
+
ff02::/32 link#4 UC en0
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Kernel IP routing table
|
2
|
+
Destination Gateway Genmask Flags MSS Window irtt Iface
|
3
|
+
172.16.131.0 0.0.0.0 255.255.255.0 U 0 0 0 vmnet1
|
4
|
+
192.168.183.0 0.0.0.0 255.255.255.0 U 0 0 0 vmnet8
|
5
|
+
100.100.108.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
|
6
|
+
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
|
7
|
+
0.0.0.0 100.100.108.1 0.0.0.0 UG 0 0 0 eth0
|
@@ -0,0 +1,16 @@
|
|
1
|
+
Routing Table: IPv4
|
2
|
+
Destination Gateway Flags Ref Use Interface
|
3
|
+
-------------------- -------------------- ----- ----- ---------- ---------
|
4
|
+
default 192.168.2.1 UG 1 10
|
5
|
+
192.168.2.0 192.168.2.83 U 1 1022 hme0
|
6
|
+
224.0.0.0 192.168.2.83 U 1 0 hme0
|
7
|
+
127.0.0.1 127.0.0.1 UH 1 0 lo0
|
8
|
+
|
9
|
+
Routing Table: IPv6
|
10
|
+
Destination/Mask Gateway Flags Ref Use If
|
11
|
+
--------------------------- --------------------------- ----- --- ------- -----
|
12
|
+
2404:130:0:1000::/64 2404:130:0:1000:a00:20ff:fed1:6d79 U 1 0 hme0:1
|
13
|
+
fe80::/10 fe80::a00:20ff:fed1:6d79 U 1 0 hme0
|
14
|
+
ff00::/8 fe80::a00:20ff:fed1:6d79 U 1 0 hme0
|
15
|
+
default fe80::214:22ff:fe0a:1c46 UG 1 0 hme0
|
16
|
+
::1 ::1 UH 1 140 lo0
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Routing Table: IPv4
|
2
|
+
Destination Gateway Flags Ref Use Interface
|
3
|
+
-------------------- -------------------- ----- ----- ---------- ---------
|
4
|
+
default 202.78.241.102 UG 4 56215415
|
5
|
+
127.0.0.1 127.0.0.1 UH 2 15396 lo0
|
6
|
+
172.31.255.0 172.31.255.254 U 12 62487076 int0
|
7
|
+
202.78.241.96 202.78.241.97 U 6 2213722 bge0
|
8
|
+
|
9
|
+
Routing Table: IPv6
|
10
|
+
Destination/Mask Gateway Flags Ref Use If
|
11
|
+
--------------------------- --------------------------- ----- --- ------- -----
|
12
|
+
::1 ::1 UH 2 4 lo0
|
13
|
+
2404:130:40:10::/64 2404:130:40:10::ff:0 U 4 1050430 bge0
|
14
|
+
2404:130:40:18::/64 2404:130:40:18::ff:0 U 4 1302106 int0
|
15
|
+
fe80::/10 fe80::ff:0 U 3 16283 int0
|
16
|
+
fe80::/10 fe80::ff:0 U 5 314822 bge0
|
17
|
+
default fe80::20d:edff:fe9d:782e UG 2 420100 bge0
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Kernel IP routing table
|
2
|
+
Destination Gateway Genmask Flags MSS Window irtt Iface
|
3
|
+
100.100.106.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
|
4
|
+
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 ath0
|
5
|
+
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
|
6
|
+
0.0.0.0 100.100.106.1 0.0.0.0 UG 0 0 0 eth0
|
7
|
+
0.0.0.0 0.0.0.0 0.0.0.0 U 0 0 0 ath0
|
@@ -0,0 +1,24 @@
|
|
1
|
+
0 on-line since 10/01/2012 21:05:55
|
2
|
+
1 on-line since 10/01/2012 21:06:00
|
3
|
+
2 on-line since 10/01/2012 21:06:00
|
4
|
+
3 on-line since 10/01/2012 21:06:00
|
5
|
+
4 on-line since 10/01/2012 21:06:00
|
6
|
+
5 on-line since 10/01/2012 21:06:00
|
7
|
+
6 on-line since 10/01/2012 21:06:00
|
8
|
+
7 on-line since 10/01/2012 21:06:00
|
9
|
+
8 on-line since 10/01/2012 21:06:00
|
10
|
+
9 on-line since 10/01/2012 21:06:00
|
11
|
+
10 on-line since 10/01/2012 21:06:00
|
12
|
+
11 on-line since 10/01/2012 21:06:00
|
13
|
+
12 on-line since 10/01/2012 21:06:01
|
14
|
+
13 on-line since 10/01/2012 21:06:01
|
15
|
+
14 on-line since 10/01/2012 21:06:01
|
16
|
+
15 on-line since 10/01/2012 21:06:01
|
17
|
+
16 on-line since 10/01/2012 21:06:01
|
18
|
+
17 on-line since 10/01/2012 21:06:01
|
19
|
+
18 on-line since 10/01/2012 21:06:01
|
20
|
+
19 on-line since 10/01/2012 21:06:01
|
21
|
+
20 on-line since 10/01/2012 21:06:01
|
22
|
+
21 on-line since 10/01/2012 21:06:01
|
23
|
+
22 on-line since 10/01/2012 21:06:01
|
24
|
+
23 on-line since 10/01/2012 21:06:01
|
@@ -0,0 +1,1216 @@
|
|
1
|
+
module: cpu_info instance: 0
|
2
|
+
name: cpu_info0 class: misc
|
3
|
+
brand UltraSPARC-T2
|
4
|
+
chip_id 0
|
5
|
+
clock_MHz 1165
|
6
|
+
core_id 516
|
7
|
+
cpu_fru hc:///component=
|
8
|
+
cpu_type sparcv9
|
9
|
+
crtime 23312660.5754132
|
10
|
+
current_clock_Hz 1165379264
|
11
|
+
device_ID 0
|
12
|
+
fpu_type sparcv9
|
13
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
14
|
+
pg_id 1
|
15
|
+
snaptime 23630289.0909192
|
16
|
+
state on-line
|
17
|
+
state_begin 1315099346
|
18
|
+
supported_frequencies_Hz 1165379264
|
19
|
+
|
20
|
+
module: cpu_info instance: 1
|
21
|
+
name: cpu_info1 class: misc
|
22
|
+
brand UltraSPARC-T2
|
23
|
+
chip_id 0
|
24
|
+
clock_MHz 1165
|
25
|
+
core_id 516
|
26
|
+
cpu_fru hc:///component=
|
27
|
+
cpu_type sparcv9
|
28
|
+
crtime 23312663.2806834
|
29
|
+
current_clock_Hz 1165379264
|
30
|
+
device_ID 1
|
31
|
+
fpu_type sparcv9
|
32
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
33
|
+
pg_id 1
|
34
|
+
snaptime 23630289.0927599
|
35
|
+
state on-line
|
36
|
+
state_begin 1315099348
|
37
|
+
supported_frequencies_Hz 1165379264
|
38
|
+
|
39
|
+
module: cpu_info instance: 2
|
40
|
+
name: cpu_info2 class: misc
|
41
|
+
brand UltraSPARC-T2
|
42
|
+
chip_id 0
|
43
|
+
clock_MHz 1165
|
44
|
+
core_id 516
|
45
|
+
cpu_fru hc:///component=
|
46
|
+
cpu_type sparcv9
|
47
|
+
crtime 23312663.2828084
|
48
|
+
current_clock_Hz 1165379264
|
49
|
+
device_ID 2
|
50
|
+
fpu_type sparcv9
|
51
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
52
|
+
pg_id 1
|
53
|
+
snaptime 23630289.0943224
|
54
|
+
state on-line
|
55
|
+
state_begin 1315099348
|
56
|
+
supported_frequencies_Hz 1165379264
|
57
|
+
|
58
|
+
module: cpu_info instance: 3
|
59
|
+
name: cpu_info3 class: misc
|
60
|
+
brand UltraSPARC-T2
|
61
|
+
chip_id 0
|
62
|
+
clock_MHz 1165
|
63
|
+
core_id 516
|
64
|
+
cpu_fru hc:///component=
|
65
|
+
cpu_type sparcv9
|
66
|
+
crtime 23312663.284967
|
67
|
+
current_clock_Hz 1165379264
|
68
|
+
device_ID 3
|
69
|
+
fpu_type sparcv9
|
70
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
71
|
+
pg_id 1
|
72
|
+
snaptime 23630289.0959092
|
73
|
+
state on-line
|
74
|
+
state_begin 1315099348
|
75
|
+
supported_frequencies_Hz 1165379264
|
76
|
+
|
77
|
+
module: cpu_info instance: 4
|
78
|
+
name: cpu_info4 class: misc
|
79
|
+
brand UltraSPARC-T2
|
80
|
+
chip_id 0
|
81
|
+
clock_MHz 1165
|
82
|
+
core_id 516
|
83
|
+
cpu_fru hc:///component=
|
84
|
+
cpu_type sparcv9
|
85
|
+
crtime 23312663.2869702
|
86
|
+
current_clock_Hz 1165379264
|
87
|
+
device_ID 4
|
88
|
+
fpu_type sparcv9
|
89
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
90
|
+
pg_id 4
|
91
|
+
snaptime 23630289.0974779
|
92
|
+
state on-line
|
93
|
+
state_begin 1315099348
|
94
|
+
supported_frequencies_Hz 1165379264
|
95
|
+
|
96
|
+
module: cpu_info instance: 5
|
97
|
+
name: cpu_info5 class: misc
|
98
|
+
brand UltraSPARC-T2
|
99
|
+
chip_id 0
|
100
|
+
clock_MHz 1165
|
101
|
+
core_id 516
|
102
|
+
cpu_fru hc:///component=
|
103
|
+
cpu_type sparcv9
|
104
|
+
crtime 23312663.2890495
|
105
|
+
current_clock_Hz 1165379264
|
106
|
+
device_ID 5
|
107
|
+
fpu_type sparcv9
|
108
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
109
|
+
pg_id 4
|
110
|
+
snaptime 23630289.0990405
|
111
|
+
state on-line
|
112
|
+
state_begin 1315099348
|
113
|
+
supported_frequencies_Hz 1165379264
|
114
|
+
|
115
|
+
module: cpu_info instance: 6
|
116
|
+
name: cpu_info6 class: misc
|
117
|
+
brand UltraSPARC-T2
|
118
|
+
chip_id 0
|
119
|
+
clock_MHz 1165
|
120
|
+
core_id 516
|
121
|
+
cpu_fru hc:///component=
|
122
|
+
cpu_type sparcv9
|
123
|
+
crtime 23312663.2911274
|
124
|
+
current_clock_Hz 1165379264
|
125
|
+
device_ID 6
|
126
|
+
fpu_type sparcv9
|
127
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
128
|
+
pg_id 4
|
129
|
+
snaptime 23630289.1006005
|
130
|
+
state on-line
|
131
|
+
state_begin 1315099348
|
132
|
+
supported_frequencies_Hz 1165379264
|
133
|
+
|
134
|
+
module: cpu_info instance: 7
|
135
|
+
name: cpu_info7 class: misc
|
136
|
+
brand UltraSPARC-T2
|
137
|
+
chip_id 0
|
138
|
+
clock_MHz 1165
|
139
|
+
core_id 516
|
140
|
+
cpu_fru hc:///component=
|
141
|
+
cpu_type sparcv9
|
142
|
+
crtime 23312663.2932203
|
143
|
+
current_clock_Hz 1165379264
|
144
|
+
device_ID 7
|
145
|
+
fpu_type sparcv9
|
146
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
147
|
+
pg_id 4
|
148
|
+
snaptime 23630289.1021675
|
149
|
+
state on-line
|
150
|
+
state_begin 1315099348
|
151
|
+
supported_frequencies_Hz 1165379264
|
152
|
+
|
153
|
+
module: cpu_info instance: 8
|
154
|
+
name: cpu_info8 class: misc
|
155
|
+
brand UltraSPARC-T2
|
156
|
+
chip_id 0
|
157
|
+
clock_MHz 1165
|
158
|
+
core_id 524
|
159
|
+
cpu_fru hc:///component=
|
160
|
+
cpu_type sparcv9
|
161
|
+
crtime 23312663.2953277
|
162
|
+
current_clock_Hz 1165379264
|
163
|
+
device_ID 8
|
164
|
+
fpu_type sparcv9
|
165
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
166
|
+
pg_id 5
|
167
|
+
snaptime 23630289.1037276
|
168
|
+
state on-line
|
169
|
+
state_begin 1315099348
|
170
|
+
supported_frequencies_Hz 1165379264
|
171
|
+
|
172
|
+
module: cpu_info instance: 9
|
173
|
+
name: cpu_info9 class: misc
|
174
|
+
brand UltraSPARC-T2
|
175
|
+
chip_id 0
|
176
|
+
clock_MHz 1165
|
177
|
+
core_id 524
|
178
|
+
cpu_fru hc:///component=
|
179
|
+
cpu_type sparcv9
|
180
|
+
crtime 23312663.2973458
|
181
|
+
current_clock_Hz 1165379264
|
182
|
+
device_ID 9
|
183
|
+
fpu_type sparcv9
|
184
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
185
|
+
pg_id 5
|
186
|
+
snaptime 23630289.1053163
|
187
|
+
state on-line
|
188
|
+
state_begin 1315099348
|
189
|
+
supported_frequencies_Hz 1165379264
|
190
|
+
|
191
|
+
module: cpu_info instance: 10
|
192
|
+
name: cpu_info10 class: misc
|
193
|
+
brand UltraSPARC-T2
|
194
|
+
chip_id 0
|
195
|
+
clock_MHz 1165
|
196
|
+
core_id 524
|
197
|
+
cpu_fru hc:///component=
|
198
|
+
cpu_type sparcv9
|
199
|
+
crtime 23312663.2993978
|
200
|
+
current_clock_Hz 1165379264
|
201
|
+
device_ID 10
|
202
|
+
fpu_type sparcv9
|
203
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
204
|
+
pg_id 5
|
205
|
+
snaptime 23630289.1068773
|
206
|
+
state on-line
|
207
|
+
state_begin 1315099348
|
208
|
+
supported_frequencies_Hz 1165379264
|
209
|
+
|
210
|
+
module: cpu_info instance: 11
|
211
|
+
name: cpu_info11 class: misc
|
212
|
+
brand UltraSPARC-T2
|
213
|
+
chip_id 0
|
214
|
+
clock_MHz 1165
|
215
|
+
core_id 524
|
216
|
+
cpu_fru hc:///component=
|
217
|
+
cpu_type sparcv9
|
218
|
+
crtime 23312663.3015554
|
219
|
+
current_clock_Hz 1165379264
|
220
|
+
device_ID 11
|
221
|
+
fpu_type sparcv9
|
222
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
223
|
+
pg_id 5
|
224
|
+
snaptime 23630289.1085511
|
225
|
+
state on-line
|
226
|
+
state_begin 1315099348
|
227
|
+
supported_frequencies_Hz 1165379264
|
228
|
+
|
229
|
+
module: cpu_info instance: 12
|
230
|
+
name: cpu_info12 class: misc
|
231
|
+
brand UltraSPARC-T2
|
232
|
+
chip_id 0
|
233
|
+
clock_MHz 1165
|
234
|
+
core_id 524
|
235
|
+
cpu_fru hc:///component=
|
236
|
+
cpu_type sparcv9
|
237
|
+
crtime 23312663.3035692
|
238
|
+
current_clock_Hz 1165379264
|
239
|
+
device_ID 12
|
240
|
+
fpu_type sparcv9
|
241
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
242
|
+
pg_id 7
|
243
|
+
snaptime 23630289.1101482
|
244
|
+
state on-line
|
245
|
+
state_begin 1315099348
|
246
|
+
supported_frequencies_Hz 1165379264
|
247
|
+
|
248
|
+
module: cpu_info instance: 13
|
249
|
+
name: cpu_info13 class: misc
|
250
|
+
brand UltraSPARC-T2
|
251
|
+
chip_id 0
|
252
|
+
clock_MHz 1165
|
253
|
+
core_id 524
|
254
|
+
cpu_fru hc:///component=
|
255
|
+
cpu_type sparcv9
|
256
|
+
crtime 23312663.3058002
|
257
|
+
current_clock_Hz 1165379264
|
258
|
+
device_ID 13
|
259
|
+
fpu_type sparcv9
|
260
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
261
|
+
pg_id 7
|
262
|
+
snaptime 23630289.1117123
|
263
|
+
state on-line
|
264
|
+
state_begin 1315099348
|
265
|
+
supported_frequencies_Hz 1165379264
|
266
|
+
|
267
|
+
module: cpu_info instance: 14
|
268
|
+
name: cpu_info14 class: misc
|
269
|
+
brand UltraSPARC-T2
|
270
|
+
chip_id 0
|
271
|
+
clock_MHz 1165
|
272
|
+
core_id 524
|
273
|
+
cpu_fru hc:///component=
|
274
|
+
cpu_type sparcv9
|
275
|
+
crtime 23312663.3078818
|
276
|
+
current_clock_Hz 1165379264
|
277
|
+
device_ID 14
|
278
|
+
fpu_type sparcv9
|
279
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
280
|
+
pg_id 7
|
281
|
+
snaptime 23630289.1132754
|
282
|
+
state on-line
|
283
|
+
state_begin 1315099348
|
284
|
+
supported_frequencies_Hz 1165379264
|
285
|
+
|
286
|
+
module: cpu_info instance: 15
|
287
|
+
name: cpu_info15 class: misc
|
288
|
+
brand UltraSPARC-T2
|
289
|
+
chip_id 0
|
290
|
+
clock_MHz 1165
|
291
|
+
core_id 524
|
292
|
+
cpu_fru hc:///component=
|
293
|
+
cpu_type sparcv9
|
294
|
+
crtime 23312663.3099415
|
295
|
+
current_clock_Hz 1165379264
|
296
|
+
device_ID 15
|
297
|
+
fpu_type sparcv9
|
298
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
299
|
+
pg_id 7
|
300
|
+
snaptime 23630289.1148379
|
301
|
+
state on-line
|
302
|
+
state_begin 1315099348
|
303
|
+
supported_frequencies_Hz 1165379264
|
304
|
+
|
305
|
+
module: cpu_info instance: 16
|
306
|
+
name: cpu_info16 class: misc
|
307
|
+
brand UltraSPARC-T2
|
308
|
+
chip_id 0
|
309
|
+
clock_MHz 1165
|
310
|
+
core_id 531
|
311
|
+
cpu_fru hc:///component=
|
312
|
+
cpu_type sparcv9
|
313
|
+
crtime 23312663.3121222
|
314
|
+
current_clock_Hz 1165379264
|
315
|
+
device_ID 16
|
316
|
+
fpu_type sparcv9
|
317
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
318
|
+
pg_id 8
|
319
|
+
snaptime 23630289.1164032
|
320
|
+
state on-line
|
321
|
+
state_begin 1315099348
|
322
|
+
supported_frequencies_Hz 1165379264
|
323
|
+
|
324
|
+
module: cpu_info instance: 17
|
325
|
+
name: cpu_info17 class: misc
|
326
|
+
brand UltraSPARC-T2
|
327
|
+
chip_id 0
|
328
|
+
clock_MHz 1165
|
329
|
+
core_id 531
|
330
|
+
cpu_fru hc:///component=
|
331
|
+
cpu_type sparcv9
|
332
|
+
crtime 23312663.3144076
|
333
|
+
current_clock_Hz 1165379264
|
334
|
+
device_ID 17
|
335
|
+
fpu_type sparcv9
|
336
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
337
|
+
pg_id 8
|
338
|
+
snaptime 23630289.1179674
|
339
|
+
state on-line
|
340
|
+
state_begin 1315099348
|
341
|
+
supported_frequencies_Hz 1165379264
|
342
|
+
|
343
|
+
module: cpu_info instance: 18
|
344
|
+
name: cpu_info18 class: misc
|
345
|
+
brand UltraSPARC-T2
|
346
|
+
chip_id 0
|
347
|
+
clock_MHz 1165
|
348
|
+
core_id 531
|
349
|
+
cpu_fru hc:///component=
|
350
|
+
cpu_type sparcv9
|
351
|
+
crtime 23312663.3164902
|
352
|
+
current_clock_Hz 1165379264
|
353
|
+
device_ID 18
|
354
|
+
fpu_type sparcv9
|
355
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
356
|
+
pg_id 8
|
357
|
+
snaptime 23630289.119694
|
358
|
+
state on-line
|
359
|
+
state_begin 1315099348
|
360
|
+
supported_frequencies_Hz 1165379264
|
361
|
+
|
362
|
+
module: cpu_info instance: 19
|
363
|
+
name: cpu_info19 class: misc
|
364
|
+
brand UltraSPARC-T2
|
365
|
+
chip_id 0
|
366
|
+
clock_MHz 1165
|
367
|
+
core_id 531
|
368
|
+
cpu_fru hc:///component=
|
369
|
+
cpu_type sparcv9
|
370
|
+
crtime 23312663.3186612
|
371
|
+
current_clock_Hz 1165379264
|
372
|
+
device_ID 19
|
373
|
+
fpu_type sparcv9
|
374
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
375
|
+
pg_id 8
|
376
|
+
snaptime 23630289.1212498
|
377
|
+
state on-line
|
378
|
+
state_begin 1315099348
|
379
|
+
supported_frequencies_Hz 1165379264
|
380
|
+
|
381
|
+
module: cpu_info instance: 20
|
382
|
+
name: cpu_info20 class: misc
|
383
|
+
brand UltraSPARC-T2
|
384
|
+
chip_id 0
|
385
|
+
clock_MHz 1165
|
386
|
+
core_id 531
|
387
|
+
cpu_fru hc:///component=
|
388
|
+
cpu_type sparcv9
|
389
|
+
crtime 23312663.3208774
|
390
|
+
current_clock_Hz 1165379264
|
391
|
+
device_ID 20
|
392
|
+
fpu_type sparcv9
|
393
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
394
|
+
pg_id 10
|
395
|
+
snaptime 23630289.1228643
|
396
|
+
state on-line
|
397
|
+
state_begin 1315099348
|
398
|
+
supported_frequencies_Hz 1165379264
|
399
|
+
|
400
|
+
module: cpu_info instance: 21
|
401
|
+
name: cpu_info21 class: misc
|
402
|
+
brand UltraSPARC-T2
|
403
|
+
chip_id 0
|
404
|
+
clock_MHz 1165
|
405
|
+
core_id 531
|
406
|
+
cpu_fru hc:///component=
|
407
|
+
cpu_type sparcv9
|
408
|
+
crtime 23312663.3230514
|
409
|
+
current_clock_Hz 1165379264
|
410
|
+
device_ID 21
|
411
|
+
fpu_type sparcv9
|
412
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
413
|
+
pg_id 10
|
414
|
+
snaptime 23630289.1244296
|
415
|
+
state on-line
|
416
|
+
state_begin 1315099348
|
417
|
+
supported_frequencies_Hz 1165379264
|
418
|
+
|
419
|
+
module: cpu_info instance: 22
|
420
|
+
name: cpu_info22 class: misc
|
421
|
+
brand UltraSPARC-T2
|
422
|
+
chip_id 0
|
423
|
+
clock_MHz 1165
|
424
|
+
core_id 531
|
425
|
+
cpu_fru hc:///component=
|
426
|
+
cpu_type sparcv9
|
427
|
+
crtime 23312663.3252122
|
428
|
+
current_clock_Hz 1165379264
|
429
|
+
device_ID 22
|
430
|
+
fpu_type sparcv9
|
431
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
432
|
+
pg_id 10
|
433
|
+
snaptime 23630289.1260106
|
434
|
+
state on-line
|
435
|
+
state_begin 1315099348
|
436
|
+
supported_frequencies_Hz 1165379264
|
437
|
+
|
438
|
+
module: cpu_info instance: 23
|
439
|
+
name: cpu_info23 class: misc
|
440
|
+
brand UltraSPARC-T2
|
441
|
+
chip_id 0
|
442
|
+
clock_MHz 1165
|
443
|
+
core_id 531
|
444
|
+
cpu_fru hc:///component=
|
445
|
+
cpu_type sparcv9
|
446
|
+
crtime 23312663.3275665
|
447
|
+
current_clock_Hz 1165379264
|
448
|
+
device_ID 23
|
449
|
+
fpu_type sparcv9
|
450
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
451
|
+
pg_id 10
|
452
|
+
snaptime 23630289.1276002
|
453
|
+
state on-line
|
454
|
+
state_begin 1315099348
|
455
|
+
supported_frequencies_Hz 1165379264
|
456
|
+
|
457
|
+
module: cpu_info instance: 24
|
458
|
+
name: cpu_info24 class: misc
|
459
|
+
brand UltraSPARC-T2
|
460
|
+
chip_id 0
|
461
|
+
clock_MHz 1165
|
462
|
+
core_id 538
|
463
|
+
cpu_fru hc:///component=
|
464
|
+
cpu_type sparcv9
|
465
|
+
crtime 23312663.3297949
|
466
|
+
current_clock_Hz 1165379264
|
467
|
+
device_ID 24
|
468
|
+
fpu_type sparcv9
|
469
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
470
|
+
pg_id 11
|
471
|
+
snaptime 23630289.1291771
|
472
|
+
state on-line
|
473
|
+
state_begin 1315099348
|
474
|
+
supported_frequencies_Hz 1165379264
|
475
|
+
|
476
|
+
module: cpu_info instance: 25
|
477
|
+
name: cpu_info25 class: misc
|
478
|
+
brand UltraSPARC-T2
|
479
|
+
chip_id 0
|
480
|
+
clock_MHz 1165
|
481
|
+
core_id 538
|
482
|
+
cpu_fru hc:///component=
|
483
|
+
cpu_type sparcv9
|
484
|
+
crtime 23312663.3320294
|
485
|
+
current_clock_Hz 1165379264
|
486
|
+
device_ID 25
|
487
|
+
fpu_type sparcv9
|
488
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
489
|
+
pg_id 11
|
490
|
+
snaptime 23630289.1307659
|
491
|
+
state on-line
|
492
|
+
state_begin 1315099348
|
493
|
+
supported_frequencies_Hz 1165379264
|
494
|
+
|
495
|
+
module: cpu_info instance: 26
|
496
|
+
name: cpu_info26 class: misc
|
497
|
+
brand UltraSPARC-T2
|
498
|
+
chip_id 0
|
499
|
+
clock_MHz 1165
|
500
|
+
core_id 538
|
501
|
+
cpu_fru hc:///component=
|
502
|
+
cpu_type sparcv9
|
503
|
+
crtime 23312663.3342617
|
504
|
+
current_clock_Hz 1165379264
|
505
|
+
device_ID 26
|
506
|
+
fpu_type sparcv9
|
507
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
508
|
+
pg_id 11
|
509
|
+
snaptime 23630289.132355
|
510
|
+
state on-line
|
511
|
+
state_begin 1315099348
|
512
|
+
supported_frequencies_Hz 1165379264
|
513
|
+
|
514
|
+
module: cpu_info instance: 27
|
515
|
+
name: cpu_info27 class: misc
|
516
|
+
brand UltraSPARC-T2
|
517
|
+
chip_id 0
|
518
|
+
clock_MHz 1165
|
519
|
+
core_id 538
|
520
|
+
cpu_fru hc:///component=
|
521
|
+
cpu_type sparcv9
|
522
|
+
crtime 23312663.3364207
|
523
|
+
current_clock_Hz 1165379264
|
524
|
+
device_ID 27
|
525
|
+
fpu_type sparcv9
|
526
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
527
|
+
pg_id 11
|
528
|
+
snaptime 23630289.1339703
|
529
|
+
state on-line
|
530
|
+
state_begin 1315099348
|
531
|
+
supported_frequencies_Hz 1165379264
|
532
|
+
|
533
|
+
module: cpu_info instance: 28
|
534
|
+
name: cpu_info28 class: misc
|
535
|
+
brand UltraSPARC-T2
|
536
|
+
chip_id 0
|
537
|
+
clock_MHz 1165
|
538
|
+
core_id 538
|
539
|
+
cpu_fru hc:///component=
|
540
|
+
cpu_type sparcv9
|
541
|
+
crtime 23312663.3387068
|
542
|
+
current_clock_Hz 1165379264
|
543
|
+
device_ID 28
|
544
|
+
fpu_type sparcv9
|
545
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
546
|
+
pg_id 13
|
547
|
+
snaptime 23630289.1355427
|
548
|
+
state on-line
|
549
|
+
state_begin 1315099348
|
550
|
+
supported_frequencies_Hz 1165379264
|
551
|
+
|
552
|
+
module: cpu_info instance: 29
|
553
|
+
name: cpu_info29 class: misc
|
554
|
+
brand UltraSPARC-T2
|
555
|
+
chip_id 0
|
556
|
+
clock_MHz 1165
|
557
|
+
core_id 538
|
558
|
+
cpu_fru hc:///component=
|
559
|
+
cpu_type sparcv9
|
560
|
+
crtime 23312663.3410924
|
561
|
+
current_clock_Hz 1165379264
|
562
|
+
device_ID 29
|
563
|
+
fpu_type sparcv9
|
564
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
565
|
+
pg_id 13
|
566
|
+
snaptime 23630289.1371043
|
567
|
+
state on-line
|
568
|
+
state_begin 1315099348
|
569
|
+
supported_frequencies_Hz 1165379264
|
570
|
+
|
571
|
+
module: cpu_info instance: 30
|
572
|
+
name: cpu_info30 class: misc
|
573
|
+
brand UltraSPARC-T2
|
574
|
+
chip_id 0
|
575
|
+
clock_MHz 1165
|
576
|
+
core_id 538
|
577
|
+
cpu_fru hc:///component=
|
578
|
+
cpu_type sparcv9
|
579
|
+
crtime 23312663.343326
|
580
|
+
current_clock_Hz 1165379264
|
581
|
+
device_ID 30
|
582
|
+
fpu_type sparcv9
|
583
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
584
|
+
pg_id 13
|
585
|
+
snaptime 23630289.1387291
|
586
|
+
state on-line
|
587
|
+
state_begin 1315099348
|
588
|
+
supported_frequencies_Hz 1165379264
|
589
|
+
|
590
|
+
module: cpu_info instance: 31
|
591
|
+
name: cpu_info31 class: misc
|
592
|
+
brand UltraSPARC-T2
|
593
|
+
chip_id 0
|
594
|
+
clock_MHz 1165
|
595
|
+
core_id 538
|
596
|
+
cpu_fru hc:///component=
|
597
|
+
cpu_type sparcv9
|
598
|
+
crtime 23312663.3455326
|
599
|
+
current_clock_Hz 1165379264
|
600
|
+
device_ID 31
|
601
|
+
fpu_type sparcv9
|
602
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
603
|
+
pg_id 13
|
604
|
+
snaptime 23630289.1403642
|
605
|
+
state on-line
|
606
|
+
state_begin 1315099348
|
607
|
+
supported_frequencies_Hz 1165379264
|
608
|
+
|
609
|
+
module: cpu_info instance: 32
|
610
|
+
name: cpu_info32 class: misc
|
611
|
+
brand UltraSPARC-T2
|
612
|
+
chip_id 0
|
613
|
+
clock_MHz 1165
|
614
|
+
core_id 545
|
615
|
+
cpu_fru hc:///component=
|
616
|
+
cpu_type sparcv9
|
617
|
+
crtime 23312663.3477709
|
618
|
+
current_clock_Hz 1165379264
|
619
|
+
device_ID 32
|
620
|
+
fpu_type sparcv9
|
621
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
622
|
+
pg_id 14
|
623
|
+
snaptime 23630289.141927
|
624
|
+
state on-line
|
625
|
+
state_begin 1315099348
|
626
|
+
supported_frequencies_Hz 1165379264
|
627
|
+
|
628
|
+
module: cpu_info instance: 33
|
629
|
+
name: cpu_info33 class: misc
|
630
|
+
brand UltraSPARC-T2
|
631
|
+
chip_id 0
|
632
|
+
clock_MHz 1165
|
633
|
+
core_id 545
|
634
|
+
cpu_fru hc:///component=
|
635
|
+
cpu_type sparcv9
|
636
|
+
crtime 23312663.3502553
|
637
|
+
current_clock_Hz 1165379264
|
638
|
+
device_ID 33
|
639
|
+
fpu_type sparcv9
|
640
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
641
|
+
pg_id 14
|
642
|
+
snaptime 23630289.1435087
|
643
|
+
state on-line
|
644
|
+
state_begin 1315099348
|
645
|
+
supported_frequencies_Hz 1165379264
|
646
|
+
|
647
|
+
module: cpu_info instance: 34
|
648
|
+
name: cpu_info34 class: misc
|
649
|
+
brand UltraSPARC-T2
|
650
|
+
chip_id 0
|
651
|
+
clock_MHz 1165
|
652
|
+
core_id 545
|
653
|
+
cpu_fru hc:///component=
|
654
|
+
cpu_type sparcv9
|
655
|
+
crtime 23312663.3525534
|
656
|
+
current_clock_Hz 1165379264
|
657
|
+
device_ID 34
|
658
|
+
fpu_type sparcv9
|
659
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
660
|
+
pg_id 14
|
661
|
+
snaptime 23630289.1451002
|
662
|
+
state on-line
|
663
|
+
state_begin 1315099348
|
664
|
+
supported_frequencies_Hz 1165379264
|
665
|
+
|
666
|
+
module: cpu_info instance: 35
|
667
|
+
name: cpu_info35 class: misc
|
668
|
+
brand UltraSPARC-T2
|
669
|
+
chip_id 0
|
670
|
+
clock_MHz 1165
|
671
|
+
core_id 545
|
672
|
+
cpu_fru hc:///component=
|
673
|
+
cpu_type sparcv9
|
674
|
+
crtime 23312663.3548208
|
675
|
+
current_clock_Hz 1165379264
|
676
|
+
device_ID 35
|
677
|
+
fpu_type sparcv9
|
678
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
679
|
+
pg_id 14
|
680
|
+
snaptime 23630289.1466879
|
681
|
+
state on-line
|
682
|
+
state_begin 1315099348
|
683
|
+
supported_frequencies_Hz 1165379264
|
684
|
+
|
685
|
+
module: cpu_info instance: 36
|
686
|
+
name: cpu_info36 class: misc
|
687
|
+
brand UltraSPARC-T2
|
688
|
+
chip_id 0
|
689
|
+
clock_MHz 1165
|
690
|
+
core_id 545
|
691
|
+
cpu_fru hc:///component=
|
692
|
+
cpu_type sparcv9
|
693
|
+
crtime 23312663.3571762
|
694
|
+
current_clock_Hz 1165379264
|
695
|
+
device_ID 36
|
696
|
+
fpu_type sparcv9
|
697
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
698
|
+
pg_id 16
|
699
|
+
snaptime 23630289.1482783
|
700
|
+
state on-line
|
701
|
+
state_begin 1315099348
|
702
|
+
supported_frequencies_Hz 1165379264
|
703
|
+
|
704
|
+
module: cpu_info instance: 37
|
705
|
+
name: cpu_info37 class: misc
|
706
|
+
brand UltraSPARC-T2
|
707
|
+
chip_id 0
|
708
|
+
clock_MHz 1165
|
709
|
+
core_id 545
|
710
|
+
cpu_fru hc:///component=
|
711
|
+
cpu_type sparcv9
|
712
|
+
crtime 23312663.3594942
|
713
|
+
current_clock_Hz 1165379264
|
714
|
+
device_ID 37
|
715
|
+
fpu_type sparcv9
|
716
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
717
|
+
pg_id 16
|
718
|
+
snaptime 23630289.1498468
|
719
|
+
state on-line
|
720
|
+
state_begin 1315099348
|
721
|
+
supported_frequencies_Hz 1165379264
|
722
|
+
|
723
|
+
module: cpu_info instance: 38
|
724
|
+
name: cpu_info38 class: misc
|
725
|
+
brand UltraSPARC-T2
|
726
|
+
chip_id 0
|
727
|
+
clock_MHz 1165
|
728
|
+
core_id 545
|
729
|
+
cpu_fru hc:///component=
|
730
|
+
cpu_type sparcv9
|
731
|
+
crtime 23312663.3619156
|
732
|
+
current_clock_Hz 1165379264
|
733
|
+
device_ID 38
|
734
|
+
fpu_type sparcv9
|
735
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
736
|
+
pg_id 16
|
737
|
+
snaptime 23630289.1514097
|
738
|
+
state on-line
|
739
|
+
state_begin 1315099348
|
740
|
+
supported_frequencies_Hz 1165379264
|
741
|
+
|
742
|
+
module: cpu_info instance: 39
|
743
|
+
name: cpu_info39 class: misc
|
744
|
+
brand UltraSPARC-T2
|
745
|
+
chip_id 0
|
746
|
+
clock_MHz 1165
|
747
|
+
core_id 545
|
748
|
+
cpu_fru hc:///component=
|
749
|
+
cpu_type sparcv9
|
750
|
+
crtime 23312663.3641867
|
751
|
+
current_clock_Hz 1165379264
|
752
|
+
device_ID 39
|
753
|
+
fpu_type sparcv9
|
754
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
755
|
+
pg_id 16
|
756
|
+
snaptime 23630289.1529782
|
757
|
+
state on-line
|
758
|
+
state_begin 1315099348
|
759
|
+
supported_frequencies_Hz 1165379264
|
760
|
+
|
761
|
+
module: cpu_info instance: 40
|
762
|
+
name: cpu_info40 class: misc
|
763
|
+
brand UltraSPARC-T2
|
764
|
+
chip_id 0
|
765
|
+
clock_MHz 1165
|
766
|
+
core_id 552
|
767
|
+
cpu_fru hc:///component=
|
768
|
+
cpu_type sparcv9
|
769
|
+
crtime 23312663.3664573
|
770
|
+
current_clock_Hz 1165379264
|
771
|
+
device_ID 40
|
772
|
+
fpu_type sparcv9
|
773
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
774
|
+
pg_id 17
|
775
|
+
snaptime 23630289.1546012
|
776
|
+
state on-line
|
777
|
+
state_begin 1315099348
|
778
|
+
supported_frequencies_Hz 1165379264
|
779
|
+
|
780
|
+
module: cpu_info instance: 41
|
781
|
+
name: cpu_info41 class: misc
|
782
|
+
brand UltraSPARC-T2
|
783
|
+
chip_id 0
|
784
|
+
clock_MHz 1165
|
785
|
+
core_id 552
|
786
|
+
cpu_fru hc:///component=
|
787
|
+
cpu_type sparcv9
|
788
|
+
crtime 23312663.3689115
|
789
|
+
current_clock_Hz 1165379264
|
790
|
+
device_ID 41
|
791
|
+
fpu_type sparcv9
|
792
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
793
|
+
pg_id 17
|
794
|
+
snaptime 23630289.1561584
|
795
|
+
state on-line
|
796
|
+
state_begin 1315099348
|
797
|
+
supported_frequencies_Hz 1165379264
|
798
|
+
|
799
|
+
module: cpu_info instance: 42
|
800
|
+
name: cpu_info42 class: misc
|
801
|
+
brand UltraSPARC-T2
|
802
|
+
chip_id 0
|
803
|
+
clock_MHz 1165
|
804
|
+
core_id 552
|
805
|
+
cpu_fru hc:///component=
|
806
|
+
cpu_type sparcv9
|
807
|
+
crtime 23312663.3713041
|
808
|
+
current_clock_Hz 1165379264
|
809
|
+
device_ID 42
|
810
|
+
fpu_type sparcv9
|
811
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
812
|
+
pg_id 17
|
813
|
+
snaptime 23630289.1577271
|
814
|
+
state on-line
|
815
|
+
state_begin 1315099348
|
816
|
+
supported_frequencies_Hz 1165379264
|
817
|
+
|
818
|
+
module: cpu_info instance: 43
|
819
|
+
name: cpu_info43 class: misc
|
820
|
+
brand UltraSPARC-T2
|
821
|
+
chip_id 0
|
822
|
+
clock_MHz 1165
|
823
|
+
core_id 552
|
824
|
+
cpu_fru hc:///component=
|
825
|
+
cpu_type sparcv9
|
826
|
+
crtime 23312663.373675
|
827
|
+
current_clock_Hz 1165379264
|
828
|
+
device_ID 43
|
829
|
+
fpu_type sparcv9
|
830
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
831
|
+
pg_id 17
|
832
|
+
snaptime 23630289.1592959
|
833
|
+
state on-line
|
834
|
+
state_begin 1315099348
|
835
|
+
supported_frequencies_Hz 1165379264
|
836
|
+
|
837
|
+
module: cpu_info instance: 44
|
838
|
+
name: cpu_info44 class: misc
|
839
|
+
brand UltraSPARC-T2
|
840
|
+
chip_id 0
|
841
|
+
clock_MHz 1165
|
842
|
+
core_id 552
|
843
|
+
cpu_fru hc:///component=
|
844
|
+
cpu_type sparcv9
|
845
|
+
crtime 23312663.3760962
|
846
|
+
current_clock_Hz 1165379264
|
847
|
+
device_ID 44
|
848
|
+
fpu_type sparcv9
|
849
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
850
|
+
pg_id 19
|
851
|
+
snaptime 23630289.1608683
|
852
|
+
state on-line
|
853
|
+
state_begin 1315099348
|
854
|
+
supported_frequencies_Hz 1165379264
|
855
|
+
|
856
|
+
module: cpu_info instance: 45
|
857
|
+
name: cpu_info45 class: misc
|
858
|
+
brand UltraSPARC-T2
|
859
|
+
chip_id 0
|
860
|
+
clock_MHz 1165
|
861
|
+
core_id 552
|
862
|
+
cpu_fru hc:///component=
|
863
|
+
cpu_type sparcv9
|
864
|
+
crtime 23312663.3784792
|
865
|
+
current_clock_Hz 1165379264
|
866
|
+
device_ID 45
|
867
|
+
fpu_type sparcv9
|
868
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
869
|
+
pg_id 19
|
870
|
+
snaptime 23630289.1624495
|
871
|
+
state on-line
|
872
|
+
state_begin 1315099349
|
873
|
+
supported_frequencies_Hz 1165379264
|
874
|
+
|
875
|
+
module: cpu_info instance: 46
|
876
|
+
name: cpu_info46 class: misc
|
877
|
+
brand UltraSPARC-T2
|
878
|
+
chip_id 0
|
879
|
+
clock_MHz 1165
|
880
|
+
core_id 552
|
881
|
+
cpu_fru hc:///component=
|
882
|
+
cpu_type sparcv9
|
883
|
+
crtime 23312663.3809418
|
884
|
+
current_clock_Hz 1165379264
|
885
|
+
device_ID 46
|
886
|
+
fpu_type sparcv9
|
887
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
888
|
+
pg_id 19
|
889
|
+
snaptime 23630289.1640098
|
890
|
+
state on-line
|
891
|
+
state_begin 1315099349
|
892
|
+
supported_frequencies_Hz 1165379264
|
893
|
+
|
894
|
+
module: cpu_info instance: 47
|
895
|
+
name: cpu_info47 class: misc
|
896
|
+
brand UltraSPARC-T2
|
897
|
+
chip_id 0
|
898
|
+
clock_MHz 1165
|
899
|
+
core_id 552
|
900
|
+
cpu_fru hc:///component=
|
901
|
+
cpu_type sparcv9
|
902
|
+
crtime 23312663.3833624
|
903
|
+
current_clock_Hz 1165379264
|
904
|
+
device_ID 47
|
905
|
+
fpu_type sparcv9
|
906
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
907
|
+
pg_id 19
|
908
|
+
snaptime 23630289.1655756
|
909
|
+
state on-line
|
910
|
+
state_begin 1315099349
|
911
|
+
supported_frequencies_Hz 1165379264
|
912
|
+
|
913
|
+
module: cpu_info instance: 48
|
914
|
+
name: cpu_info48 class: misc
|
915
|
+
brand UltraSPARC-T2
|
916
|
+
chip_id 0
|
917
|
+
clock_MHz 1165
|
918
|
+
core_id 559
|
919
|
+
cpu_fru hc:///component=
|
920
|
+
cpu_type sparcv9
|
921
|
+
crtime 23312663.3857846
|
922
|
+
current_clock_Hz 1165379264
|
923
|
+
device_ID 48
|
924
|
+
fpu_type sparcv9
|
925
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
926
|
+
pg_id 20
|
927
|
+
snaptime 23630289.1671529
|
928
|
+
state on-line
|
929
|
+
state_begin 1315099349
|
930
|
+
supported_frequencies_Hz 1165379264
|
931
|
+
|
932
|
+
module: cpu_info instance: 49
|
933
|
+
name: cpu_info49 class: misc
|
934
|
+
brand UltraSPARC-T2
|
935
|
+
chip_id 0
|
936
|
+
clock_MHz 1165
|
937
|
+
core_id 559
|
938
|
+
cpu_fru hc:///component=
|
939
|
+
cpu_type sparcv9
|
940
|
+
crtime 23312663.3883379
|
941
|
+
current_clock_Hz 1165379264
|
942
|
+
device_ID 49
|
943
|
+
fpu_type sparcv9
|
944
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
945
|
+
pg_id 20
|
946
|
+
snaptime 23630289.1687334
|
947
|
+
state on-line
|
948
|
+
state_begin 1315099349
|
949
|
+
supported_frequencies_Hz 1165379264
|
950
|
+
|
951
|
+
module: cpu_info instance: 50
|
952
|
+
name: cpu_info50 class: misc
|
953
|
+
brand UltraSPARC-T2
|
954
|
+
chip_id 0
|
955
|
+
clock_MHz 1165
|
956
|
+
core_id 559
|
957
|
+
cpu_fru hc:///component=
|
958
|
+
cpu_type sparcv9
|
959
|
+
crtime 23312663.3908908
|
960
|
+
current_clock_Hz 1165379264
|
961
|
+
device_ID 50
|
962
|
+
fpu_type sparcv9
|
963
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
964
|
+
pg_id 20
|
965
|
+
snaptime 23630289.1703504
|
966
|
+
state on-line
|
967
|
+
state_begin 1315099349
|
968
|
+
supported_frequencies_Hz 1165379264
|
969
|
+
|
970
|
+
module: cpu_info instance: 51
|
971
|
+
name: cpu_info51 class: misc
|
972
|
+
brand UltraSPARC-T2
|
973
|
+
chip_id 0
|
974
|
+
clock_MHz 1165
|
975
|
+
core_id 559
|
976
|
+
cpu_fru hc:///component=
|
977
|
+
cpu_type sparcv9
|
978
|
+
crtime 23312663.3933023
|
979
|
+
current_clock_Hz 1165379264
|
980
|
+
device_ID 51
|
981
|
+
fpu_type sparcv9
|
982
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
983
|
+
pg_id 20
|
984
|
+
snaptime 23630289.1719139
|
985
|
+
state on-line
|
986
|
+
state_begin 1315099349
|
987
|
+
supported_frequencies_Hz 1165379264
|
988
|
+
|
989
|
+
module: cpu_info instance: 52
|
990
|
+
name: cpu_info52 class: misc
|
991
|
+
brand UltraSPARC-T2
|
992
|
+
chip_id 0
|
993
|
+
clock_MHz 1165
|
994
|
+
core_id 559
|
995
|
+
cpu_fru hc:///component=
|
996
|
+
cpu_type sparcv9
|
997
|
+
crtime 23312663.3957577
|
998
|
+
current_clock_Hz 1165379264
|
999
|
+
device_ID 52
|
1000
|
+
fpu_type sparcv9
|
1001
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1002
|
+
pg_id 22
|
1003
|
+
snaptime 23630289.1734706
|
1004
|
+
state on-line
|
1005
|
+
state_begin 1315099349
|
1006
|
+
supported_frequencies_Hz 1165379264
|
1007
|
+
|
1008
|
+
module: cpu_info instance: 53
|
1009
|
+
name: cpu_info53 class: misc
|
1010
|
+
brand UltraSPARC-T2
|
1011
|
+
chip_id 0
|
1012
|
+
clock_MHz 1165
|
1013
|
+
core_id 559
|
1014
|
+
cpu_fru hc:///component=
|
1015
|
+
cpu_type sparcv9
|
1016
|
+
crtime 23312663.3982132
|
1017
|
+
current_clock_Hz 1165379264
|
1018
|
+
device_ID 53
|
1019
|
+
fpu_type sparcv9
|
1020
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1021
|
+
pg_id 22
|
1022
|
+
snaptime 23630289.1750473
|
1023
|
+
state on-line
|
1024
|
+
state_begin 1315099349
|
1025
|
+
supported_frequencies_Hz 1165379264
|
1026
|
+
|
1027
|
+
module: cpu_info instance: 54
|
1028
|
+
name: cpu_info54 class: misc
|
1029
|
+
brand UltraSPARC-T2
|
1030
|
+
chip_id 0
|
1031
|
+
clock_MHz 1165
|
1032
|
+
core_id 559
|
1033
|
+
cpu_fru hc:///component=
|
1034
|
+
cpu_type sparcv9
|
1035
|
+
crtime 23312663.4008234
|
1036
|
+
current_clock_Hz 1165379264
|
1037
|
+
device_ID 54
|
1038
|
+
fpu_type sparcv9
|
1039
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1040
|
+
pg_id 22
|
1041
|
+
snaptime 23630289.1767452
|
1042
|
+
state on-line
|
1043
|
+
state_begin 1315099349
|
1044
|
+
supported_frequencies_Hz 1165379264
|
1045
|
+
|
1046
|
+
module: cpu_info instance: 55
|
1047
|
+
name: cpu_info55 class: misc
|
1048
|
+
brand UltraSPARC-T2
|
1049
|
+
chip_id 0
|
1050
|
+
clock_MHz 1165
|
1051
|
+
core_id 559
|
1052
|
+
cpu_fru hc:///component=
|
1053
|
+
cpu_type sparcv9
|
1054
|
+
crtime 23312663.4032588
|
1055
|
+
current_clock_Hz 1165379264
|
1056
|
+
device_ID 55
|
1057
|
+
fpu_type sparcv9
|
1058
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1059
|
+
pg_id 22
|
1060
|
+
snaptime 23630289.1783072
|
1061
|
+
state on-line
|
1062
|
+
state_begin 1315099349
|
1063
|
+
supported_frequencies_Hz 1165379264
|
1064
|
+
|
1065
|
+
module: cpu_info instance: 56
|
1066
|
+
name: cpu_info56 class: misc
|
1067
|
+
brand UltraSPARC-T2
|
1068
|
+
chip_id 0
|
1069
|
+
clock_MHz 1165
|
1070
|
+
core_id 566
|
1071
|
+
cpu_fru hc:///component=
|
1072
|
+
cpu_type sparcv9
|
1073
|
+
crtime 23312663.4057018
|
1074
|
+
current_clock_Hz 1165379264
|
1075
|
+
device_ID 56
|
1076
|
+
fpu_type sparcv9
|
1077
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1078
|
+
pg_id 23
|
1079
|
+
snaptime 23630289.1798837
|
1080
|
+
state on-line
|
1081
|
+
state_begin 1315099349
|
1082
|
+
supported_frequencies_Hz 1165379264
|
1083
|
+
|
1084
|
+
module: cpu_info instance: 57
|
1085
|
+
name: cpu_info57 class: misc
|
1086
|
+
brand UltraSPARC-T2
|
1087
|
+
chip_id 0
|
1088
|
+
clock_MHz 1165
|
1089
|
+
core_id 566
|
1090
|
+
cpu_fru hc:///component=
|
1091
|
+
cpu_type sparcv9
|
1092
|
+
crtime 23312663.4083202
|
1093
|
+
current_clock_Hz 1165379264
|
1094
|
+
device_ID 57
|
1095
|
+
fpu_type sparcv9
|
1096
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1097
|
+
pg_id 23
|
1098
|
+
snaptime 23630289.1814739
|
1099
|
+
state on-line
|
1100
|
+
state_begin 1315099349
|
1101
|
+
supported_frequencies_Hz 1165379264
|
1102
|
+
|
1103
|
+
module: cpu_info instance: 58
|
1104
|
+
name: cpu_info58 class: misc
|
1105
|
+
brand UltraSPARC-T2
|
1106
|
+
chip_id 0
|
1107
|
+
clock_MHz 1165
|
1108
|
+
core_id 566
|
1109
|
+
cpu_fru hc:///component=
|
1110
|
+
cpu_type sparcv9
|
1111
|
+
crtime 23312663.4108088
|
1112
|
+
current_clock_Hz 1165379264
|
1113
|
+
device_ID 58
|
1114
|
+
fpu_type sparcv9
|
1115
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1116
|
+
pg_id 23
|
1117
|
+
snaptime 23630289.1830437
|
1118
|
+
state on-line
|
1119
|
+
state_begin 1315099349
|
1120
|
+
supported_frequencies_Hz 1165379264
|
1121
|
+
|
1122
|
+
module: cpu_info instance: 59
|
1123
|
+
name: cpu_info59 class: misc
|
1124
|
+
brand UltraSPARC-T2
|
1125
|
+
chip_id 0
|
1126
|
+
clock_MHz 1165
|
1127
|
+
core_id 566
|
1128
|
+
cpu_fru hc:///component=
|
1129
|
+
cpu_type sparcv9
|
1130
|
+
crtime 23312663.4133075
|
1131
|
+
current_clock_Hz 1165379264
|
1132
|
+
device_ID 59
|
1133
|
+
fpu_type sparcv9
|
1134
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1135
|
+
pg_id 23
|
1136
|
+
snaptime 23630289.1846328
|
1137
|
+
state on-line
|
1138
|
+
state_begin 1315099349
|
1139
|
+
supported_frequencies_Hz 1165379264
|
1140
|
+
|
1141
|
+
module: cpu_info instance: 60
|
1142
|
+
name: cpu_info60 class: misc
|
1143
|
+
brand UltraSPARC-T2
|
1144
|
+
chip_id 0
|
1145
|
+
clock_MHz 1165
|
1146
|
+
core_id 566
|
1147
|
+
cpu_fru hc:///component=
|
1148
|
+
cpu_type sparcv9
|
1149
|
+
crtime 23312663.4157926
|
1150
|
+
current_clock_Hz 1165379264
|
1151
|
+
device_ID 60
|
1152
|
+
fpu_type sparcv9
|
1153
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1154
|
+
pg_id 25
|
1155
|
+
snaptime 23630289.1862341
|
1156
|
+
state on-line
|
1157
|
+
state_begin 1315099349
|
1158
|
+
supported_frequencies_Hz 1165379264
|
1159
|
+
|
1160
|
+
module: cpu_info instance: 61
|
1161
|
+
name: cpu_info61 class: misc
|
1162
|
+
brand UltraSPARC-T2
|
1163
|
+
chip_id 0
|
1164
|
+
clock_MHz 1165
|
1165
|
+
core_id 566
|
1166
|
+
cpu_fru hc:///component=
|
1167
|
+
cpu_type sparcv9
|
1168
|
+
crtime 23312663.4217917
|
1169
|
+
current_clock_Hz 1165379264
|
1170
|
+
device_ID 61
|
1171
|
+
fpu_type sparcv9
|
1172
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1173
|
+
pg_id 25
|
1174
|
+
snaptime 23630289.1878047
|
1175
|
+
state on-line
|
1176
|
+
state_begin 1315099349
|
1177
|
+
supported_frequencies_Hz 1165379264
|
1178
|
+
|
1179
|
+
module: cpu_info instance: 62
|
1180
|
+
name: cpu_info62 class: misc
|
1181
|
+
brand UltraSPARC-T2
|
1182
|
+
chip_id 0
|
1183
|
+
clock_MHz 1165
|
1184
|
+
core_id 566
|
1185
|
+
cpu_fru hc:///component=
|
1186
|
+
cpu_type sparcv9
|
1187
|
+
crtime 23312663.4243642
|
1188
|
+
current_clock_Hz 1165379264
|
1189
|
+
device_ID 62
|
1190
|
+
fpu_type sparcv9
|
1191
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1192
|
+
pg_id 25
|
1193
|
+
snaptime 23630289.1894041
|
1194
|
+
state on-line
|
1195
|
+
state_begin 1315099349
|
1196
|
+
supported_frequencies_Hz 1165379264
|
1197
|
+
|
1198
|
+
module: cpu_info instance: 63
|
1199
|
+
name: cpu_info63 class: misc
|
1200
|
+
brand UltraSPARC-T2
|
1201
|
+
chip_id 0
|
1202
|
+
clock_MHz 1165
|
1203
|
+
core_id 566
|
1204
|
+
cpu_fru hc:///component=
|
1205
|
+
cpu_type sparcv9
|
1206
|
+
crtime 23312663.4268942
|
1207
|
+
current_clock_Hz 1165379264
|
1208
|
+
device_ID 63
|
1209
|
+
fpu_type sparcv9
|
1210
|
+
implementation UltraSPARC-T2 (chipid 0, clock 1165 MHz)
|
1211
|
+
pg_id 25
|
1212
|
+
snaptime 23630289.1910039
|
1213
|
+
state on-line
|
1214
|
+
state_begin 1315099349
|
1215
|
+
supported_frequencies_Hz 1165379264
|
1216
|
+
|