summaryrefslogtreecommitdiff
path: root/op-mode-definitions/show-hardware.xml.in
blob: ebd806ba5d9e7ecb14882fafc6faacaf0f1e21a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="show">
    <children>
      <node name="hardware">
        <properties>
          <help>Show system hardware details</help>
        </properties>
        <children>
          <node name="cpu">
            <properties>
              <help>Show CPU informaion</help>
            </properties>
            <command>${vyos_op_scripts_dir}/cpu.py show</command>
            <children>
              <node name="detail">
                <properties>
                  <help>Show system CPU details</help>
                </properties>
                <command>cat /proc/cpuinfo</command>
              </node>
              <node name="summary">
                <properties>
                  <help>Show system CPUs summary</help>
                </properties>
                <command>${vyos_op_scripts_dir}/cpu.py show_summary</command>
              </node>
            </children>
          </node>
          <node name="dmi">
            <properties>
              <help>Show system DMI details</help>
            </properties>
            <command>${vyatta_bindir}/vyatta-show-dmi</command>
          </node>
          <node name="mem">
            <properties>
              <help>Show system RAM details</help>
            </properties>
            <command>cat /proc/meminfo</command>
          </node>
          <node name="pci">
            <properties>
              <help>Show system PCI bus details</help>
            </properties>
            <command>lspci</command>
            <children>
              <node name="detail">
                <properties>
                  <help>Show verbose system PCI bus details</help>
                </properties>
                <command>lspci -vvv</command>
              </node>
            </children>
          </node>
          <node name="storage">
            <properties>
              <help>Show system storage information</help>
            </properties>
            <children>
              <leafNode name="nvme">
                <properties>
                  <help>Show NVMe device information</help>
                </properties>
                <command>sudo nvme list</command>
              </leafNode>
              <node name="scsi">
                <properties>
                  <help>Show SCSI device information</help>
                </properties>
                <command>lsscsi</command>
                <children>
                  <node name="detail">
                    <properties>
                      <help>Show detailed SCSI device information</help>
                    </properties>
                    <command>lsscsi -vvv</command>
                  </node>
                </children>
              </node>
              <tagNode name="smart">
                <properties>
                  <help>Show S.M.A.R.T. device information</help>
                  <completionHelp>
                    <script>ls /dev | egrep '([hsv]d[a-z]|nvme[0-9]+n[0-9])$'</script>
                  </completionHelp>
                </properties>
                <command>sudo smartctl -a "/dev/$5" | sed 1,3d</command>
              </tagNode>
            </children>
          </node>
          <node name="usb">
            <properties>
              <help>Show peripherals connected to the USB bus</help>
            </properties>
            <command>/usr/bin/lsusb -t</command>
            <children>
              <node name="detail">
                <properties>
                  <help>Show detailed USB bus information</help>
                </properties>
                <command>/usr/bin/lsusb -v</command>
              </node>
              <leafNode name="serial">
                <properties>
                  <help>Show information about connected USB serial ports</help>
                </properties>
                <command>${vyos_op_scripts_dir}/show_usb_serial.py</command>
              </leafNode>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>