├── doc ├── _static │ └── .keep ├── modules.rst ├── katsdpnetboxutilities.rst ├── index.rst ├── Makefile └── conf.py ├── .gitignore ├── src └── katsdpnetboxutilities │ ├── network │ ├── __init__.py │ ├── diagram.py │ └── utils.py │ ├── service │ ├── __init__.py │ ├── .env │ └── main.py │ ├── system │ ├── __init__.py │ ├── make_config │ │ ├── __init__.py │ │ ├── makeconfig.py │ │ └── makeconfig.py.backup │ ├── server │ │ ├── .Dockerfile.swk │ │ ├── .Dockerfile.swl │ │ ├── .Dockerfile.swm │ │ ├── .Dockerfile.swn │ │ ├── .Dockerfile.swo │ │ ├── .python-server.py.swh │ │ ├── .python-server.py.swi │ │ ├── .python-server.py.swj │ │ ├── .python-server.py.swk │ │ ├── .python-server.py.swl │ │ ├── .python-server.py.swm │ │ ├── .python-server.py.swn │ │ ├── .python-server.py.swo │ │ ├── docker-compose.yml │ │ ├── python-server.py │ │ └── Dockerfile │ ├── .device-md.py.swo │ ├── Pipfile │ ├── generate-report.sh │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── Pipfile.lock │ ├── reportsCHPC │ │ ├── dss-hc-20 │ │ │ └── dss-hc-20.md │ │ ├── deviceCHPC.txt │ │ ├── sdp-services-chpc │ │ │ └── sdp-services-chpc.md │ │ ├── cms4 │ │ │ └── cms4.md │ │ ├── cms1 │ │ │ └── cms1.md │ │ ├── cms2 │ │ │ └── cms2.md │ │ ├── cms3 │ │ │ └── cms3.md │ │ ├── cms5 │ │ │ └── cms5.md │ │ ├── web01 │ │ │ └── web01.md │ │ ├── stgr1 │ │ │ └── stgr1.md │ │ ├── stgr2 │ │ │ └── stgr2.md │ │ ├── dxd01 │ │ │ └── dxd01.md │ │ ├── hss01 │ │ │ └── hss01.md │ │ ├── hss02 │ │ │ └── hss02.md │ │ ├── hss03 │ │ │ └── hss03.md │ │ ├── hss04 │ │ │ └── hss04.md │ │ ├── hss05 │ │ │ └── hss05.md │ │ ├── hss06 │ │ │ └── hss06.md │ │ ├── imgr1 │ │ │ └── imgr1.md │ │ ├── dss-hc-3 │ │ │ └── dss-hc-3.md │ │ ├── dss-hc-42 │ │ │ └── dss-hc-42.md │ │ └── dss-hc-48 │ │ │ └── dss-hc-48.md │ ├── requirements.txt │ ├── README.md │ └── conf.py │ ├── __init__.py │ └── connect.py ├── test └── test_dummy.py ├── pyproject.toml ├── pytest.ini ├── mypy.ini ├── Jenkinsfile ├── docker-compose.yml ├── test-requirements.txt ├── requirements.txt ├── setup.py ├── README.md ├── doc-requirements.txt ├── Dockerfile ├── setup.cfg └── LICENSE /doc/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .pyc 3 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/make_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.Dockerfile.swk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.Dockerfile.swl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.Dockerfile.swm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.Dockerfile.swn: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.Dockerfile.swo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swn: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/.python-server.py.swo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_dummy.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | def test_nothing(): 4 | assert True 5 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["setuptools", "wheel", "katversion"] 3 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | # Avoids a warning that the default will change in pytest 6 3 | junit_family=xunit1 4 | -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | python_version = 3.6 3 | ignore_missing_imports = True 4 | files = src/katsdpnetboxutilities, test 5 | -------------------------------------------------------------------------------- /doc/modules.rst: -------------------------------------------------------------------------------- 1 | katsdpnetboxutilities 2 | ===================== 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | katsdpnetboxutilities 8 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/.device-md.py.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ska-sa/katsdpnetboxutilities/master/src/katsdpnetboxutilities/system/.device-md.py.swo -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | #!groovy 2 | 3 | @Library('katsdpjenkins') _ 4 | katsdp.killOldJobs() 5 | katsdp.setDependencies(['ska-sa/katsdpdockerbase/master']) 6 | katsdp.standardBuild() 7 | katsdp.mail('sdpdev+katsdpnetboxutilities@ska.ac.za') 8 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | url = "https://pypi.org/simple" 3 | verify_ssl = true 4 | name = "pypi" 5 | 6 | [packages] 7 | boltons = "*" 8 | 9 | [dev-packages] 10 | 11 | [requires] 12 | python_version = "3.8" 13 | -------------------------------------------------------------------------------- /doc/katsdpnetboxutilities.rst: -------------------------------------------------------------------------------- 1 | katsdpnetboxutilities package 2 | ============================= 3 | 4 | Module contents 5 | --------------- 6 | 7 | .. automodule:: katsdpnetboxutilities 8 | :members: 9 | :undoc-members: 10 | :show-inheritance: 11 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3" 2 | services: 3 | pythonServer: 4 | build: . 5 | image: documentserver 6 | volumes: 7 | - /home/kat/gitworld/katsdpnetboxutilities/src/katsdpnetboxutilities/system/reports:/src/reports 8 | ports: 9 | - 8080:8080 10 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/service/.env: -------------------------------------------------------------------------------- 1 | CACHE_PATH=/tmp/netbox-cache 2 | CACHE_AGE=600 3 | DEBUG=false 4 | DEVICE_INFO_URL="http://sdp-services.sdp.kat.ac.za/servers" 5 | NETBOX_TOKEN="36d11496f93818bf209b55be5859e0b91ce39087" 6 | NETBOX_URL="https://netbox.kat.ac.za" 7 | OUTPUT_PATH=/tmp/netboxutils 8 | VERBOSE=false 9 | 10 | -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- 1 | Welcome to katsdpnetboxutilities's documentation! 2 | ======================================== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: Contents: 7 | 8 | modules 9 | 10 | 11 | Indices and tables 12 | ================== 13 | 14 | * :ref:`genindex` 15 | * :ref:`modindex` 16 | * :ref:`search` 17 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/python-server.py: -------------------------------------------------------------------------------- 1 | import http.server 2 | import socketserver 3 | 4 | PORT = 8080 5 | 6 | handler = http.server.SimpleHTTPRequestHandler 7 | 8 | with socketserver.TCPServer(("", PORT), handler) as httpd: 9 | print("Server started at localhost:" + str(PORT)) 10 | httpd.serve_forever() 11 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | version: '2' 4 | services: 5 | registry: 6 | image: registry:2.5 7 | ports: 8 | - "8111:8000" 9 | volumes: 10 | - /opt/katsdpnetboxutilities/src/katsdpnetboxutilities/service/.env:/srv/.env 11 | - /tmp/cache:/tmp/cache 12 | - /tmp/netboxutils:/tmp/netboxutils 13 | 14 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/generate-report.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eu 3 | NAME=$1 4 | mkdir -p /reports/${NAME} 5 | mkdir -p /cache 6 | ./device-md.py --cache-path /cache -c /.config/sarao/netbox -o /reports/${NAME} ${NAME} 7 | pandoc --toc --to pdf -o /reports/${NAME}/${NAME}.pdf --defaults=/reports/pandoc.yaml /reports/${NAME}/${NAME}.md 8 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/.gitignore: -------------------------------------------------------------------------------- 1 | docs 2 | *.pdf 3 | venv 4 | *.swp 5 | reports 6 | reportCHPC 7 | ./data 8 | ./venv 9 | header.tex 10 | pandoc.yaml 11 | ./docs 12 | *.pyc 13 | make_config/__pycache__/*.pyc 14 | .ipynb_checkpoints 15 | *.json 16 | device-md.py.backup2 17 | generate-report.sh.backup 18 | katsdpinfrastructure 19 | servers 20 | device-md.py.keep 21 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/server/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM harbor.sdp.kat.ac.za/dockerhub_proxy/library/python 2 | 3 | MAINTAINER Kgomotso Monnakgotla 4 | 5 | RUN mkdir /src 6 | 7 | EXPOSE 8080/tcp 8 | 9 | WORKDIR /src 10 | 11 | COPY . . 12 | 13 | RUN rm -rf /src/.*.sw* 14 | 15 | 16 | CMD ["python", "./python-server.py","--directory /src/reports/"] 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM pandoc/ubuntu-latex:2.12 2 | 3 | MAINTAINER SDP 4 | 5 | RUN apt-get update -y; apt-get install -y python3.8 pip git 6 | 7 | 8 | RUN mkdir /src 9 | WORKDIR /src 10 | 11 | COPY requirements.txt . 12 | RUN python3.8 -m pip install -r ./requirements.txt 13 | 14 | COPY . /src 15 | RUN chmod -R 777 /src/generate-report.sh 16 | ENTRYPOINT ["bash","/src/generate-report.sh"] 17 | -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | attrs # via pytest 3 | importlib-metadata # via pytest, pluggy 4 | more-itertools # via pytest 5 | packaging # via pytest 6 | pluggy # via pytest 7 | py # via pytest 8 | pytest 9 | pytest-cov 10 | wcwidth # via pytest 11 | zipp # via importlib-metadata 12 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/Makefile: -------------------------------------------------------------------------------- 1 | 2 | open: 3 | xdg-open reports/$(name)/$(name).pdf 4 | 5 | build: 6 | docker build -t sysinfo . 7 | 8 | run: 9 | docker run -v /.config/sarao/netbox:/.config/sarao/netbox -v /home/kat/servers:/servers -v ${PWD}/reports:/reports -v ${PWD}:/src sysinfo2 $(name) 10 | 11 | devrun: 12 | docker run -v /.config/sarao/netbox:/.config/sarao/netbox -v /home/kat/servers:/servers -v ${PWD}/reports:/reports -v ${PWD}:/src -v ${PWD}:/cache sysinfo2 $(name) 13 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ConfigArgParse==1.2.3 2 | graphviz==0.14.1 3 | regex==2020.11.13 4 | unicode==2.7 5 | awesome-slugify==1.6.5 6 | requests==2.25.0 7 | certifi==2020.11.8 8 | chardet==3.0.4 9 | idna==2.10 10 | urllib3==1.25.8 11 | Unidecode==0.4.21 12 | katversion==1.1 13 | fastapi==0.63.0 14 | h11==0.12.0 15 | httptools==0.1.1 16 | pydantic==1.7.3 17 | python-dotenv==0.15.0 18 | starlette==0.13.6 19 | uvicorn==0.13.3 20 | uvloop==0.14.0 21 | watchgod==0.6 22 | websockets==8.1 23 | click==7.1.2 24 | typing-extensions==3.7.4.3 25 | dataclasses==0.6 26 | boltons==20.2.1 27 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line, and also 5 | # from the environment for the first two. 6 | SPHINXOPTS ?= 7 | SPHINXBUILD ?= sphinx-build 8 | SOURCEDIR = . 9 | BUILDDIR = _build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 21 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | ################################################################################ 4 | # Copyright (c) 2020, National Research Foundation (SARAO) 5 | # 6 | # Licensed under the BSD 3-Clause License (the "License"); you may not use 7 | # this file except in compliance with the License. You may obtain a copy 8 | # of the License at 9 | # 10 | # https://opensource.org/licenses/BSD-3-Clause 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | ################################################################################ 18 | 19 | from setuptools import setup 20 | 21 | setup(use_katversion=True) 22 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/Pipfile.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_meta": { 3 | "hash": { 4 | "sha256": "d229e4398b585183e6c81d4a8dba6641888ae9399491f8f95aeb54a53bcfda37" 5 | }, 6 | "pipfile-spec": 6, 7 | "requires": { 8 | "python_version": "3.8" 9 | }, 10 | "sources": [ 11 | { 12 | "name": "pypi", 13 | "url": "https://pypi.org/simple", 14 | "verify_ssl": true 15 | } 16 | ] 17 | }, 18 | "default": { 19 | "boltons": { 20 | "hashes": [ 21 | "sha256:65e70a79a731a7fe6e98592ecfb5ccf2115873d01dbc576079874629e5c90f13", 22 | "sha256:b9bb7b58b2b420bbe11a6025fdef6d3e5edc9f76a42fb467afe7ca212ef9948b" 23 | ], 24 | "index": "pypi", 25 | "version": "==21.0.0" 26 | } 27 | }, 28 | "develop": {} 29 | } 30 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/dss-hc-20/dss-hc-20.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 08 April 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{dss-hc-20} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # dss-hc-20 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **22** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/22/](https://netbox.kat.ac.za/api/dcim/devices/22/)** 29 | - Serial : **SSQX0601-39** 30 | - Device Role : **Storage** 31 | - Device Type : **Peralex DSS-HC** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R7** 38 | - U : **18** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ## CPU 44 | 45 | ## Memory 46 | 47 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/requirements.txt: -------------------------------------------------------------------------------- 1 | attrs==21.2.0 2 | awesome-slugify==1.6.5 3 | boltons==21.0.0 4 | certifi==2021.5.30 5 | chardet==4.0.0 6 | ConfigArgParse==1.2.3 7 | future==0.18.2 8 | graphviz==0.14.1 9 | idna==2.10 10 | ipython-genutils==0.2.0 11 | jsonschema==3.2.0 12 | jupyter-client==6.1.12 13 | jupyter-core==4.7.1 14 | git+https://github.com/ska-sa/katsdpnetboxutilities.git 15 | #katsdpnetboxutilities @ git+https://github.com/ska-sa/katsdpnetboxutilities.git@f1da95d256fa48f5c65c3e0c3d4cf5cd29f0e27d 16 | katversion==1.1 17 | lxml==4.6.3 18 | Mako==1.1.4 19 | MarkupSafe==2.0.1 20 | nbformat==5.1.3 21 | preprocess==2.0.0 22 | publish-doconce==1.1.4 23 | Pygments==2.9.0 24 | pygments-doconce==1.0.2 25 | pyrsistent==0.17.3 26 | python-dateutil==2.8.1 27 | python-Levenshtein-wheels==0.13.2 28 | PyYAML==5.4.1 29 | pyzmq==22.1.0 30 | regex==2021.4.4 31 | requests==2.25.1 32 | six==1.16.0 33 | tornado==6.1 34 | traitlets==5.0.5 35 | unicode==2.8 36 | Unidecode==0.4.21 37 | urllib3==1.26.5 38 | yml==0.0.1 39 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/deviceCHPC.txt: -------------------------------------------------------------------------------- 1 | cms1 2 | cms2 3 | cms3 4 | cms4 5 | cms5 6 | dss-hc-1 7 | dss-hc-10 8 | dss-hc-11 9 | dss-hc-12 10 | dss-hc-13 11 | dss-hc-14 12 | dss-hc-15 13 | dss-hc-16 14 | dss-hc-17 15 | dss-hc-18 16 | dss-hc-19 17 | dss-hc-2 18 | dss-hc-20 19 | dss-hc-21 20 | dss-hc-22 21 | dss-hc-23 22 | dss-hc-24 23 | dss-hc-25 24 | dss-hc-26 25 | dss-hc-27 26 | dss-hc-28 27 | dss-hc-29 28 | dss-hc-3 29 | dss-hc-30 30 | dss-hc-31 31 | dss-hc-32 32 | dss-hc-33 33 | dss-hc-34 34 | dss-hc-35 35 | dss-hc-36 36 | dss-hc-37 37 | dss-hc-38 38 | dss-hc-39 39 | dss-hc-4 40 | dss-hc-40 41 | dss-hc-41 42 | dss-hc-42 43 | dss-hc-43 44 | dss-hc-44 45 | dss-hc-45 46 | dss-hc-46 47 | dss-hc-47 48 | dss-hc-48 49 | dss-hc-49 50 | dss-hc-5 51 | dss-hc-50 52 | dss-hc-51 53 | dss-hc-52 54 | dss-hc-53 55 | dss-hc-54 56 | dss-hc-55 57 | dss-hc-6 58 | dss-hc-7 59 | dss-hc-8 60 | dss-hc-9 61 | dss-hs-1 62 | dss-hs-2 63 | dss-hs-3 64 | dxd01 65 | hss01 66 | hss02 67 | hss03 68 | hss04 69 | hss05 70 | hss06 71 | sdp-services-chpc 72 | stgr2 73 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | katsdpnetboxutilities 2 | ===================== 3 | 4 | Utilities used at SARAO to maintain infrastructure information stored in [Netbox](https://github.com/netbox-community/netbox). 5 | 6 | Installation 7 | ------------ 8 | 9 | katsdpnetboxutilities can be installed with pip directly from [github](https://github.com/ska-sa/katsdpnetboxutilities). 10 | It is advised to install katsdpnetboxutilities in a virtual environment. 11 | `pip install -U git+https://github.com/ska-sa/katsdpnetboxutilities.git` 12 | 13 | Configure 14 | --------- 15 | 16 | Configuration file can be passed in with the `-c` flag or the default config at `~/.config/sarao/netbox` will be used. 17 | 18 | Example config file: 19 | 20 | token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX 21 | url=https://netbox.kat.ac.za 22 | 23 | Use the Netbox UI to obtain your token. 24 | 25 | Network Diagrams 26 | ----------------- 27 | 28 | The command `netboxutilities-network-diagram` can be used to draw basic network diagrams based on the information in Netbox. 29 | 30 | `netboxutilities-network-diagram --output-path /tmp/network-diagrams --cache-path /tmp/netbox_cache -n CHPC --live site=chpc` 31 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/__init__.py: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Copyright (c) 2020, National Research Foundation (SARAO) 3 | # 4 | # Licensed under the BSD 3-Clause License (the "License"); you may not use 5 | # this file except in compliance with the License. You may obtain a copy 6 | # of the License at 7 | # 8 | # https://opensource.org/licenses/BSD-3-Clause 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | ################################################################################ 16 | 17 | # BEGIN VERSION CHECK 18 | # Get package version when locally imported from repo or via -e develop install 19 | try: 20 | import katversion as _katversion 21 | except ImportError: 22 | import time as _time 23 | 24 | __version__ = "0.0+unknown.{}".format(_time.strftime("%Y%m%d%H%M")) 25 | else: 26 | __version__ = _katversion.get_version(__path__[0]) # type: ignore 27 | # END VERSION CHECK 28 | -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- 1 | alabaster # via sphinx 2 | babel # via sphinx 3 | certifi # via requests 4 | chardet # via requests 5 | docutils # via sphinx 6 | idna # via requests 7 | imagesize # via sphinx 8 | jinja2 # via sphinx 9 | markupsafe # via jinja2 10 | packaging # via sphinx 11 | pygments # via sphinx 12 | pyparsing # via packaging 13 | pytz # via babel 14 | requests # via sphinx 15 | six # via packaging 16 | snowballstemmer # via sphinx 17 | sphinx 18 | sphinxcontrib-applehelp # via sphinx 19 | sphinxcontrib-devhelp # via sphinx 20 | sphinxcontrib-htmlhelp # via sphinx 21 | sphinxcontrib-jsmath # via sphinx 22 | sphinxcontrib-qthelp # via sphinx 23 | sphinxcontrib-serializinghtml # via sphinx 24 | sphinxcontrib-websupport # via sphinx 25 | sphinx-rtd-theme 26 | urllib3 # via requests 27 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Production of SDP documents by Pandoc using markdown format 3 | 4 | ## Collect hardware informantion from the remote host 5 | ### ssh onto the vm: hardwaredocuments.sdp.kat.ac.za 6 | 7 | 1. cd /home/kat/gitworld/katsdpnetboxutilities/src/katsdpnetboxutilities/system/katsdpinfrastructure/ansible/system/katsdpinfrastructure/ansible 8 | 9 | 1. To get hardware infor for cal1, run the following commands 10 | 11 | 1. bin/ansible-role -i hosts -l cal1 get-hardware-information 12 | 13 | 1. The ansible role generates two files: lshw.json and lsblk.json which are stored in home/kat/servers/cal1. 14 | 15 | ## Build the hardware report 16 | ### In the directory katsdpnetboxutilities/src/katsdpnetboxutilities/system run the following commands 17 | 1. Run `make build` to create the docker container. 18 | 1. Run `make run name=cal1` to generate the Cal1 **server** documentation. 19 | 1. Run `make open name=cal1` to view the Cal1 **server** documentation. 20 | 1. The report are store in `/home/kat/gitworld/katsdpnetboxutilities/src/katsdpnetboxutilities/system/reports` 21 | 1. navigate to server /home/kat/gitworld/katsdpnetboxutilities/src/katsdpnetboxutilities/system/server 22 | 1. docker-compose up -d 23 | 1. The reports can be accessed via http://hardwaredocuments.sdp.kat.ac.za:8080 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/service/main.py: -------------------------------------------------------------------------------- 1 | from fastapi.responses import PlainTextResponse 2 | from functools import lru_cache 3 | 4 | from fastapi import Depends, FastAPI 5 | from pydantic import BaseSettings 6 | 7 | from katsdpnetboxutilities.system.device import host_report 8 | 9 | 10 | class Settings(BaseSettings): 11 | """Application settings.""" 12 | 13 | netbox_token: str 14 | netbox_url: str 15 | cache_path: str = "/tmp/netbox-cache" 16 | cache_age: int = 600 17 | output_path: str = "/tmp/netboxutils" 18 | verbose: bool = False 19 | debug: bool = False 20 | device_info_url: str 21 | 22 | class Config: 23 | # Load values from an '.env' file. 24 | env_file = ".env" 25 | 26 | 27 | settings = Settings() 28 | 29 | app = FastAPI() 30 | 31 | 32 | @lru_cache() 33 | def get_settings(): 34 | return Settings() 35 | 36 | 37 | @app.get("/") 38 | async def root(): 39 | return {"message": "Hello World"} 40 | 41 | 42 | @app.get("/hostreport/{hostname}/index.rst", response_class=PlainTextResponse) 43 | async def hostreport_get(hostname: str, settings: Settings = Depends(get_settings)): 44 | return host_report(hostname, settings) 45 | 46 | 47 | @app.post("/hostreport/{hostname}/index.rst") 48 | async def hostreport_post(hostname: str): 49 | return {"hostname": hostname} 50 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | ARG KATSDPDOCKERBASE_REGISTRY=quay.io/ska-sa 2 | 3 | FROM $KATSDPDOCKERBASE_REGISTRY/docker-base-build as build 4 | 5 | # Switch to Python 3 environment 6 | ENV PATH="$PATH_PYTHON3" VIRTUAL_ENV="$VIRTUAL_ENV_PYTHON3" 7 | 8 | # Install dependencies 9 | COPY --chown=kat:kat requirements.txt /tmp/install/requirements.txt 10 | RUN install-requirements.py -d ~/docker-base/base-requirements.txt -r /tmp/install/requirements.txt 11 | 12 | # Install the current package 13 | COPY --chown=kat:kat . /tmp/install/katsdpnetboxutilities 14 | WORKDIR /tmp/install/katsdpnetboxutilities 15 | RUN python ./setup.py clean 16 | RUN pip install --no-deps . 17 | RUN pip check 18 | 19 | ####################################################################### 20 | 21 | FROM $KATSDPDOCKERBASE_REGISTRY/docker-base-runtime 22 | LABEL maintainer="sdpdev+katsdpnetboxutilities@ska.ac.za" 23 | 24 | RUN mkdir -p /srv 25 | RUN mkdir -p /tmp/netbox-cache 26 | RUN mkdir -p /tmp/netboxutils 27 | COPY --chown=kat:kat src/katsdpnetboxutilities/service/* /srv/ 28 | 29 | COPY --from=build --chown=kat:kat /home/kat/ve3 /home/kat/ve3 30 | ENV LANG C.UTF-8 31 | # ENV LANGUAGE en_US:en 32 | ENV LC_ALL C.UTF-8 33 | ENV PATH="$PATH_PYTHON3" VIRTUAL_ENV="$VIRTUAL_ENV_PYTHON3" 34 | WORKDIR /srv 35 | CMD ["/home/kat/ve3/bin/uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] 36 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = katsdpnetboxutilities 3 | description = Utilities used with Netbox 4 | long_description = file: README.md 5 | long_description_content_type = text/markdown 6 | license = Modified BSD 7 | author = MeerKAT SDP Team 8 | author_email = sdpdev+katsdpnetboxutilities@ska.ac.za 9 | url = https://github.com/ska-sa/katsdpnetboxutilities 10 | classifiers = 11 | License :: OSI Approved :: BSD License 12 | Programming Language :: Python 13 | Programming Language :: Python :: 3 14 | Topic :: Scientific/Engineering :: Astronomy 15 | 16 | [options] 17 | package_dir = 18 | = src 19 | packages = find: 20 | install_requires = 21 | katversion 22 | ConfigArgParse==1.2.3 23 | graphviz==0.14.1 24 | regex # for awesome-slugify 25 | unicode # for awesome-slugify 26 | awesome-slugify==1.6.5 27 | requests 28 | certifi # for requests 29 | chardet # for requests 30 | idna # for requests 31 | urllib3 # for requests 32 | katversion 33 | python_requires = >=3.5 34 | 35 | [options.packages.find] 36 | where = src 37 | 38 | [options.extras_require] 39 | test = 40 | pytest 41 | 42 | [options.entry_points] 43 | console_scripts = 44 | netboxutilities-network-diagram = katsdpnetboxutilities.network.diagram:main 45 | netboxutilities-device-doc = katsdpnetboxutilities.system.device:main 46 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020, National Research Foundation (SARAO) 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, 5 | are permitted provided that the following conditions are met: 6 | 7 | 1. Redistributions of source code must retain the above copyright notice, 8 | this list of conditions and the following disclaimer. 9 | 10 | 2. Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | 14 | 3. Neither the name of the copyright holder nor the names of its contributors 15 | may be used to endorse or promote products derived from this software 16 | without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 20 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 22 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 25 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 26 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/conf.py: -------------------------------------------------------------------------------- 1 | project = "sdp-systems" 2 | copyright = "2020, SDP" 3 | author = "SDP" 4 | version = "" 5 | release = "" 6 | templates_path = ["_templates"] 7 | source_suffix = [".rst", ".md"] 8 | master_doc = "index" 9 | html_theme = "alabaster" 10 | html_static_path = ["_static"] 11 | htmlhelp_basename = "sdp-systems" 12 | latex_elements = { 13 | "papersize": "a4paper", 14 | "preamble": "\\usepackage[nodayofweek]{datetime}", 15 | "extraclassoptions": "openany,oneside", 16 | } 17 | latex_documents = [ 18 | ( 19 | master_doc, 20 | "sdp-system.tex", 21 | "epyc01 System", 22 | author, 23 | "howto", 24 | ) 25 | ] 26 | man_pages = [(master_doc, "sdp-system", "sdp-system Documentation", [author], 1)] 27 | texinfo_documents = [ 28 | ( 29 | master_doc, 30 | "sdp-system", 31 | "sdp-system Documentation", 32 | author, 33 | "sdp-system", 34 | "One line description of project.", 35 | "Miscellaneous", 36 | ), 37 | ] 38 | extensions = [ 39 | "sphinx.ext.graphviz", 40 | "sphinx.ext.ifconfig", 41 | "sphinx.ext.mathjax", 42 | "sphinx.ext.todo", 43 | "sphinx-prompt", 44 | "sphinxcontrib.actdiag", 45 | "sphinxcontrib.blockdiag", 46 | "sphinxcontrib.excel_table", 47 | "sphinxcontrib.nwdiag", 48 | "sphinxcontrib.packetdiag", 49 | "sphinxcontrib.plantuml", 50 | "sphinxcontrib.rackdiag", 51 | "sphinxcontrib.seqdiag", 52 | ] 53 | html_theme = "sphinx_rtd_theme" 54 | todo_include_todos = True 55 | source_suffix = [".rst", ".md"] 56 | from recommonmark.parser import CommonMarkParser 57 | 58 | source_parsers = { 59 | ".md": CommonMarkParser, 60 | } 61 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/connect.py: -------------------------------------------------------------------------------- 1 | import json 2 | import logging 3 | import requests 4 | import time 5 | 6 | from pathlib import Path 7 | from slugify import slugify 8 | from urllib.parse import urljoin 9 | 10 | QUERY_LIMIT_DEFAULT = 10000 11 | 12 | 13 | def _query_netbox(url, token, path, query=None): 14 | headers = { 15 | "Authorization": "Token {}".format(token), 16 | "Content-Type": "application/json", 17 | "Accept": "application/json; indent=4", 18 | } 19 | if query: 20 | query.setdefault("limit", QUERY_LIMIT_DEFAULT) 21 | req = requests.get(urljoin(url, path), headers=headers, params=query, verify=False) 22 | return req.json() 23 | 24 | 25 | def _query_netbox_url(url, path, query=None): 26 | if query: 27 | query.setdefault("limit", QUERY_LIMIT_DEFAULT) 28 | prepped = requests.Request("GET", urljoin(url, path), params=query).prepare() 29 | return prepped.url 30 | 31 | 32 | def _load_cache(filename, config={}, age=600): 33 | """ 34 | config argument is depricated will be removed. 35 | """ 36 | cache_age = config.get("cache_age", age) 37 | if filename.is_file(): 38 | age = time.time() - filename.stat().st_mtime 39 | if age < (60 * cache_age): 40 | with open(filename) as fh: 41 | logging.info("Reading results from %s", filename) 42 | return json.load(fh) 43 | 44 | 45 | def _save_cache(data, filename): 46 | if data: 47 | with open(filename, "w+") as fh: 48 | logging.info("Saving results to %s", filename) 49 | json.dump(data, fh) 50 | else: 51 | logging.debug("SaveCache: Missing data, nothing cached.") 52 | 53 | 54 | def query_netbox(config, path, query=None, url=None, age=600, cache_path='/tmp'): 55 | data = None 56 | cache_path = config.get("cache_path", cache_path) 57 | cache_age = config.get("cache_age", age) 58 | url = config.get("url", url) 59 | 60 | if cache_path: 61 | filename = slugify(_query_netbox_url(url, path, query)) + ".json" 62 | cache_filename = Path(cache_path) / filename 63 | data = _load_cache(cache_filename, age=age) 64 | 65 | if not data: 66 | data = _query_netbox(url, config["token"], path, query) 67 | 68 | if config["cache_path"]: 69 | _save_cache(data, cache_filename) 70 | 71 | return data 72 | -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- 1 | # Configuration file for the Sphinx documentation builder. 2 | # 3 | # This file only contains a selection of the most common options. For a full 4 | # list see the documentation: 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html 6 | 7 | # -- Path setup -------------------------------------------------------------- 8 | 9 | # If extensions (or modules to document with autodoc) are in another directory, 10 | # add these directories to sys.path here. If the directory is relative to the 11 | # documentation root, use os.path.abspath to make it absolute, like shown here. 12 | 13 | import os 14 | import sys 15 | 16 | sys.path.insert(0, os.path.abspath("../src")) 17 | 18 | 19 | # -- Project information ----------------------------------------------------- 20 | 21 | project = "katsdpnetboxutilities" 22 | copyright = "2020, National Research Foundation (SARAO)" 23 | author = "MeerKAT SDP Team" 24 | 25 | # The full version, including alpha/beta/rc tags 26 | import katsdpnetboxutilities # noqa: E402 27 | 28 | release = katsdpnetboxutilities.__version__ 29 | 30 | 31 | # -- General configuration --------------------------------------------------- 32 | 33 | # Add any Sphinx extension module names here, as strings. They can be 34 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 35 | # ones. 36 | extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "sphinx.ext.intersphinx"] 37 | 38 | # Add any paths that contain templates here, relative to this directory. 39 | templates_path = ["_templates"] 40 | 41 | # List of patterns, relative to source directory, that match files and 42 | # directories to ignore when looking for source files. 43 | # This pattern also affects html_static_path and html_extra_path. 44 | exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] 45 | 46 | intersphinx_mapping = { 47 | "python": ("https://docs.python.org/3", None), 48 | "numpy": ("https://numpy.org/doc/stable", None), 49 | } 50 | 51 | # -- Options for HTML output ------------------------------------------------- 52 | 53 | # The theme to use for HTML and HTML Help pages. See the documentation for 54 | # a list of builtin themes. 55 | # 56 | html_theme = "sphinx_rtd_theme" 57 | 58 | # Add any paths that contain custom static files (such as style sheets) here, 59 | # relative to this directory. They are copied after the builtin static files, 60 | # so a file named "default.css" will overwrite the builtin "default.css". 61 | html_static_path = ["_static"] 62 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/network/diagram.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import logging 4 | 5 | import configargparse 6 | 7 | from katsdpnetboxutilities.connect import query_netbox 8 | from katsdpnetboxutilities.network.utils import make_dot_file 9 | 10 | 11 | def parse_args(): 12 | """Parse command line, config file and environmental variables. 13 | 14 | See configargparse for more detail. 15 | """ 16 | p = configargparse.ArgParser(default_config_files=["~/.config/sarao/netbox"]) 17 | p.add("-c", "--config", is_config_file=True, help="config file") 18 | p.add("--token", help="Netbox connection token") 19 | p.add("--url", help="Netbox server URL") 20 | p.add("--cache-path", help="Directory to store temporary results") 21 | p.add("--cache-age", help="How old cache objects can get (minutes)", default=600) 22 | p.add( 23 | "-o", 24 | "--output-path", 25 | required=True, 26 | help="Path where the output files will be stored", 27 | ) 28 | p.add("-n", "--name", required=True, help="Graph name") 29 | p.add("-v", "--verbose", help="Verbose", action="store_true") 30 | p.add("-d", "--debug", help="Debug", action="store_true") 31 | p.add("-l", "--live", help="Live view, display the graph", action="store_true") 32 | p.add( 33 | "--subgraph", 34 | help="Make nodes subgraphs, do not work with all engines", 35 | action="store_true", 36 | ) 37 | p.add( 38 | "--horizontal", 39 | help="Attempt to produce a horizontal layout if possible", 40 | action="store_true", 41 | ) 42 | p.add( 43 | "-e", 44 | "--engine", 45 | help="Graph layout engine to use", 46 | default="dot", 47 | choices=["dot", "neato", "sfdp", "circo"], 48 | ) 49 | p.add("-f", "--format", help="Output format", default="pdf", choices=["pdf", "png"]) 50 | p.add("search", nargs="+", help="Netbox search filter") 51 | config = vars(p.parse_args()) 52 | 53 | logger = logging.getLogger() 54 | if config["debug"]: 55 | logger.setLevel(logging.DEBUG) 56 | elif config["verbose"]: 57 | logger.setLevel(logging.INFO) 58 | else: 59 | logger.setLevel(logging.WARNING) 60 | 61 | logging.debug(p.format_values()) 62 | logging.debug("Config: %s", config) 63 | return config 64 | 65 | 66 | def main(): 67 | config = parse_args() 68 | path = "/api/dcim/interface-connections" 69 | query = {} 70 | for query_item in config["search"]: 71 | key, value = query_item.split("=", 1) 72 | query[key] = value 73 | data = query_netbox(config, path, query) 74 | make_dot_file(config, data.get("results")) 75 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/make_config/makeconfig.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | import yaml 5 | 6 | 7 | def make_header(NAME): 8 | header_file = ["usepackage{fancyhdr}", "pagestyle{fancy}", "fancyhf{}"] 9 | header_file.append("rhead{\\textbf{%s}}" % NAME) 10 | with open("/reports/header.tex", "w+") as f: 11 | for txt in header_file: 12 | f.write("\\" + txt + "\n") 13 | f.close() 14 | 15 | 16 | def make_pandoc_yaml(NAME): 17 | config_dict = { 18 | "standalone": True, 19 | "self-contained": True, 20 | "variables": {"documentclass": "report", "classoption": ["oneside", "draft"]}, 21 | "metadata": { 22 | "author": ["SARAO SDP"], 23 | "title": [f"SDP System: {NAME}"], 24 | "fontfamily": ["courier"], 25 | }, 26 | "include-before-body": [], 27 | "include-after-body": [], 28 | # "include-in-header": 29 | # ["/reports/header.tex"], 30 | "resource-path": ['"."'], 31 | "citeproc": True, 32 | "file-scope": False, 33 | "verbosity": "INFO", 34 | "log-file": "log.json", 35 | "cite-method": "citeproc", 36 | "top-level-division": "chapter", 37 | "abbreviations": None, 38 | "pdf-engine": "pdflatex", 39 | "pdf-engine-opts": ["-shell-escape"], 40 | "wrap": "auto", 41 | "columns": 78, 42 | "dpi": 300, 43 | "extract-media": "mediadir", 44 | "table-of-contents": True, 45 | "toc-depth": 4, 46 | "number-sections": True, 47 | "shift-heading-level-by": 0, 48 | "section-divs": True, 49 | "identifier-prefix": "foo", 50 | "title-prefix": "", 51 | "strip-empty-paragraphs": True, 52 | "eol": "lf", 53 | "strip-comments": False, 54 | "indented-code-classes": [], 55 | "ascii": False, 56 | "default-image-extension": ".jpg", 57 | "highlight-style": "pygments", 58 | "listings": False, 59 | "html-math-method": { 60 | "method": "mathjax", 61 | "url": '"https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"', 62 | }, 63 | "email-obfuscation": "javascript", 64 | "tab-stop": 8, 65 | "preserve-tabs": True, 66 | "incremental": False, 67 | "slide-level": 2, 68 | "reference-links": True, 69 | "reference-location": "block", 70 | "markdown-headings": "setext", 71 | "track-changes": "accept", 72 | "html-q-tags": False, 73 | "ipynb-output": "all", 74 | "request-headers": [["User-Agent", "Mozilla/5.0"]], 75 | "fail-if-warnings": False, 76 | "dump-args": False, 77 | "ignore-args": False, 78 | "trace": False, 79 | } 80 | yaml.dump(config_dict, open("reports/pandoc.yaml", "w"), default_flow_style=False) 81 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/make_config/makeconfig.py.backup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | import yaml 5 | 6 | 7 | def make_header(NAME): 8 | header_file = ["usepackage{fancyhdr}", "pagestyle{fancy}", "fancyhf{}"] 9 | header_file.append("rhead{\\textbf{%s}}" % NAME) 10 | with open("/reports/header.tex", "w+") as f: 11 | for txt in header_file: 12 | f.write("\\" + txt + "\n") 13 | f.close() 14 | 15 | 16 | def make_pandoc_yaml(NAME): 17 | config_dict = { 18 | "standalone": True, 19 | "self-contained": True, 20 | "variables": {"documentclass": "report", "classoption": ["oneside", "draft"]}, 21 | "metadata": { 22 | "author": ["SARAO SDP"], 23 | "title": [f"SDP System: {NAME}"], 24 | "fontfamily": ["courier"], 25 | }, 26 | "include-before-body": [], 27 | "include-after-body": [], 28 | # "include-in-header": 29 | # ["/reports/header.tex"], 30 | "resource-path": ['"."'], 31 | "citeproc": True, 32 | "file-scope": False, 33 | "verbosity": "INFO", 34 | "log-file": "log.json", 35 | "cite-method": "citeproc", 36 | "top-level-division": "chapter", 37 | "abbreviations": None, 38 | "pdf-engine": "pdflatex", 39 | "pdf-engine-opts": ["-shell-escape"], 40 | "wrap": "auto", 41 | "columns": 78, 42 | "dpi": 300, 43 | "extract-media": "mediadir", 44 | "table-of-contents": True, 45 | "toc-depth": 4, 46 | "number-sections": True, 47 | "shift-heading-level-by": 0, 48 | "section-divs": True, 49 | "identifier-prefix": "foo", 50 | "title-prefix": "", 51 | "strip-empty-paragraphs": True, 52 | "eol": "lf", 53 | "strip-comments": False, 54 | "indented-code-classes": [], 55 | "ascii": False, 56 | "default-image-extension": ".jpg", 57 | "highlight-style": "pygments", 58 | "listings": False, 59 | "html-math-method": { 60 | "method": "mathjax", 61 | "url": '"https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"', 62 | }, 63 | "email-obfuscation": "javascript", 64 | "tab-stop": 8, 65 | "preserve-tabs": True, 66 | "incremental": False, 67 | "slide-level": 2, 68 | "reference-links": True, 69 | "reference-location": "block", 70 | "markdown-headings": "setext", 71 | "track-changes": "accept", 72 | "html-q-tags": False, 73 | "ipynb-output": "none", 74 | "request-headers": [["User-Agent", "Mozilla/5.0"]], 75 | "fail-if-warnings": False, 76 | "dump-args": False, 77 | "ignore-args": False, 78 | "trace": False, 79 | } 80 | yaml.dump(config_dict, open("/reports/pandoc.yaml", "w"), default_flow_style=False) 81 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/network/utils.py: -------------------------------------------------------------------------------- 1 | import logging 2 | import os 3 | 4 | from collections import defaultdict 5 | 6 | from graphviz import Graph 7 | 8 | 9 | def extract_components_from_netbox_result(dataset, config): 10 | edges = [] 11 | nodes = [] 12 | records = defaultdict(dict) 13 | subgraphs = defaultdict(dict) 14 | for link in dataset: 15 | logging.debug("link: %s", link) 16 | # Create the internal references 17 | device_a = "d{}".format(link["interface_a"]["device"]["id"]) 18 | intf_a = "i{}".format(link["interface_a"]["id"]) 19 | device_b = "d{}".format(link["interface_b"]["device"]["id"]) 20 | intf_b = "i{}".format(link["interface_b"]["id"]) 21 | if config['subgraph']: 22 | subgraphs[device_a]["_info"] = link["interface_a"]["device"] 23 | subgraphs[device_b]["_info"] = link["interface_b"]["device"] 24 | subgraphs[device_a][intf_a] = link["interface_a"] 25 | subgraphs[device_b][intf_b] = link["interface_b"] 26 | else: 27 | records[device_a]["_info"] = link["interface_a"]["device"] 28 | records[device_b]["_info"] = link["interface_b"]["device"] 29 | records[device_a][intf_a] = link["interface_a"] 30 | records[device_b][intf_b] = link["interface_b"] 31 | intf_a = "{}:{}".format(device_a, intf_a) 32 | intf_b = "{}:{}".format(device_b, intf_b) 33 | edges.append({"a": intf_a, "b": intf_b}) 34 | return {"edges": edges, "nodes": nodes, "subgraphs": subgraphs, "records": records} 35 | 36 | 37 | def add_edges(graph, edges): 38 | for edge in edges: 39 | graph.edge(edge["a"], edge["b"]) 40 | 41 | 42 | def add_nodes(graph, nodes): 43 | pass 44 | 45 | 46 | def add_records(graph, records): 47 | for record_name, record in records.items(): 48 | label = "{}".format(record["_info"]["name"]) 49 | for intf_name, intf in record.items(): 50 | if not intf_name.startswith("_"): 51 | label += "|<{}> {}".format(intf_name, intf["name"]) 52 | graph.node(name=record_name, shape="record", label=label, url=intf["url"]) 53 | 54 | 55 | def add_subgraphs(graph, subgraphs): 56 | for subgraph_name, subgraph in subgraphs.items(): 57 | with graph.subgraph(name="cluster_" + subgraph_name) as subg: 58 | subg.attr(label=subgraph["_info"]["name"]) 59 | subg.attr(color="blue") 60 | for intf_name, intf in subgraph.items(): 61 | if not intf_name.startswith("_"): 62 | subg.node( 63 | name=intf_name, shape="box", label=intf["name"], url=intf["url"] 64 | ) 65 | 66 | 67 | def create_graphviz(components, config): 68 | graph = Graph( 69 | name=config["name"], engine=config["engine"], directory=config["output_path"] 70 | ) 71 | if config.get("horizontal"): 72 | rankdir = "TB" 73 | else: 74 | rankdir = "LR" 75 | graph.attr(rankdir="LR", overlap="false") 76 | 77 | add_subgraphs(graph, components["subgraphs"]) 78 | add_records(graph, components["records"]) 79 | add_nodes(graph, components["nodes"]) 80 | add_edges(graph, components["edges"]) 81 | 82 | return graph 83 | 84 | 85 | def make_dot_file(config, dataset): 86 | components = extract_components_from_netbox_result(dataset, config) 87 | graph = create_graphviz(components, config) 88 | filename = config["name"] + ".gv" 89 | graph.save(directory=config["output_path"], filename=filename) 90 | graph.render( 91 | directory=config["output_path"], 92 | filename=filename, 93 | view=config["live"], 94 | format=config["format"], 95 | ) 96 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/sdp-services-chpc/sdp-services-chpc.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{Server} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # Server 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **None** 27 | - Id : **None** 28 | - Netbox URL : **[None](None)** 29 | - Serial : **None** 30 | - Device Role : **None** 31 | - Device Type : **None** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **None** 37 | - Rack : **None** 38 | - U : **None** 39 | - Face : **None** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x64cd98f0341b4400 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **1** 50 | - Model : **PERC H330 Adp ** 51 | - Size : **931G** 52 | - Serial : **64cd98f0341b44002487c4590773867d** 53 | 54 | ### WWN:0x64cd98f0341b4400 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **DELL ** 60 | - Spinning Disk : **1** 61 | - Model : **PERC H330 Adp ** 62 | - Size : **7.3T** 63 | - Serial : **64cd98f0341b44002487c8b008b2ff8c** 64 | 65 | ## CPU 66 | 67 | ### CPU1 68 | 69 | 70 | **Specifications** 71 | 72 | - Vendor : **Intel Corp.** 73 | - Product : **Intel(R) Xeon(R) E-2146G CPU @ 3.50GHz** 74 | - Clock : **95.37MHz** 75 | - Cores : **enabled: 6/6, threads 12** 76 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_perfmon, art, avx, avx2, bmi1, bmi2, bts, clflush, clflushopt, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cx16, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, hle, hwp, hwp_act_window, hwp_epp, ibpb, ibrs, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pti, pts, rdrand, rdseed, rdtscp, rep_good, rtm, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, tsc_known_freq, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 77 | 78 | ## Memory 79 | 80 | ### A1 81 | 82 | 83 | **Specifications** 84 | 85 | - Description : **DIMM Synchronous 2666 MHz (0.4 ns)** 86 | - Vendor : **002C00000A02** 87 | - Product : **18ASF2G72AZ-2G6D1** 88 | - Size : **16.0GB** 89 | - Clock : **2666MHz** 90 | - Serial : **204A9F45** 91 | 92 | ### A2 93 | 94 | 95 | **Specifications** 96 | 97 | - Description : **DIMM Synchronous 2666 MHz (0.4 ns)** 98 | - Vendor : **002C00000A07** 99 | - Product : **18ASF2G72AZ-2G6D1** 100 | - Size : **16.0GB** 101 | - Clock : **2666MHz** 102 | - Serial : **204AAA4A** 103 | 104 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/cms4/cms4.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{cms4} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # cms4 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **2498** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/2498/](https://netbox.kat.ac.za/api/dcim/devices/2498/)** 29 | - Serial : **G63RBD3** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R6515** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R8** 38 | - U : **28** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x62cea7f0a5aa6b002893d52a5c5121a6 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **0** 50 | - Model : **PERC H740P Mini ** 51 | - Size : **446.6G** 52 | - Serial : **62cea7f0a5aa6b002893d52a5c5121a6** 53 | 54 | ## CPU 55 | 56 | ### CPU1 57 | 58 | 59 | **Specifications** 60 | 61 | - Vendor : **Advanced Micro Devices [AMD]** 62 | - Product : **AMD EPYC 7232P 8-Core Processor** 63 | - Clock : **1.86GHz** 64 | - Cores : **enabled: 8/8, threads 16** 65 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, avic, avx, avx2, bmi1, bmi2, bpext, cat_l3, cdp_l3, clflush, clflushopt, clwb, clzero, cmp_legacy, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpb, cpuid, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cr8_legacy, cx16, debugging extensions, decodeassists, extapic, extd_apicid, f16c, fast floating point save/restore, fast system calls, fast system calls, flushbyasid, fma, fsgsbase, fxsr_opt, hw_pstate, ibpb, ibrs, ibs, irperf, lahf_lm, lbrv, machine check architecture, machine check exceptions, mathematical co-processor, memory type range registers, misalignsse, model-specific registers, monitor, movbe, multimedia extensions (MMX), multimedia extensions (MMXExt), mwaitx, no-execute bit (NX), nonstop_tsc, nopl, npt, nrip_save, on-chip advanced programmable interrupt controller (APIC), osvw, overflow_recov, page attribute table, page global enable, page size extensions, pausefilter, pclmulqdq, pdpe1gb, perfctr_core, perfctr_llc, perfctr_nb, pfthreshold, pni, popcnt, rdpid, rdrand, rdseed, rdt_a, rdtscp, rep_good, sha_ni, skinit, smap, smca, sme, smep, ssbd, sse4_1, sse4_2, sse4a, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), succor, svm, svm_lock, tce, time stamp counter, topoext, tsc_scale, umip, v_vmsave_vmload, vgif, virtual mode extensions, vmcb_clean, vmmcall, wdt, wp, x2apic, xgetbv1, xsave, xsavec, xsaveerptr, xsaveopt, xsaves, xtopology** 66 | 67 | ## Memory 68 | 69 | ### A1 70 | 71 | 72 | **Specifications** 73 | 74 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 75 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 76 | - Product : **HMA82GR7CJR8N-XN** 77 | - Size : **16.0GB** 78 | - Clock : **3200MHz** 79 | - Serial : **445ABFC9** 80 | 81 | ### A2 82 | 83 | 84 | **Specifications** 85 | 86 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 87 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 88 | - Product : **HMA82GR7CJR8N-XN** 89 | - Size : **16.0GB** 90 | - Clock : **3200MHz** 91 | - Serial : **445AC02B** 92 | 93 | ### A3 94 | 95 | 96 | **Specifications** 97 | 98 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 99 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 100 | - Product : **HMA82GR7CJR8N-XN** 101 | - Size : **16.0GB** 102 | - Clock : **3200MHz** 103 | - Serial : **445ABFDD** 104 | 105 | ### A4 106 | 107 | 108 | **Specifications** 109 | 110 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 111 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 112 | - Product : **HMA82GR7CJR8N-XN** 113 | - Size : **16.0GB** 114 | - Clock : **3200MHz** 115 | - Serial : **445ABFCF** 116 | 117 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/cms1/cms1.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{cms1} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # cms1 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **2485** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/2485/](https://netbox.kat.ac.za/api/dcim/devices/2485/)** 29 | - Serial : **H63RBD3** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R6515** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R4** 38 | - U : **28** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x62cea7f0a5a73f002893d68c5d1e4c92 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **0** 50 | - Model : **PERC H740P Mini ** 51 | - Size : **446.6G** 52 | - Serial : **62cea7f0a5a73f002893d68c5d1e4c92** 53 | 54 | ## CPU 55 | 56 | ### CPU1 57 | 58 | 59 | **Specifications** 60 | 61 | - Vendor : **Advanced Micro Devices [AMD]** 62 | - Product : **AMD EPYC 7232P 8-Core Processor** 63 | - Clock : **1.86GHz** 64 | - Cores : **enabled: 8/8, threads 16** 65 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, avic, avx, avx2, bmi1, bmi2, bpext, cat_l3, cdp_l3, clflush, clflushopt, clwb, clzero, cmp_legacy, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpb, cpuid, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cr8_legacy, cx16, debugging extensions, decodeassists, extapic, extd_apicid, f16c, fast floating point save/restore, fast system calls, fast system calls, flushbyasid, fma, fsgsbase, fxsr_opt, hw_pstate, ibpb, ibrs, ibs, irperf, lahf_lm, lbrv, machine check architecture, machine check exceptions, mathematical co-processor, mba, memory type range registers, misalignsse, model-specific registers, monitor, movbe, multimedia extensions (MMX), multimedia extensions (MMXExt), mwaitx, no-execute bit (NX), nonstop_tsc, nopl, npt, nrip_save, on-chip advanced programmable interrupt controller (APIC), osvw, overflow_recov, page attribute table, page global enable, page size extensions, pausefilter, pclmulqdq, pdpe1gb, perfctr_core, perfctr_llc, perfctr_nb, pfthreshold, pni, popcnt, rdpid, rdrand, rdseed, rdt_a, rdtscp, rep_good, sev, sha_ni, skinit, smap, smca, sme, smep, ssbd, sse4_1, sse4_2, sse4a, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), succor, svm, svm_lock, tce, time stamp counter, topoext, tsc_scale, umip, v_vmsave_vmload, vgif, virtual mode extensions, vmcb_clean, vmmcall, wbnoinvd, wdt, wp, x2apic, xgetbv1, xsave, xsavec, xsaveerptr, xsaveopt, xsaves** 66 | 67 | ## Memory 68 | 69 | ### A1 70 | 71 | 72 | **Specifications** 73 | 74 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 75 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 76 | - Product : **HMA82GR7CJR8N-XN** 77 | - Size : **16.0GB** 78 | - Clock : **3200MHz** 79 | - Serial : **445ABF8D** 80 | 81 | ### A2 82 | 83 | 84 | **Specifications** 85 | 86 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 87 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 88 | - Product : **HMA82GR7CJR8N-XN** 89 | - Size : **16.0GB** 90 | - Clock : **3200MHz** 91 | - Serial : **445ABF98** 92 | 93 | ### A3 94 | 95 | 96 | **Specifications** 97 | 98 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 99 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 100 | - Product : **HMA82GR7CJR8N-XN** 101 | - Size : **16.0GB** 102 | - Clock : **3200MHz** 103 | - Serial : **445ABFCD** 104 | 105 | ### A4 106 | 107 | 108 | **Specifications** 109 | 110 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 111 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 112 | - Product : **HMA82GR7CJR8N-XN** 113 | - Size : **16.0GB** 114 | - Clock : **3200MHz** 115 | - Serial : **445ABF40** 116 | 117 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/cms2/cms2.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{cms2} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # cms2 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **2400** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/2400/](https://netbox.kat.ac.za/api/dcim/devices/2400/)** 29 | - Serial : **C63RBD3** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R6515** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R7** 38 | - U : **27** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x62cea7f0a5aa650028d755450407c0ff 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **0** 50 | - Model : **PERC H740P Mini ** 51 | - Size : **446.6G** 52 | - Serial : **62cea7f0a5aa650028d755450407c0ff** 53 | 54 | ## CPU 55 | 56 | ### CPU1 57 | 58 | 59 | **Specifications** 60 | 61 | - Vendor : **Advanced Micro Devices [AMD]** 62 | - Product : **AMD EPYC 7232P 8-Core Processor** 63 | - Clock : **1.86GHz** 64 | - Cores : **enabled: 8/8, threads 16** 65 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, avic, avx, avx2, bmi1, bmi2, bpext, cat_l3, cdp_l3, clflush, clflushopt, clwb, clzero, cmp_legacy, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpb, cpuid, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cr8_legacy, cx16, debugging extensions, decodeassists, extapic, extd_apicid, f16c, fast floating point save/restore, fast system calls, fast system calls, flushbyasid, fma, fsgsbase, fxsr_opt, hw_pstate, ibpb, ibrs, ibs, irperf, lahf_lm, lbrv, machine check architecture, machine check exceptions, mathematical co-processor, mba, memory type range registers, misalignsse, model-specific registers, monitor, movbe, multimedia extensions (MMX), multimedia extensions (MMXExt), mwaitx, no-execute bit (NX), nonstop_tsc, nopl, npt, nrip_save, on-chip advanced programmable interrupt controller (APIC), osvw, overflow_recov, page attribute table, page global enable, page size extensions, pausefilter, pclmulqdq, pdpe1gb, perfctr_core, perfctr_llc, perfctr_nb, pfthreshold, pni, popcnt, rdpid, rdrand, rdseed, rdt_a, rdtscp, rep_good, sev, sha_ni, skinit, smap, smca, sme, smep, ssbd, sse4_1, sse4_2, sse4a, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), succor, svm, svm_lock, tce, time stamp counter, topoext, tsc_scale, umip, v_vmsave_vmload, vgif, virtual mode extensions, vmcb_clean, vmmcall, wbnoinvd, wdt, wp, x2apic, xgetbv1, xsave, xsavec, xsaveerptr, xsaveopt, xsaves** 66 | 67 | ## Memory 68 | 69 | ### A1 70 | 71 | 72 | **Specifications** 73 | 74 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 75 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 76 | - Product : **HMA82GR7CJR8N-XN** 77 | - Size : **16.0GB** 78 | - Clock : **3200MHz** 79 | - Serial : **4459D240** 80 | 81 | ### A2 82 | 83 | 84 | **Specifications** 85 | 86 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 87 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 88 | - Product : **HMA82GR7CJR8N-XN** 89 | - Size : **16.0GB** 90 | - Clock : **3200MHz** 91 | - Serial : **4459D223** 92 | 93 | ### A3 94 | 95 | 96 | **Specifications** 97 | 98 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 99 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 100 | - Product : **HMA82GR7CJR8N-XN** 101 | - Size : **16.0GB** 102 | - Clock : **3200MHz** 103 | - Serial : **4459D24E** 104 | 105 | ### A4 106 | 107 | 108 | **Specifications** 109 | 110 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 111 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 112 | - Product : **HMA82GR7CJR8N-XN** 113 | - Size : **16.0GB** 114 | - Clock : **3200MHz** 115 | - Serial : **4459D289** 116 | 117 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/cms3/cms3.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{cms3} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # cms3 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **2500** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/2500/](https://netbox.kat.ac.za/api/dcim/devices/2500/)** 29 | - Serial : **D63RBD3** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R6515** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R3** 38 | - U : **25** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x62cea7f0a5a4c4002843f6345ce8f7c7 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **0** 50 | - Model : **PERC H740P Mini ** 51 | - Size : **446.6G** 52 | - Serial : **62cea7f0a5a4c4002843f6345ce8f7c7** 53 | 54 | ## CPU 55 | 56 | ### CPU1 57 | 58 | 59 | **Specifications** 60 | 61 | - Vendor : **Advanced Micro Devices [AMD]** 62 | - Product : **AMD EPYC 7232P 8-Core Processor** 63 | - Clock : **1.86GHz** 64 | - Cores : **enabled: 8/8, threads 16** 65 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, avic, avx, avx2, bmi1, bmi2, bpext, cat_l3, cdp_l3, clflush, clflushopt, clwb, clzero, cmp_legacy, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpb, cpuid, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cr8_legacy, cx16, debugging extensions, decodeassists, extapic, extd_apicid, f16c, fast floating point save/restore, fast system calls, fast system calls, flushbyasid, fma, fsgsbase, fxsr_opt, hw_pstate, ibpb, ibrs, ibs, irperf, lahf_lm, lbrv, machine check architecture, machine check exceptions, mathematical co-processor, mba, memory type range registers, misalignsse, model-specific registers, monitor, movbe, multimedia extensions (MMX), multimedia extensions (MMXExt), mwaitx, no-execute bit (NX), nonstop_tsc, nopl, npt, nrip_save, on-chip advanced programmable interrupt controller (APIC), osvw, overflow_recov, page attribute table, page global enable, page size extensions, pausefilter, pclmulqdq, pdpe1gb, perfctr_core, perfctr_llc, perfctr_nb, pfthreshold, pni, popcnt, rdpid, rdrand, rdseed, rdt_a, rdtscp, rep_good, sev, sha_ni, skinit, smap, smca, sme, smep, ssbd, sse4_1, sse4_2, sse4a, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), succor, svm, svm_lock, tce, time stamp counter, topoext, tsc_scale, umip, v_vmsave_vmload, vgif, virtual mode extensions, vmcb_clean, vmmcall, wbnoinvd, wdt, wp, x2apic, xgetbv1, xsave, xsavec, xsaveerptr, xsaveopt, xsaves** 66 | 67 | ## Memory 68 | 69 | ### A1 70 | 71 | 72 | **Specifications** 73 | 74 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 75 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 76 | - Product : **HMA82GR7CJR8N-XN** 77 | - Size : **16.0GB** 78 | - Clock : **3200MHz** 79 | - Serial : **4459D23F** 80 | 81 | ### A2 82 | 83 | 84 | **Specifications** 85 | 86 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 87 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 88 | - Product : **HMA82GR7CJR8N-XN** 89 | - Size : **16.0GB** 90 | - Clock : **3200MHz** 91 | - Serial : **445ABF2C** 92 | 93 | ### A3 94 | 95 | 96 | **Specifications** 97 | 98 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 99 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 100 | - Product : **HMA82GR7CJR8N-XN** 101 | - Size : **16.0GB** 102 | - Clock : **3200MHz** 103 | - Serial : **445ABFE9** 104 | 105 | ### A4 106 | 107 | 108 | **Specifications** 109 | 110 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 111 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 112 | - Product : **HMA82GR7CJR8N-XN** 113 | - Size : **16.0GB** 114 | - Clock : **3200MHz** 115 | - Serial : **445ABFDB** 116 | 117 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/cms5/cms5.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{cms5} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # cms5 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **2497** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/2497/](https://netbox.kat.ac.za/api/dcim/devices/2497/)** 29 | - Serial : **F63RBD3** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R6515** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R9** 38 | - U : **28** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x62cea7f0a5a7b400284411645d01fc54 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **0** 50 | - Model : **PERC H740P Mini ** 51 | - Size : **446.6G** 52 | - Serial : **62cea7f0a5a7b400284411645d01fc54** 53 | 54 | ## CPU 55 | 56 | ### CPU1 57 | 58 | 59 | **Specifications** 60 | 61 | - Vendor : **Advanced Micro Devices [AMD]** 62 | - Product : **AMD EPYC 7232P 8-Core Processor** 63 | - Clock : **1.86GHz** 64 | - Cores : **enabled: 8/8, threads 16** 65 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, avic, avx, avx2, bmi1, bmi2, bpext, cat_l3, cdp_l3, clflush, clflushopt, clwb, clzero, cmp_legacy, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpb, cpuid, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cr8_legacy, cx16, debugging extensions, decodeassists, extapic, extd_apicid, f16c, fast floating point save/restore, fast system calls, fast system calls, flushbyasid, fma, fsgsbase, fxsr_opt, hw_pstate, ibpb, ibrs, ibs, irperf, lahf_lm, lbrv, machine check architecture, machine check exceptions, mathematical co-processor, mba, memory type range registers, misalignsse, model-specific registers, monitor, movbe, multimedia extensions (MMX), multimedia extensions (MMXExt), mwaitx, no-execute bit (NX), nonstop_tsc, nopl, npt, nrip_save, on-chip advanced programmable interrupt controller (APIC), osvw, overflow_recov, page attribute table, page global enable, page size extensions, pausefilter, pclmulqdq, pdpe1gb, perfctr_core, perfctr_llc, perfctr_nb, pfthreshold, pni, popcnt, rdpid, rdrand, rdseed, rdt_a, rdtscp, rep_good, sev, sha_ni, skinit, smap, smca, sme, smep, ssbd, sse4_1, sse4_2, sse4a, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), succor, svm, svm_lock, tce, time stamp counter, topoext, tsc_scale, umip, v_vmsave_vmload, vgif, virtual mode extensions, vmcb_clean, vmmcall, wbnoinvd, wdt, wp, x2apic, xgetbv1, xsave, xsavec, xsaveerptr, xsaveopt, xsaves** 66 | 67 | ## Memory 68 | 69 | ### A1 70 | 71 | 72 | **Specifications** 73 | 74 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 75 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 76 | - Product : **HMA82GR7CJR8N-XN** 77 | - Size : **16.0GB** 78 | - Clock : **3200MHz** 79 | - Serial : **445ABF2F** 80 | 81 | ### A2 82 | 83 | 84 | **Specifications** 85 | 86 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 87 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 88 | - Product : **HMA82GR7CJR8N-XN** 89 | - Size : **16.0GB** 90 | - Clock : **3200MHz** 91 | - Serial : **445ABFD0** 92 | 93 | ### A3 94 | 95 | 96 | **Specifications** 97 | 98 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 99 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 100 | - Product : **HMA82GR7CJR8N-XN** 101 | - Size : **16.0GB** 102 | - Clock : **3200MHz** 103 | - Serial : **445ABFDE** 104 | 105 | ### A4 106 | 107 | 108 | **Specifications** 109 | 110 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) 3200 MHz (0.3 ns)** 111 | - Vendor : **Hynix Semiconductor (Hyundai Electronics)** 112 | - Product : **HMA82GR7CJR8N-XN** 113 | - Size : **16.0GB** 114 | - Clock : **3200MHz** 115 | - Serial : **445ABFDA** 116 | 117 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/web01/web01.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{web01} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # web01 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **68** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/68/](https://netbox.kat.ac.za/api/dcim/devices/68/)** 29 | - Serial : **7ZCK8D2** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R730** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R1** 38 | - U : **4** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x61866da055976600227451ef10f580bb 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **1** 50 | - Model : **PERC H730 Mini ** 51 | - Size : **465.3G** 52 | - Serial : **61866da055976600227451ef10f580bb** 53 | 54 | ## CPU 55 | 56 | ### CPU1 57 | 58 | 59 | **Specifications** 60 | 61 | - Vendor : **Intel Corp.** 62 | - Product : **Intel(R) Xeon(R) CPU E5-2637 v3 @ 3.50GHz** 63 | - Clock : **963.27MHz** 64 | - Cores : **enabled: 4/4, threads 4** 65 | - Capabilities : **36-bit page size extensions, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ida, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pti, pts, rdrand, rdtscp, rep_good, sdbg, self-snoop, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 66 | 67 | ## Memory 68 | 69 | ### A1 70 | 71 | 72 | **Specifications** 73 | 74 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 75 | - Vendor : **00AD00B300AD** 76 | - Product : **HMA84GL7AMR4N-TF** 77 | - Size : **32.0GB** 78 | - Clock : **2133MHz** 79 | - Serial : **C021296A** 80 | 81 | ### A2 82 | 83 | 84 | **Specifications** 85 | 86 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 87 | - Vendor : **00AD00B300AD** 88 | - Product : **HMA84GL7AMR4N-TF** 89 | - Size : **32.0GB** 90 | - Clock : **2133MHz** 91 | - Serial : **C021297C** 92 | 93 | ### A3 94 | 95 | 96 | **Specifications** 97 | 98 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 99 | - Vendor : **00CE063200CE** 100 | - Product : **M386A4G40DM0-CPB** 101 | - Size : **32.0GB** 102 | - Clock : **2133MHz** 103 | - Serial : **4012176F** 104 | 105 | ### A4 106 | 107 | 108 | **Specifications** 109 | 110 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 111 | - Vendor : **00AD00B300AD** 112 | - Product : **HMA84GL7AMR4N-TF** 113 | - Size : **32.0GB** 114 | - Clock : **2133MHz** 115 | - Serial : **C021294C** 116 | 117 | ### B1 118 | 119 | 120 | **Specifications** 121 | 122 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 123 | - Vendor : **00AD00B300AD** 124 | - Product : **HMA84GL7AMR4N-TF** 125 | - Size : **32.0GB** 126 | - Clock : **2133MHz** 127 | - Serial : **C021296B** 128 | 129 | ### B2 130 | 131 | 132 | **Specifications** 133 | 134 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 135 | - Vendor : **00AD00B300AD** 136 | - Product : **HMA84GL7AMR4N-TF** 137 | - Size : **32.0GB** 138 | - Clock : **2133MHz** 139 | - Serial : **C021296F** 140 | 141 | ### B3 142 | 143 | 144 | **Specifications** 145 | 146 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 147 | - Vendor : **00AD00B300AD** 148 | - Product : **HMA84GL7AMR4N-TF** 149 | - Size : **32.0GB** 150 | - Clock : **2133MHz** 151 | - Serial : **C021294B** 152 | 153 | ### B4 154 | 155 | 156 | **Specifications** 157 | 158 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 159 | - Vendor : **00AD00B300AD** 160 | - Product : **HMA84GL7AMR4N-TF** 161 | - Size : **32.0GB** 162 | - Clock : **2133MHz** 163 | - Serial : **C021296E** 164 | 165 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/stgr1/stgr1.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{stgr1} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # stgr1 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **87** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/87/](https://netbox.kat.ac.za/api/dcim/devices/87/)** 29 | - Serial : **9cjjqk2** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R730** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R1** 38 | - U : **35** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x61866da0bdde8700 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **1** 50 | - Model : **PERC H730 Mini ** 51 | - Size : **465.3G** 52 | - Serial : **61866da0bdde8700212f038404eef65d** 53 | 54 | ### WWN:0x61866da0bdde8700 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **DELL ** 60 | - Spinning Disk : **1** 61 | - Model : **PERC H730 Mini ** 62 | - Size : **2.7T** 63 | - Serial : **61866da0bdde8700212f038605047071** 64 | 65 | ### WWN:0x5001480000000000 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HL-DT-ST** 71 | - Spinning Disk : **1** 72 | - Model : **DVD+-RW GTA0N ** 73 | - Size : **1024M** 74 | - Serial : **KZOH46C1903** 75 | 76 | ## CPU 77 | 78 | ### CPU1 79 | 80 | 81 | **Specifications** 82 | 83 | - Vendor : **Intel Corp.** 84 | - Product : **Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz** 85 | - Clock : **963.27MHz** 86 | - Cores : **enabled: 4/4, threads 4** 87 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, hle, ibpb, ibrs, ida, intel_pt, invpcid, invpcid_single, kaiser, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pts, rdrand, rdseed, rdtscp, rep_good, rtm, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 88 | 89 | ## Memory 90 | 91 | ### A1 92 | 93 | 94 | **Specifications** 95 | 96 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 97 | - Vendor : **00AD00B300AD** 98 | - Product : **HMA84GL7AMR4N-TF** 99 | - Size : **31.9990234375GB** 100 | - Clock : **2133MHz** 101 | - Serial : **C021294D** 102 | 103 | ### A2 104 | 105 | 106 | **Specifications** 107 | 108 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 109 | - Vendor : **00AD00B300AD** 110 | - Product : **HMA84GL7AMR4N-TF** 111 | - Size : **31.9990234375GB** 112 | - Clock : **2133MHz** 113 | - Serial : **C0212956** 114 | 115 | ### A3 116 | 117 | 118 | **Specifications** 119 | 120 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 121 | - Vendor : **00AD00B300AD** 122 | - Product : **HMA84GL7AMR4N-TF** 123 | - Size : **31.9990234375GB** 124 | - Clock : **2133MHz** 125 | - Serial : **C0212954** 126 | 127 | ### A4 128 | 129 | 130 | **Specifications** 131 | 132 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 133 | - Vendor : **00AD00B300AD** 134 | - Product : **HMA84GL7AMR4N-TF** 135 | - Size : **31.9990234375GB** 136 | - Clock : **2133MHz** 137 | - Serial : **C021296D** 138 | 139 | ### B1 140 | 141 | 142 | **Specifications** 143 | 144 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 145 | - Vendor : **00AD00B300AD** 146 | - Product : **HMA84GL7AMR4N-TF** 147 | - Size : **31.9990234375GB** 148 | - Clock : **2133MHz** 149 | - Serial : **C021291F** 150 | 151 | ### B2 152 | 153 | 154 | **Specifications** 155 | 156 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 157 | - Vendor : **00AD00B300AD** 158 | - Product : **HMA84GL7AMR4N-TF** 159 | - Size : **31.9990234375GB** 160 | - Clock : **2133MHz** 161 | - Serial : **C021294F** 162 | 163 | ### B3 164 | 165 | 166 | **Specifications** 167 | 168 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 169 | - Vendor : **00AD00B300AD** 170 | - Product : **HMA84GL7AMR4N-TF** 171 | - Size : **31.9990234375GB** 172 | - Clock : **2133MHz** 173 | - Serial : **C0212958** 174 | 175 | ### B4 176 | 177 | 178 | **Specifications** 179 | 180 | - Description : **DIMM Synchronous 2133 MHz (0.5 ns)** 181 | - Vendor : **00AD00B300AD** 182 | - Product : **HMA84GL7AMR4N-TF** 183 | - Size : **31.9990234375GB** 184 | - Clock : **2133MHz** 185 | - Serial : **C02129AD** 186 | 187 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/stgr2/stgr2.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{stgr2} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # stgr2 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **88** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/88/](https://netbox.kat.ac.za/api/dcim/devices/88/)** 29 | - Serial : **9clcqk2** 30 | - Device Role : **Server** 31 | - Device Type : **Dell R730** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R1** 38 | - U : **33** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x61866da0bddb7f002129abc007185ea9 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **DELL ** 49 | - Spinning Disk : **1** 50 | - Model : **PERC H730 Mini ** 51 | - Size : **465.3G** 52 | - Serial : **61866da0bddb7f002129abc007185ea9** 53 | 54 | ### WWN:0x61866da0bddb7f0026c991f5afd7a240 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **DELL ** 60 | - Spinning Disk : **1** 61 | - Model : **PERC H730 Mini ** 62 | - Size : **18.2T** 63 | - Serial : **61866da0bddb7f0026c991f5afd7a240** 64 | 65 | ### WWN:0x5001480000000000 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HL-DT-ST** 71 | - Spinning Disk : **1** 72 | - Model : **DVD+-RW GTA0N ** 73 | - Size : **1024M** 74 | - Serial : **KZJH46C2152** 75 | 76 | ## CPU 77 | 78 | ### CPU1 79 | 80 | 81 | **Specifications** 82 | 83 | - Vendor : **Intel Corp.** 84 | - Product : **Intel(R) Xeon(R) CPU E5-2637 v4 @ 3.50GHz** 85 | - Clock : **963.27MHz** 86 | - Cores : **enabled: 4/4, threads 4** 87 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, ept_ad, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, hle, ibpb, ibrs, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pti, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, rtm, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 88 | 89 | ## Memory 90 | 91 | ### A1 92 | 93 | 94 | **Specifications** 95 | 96 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 97 | - Vendor : **00AD00B300AD** 98 | - Product : **HMA84GL7AMR4N-TF** 99 | - Size : **32.0GB** 100 | - Clock : **2133MHz** 101 | - Serial : **C02129E7** 102 | 103 | ### A2 104 | 105 | 106 | **Specifications** 107 | 108 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 109 | - Vendor : **00AD00B300AD** 110 | - Product : **HMA84GL7AMR4N-TF** 111 | - Size : **32.0GB** 112 | - Clock : **2133MHz** 113 | - Serial : **C0212957** 114 | 115 | ### A3 116 | 117 | 118 | **Specifications** 119 | 120 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 121 | - Vendor : **00AD00B300AD** 122 | - Product : **HMA84GL7AMR4N-TF** 123 | - Size : **32.0GB** 124 | - Clock : **2133MHz** 125 | - Serial : **C0212950** 126 | 127 | ### A4 128 | 129 | 130 | **Specifications** 131 | 132 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 133 | - Vendor : **00AD00B300AD** 134 | - Product : **HMA84GL7AMR4N-TF** 135 | - Size : **32.0GB** 136 | - Clock : **2133MHz** 137 | - Serial : **C0212953** 138 | 139 | ### B1 140 | 141 | 142 | **Specifications** 143 | 144 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 145 | - Vendor : **00AD00B300AD** 146 | - Product : **HMA84GL7AMR4N-TF** 147 | - Size : **32.0GB** 148 | - Clock : **2133MHz** 149 | - Serial : **C0212955** 150 | 151 | ### B2 152 | 153 | 154 | **Specifications** 155 | 156 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 157 | - Vendor : **00AD00B300AD** 158 | - Product : **HMA84GL7AMR4N-TF** 159 | - Size : **32.0GB** 160 | - Clock : **2133MHz** 161 | - Serial : **C0212951** 162 | 163 | ### B3 164 | 165 | 166 | **Specifications** 167 | 168 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 169 | - Vendor : **00AD00B300AD** 170 | - Product : **HMA84GL7AMR4N-TF** 171 | - Size : **32.0GB** 172 | - Clock : **2133MHz** 173 | - Serial : **C0212952** 174 | 175 | ### B4 176 | 177 | 178 | **Specifications** 179 | 180 | - Description : **DIMM DDR4 Synchronous Registered (Buffered) LRDIMM 2133 MHz (0.5 ns)** 181 | - Vendor : **00AD00B300AD** 182 | - Product : **HMA84GL7AMR4N-TF** 183 | - Size : **32.0GB** 184 | - Clock : **2133MHz** 185 | - Serial : **C02129E6** 186 | 187 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/dxd01/dxd01.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{dxd01} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # dxd01 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **2403** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/2403/](https://netbox.kat.ac.za/api/dcim/devices/2403/)** 29 | - Serial : **BQ6FFD3** 30 | - Device Role : **Storage** 31 | - Device Type : **Dell R740xd2** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R3** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x5000039aa82949a9 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **TOSHIBA ** 49 | - Spinning Disk : **1** 50 | - Model : **MG07SCA12TEY ** 51 | - Size : **10.7T** 52 | - Serial : **5000039aa82949a9** 53 | 54 | ### WWN:0x5000039aa8208d61 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **TOSHIBA ** 60 | - Spinning Disk : **1** 61 | - Model : **MG07SCA12TEY ** 62 | - Size : **10.7T** 63 | - Serial : **5000039aa8208d61** 64 | 65 | ### WWN:0x5000039aa8294a29 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **TOSHIBA ** 71 | - Spinning Disk : **1** 72 | - Model : **MG07SCA12TEY ** 73 | - Size : **10.7T** 74 | - Serial : **5000039aa8294a29** 75 | 76 | ### WWN:0x5000039aa82133f1 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **TOSHIBA ** 82 | - Spinning Disk : **1** 83 | - Model : **MG07SCA12TEY ** 84 | - Size : **10.7T** 85 | - Serial : **5000039aa82133f1** 86 | 87 | ### WWN:0x5000039aa8215f7d 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **TOSHIBA ** 93 | - Spinning Disk : **1** 94 | - Model : **MG07SCA12TEY ** 95 | - Size : **10.7T** 96 | - Serial : **5000039aa8215f7d** 97 | 98 | ### WWN:0x5000039aa8294a05 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **TOSHIBA ** 104 | - Spinning Disk : **1** 105 | - Model : **MG07SCA12TEY ** 106 | - Size : **10.7T** 107 | - Serial : **5000039aa8294a05** 108 | 109 | ### WWN:0x5000039aa829534d 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **TOSHIBA ** 115 | - Spinning Disk : **1** 116 | - Model : **MG07SCA12TEY ** 117 | - Size : **10.7T** 118 | - Serial : **5000039aa829534d** 119 | 120 | ### WWN:0x5000039aa82949b5 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **TOSHIBA ** 126 | - Spinning Disk : **1** 127 | - Model : **MG07SCA12TEY ** 128 | - Size : **10.7T** 129 | - Serial : **5000039aa82949b5** 130 | 131 | ### WWN:0x5000039aa821602d 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **TOSHIBA ** 137 | - Spinning Disk : **1** 138 | - Model : **MG07SCA12TEY ** 139 | - Size : **10.7T** 140 | - Serial : **5000039aa821602d** 141 | 142 | ### WWN:0x5000039aa8294fcd 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **TOSHIBA ** 148 | - Spinning Disk : **1** 149 | - Model : **MG07SCA12TEY ** 150 | - Size : **10.7T** 151 | - Serial : **5000039aa8294fcd** 152 | 153 | ### WWN:0x5000039aa8294af1 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **TOSHIBA ** 159 | - Spinning Disk : **1** 160 | - Model : **MG07SCA12TEY ** 161 | - Size : **10.7T** 162 | - Serial : **5000039aa8294af1** 163 | 164 | ### WWN:0x5000039aa8295315 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **TOSHIBA ** 170 | - Spinning Disk : **1** 171 | - Model : **MG07SCA12TEY ** 172 | - Size : **10.7T** 173 | - Serial : **5000039aa8295315** 174 | 175 | ### WWN:0x5000039aa82949b9 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **TOSHIBA ** 181 | - Spinning Disk : **1** 182 | - Model : **MG07SCA12TEY ** 183 | - Size : **10.7T** 184 | - Serial : **5000039aa82949b9** 185 | 186 | ### WWN:0x5000039aa82951e1 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **TOSHIBA ** 192 | - Spinning Disk : **1** 193 | - Model : **MG07SCA12TEY ** 194 | - Size : **10.7T** 195 | - Serial : **5000039aa82951e1** 196 | 197 | ### WWN:0x5000039aa82949f5 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **TOSHIBA ** 203 | - Spinning Disk : **1** 204 | - Model : **MG07SCA12TEY ** 205 | - Size : **10.7T** 206 | - Serial : **5000039aa82949f5** 207 | 208 | ### WWN:0x5000039aa8215f65 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **TOSHIBA ** 214 | - Spinning Disk : **1** 215 | - Model : **MG07SCA12TEY ** 216 | - Size : **10.7T** 217 | - Serial : **5000039aa8215f65** 218 | 219 | ### WWN:0x5000039aa8295351 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **TOSHIBA ** 225 | - Spinning Disk : **1** 226 | - Model : **MG07SCA12TEY ** 227 | - Size : **10.7T** 228 | - Serial : **5000039aa8295351** 229 | 230 | ### WWN:0x5000039aa8295011 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **TOSHIBA ** 236 | - Spinning Disk : **1** 237 | - Model : **MG07SCA12TEY ** 238 | - Size : **10.7T** 239 | - Serial : **5000039aa8295011** 240 | 241 | ### WWN:0x5000039aa8295009 242 | 243 | 244 | **Specifications** 245 | 246 | - Vendor : **TOSHIBA ** 247 | - Spinning Disk : **1** 248 | - Model : **MG07SCA12TEY ** 249 | - Size : **10.7T** 250 | - Serial : **5000039aa8295009** 251 | 252 | ### WWN:0x62cea7f0a0553400 253 | 254 | 255 | **Specifications** 256 | 257 | - Vendor : **DELL ** 258 | - Spinning Disk : **1** 259 | - Model : **PERC H730P Mini ** 260 | - Size : **446.6G** 261 | - Serial : **62cea7f0a05534002843f875038fd79b** 262 | 263 | ## CPU 264 | 265 | ### CPU1 266 | 267 | 268 | **Specifications** 269 | 270 | - Vendor : **Intel Corp.** 271 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 272 | - Clock : **963.27MHz** 273 | - Cores : **enabled: 8/8, threads 16** 274 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_ppin, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, monitor, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 275 | 276 | ## Memory 277 | 278 | ### A1 279 | 280 | 281 | **Specifications** 282 | 283 | - Description : **DIMM Synchronous 3200 MHz (0.3 ns)** 284 | - Vendor : **002C0632002C** 285 | - Product : **36ASF4G72PZ-3G2E7** 286 | - Size : **32.0GB** 287 | - Clock : **3200MHz** 288 | - Serial : **2C8F15AB** 289 | 290 | ### A2 291 | 292 | 293 | **Specifications** 294 | 295 | - Description : **DIMM Synchronous 3200 MHz (0.3 ns)** 296 | - Vendor : **002C0632002C** 297 | - Product : **36ASF4G72PZ-3G2E7** 298 | - Size : **32.0GB** 299 | - Clock : **3200MHz** 300 | - Serial : **2C8F169D** 301 | 302 | ### A3 303 | 304 | 305 | **Specifications** 306 | 307 | - Description : **DIMM Synchronous 3200 MHz (0.3 ns)** 308 | - Vendor : **002C0632002C** 309 | - Product : **36ASF4G72PZ-3G2E7** 310 | - Size : **32.0GB** 311 | - Clock : **3200MHz** 312 | - Serial : **2C8F4255** 313 | 314 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/hss01/hss01.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{hss01} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # hss01 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **1668** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/1668/](https://netbox.kat.ac.za/api/dcim/devices/1668/)** 29 | - Serial : **2102312ALSFSL6000035** 30 | - Device Role : **Storage** 31 | - Device Type : **Huawei 2288H V5** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R9** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x64cf55b2d0765000 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **AVAGO ** 49 | - Spinning Disk : **1** 50 | - Model : **AVAGO ** 51 | - Size : **222.6G** 52 | - Serial : **64cf55b2d07650002718327c278c1324** 53 | 54 | ### WWN:0x5000cca2912e4ff0 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **HGST ** 60 | - Spinning Disk : **1** 61 | - Model : **HUH721212AL5200 ** 62 | - Size : **10.9T** 63 | - Serial : **5000cca2912e4ff0** 64 | 65 | ### WWN:0x5000cca2913413fc 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HGST ** 71 | - Spinning Disk : **1** 72 | - Model : **HUH721212AL5200 ** 73 | - Size : **10.9T** 74 | - Serial : **5000cca2913413fc** 75 | 76 | ### WWN:0x5000cca29130e570 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **HGST ** 82 | - Spinning Disk : **1** 83 | - Model : **HUH721212AL5200 ** 84 | - Size : **10.9T** 85 | - Serial : **5000cca29130e570** 86 | 87 | ### WWN:0x5000cca291341490 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **HGST ** 93 | - Spinning Disk : **1** 94 | - Model : **HUH721212AL5200 ** 95 | - Size : **10.9T** 96 | - Serial : **5000cca291341490** 97 | 98 | ### WWN:0x5000cca2912cb880 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **HGST ** 104 | - Spinning Disk : **1** 105 | - Model : **HUH721212AL5200 ** 106 | - Size : **10.9T** 107 | - Serial : **5000cca2912cb880** 108 | 109 | ### WWN:0x5000cca26fd1f854 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **HGST ** 115 | - Spinning Disk : **1** 116 | - Model : **HUH721212AL5200 ** 117 | - Size : **10.9T** 118 | - Serial : **5000cca26fd1f854** 119 | 120 | ### WWN:0x5000cca29132f444 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **HGST ** 126 | - Spinning Disk : **1** 127 | - Model : **HUH721212AL5200 ** 128 | - Size : **10.9T** 129 | - Serial : **5000cca29132f444** 130 | 131 | ### WWN:0x5000cca2913416e4 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **HGST ** 137 | - Spinning Disk : **1** 138 | - Model : **HUH721212AL5200 ** 139 | - Size : **10.9T** 140 | - Serial : **5000cca2913416e4** 141 | 142 | ### WWN:0x5000cca2912e05f8 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **HGST ** 148 | - Spinning Disk : **1** 149 | - Model : **HUH721212AL5200 ** 150 | - Size : **10.9T** 151 | - Serial : **5000cca2912e05f8** 152 | 153 | ### WWN:0x5000cca29134632c 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **HGST ** 159 | - Spinning Disk : **1** 160 | - Model : **HUH721212AL5200 ** 161 | - Size : **10.9T** 162 | - Serial : **5000cca29134632c** 163 | 164 | ### WWN:0x5000cca29131121c 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **HGST ** 170 | - Spinning Disk : **1** 171 | - Model : **HUH721212AL5200 ** 172 | - Size : **10.9T** 173 | - Serial : **5000cca29131121c** 174 | 175 | ### WWN:0x5000cca29129b0cc 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **HGST ** 181 | - Spinning Disk : **1** 182 | - Model : **HUH721212AL5200 ** 183 | - Size : **10.9T** 184 | - Serial : **5000cca29129b0cc** 185 | 186 | ### WWN:0x5000cca291181344 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **HGST ** 192 | - Spinning Disk : **1** 193 | - Model : **HUH721212AL5200 ** 194 | - Size : **10.9T** 195 | - Serial : **5000cca291181344** 196 | 197 | ### WWN:0x5000cca29134b13c 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **HGST ** 203 | - Spinning Disk : **1** 204 | - Model : **HUH721212AL5200 ** 205 | - Size : **10.9T** 206 | - Serial : **5000cca29134b13c** 207 | 208 | ### WWN:0x5000cca29124b5d8 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **HGST ** 214 | - Spinning Disk : **1** 215 | - Model : **HUH721212AL5200 ** 216 | - Size : **10.9T** 217 | - Serial : **5000cca29124b5d8** 218 | 219 | ### WWN:0x5000cca2912ab034 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **HGST ** 225 | - Spinning Disk : **1** 226 | - Model : **HUH721212AL5200 ** 227 | - Size : **10.9T** 228 | - Serial : **5000cca2912ab034** 229 | 230 | ## CPU 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **Intel Corp.** 236 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 237 | - Clock : **95.37MHz** 238 | - Cores : **enabled: 8/8, threads 16** 239 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 240 | 241 | 242 | **Specifications** 243 | 244 | - Vendor : **Intel Corp.** 245 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 246 | - Clock : **95.37MHz** 247 | - Cores : **enabled: 8/8, threads 16** 248 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 249 | 250 | ## Memory 251 | 252 | ### DIMM000 J22 253 | 254 | 255 | **Specifications** 256 | 257 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 258 | - Vendor : **Hynix** 259 | - Product : **HMA84GR7JJR4N-WM** 260 | - Size : **32.0GB** 261 | - Clock : **2933MHz** 262 | - Serial : **213DE8D1** 263 | 264 | ### DIMM010 J24 265 | 266 | 267 | **Specifications** 268 | 269 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 270 | - Vendor : **Hynix** 271 | - Product : **HMA84GR7JJR4N-WM** 272 | - Size : **32.0GB** 273 | - Clock : **2933MHz** 274 | - Serial : **213DE8E2** 275 | 276 | ### DIMM100 J34 277 | 278 | 279 | **Specifications** 280 | 281 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 282 | - Vendor : **Hynix** 283 | - Product : **HMA84GR7JJR4N-WM** 284 | - Size : **32.0GB** 285 | - Clock : **2933MHz** 286 | - Serial : **213DE804** 287 | 288 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/hss02/hss02.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{hss02} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # hss02 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **1667** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/1667/](https://netbox.kat.ac.za/api/dcim/devices/1667/)** 29 | - Serial : **2102312ALSFSL6000032** 30 | - Device Role : **Storage** 31 | - Device Type : **Huawei 2288H V5** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R8** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x5000cca2912e6c28 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **HGST ** 49 | - Spinning Disk : **1** 50 | - Model : **HUH721212AL5200 ** 51 | - Size : **10.9T** 52 | - Serial : **5000cca2912e6c28** 53 | 54 | ### WWN:0x5000cca291286c48 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **HGST ** 60 | - Spinning Disk : **1** 61 | - Model : **HUH721212AL5200 ** 62 | - Size : **10.9T** 63 | - Serial : **5000cca291286c48** 64 | 65 | ### WWN:0x5000cca2912ac294 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HGST ** 71 | - Spinning Disk : **1** 72 | - Model : **HUH721212AL5200 ** 73 | - Size : **10.9T** 74 | - Serial : **5000cca2912ac294** 75 | 76 | ### WWN:0x5000cca29132f380 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **HGST ** 82 | - Spinning Disk : **1** 83 | - Model : **HUH721212AL5200 ** 84 | - Size : **10.9T** 85 | - Serial : **5000cca29132f380** 86 | 87 | ### WWN:0x5000cca291346d4c 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **HGST ** 93 | - Spinning Disk : **1** 94 | - Model : **HUH721212AL5200 ** 95 | - Size : **10.9T** 96 | - Serial : **5000cca291346d4c** 97 | 98 | ### WWN:0x5000cca291345484 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **HGST ** 104 | - Spinning Disk : **1** 105 | - Model : **HUH721212AL5200 ** 106 | - Size : **10.9T** 107 | - Serial : **5000cca291345484** 108 | 109 | ### WWN:0x5000cca291346584 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **HGST ** 115 | - Spinning Disk : **1** 116 | - Model : **HUH721212AL5200 ** 117 | - Size : **10.9T** 118 | - Serial : **5000cca291346584** 119 | 120 | ### WWN:0x5000cca29134174c 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **HGST ** 126 | - Spinning Disk : **1** 127 | - Model : **HUH721212AL5200 ** 128 | - Size : **10.9T** 129 | - Serial : **5000cca29134174c** 130 | 131 | ### WWN:0x5000cca2912e3f20 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **HGST ** 137 | - Spinning Disk : **1** 138 | - Model : **HUH721212AL5200 ** 139 | - Size : **10.9T** 140 | - Serial : **5000cca2912e3f20** 141 | 142 | ### WWN:0x5000cca29134b2b8 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **HGST ** 148 | - Spinning Disk : **1** 149 | - Model : **HUH721212AL5200 ** 150 | - Size : **10.9T** 151 | - Serial : **5000cca29134b2b8** 152 | 153 | ### WWN:0x5000cca291345690 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **HGST ** 159 | - Spinning Disk : **1** 160 | - Model : **HUH721212AL5200 ** 161 | - Size : **10.9T** 162 | - Serial : **5000cca291345690** 163 | 164 | ### WWN:0x5000cca291346bb4 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **HGST ** 170 | - Spinning Disk : **1** 171 | - Model : **HUH721212AL5200 ** 172 | - Size : **10.9T** 173 | - Serial : **5000cca291346bb4** 174 | 175 | ### WWN:0x5000cca291347328 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **HGST ** 181 | - Spinning Disk : **1** 182 | - Model : **HUH721212AL5200 ** 183 | - Size : **10.9T** 184 | - Serial : **5000cca291347328** 185 | 186 | ### WWN:0x5000cca291346360 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **HGST ** 192 | - Spinning Disk : **1** 193 | - Model : **HUH721212AL5200 ** 194 | - Size : **10.9T** 195 | - Serial : **5000cca291346360** 196 | 197 | ### WWN:0x5000cca29134565c 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **HGST ** 203 | - Spinning Disk : **1** 204 | - Model : **HUH721212AL5200 ** 205 | - Size : **10.9T** 206 | - Serial : **5000cca29134565c** 207 | 208 | ### WWN:0x5000cca291306d30 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **HGST ** 214 | - Spinning Disk : **1** 215 | - Model : **HUH721212AL5200 ** 216 | - Size : **10.9T** 217 | - Serial : **5000cca291306d30** 218 | 219 | ### WWN:0x64cf55b2d0764000 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **AVAGO ** 225 | - Spinning Disk : **1** 226 | - Model : **AVAGO ** 227 | - Size : **222.6G** 228 | - Serial : **64cf55b2d076400026ed54951288c81e** 229 | 230 | ## CPU 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **Intel Corp.** 236 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 237 | - Clock : **95.37MHz** 238 | - Cores : **enabled: 8/8, threads 16** 239 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 240 | 241 | 242 | **Specifications** 243 | 244 | - Vendor : **Intel Corp.** 245 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 246 | - Clock : **95.37MHz** 247 | - Cores : **enabled: 8/8, threads 16** 248 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 249 | 250 | ## Memory 251 | 252 | ### DIMM000 J22 253 | 254 | 255 | **Specifications** 256 | 257 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 258 | - Vendor : **Hynix** 259 | - Product : **HMA84GR7JJR4N-WM** 260 | - Size : **32.0GB** 261 | - Clock : **2933MHz** 262 | - Serial : **213DE854** 263 | 264 | ### DIMM010 J24 265 | 266 | 267 | **Specifications** 268 | 269 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 270 | - Vendor : **Hynix** 271 | - Product : **HMA84GR7JJR4N-WM** 272 | - Size : **32.0GB** 273 | - Clock : **2933MHz** 274 | - Serial : **213DE927** 275 | 276 | ### DIMM100 J34 277 | 278 | 279 | **Specifications** 280 | 281 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 282 | - Vendor : **Hynix** 283 | - Product : **HMA84GR7JJR4N-WM** 284 | - Size : **32.0GB** 285 | - Clock : **2933MHz** 286 | - Serial : **213DE811** 287 | 288 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/hss03/hss03.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{hss03} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # hss03 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **1848** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/1848/](https://netbox.kat.ac.za/api/dcim/devices/1848/)** 29 | - Serial : **2102312ALSFSL6000034** 30 | - Device Role : **Storage** 31 | - Device Type : **Huawei 2288H V5** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R4** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x64cf55b2d0768000 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **AVAGO ** 49 | - Spinning Disk : **1** 50 | - Model : **AVAGO ** 51 | - Size : **222.6G** 52 | - Serial : **64cf55b2d0768000271877220a878d7a** 53 | 54 | ### WWN:0x5000cca29124389c 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **HGST ** 60 | - Spinning Disk : **1** 61 | - Model : **HUH721212AL5200 ** 62 | - Size : **10.9T** 63 | - Serial : **5000cca29124389c** 64 | 65 | ### WWN:0x5000cca29129bfb0 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HGST ** 71 | - Spinning Disk : **1** 72 | - Model : **HUH721212AL5200 ** 73 | - Size : **10.9T** 74 | - Serial : **5000cca29129bfb0** 75 | 76 | ### WWN:0x5000cca291294df8 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **HGST ** 82 | - Spinning Disk : **1** 83 | - Model : **HUH721212AL5200 ** 84 | - Size : **10.9T** 85 | - Serial : **5000cca291294df8** 86 | 87 | ### WWN:0x5000cca291346d44 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **HGST ** 93 | - Spinning Disk : **1** 94 | - Model : **HUH721212AL5200 ** 95 | - Size : **10.9T** 96 | - Serial : **5000cca291346d44** 97 | 98 | ### WWN:0x5000cca291341788 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **HGST ** 104 | - Spinning Disk : **1** 105 | - Model : **HUH721212AL5200 ** 106 | - Size : **10.9T** 107 | - Serial : **5000cca291341788** 108 | 109 | ### WWN:0x5000cca291328350 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **HGST ** 115 | - Spinning Disk : **1** 116 | - Model : **HUH721212AL5200 ** 117 | - Size : **10.9T** 118 | - Serial : **5000cca291328350** 119 | 120 | ### WWN:0x5000cca2913463d8 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **HGST ** 126 | - Spinning Disk : **1** 127 | - Model : **HUH721212AL5200 ** 128 | - Size : **10.9T** 129 | - Serial : **5000cca2913463d8** 130 | 131 | ### WWN:0x5000cca2912ac3c0 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **HGST ** 137 | - Spinning Disk : **1** 138 | - Model : **HUH721212AL5200 ** 139 | - Size : **10.9T** 140 | - Serial : **5000cca2912ac3c0** 141 | 142 | ### WWN:0x5000cca29134b194 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **HGST ** 148 | - Spinning Disk : **1** 149 | - Model : **HUH721212AL5200 ** 150 | - Size : **10.9T** 151 | - Serial : **5000cca29134b194** 152 | 153 | ### WWN:0x5000cca291328644 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **HGST ** 159 | - Spinning Disk : **1** 160 | - Model : **HUH721212AL5200 ** 161 | - Size : **10.9T** 162 | - Serial : **5000cca291328644** 163 | 164 | ### WWN:0x5000cca291346a38 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **HGST ** 170 | - Spinning Disk : **1** 171 | - Model : **HUH721212AL5200 ** 172 | - Size : **10.9T** 173 | - Serial : **5000cca291346a38** 174 | 175 | ### WWN:0x5000cca291346be0 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **HGST ** 181 | - Spinning Disk : **1** 182 | - Model : **HUH721212AL5200 ** 183 | - Size : **10.9T** 184 | - Serial : **5000cca291346be0** 185 | 186 | ### WWN:0x5000cca291345618 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **HGST ** 192 | - Spinning Disk : **1** 193 | - Model : **HUH721212AL5200 ** 194 | - Size : **10.9T** 195 | - Serial : **5000cca291345618** 196 | 197 | ### WWN:0x5000cca2912d54d0 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **HGST ** 203 | - Spinning Disk : **1** 204 | - Model : **HUH721212AL5200 ** 205 | - Size : **10.9T** 206 | - Serial : **5000cca2912d54d0** 207 | 208 | ### WWN:0x5000cca2912691d0 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **HGST ** 214 | - Spinning Disk : **1** 215 | - Model : **HUH721212AL5200 ** 216 | - Size : **10.9T** 217 | - Serial : **5000cca2912691d0** 218 | 219 | ### WWN:0x5000cca2912ac3c4 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **HGST ** 225 | - Spinning Disk : **1** 226 | - Model : **HUH721212AL5200 ** 227 | - Size : **10.9T** 228 | - Serial : **5000cca2912ac3c4** 229 | 230 | ## CPU 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **Intel Corp.** 236 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 237 | - Clock : **95.37MHz** 238 | - Cores : **enabled: 8/8, threads 16** 239 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 240 | 241 | 242 | **Specifications** 243 | 244 | - Vendor : **Intel Corp.** 245 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 246 | - Clock : **95.37MHz** 247 | - Cores : **enabled: 8/8, threads 16** 248 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 249 | 250 | ## Memory 251 | 252 | ### DIMM000 J22 253 | 254 | 255 | **Specifications** 256 | 257 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 258 | - Vendor : **Hynix** 259 | - Product : **HMA84GR7JJR4N-WM** 260 | - Size : **32.0GB** 261 | - Clock : **2933MHz** 262 | - Serial : **213DE8DB** 263 | 264 | ### DIMM010 J24 265 | 266 | 267 | **Specifications** 268 | 269 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 270 | - Vendor : **Hynix** 271 | - Product : **HMA84GR7JJR4N-WM** 272 | - Size : **32.0GB** 273 | - Clock : **2933MHz** 274 | - Serial : **213DE929** 275 | 276 | ### DIMM100 J34 277 | 278 | 279 | **Specifications** 280 | 281 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 282 | - Vendor : **Hynix** 283 | - Product : **HMA84GR7JJR4N-WM** 284 | - Size : **32.0GB** 285 | - Clock : **2933MHz** 286 | - Serial : **213DE7F6** 287 | 288 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/hss04/hss04.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{hss04} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # hss04 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **1851** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/1851/](https://netbox.kat.ac.za/api/dcim/devices/1851/)** 29 | - Serial : **2102312ALSFSL6000036** 30 | - Device Role : **Storage** 31 | - Device Type : **Huawei 2288H V5** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R5** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x64cf55b2d0766000 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **AVAGO ** 49 | - Spinning Disk : **1** 50 | - Model : **AVAGO ** 51 | - Size : **222.6G** 52 | - Serial : **64cf55b2d076600027186abf052c6bf6** 53 | 54 | ### WWN:0x5000cca2912ac234 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **HGST ** 60 | - Spinning Disk : **1** 61 | - Model : **HUH721212AL5200 ** 62 | - Size : **10.9T** 63 | - Serial : **5000cca2912ac234** 64 | 65 | ### WWN:0x5000cca29134140c 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HGST ** 71 | - Spinning Disk : **1** 72 | - Model : **HUH721212AL5200 ** 73 | - Size : **10.9T** 74 | - Serial : **5000cca29134140c** 75 | 76 | ### WWN:0x5000cca291341528 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **HGST ** 82 | - Spinning Disk : **1** 83 | - Model : **HUH721212AL5200 ** 84 | - Size : **10.9T** 85 | - Serial : **5000cca291341528** 86 | 87 | ### WWN:0x5000cca29125f69c 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **HGST ** 93 | - Spinning Disk : **1** 94 | - Model : **HUH721212AL5200 ** 95 | - Size : **10.9T** 96 | - Serial : **5000cca29125f69c** 97 | 98 | ### WWN:0x5000cca291329468 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **HGST ** 104 | - Spinning Disk : **1** 105 | - Model : **HUH721212AL5200 ** 106 | - Size : **10.9T** 107 | - Serial : **5000cca291329468** 108 | 109 | ### WWN:0x5000cca29134541c 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **HGST ** 115 | - Spinning Disk : **1** 116 | - Model : **HUH721212AL5200 ** 117 | - Size : **10.9T** 118 | - Serial : **5000cca29134541c** 119 | 120 | ### WWN:0x5000cca29134b0a4 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **HGST ** 126 | - Spinning Disk : **1** 127 | - Model : **HUH721212AL5200 ** 128 | - Size : **10.9T** 129 | - Serial : **5000cca29134b0a4** 130 | 131 | ### WWN:0x5000cca2913473dc 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **HGST ** 137 | - Spinning Disk : **1** 138 | - Model : **HUH721212AL5200 ** 139 | - Size : **10.9T** 140 | - Serial : **5000cca2913473dc** 141 | 142 | ### WWN:0x5000cca291345598 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **HGST ** 148 | - Spinning Disk : **1** 149 | - Model : **HUH721212AL5200 ** 150 | - Size : **10.9T** 151 | - Serial : **5000cca291345598** 152 | 153 | ### WWN:0x5000cca29120328c 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **HGST ** 159 | - Spinning Disk : **1** 160 | - Model : **HUH721212AL5200 ** 161 | - Size : **10.9T** 162 | - Serial : **5000cca29120328c** 163 | 164 | ### WWN:0x5000cca2912d9830 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **HGST ** 170 | - Spinning Disk : **1** 171 | - Model : **HUH721212AL5200 ** 172 | - Size : **10.9T** 173 | - Serial : **5000cca2912d9830** 174 | 175 | ### WWN:0x5000cca2912aca48 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **HGST ** 181 | - Spinning Disk : **1** 182 | - Model : **HUH721212AL5200 ** 183 | - Size : **10.9T** 184 | - Serial : **5000cca2912aca48** 185 | 186 | ### WWN:0x5000cca2912aafb8 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **HGST ** 192 | - Spinning Disk : **1** 193 | - Model : **HUH721212AL5200 ** 194 | - Size : **10.9T** 195 | - Serial : **5000cca2912aafb8** 196 | 197 | ### WWN:0x5000cca2912ac9ec 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **HGST ** 203 | - Spinning Disk : **1** 204 | - Model : **HUH721212AL5200 ** 205 | - Size : **10.9T** 206 | - Serial : **5000cca2912ac9ec** 207 | 208 | ### WWN:0x5000cca291205f24 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **HGST ** 214 | - Spinning Disk : **1** 215 | - Model : **HUH721212AL5200 ** 216 | - Size : **10.9T** 217 | - Serial : **5000cca291205f24** 218 | 219 | ### WWN:0x5000cca2912ac45c 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **HGST ** 225 | - Spinning Disk : **1** 226 | - Model : **HUH721212AL5200 ** 227 | - Size : **10.9T** 228 | - Serial : **5000cca2912ac45c** 229 | 230 | ## CPU 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **Intel Corp.** 236 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 237 | - Clock : **95.37MHz** 238 | - Cores : **enabled: 8/8, threads 16** 239 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 240 | 241 | 242 | **Specifications** 243 | 244 | - Vendor : **Intel Corp.** 245 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 246 | - Clock : **95.37MHz** 247 | - Cores : **enabled: 8/8, threads 16** 248 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 249 | 250 | ## Memory 251 | 252 | ### DIMM000 J22 253 | 254 | 255 | **Specifications** 256 | 257 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 258 | - Vendor : **Hynix** 259 | - Product : **HMA84GR7JJR4N-WM** 260 | - Size : **32.0GB** 261 | - Clock : **2933MHz** 262 | - Serial : **213DEB3E** 263 | 264 | ### DIMM010 J24 265 | 266 | 267 | **Specifications** 268 | 269 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 270 | - Vendor : **Hynix** 271 | - Product : **HMA84GR7JJR4N-WM** 272 | - Size : **32.0GB** 273 | - Clock : **2933MHz** 274 | - Serial : **213DE821** 275 | 276 | ### DIMM100 J34 277 | 278 | 279 | **Specifications** 280 | 281 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 282 | - Vendor : **Hynix** 283 | - Product : **HMA84GR7JJR4N-WM** 284 | - Size : **32.0GB** 285 | - Clock : **2933MHz** 286 | - Serial : **213DE983** 287 | 288 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/hss05/hss05.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{hss05} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # hss05 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **1850** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/1850/](https://netbox.kat.ac.za/api/dcim/devices/1850/)** 29 | - Serial : **2102312ALSFSL6000037** 30 | - Device Role : **Storage** 31 | - Device Type : **Huawei 2288H V5** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R6** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x64cf55b2d0767000 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **AVAGO ** 49 | - Spinning Disk : **1** 50 | - Model : **AVAGO ** 51 | - Size : **222.6G** 52 | - Serial : **64cf55b2d076700027196f140df9bc9f** 53 | 54 | ### WWN:0x5000cca2912f354c 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **HGST ** 60 | - Spinning Disk : **1** 61 | - Model : **HUH721212AL5200 ** 62 | - Size : **10.9T** 63 | - Serial : **5000cca2912f354c** 64 | 65 | ### WWN:0x5000cca2912e0768 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HGST ** 71 | - Spinning Disk : **1** 72 | - Model : **HUH721212AL5200 ** 73 | - Size : **10.9T** 74 | - Serial : **5000cca2912e0768** 75 | 76 | ### WWN:0x5000cca29134b2b4 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **HGST ** 82 | - Spinning Disk : **1** 83 | - Model : **HUH721212AL5200 ** 84 | - Size : **10.9T** 85 | - Serial : **5000cca29134b2b4** 86 | 87 | ### WWN:0x5000cca29124bd9c 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **HGST ** 93 | - Spinning Disk : **1** 94 | - Model : **HUH721212AL5200 ** 95 | - Size : **10.9T** 96 | - Serial : **5000cca29124bd9c** 97 | 98 | ### WWN:0x5000cca2912dffa0 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **HGST ** 104 | - Spinning Disk : **1** 105 | - Model : **HUH721212AL5200 ** 106 | - Size : **10.9T** 107 | - Serial : **5000cca2912dffa0** 108 | 109 | ### WWN:0x5000cca291345824 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **HGST ** 115 | - Spinning Disk : **1** 116 | - Model : **HUH721212AL5200 ** 117 | - Size : **10.9T** 118 | - Serial : **5000cca291345824** 119 | 120 | ### WWN:0x5000cca2913415f0 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **HGST ** 126 | - Spinning Disk : **1** 127 | - Model : **HUH721212AL5200 ** 128 | - Size : **10.9T** 129 | - Serial : **5000cca2913415f0** 130 | 131 | ### WWN:0x5000cca2912d3f94 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **HGST ** 137 | - Spinning Disk : **1** 138 | - Model : **HUH721212AL5200 ** 139 | - Size : **10.9T** 140 | - Serial : **5000cca2912d3f94** 141 | 142 | ### WWN:0x5000cca291341400 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **HGST ** 148 | - Spinning Disk : **1** 149 | - Model : **HUH721212AL5200 ** 150 | - Size : **10.9T** 151 | - Serial : **5000cca291341400** 152 | 153 | ### WWN:0x5000cca291341690 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **HGST ** 159 | - Spinning Disk : **1** 160 | - Model : **HUH721212AL5200 ** 161 | - Size : **10.9T** 162 | - Serial : **5000cca291341690** 163 | 164 | ### WWN:0x5000cca2912ce638 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **HGST ** 170 | - Spinning Disk : **1** 171 | - Model : **HUH721212AL5200 ** 172 | - Size : **10.9T** 173 | - Serial : **5000cca2912ce638** 174 | 175 | ### WWN:0x5000cca2913457b0 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **HGST ** 181 | - Spinning Disk : **1** 182 | - Model : **HUH721212AL5200 ** 183 | - Size : **10.9T** 184 | - Serial : **5000cca2913457b0** 185 | 186 | ### WWN:0x5000cca2912ce0e0 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **HGST ** 192 | - Spinning Disk : **1** 193 | - Model : **HUH721212AL5200 ** 194 | - Size : **10.9T** 195 | - Serial : **5000cca2912ce0e0** 196 | 197 | ### WWN:0x5000cca29130ff38 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **HGST ** 203 | - Spinning Disk : **1** 204 | - Model : **HUH721212AL5200 ** 205 | - Size : **10.9T** 206 | - Serial : **5000cca29130ff38** 207 | 208 | ### WWN:0x5000cca2912f2af4 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **HGST ** 214 | - Spinning Disk : **1** 215 | - Model : **HUH721212AL5200 ** 216 | - Size : **10.9T** 217 | - Serial : **5000cca2912f2af4** 218 | 219 | ### WWN:0x5000cca29132f3f4 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **HGST ** 225 | - Spinning Disk : **1** 226 | - Model : **HUH721212AL5200 ** 227 | - Size : **10.9T** 228 | - Serial : **5000cca29132f3f4** 229 | 230 | ## CPU 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **Intel Corp.** 236 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 237 | - Clock : **95.37MHz** 238 | - Cores : **enabled: 8/8, threads 16** 239 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 240 | 241 | 242 | **Specifications** 243 | 244 | - Vendor : **Intel Corp.** 245 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 246 | - Clock : **95.37MHz** 247 | - Cores : **enabled: 8/8, threads 16** 248 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 249 | 250 | ## Memory 251 | 252 | ### DIMM000 J22 253 | 254 | 255 | **Specifications** 256 | 257 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 258 | - Vendor : **Hynix** 259 | - Product : **HMA84GR7JJR4N-WM** 260 | - Size : **32.0GB** 261 | - Clock : **2933MHz** 262 | - Serial : **213DE8C1** 263 | 264 | ### DIMM010 J24 265 | 266 | 267 | **Specifications** 268 | 269 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 270 | - Vendor : **Hynix** 271 | - Product : **HMA84GR7JJR4N-WM** 272 | - Size : **32.0GB** 273 | - Clock : **2933MHz** 274 | - Serial : **213DE807** 275 | 276 | ### DIMM100 J34 277 | 278 | 279 | **Specifications** 280 | 281 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 282 | - Vendor : **Hynix** 283 | - Product : **HMA84GR7JJR4N-WM** 284 | - Size : **32.0GB** 285 | - Clock : **2933MHz** 286 | - Serial : **213DE92D** 287 | 288 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/hss06/hss06.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{hss06} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # hss06 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **1666** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/1666/](https://netbox.kat.ac.za/api/dcim/devices/1666/)** 29 | - Serial : **2102312ALSFSL6000033** 30 | - Device Role : **Storage** 31 | - Device Type : **Huawei 2288H V5** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R7** 38 | - U : **41** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x64cf55b2d077a000 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **AVAGO ** 49 | - Spinning Disk : **1** 50 | - Model : **AVAGO ** 51 | - Size : **222.6G** 52 | - Serial : **64cf55b2d077a00026c9c9051c8f3c3d** 53 | 54 | ### WWN:0x5000cca291355b10 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **HGST ** 60 | - Spinning Disk : **1** 61 | - Model : **HUH721212AL5200 ** 62 | - Size : **10.9T** 63 | - Serial : **5000cca291355b10** 64 | 65 | ### WWN:0x5000cca291345464 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **HGST ** 71 | - Spinning Disk : **1** 72 | - Model : **HUH721212AL5200 ** 73 | - Size : **10.9T** 74 | - Serial : **5000cca291345464** 75 | 76 | ### WWN:0x5000cca29130ff6c 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **HGST ** 82 | - Spinning Disk : **1** 83 | - Model : **HUH721212AL5200 ** 84 | - Size : **10.9T** 85 | - Serial : **5000cca29130ff6c** 86 | 87 | ### WWN:0x5000cca291345acc 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **HGST ** 93 | - Spinning Disk : **1** 94 | - Model : **HUH721212AL5200 ** 95 | - Size : **10.9T** 96 | - Serial : **5000cca291345acc** 97 | 98 | ### WWN:0x5000cca291347424 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **HGST ** 104 | - Spinning Disk : **1** 105 | - Model : **HUH721212AL5200 ** 106 | - Size : **10.9T** 107 | - Serial : **5000cca291347424** 108 | 109 | ### WWN:0x5000cca29134542c 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **HGST ** 115 | - Spinning Disk : **1** 116 | - Model : **HUH721212AL5200 ** 117 | - Size : **10.9T** 118 | - Serial : **5000cca29134542c** 119 | 120 | ### WWN:0x5000cca291346c80 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **HGST ** 126 | - Spinning Disk : **1** 127 | - Model : **HUH721212AL5200 ** 128 | - Size : **10.9T** 129 | - Serial : **5000cca291346c80** 130 | 131 | ### WWN:0x5000cca2912658b8 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **HGST ** 137 | - Spinning Disk : **1** 138 | - Model : **HUH721212AL5200 ** 139 | - Size : **10.9T** 140 | - Serial : **5000cca2912658b8** 141 | 142 | ### WWN:0x5000cca291318f0c 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **HGST ** 148 | - Spinning Disk : **1** 149 | - Model : **HUH721212AL5200 ** 150 | - Size : **10.9T** 151 | - Serial : **5000cca291318f0c** 152 | 153 | ### WWN:0x5000cca291311c08 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **HGST ** 159 | - Spinning Disk : **1** 160 | - Model : **HUH721212AL5200 ** 161 | - Size : **10.9T** 162 | - Serial : **5000cca291311c08** 163 | 164 | ### WWN:0x5000cca2912f3cfc 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **HGST ** 170 | - Spinning Disk : **1** 171 | - Model : **HUH721212AL5200 ** 172 | - Size : **10.9T** 173 | - Serial : **5000cca2912f3cfc** 174 | 175 | ### WWN:0x5000cca291355b7c 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **HGST ** 181 | - Spinning Disk : **1** 182 | - Model : **HUH721212AL5200 ** 183 | - Size : **10.9T** 184 | - Serial : **5000cca291355b7c** 185 | 186 | ### WWN:0x5000cca29134721c 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **HGST ** 192 | - Spinning Disk : **1** 193 | - Model : **HUH721212AL5200 ** 194 | - Size : **10.9T** 195 | - Serial : **5000cca29134721c** 196 | 197 | ### WWN:0x5000cca2913463fc 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **HGST ** 203 | - Spinning Disk : **1** 204 | - Model : **HUH721212AL5200 ** 205 | - Size : **10.9T** 206 | - Serial : **5000cca2913463fc** 207 | 208 | ### WWN:0x5000cca291355c7c 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **HGST ** 214 | - Spinning Disk : **1** 215 | - Model : **HUH721212AL5200 ** 216 | - Size : **10.9T** 217 | - Serial : **5000cca291355c7c** 218 | 219 | ### WWN:0x5000cca2913453fc 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **HGST ** 225 | - Spinning Disk : **1** 226 | - Model : **HUH721212AL5200 ** 227 | - Size : **10.9T** 228 | - Serial : **5000cca2913453fc** 229 | 230 | ## CPU 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **Intel Corp.** 236 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 237 | - Clock : **95.37MHz** 238 | - Cores : **enabled: 8/8, threads 16** 239 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 240 | 241 | 242 | **Specifications** 243 | 244 | - Vendor : **Intel Corp.** 245 | - Product : **Intel(R) Xeon(R) Silver 4215 CPU @ 2.50GHz** 246 | - Clock : **95.37MHz** 247 | - Cores : **enabled: 8/8, threads 16** 248 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_capabilities, arch_perfmon, art, avx, avx2, avx512_vnni, avx512bw, avx512cd, avx512dq, avx512f, avx512vl, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, clflushopt, clwb, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ibrs_enhanced, ida, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, mba, md_clear, memory type range registers, model-specific registers, movbe, mpx, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), ospke, page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pku, pln, pni, popcnt, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xgetbv1, xsave, xsavec, xsaveopt, xsaves, xtopology, xtpr** 249 | 250 | ## Memory 251 | 252 | ### DIMM000 J22 253 | 254 | 255 | **Specifications** 256 | 257 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 258 | - Vendor : **Hynix** 259 | - Product : **HMA84GR7JJR4N-WM** 260 | - Size : **32.0GB** 261 | - Clock : **2933MHz** 262 | - Serial : **213DE7FC** 263 | 264 | ### DIMM010 J24 265 | 266 | 267 | **Specifications** 268 | 269 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 270 | - Vendor : **Hynix** 271 | - Product : **HMA84GR7JJR4N-WM** 272 | - Size : **32.0GB** 273 | - Clock : **2933MHz** 274 | - Serial : **213DE817** 275 | 276 | ### DIMM100 J34 277 | 278 | 279 | **Specifications** 280 | 281 | - Description : **DIMM Synchronous 2933 MHz (0.3 ns)** 282 | - Vendor : **Hynix** 283 | - Product : **HMA84GR7JJR4N-WM** 284 | - Size : **32.0GB** 285 | - Clock : **2933MHz** 286 | - Serial : **213DE8D3** 287 | 288 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/imgr1/imgr1.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 21 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{imgr1} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # imgr1 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **166** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/166/](https://netbox.kat.ac.za/api/dcim/devices/166/)** 29 | - Serial : **S240227X7906564** 30 | - Device Role : **Server** 31 | - Device Type : **Supermicro 4028GR-TR2** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **KDRA** 37 | - Rack : **C10** 38 | - U : **22** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:eui.0025385671b127a8 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **None** 49 | - Spinning Disk : **0** 50 | - Model : **Samsung SSD 960 PRO 512GB ** 51 | - Size : **476.93978118896484GB** 52 | - Serial : **S3EWNX0J619625Y** 53 | 54 | ### WWN:eui.0025385671b127a0 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **None** 60 | - Spinning Disk : **0** 61 | - Model : **Samsung SSD 960 PRO 512GB ** 62 | - Size : **476.93978118896484GB** 63 | - Serial : **S3EWNX0J619617L** 64 | 65 | ### WWN:0x5000c500a45182de 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **ATA ** 71 | - Spinning Disk : **1** 72 | - Model : **ST2000LM015-2E81** 73 | - Size : **1.8193522319197655TB** 74 | - Serial : **ZDZ0CJZ6** 75 | 76 | ### WWN:0x500a075115ba526e 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **ATA ** 82 | - Spinning Disk : **0** 83 | - Model : **Crucial_CT1050MX** 84 | - Size : **978.0885543823242GB** 85 | - Serial : **170615BA526E** 86 | 87 | ### WWN:0x500a075115ba4883 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **ATA ** 93 | - Spinning Disk : **0** 94 | - Model : **Crucial_CT1050MX** 95 | - Size : **978.0885543823242GB** 96 | - Serial : **170615BA4883** 97 | 98 | ### WWN:0x5000c500a451d3bf 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **ATA ** 104 | - Spinning Disk : **1** 105 | - Model : **ST2000LM015-2E81** 106 | - Size : **1.8193522319197655TB** 107 | - Serial : **ZDZ0CGPM** 108 | 109 | ### WWN:0x500a075115ba5af3 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **ATA ** 115 | - Spinning Disk : **0** 116 | - Model : **Crucial_CT1050MX** 117 | - Size : **978.0885543823242GB** 118 | - Serial : **170615BA5AF3** 119 | 120 | ### WWN:0x500a075115ba126e 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **ATA ** 126 | - Spinning Disk : **0** 127 | - Model : **Crucial_CT1050MX** 128 | - Size : **978.0885543823242GB** 129 | - Serial : **170615BA126E** 130 | 131 | ### WWN:0x500a075115ba48e5 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **ATA ** 137 | - Spinning Disk : **0** 138 | - Model : **Crucial_CT1050MX** 139 | - Size : **978.0885543823242GB** 140 | - Serial : **170615BA48E5** 141 | 142 | ### WWN:0x500a075115ba5efe 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **ATA ** 148 | - Spinning Disk : **0** 149 | - Model : **Crucial_CT1050MX** 150 | - Size : **978.0885543823242GB** 151 | - Serial : **170615BA5EFE** 152 | 153 | ### WWN:0x500a075115ba3755 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **ATA ** 159 | - Spinning Disk : **0** 160 | - Model : **Crucial_CT1050MX** 161 | - Size : **978.0885543823242GB** 162 | - Serial : **170615BA3755** 163 | 164 | ### WWN:0x500a075115b9dec1 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **ATA ** 170 | - Spinning Disk : **0** 171 | - Model : **Crucial_CT1050MX** 172 | - Size : **978.0885543823242GB** 173 | - Serial : **170615B9DEC1** 174 | 175 | ### WWN:0x500a075115ba48ba 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **ATA ** 181 | - Spinning Disk : **0** 182 | - Model : **Crucial_CT1050MX** 183 | - Size : **978.0885543823242GB** 184 | - Serial : **170615BA48BA** 185 | 186 | ### WWN:0x500a075115ba5790 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **ATA ** 192 | - Spinning Disk : **0** 193 | - Model : **Crucial_CT1050MX** 194 | - Size : **978.0885543823242GB** 195 | - Serial : **170615BA5790** 196 | 197 | ### WWN:0x500a075115ba25c0 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **ATA ** 203 | - Spinning Disk : **0** 204 | - Model : **Crucial_CT1050MX** 205 | - Size : **978.0885543823242GB** 206 | - Serial : **170615BA25C0** 207 | 208 | ### WWN:0x500a075115ba5bbc 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **ATA ** 214 | - Spinning Disk : **0** 215 | - Model : **Crucial_CT1050MX** 216 | - Size : **978.0885543823242GB** 217 | - Serial : **170615BA5BBC** 218 | 219 | ### WWN:0x500a075115ba4858 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **ATA ** 225 | - Spinning Disk : **0** 226 | - Model : **Crucial_CT1050MX** 227 | - Size : **978.0885543823242GB** 228 | - Serial : **170615BA4858** 229 | 230 | ### WWN:0x500a075115ba93df 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **ATA ** 236 | - Spinning Disk : **0** 237 | - Model : **Crucial_CT1050MX** 238 | - Size : **978.0885543823242GB** 239 | - Serial : **170615BA93DF** 240 | 241 | ### WWN:0x500a075115ba48e6 242 | 243 | 244 | **Specifications** 245 | 246 | - Vendor : **ATA ** 247 | - Spinning Disk : **0** 248 | - Model : **Crucial_CT1050MX** 249 | - Size : **978.0885543823242GB** 250 | - Serial : **170615BA48E6** 251 | 252 | ### WWN:0x500a075115ba5cfb 253 | 254 | 255 | **Specifications** 256 | 257 | - Vendor : **ATA ** 258 | - Spinning Disk : **0** 259 | - Model : **Crucial_CT1050MX** 260 | - Size : **978.0885543823242GB** 261 | - Serial : **170615BA5CFB** 262 | 263 | ### WWN:0x500a075115ba29f1 264 | 265 | 266 | **Specifications** 267 | 268 | - Vendor : **ATA ** 269 | - Spinning Disk : **0** 270 | - Model : **Crucial_CT1050MX** 271 | - Size : **978.0885543823242GB** 272 | - Serial : **170615BA29F1** 273 | 274 | ### WWN:0x500a075115ba24d5 275 | 276 | 277 | **Specifications** 278 | 279 | - Vendor : **ATA ** 280 | - Spinning Disk : **0** 281 | - Model : **Crucial_CT1050MX** 282 | - Size : **978.0885543823242GB** 283 | - Serial : **170615BA24D5** 284 | 285 | ### WWN:0x500a075115b9dae9 286 | 287 | 288 | **Specifications** 289 | 290 | - Vendor : **ATA ** 291 | - Spinning Disk : **0** 292 | - Model : **Crucial_CT1050MX** 293 | - Size : **978.0885543823242GB** 294 | - Serial : **170615B9DAE9** 295 | 296 | ### WWN:0x500a075115ba2a78 297 | 298 | 299 | **Specifications** 300 | 301 | - Vendor : **ATA ** 302 | - Spinning Disk : **0** 303 | - Model : **Crucial_CT1050MX** 304 | - Size : **978.0885543823242GB** 305 | - Serial : **170615BA2A78** 306 | 307 | ## CPU 308 | 309 | ### SOCKET 0 310 | 311 | 312 | **Specifications** 313 | 314 | - Vendor : **Intel Corp.** 315 | - Product : **Intel(R) Xeon(R) CPU E5-2643 v4 @ 3.40GHz** 316 | - Clock : **95.37MHz** 317 | - Cores : **enabled: 6/6, threads 12** 318 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, ept_ad, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, hle, ibpb, ibrs, ida, intel_ppin, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pti, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, rtm, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 319 | 320 | ### SOCKET 1 321 | 322 | 323 | **Specifications** 324 | 325 | - Vendor : **Intel Corp.** 326 | - Product : **Intel(R) Xeon(R) CPU E5-2643 v4 @ 3.40GHz** 327 | - Clock : **95.37MHz** 328 | - Cores : **enabled: 6/6, threads 12** 329 | - Capabilities : **36-bit page size extensions, 3dnowprefetch, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, adx, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, cat_l3, cdp_l3, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cpuid, cpuid_fault, cqm, cqm_llc, cqm_mbm_local, cqm_mbm_total, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, ept_ad, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, hle, ibpb, ibrs, ida, intel_ppin, intel_pt, invpcid, invpcid_single, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pti, pts, rdrand, rdseed, rdt_a, rdtscp, rep_good, rtm, sdbg, self-snoop, smap, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 330 | 331 | ## GPU 332 | 333 | ### GPU 1 334 | 335 | 336 | **Specifications** 337 | 338 | - Vendor : **NVIDIA Corporation** 339 | - Product : **GP102 [GeForce GTX 1080 Ti]** 340 | - configuration (1/2) : **depth: 32, driver: nvidia, latency: 0** 341 | - configuration (2/2) : **mode: 1024x768, visual: truecolor, xres: 1024, yres: 768** 342 | - Capabilities : **Message Signalled Interrupts, PCI Express, PCI capabilities listing, Power Management, bus mastering, extension ROM, fb, vga_controller** 343 | 344 | ## Memory 345 | 346 | ### P1_DIMMA1 347 | 348 | 349 | **Specifications** 350 | 351 | - Description : **DIMM DDR4 Synchronous 2400 MHz (0.4 ns)** 352 | - Vendor : **Hynix Semiconductor** 353 | - Product : **HMA42GR7AFR4N-UH** 354 | - Size : **16.0GB** 355 | - Clock : **2400MHz** 356 | - Serial : **29BD69C9** 357 | 358 | ### P1_DIMMB1 359 | 360 | 361 | **Specifications** 362 | 363 | - Description : **DIMM DDR4 Synchronous 2400 MHz (0.4 ns)** 364 | - Vendor : **Hynix Semiconductor** 365 | - Product : **HMA42GR7AFR4N-UH** 366 | - Size : **16.0GB** 367 | - Clock : **2400MHz** 368 | - Serial : **29BD6BA0** 369 | 370 | ### P1_DIMMC1 371 | 372 | 373 | **Specifications** 374 | 375 | - Description : **DIMM DDR4 Synchronous 2400 MHz (0.4 ns)** 376 | - Vendor : **Hynix Semiconductor** 377 | - Product : **HMA42GR7AFR4N-UH** 378 | - Size : **16.0GB** 379 | - Clock : **2400MHz** 380 | - Serial : **29BD699F** 381 | 382 | ### P1_DIMMD1 383 | 384 | 385 | **Specifications** 386 | 387 | - Description : **DIMM DDR4 Synchronous 2400 MHz (0.4 ns)** 388 | - Vendor : **Hynix Semiconductor** 389 | - Product : **HMA42GR7AFR4N-UH** 390 | - Size : **16.0GB** 391 | - Clock : **2400MHz** 392 | - Serial : **29BD6B33** 393 | 394 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/dss-hc-3/dss-hc-3.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{dss-hc-3} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # dss-hc-3 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **5** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/5/](https://netbox.kat.ac.za/api/dcim/devices/5/)** 29 | - Serial : **SSQX0601-52** 30 | - Device Role : **Storage** 31 | - Device Type : **Peralex DSS-HC** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R9** 38 | - U : **29** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x5000c500a2ca4ac9 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **ATA ** 49 | - Spinning Disk : **1** 50 | - Model : **ST8000VX0022-2EJ** 51 | - Size : **7.3T** 52 | - Serial : **ZA17AX66** 53 | 54 | ### WWN:0x5000c500a2b2f49f 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **ATA ** 60 | - Spinning Disk : **1** 61 | - Model : **ST8000VX0022-2EJ** 62 | - Size : **7.3T** 63 | - Serial : **ZA177SCK** 64 | 65 | ### WWN:0x5000c500a2b3376d 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **ATA ** 71 | - Spinning Disk : **1** 72 | - Model : **ST8000VX0022-2EJ** 73 | - Size : **7.3T** 74 | - Serial : **ZA177SZN** 75 | 76 | ### WWN:0x5000c500a2b33ac3 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **ATA ** 82 | - Spinning Disk : **1** 83 | - Model : **ST8000VX0022-2EJ** 84 | - Size : **7.3T** 85 | - Serial : **ZA177LX2** 86 | 87 | ### WWN:0x5000c500a2b32a8c 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **ATA ** 93 | - Spinning Disk : **1** 94 | - Model : **ST8000VX0022-2EJ** 95 | - Size : **7.3T** 96 | - Serial : **ZA177SKQ** 97 | 98 | ### WWN:0x5000c500a2b3362c 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **ATA ** 104 | - Spinning Disk : **1** 105 | - Model : **ST8000VX0022-2EJ** 106 | - Size : **7.3T** 107 | - Serial : **ZA177SHG** 108 | 109 | ### WWN:0x5000c500a2b30ed5 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **ATA ** 115 | - Spinning Disk : **1** 116 | - Model : **ST8000VX0022-2EJ** 117 | - Size : **7.3T** 118 | - Serial : **ZA177DZZ** 119 | 120 | ### WWN:0x5000c500a2b33329 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **ATA ** 126 | - Spinning Disk : **1** 127 | - Model : **ST8000VX0022-2EJ** 128 | - Size : **7.3T** 129 | - Serial : **ZA177E4N** 130 | 131 | ### WWN:0x5000c500a2b33135 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **ATA ** 137 | - Spinning Disk : **1** 138 | - Model : **ST8000VX0022-2EJ** 139 | - Size : **7.3T** 140 | - Serial : **ZA177LSF** 141 | 142 | ### WWN:0x5000c500a2b332f7 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **ATA ** 148 | - Spinning Disk : **1** 149 | - Model : **ST8000VX0022-2EJ** 150 | - Size : **7.3T** 151 | - Serial : **ZA177LV0** 152 | 153 | ### WWN:0x5000c500a2b32045 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **ATA ** 159 | - Spinning Disk : **1** 160 | - Model : **ST8000VX0022-2EJ** 161 | - Size : **7.3T** 162 | - Serial : **ZA177SZ5** 163 | 164 | ### WWN:0x5000c500a2b2fed9 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **ATA ** 170 | - Spinning Disk : **1** 171 | - Model : **ST8000VX0022-2EJ** 172 | - Size : **7.3T** 173 | - Serial : **ZA177SD9** 174 | 175 | ### WWN:0x5000c500a2b3088c 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **ATA ** 181 | - Spinning Disk : **1** 182 | - Model : **ST8000VX0022-2EJ** 183 | - Size : **7.3T** 184 | - Serial : **ZA177DWD** 185 | 186 | ### WWN:0x5000c500a2b36631 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **ATA ** 192 | - Spinning Disk : **1** 193 | - Model : **ST8000VX0022-2EJ** 194 | - Size : **7.3T** 195 | - Serial : **ZA177LTQ** 196 | 197 | ### WWN:0x5000c500a2b306bc 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **ATA ** 203 | - Spinning Disk : **1** 204 | - Model : **ST8000VX0022-2EJ** 205 | - Size : **7.3T** 206 | - Serial : **ZA177EA1** 207 | 208 | ### WWN:0x5000c500a2ca3642 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **ATA ** 214 | - Spinning Disk : **1** 215 | - Model : **ST8000VX0022-2EJ** 216 | - Size : **7.3T** 217 | - Serial : **ZA17AT52** 218 | 219 | ### WWN:0x5000c500a2caa33d 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **ATA ** 225 | - Spinning Disk : **1** 226 | - Model : **ST8000VX0022-2EJ** 227 | - Size : **7.3T** 228 | - Serial : **ZA17ASAS** 229 | 230 | ### WWN:0x5000c500a2b30e48 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **ATA ** 236 | - Spinning Disk : **1** 237 | - Model : **ST8000VX0022-2EJ** 238 | - Size : **7.3T** 239 | - Serial : **ZA177DY7** 240 | 241 | ### WWN:0x5000c500a2cad246 242 | 243 | 244 | **Specifications** 245 | 246 | - Vendor : **ATA ** 247 | - Spinning Disk : **1** 248 | - Model : **ST8000VX0022-2EJ** 249 | - Size : **7.3T** 250 | - Serial : **ZA17B4FZ** 251 | 252 | ### WWN:0x5000c500a2b32301 253 | 254 | 255 | **Specifications** 256 | 257 | - Vendor : **ATA ** 258 | - Spinning Disk : **1** 259 | - Model : **ST8000VX0022-2EJ** 260 | - Size : **7.3T** 261 | - Serial : **ZA177LVF** 262 | 263 | ### WWN:0x5000c500a2caaecf 264 | 265 | 266 | **Specifications** 267 | 268 | - Vendor : **ATA ** 269 | - Spinning Disk : **1** 270 | - Model : **ST8000VX0022-2EJ** 271 | - Size : **7.3T** 272 | - Serial : **ZA17794Q** 273 | 274 | ### WWN:0x5000c500a2b317ac 275 | 276 | 277 | **Specifications** 278 | 279 | - Vendor : **ATA ** 280 | - Spinning Disk : **1** 281 | - Model : **ST8000VX0022-2EJ** 282 | - Size : **7.3T** 283 | - Serial : **ZA177EA0** 284 | 285 | ### WWN:0x5000c500a2b30d73 286 | 287 | 288 | **Specifications** 289 | 290 | - Vendor : **ATA ** 291 | - Spinning Disk : **1** 292 | - Model : **ST8000VX0022-2EJ** 293 | - Size : **7.3T** 294 | - Serial : **ZA177E5E** 295 | 296 | ### WWN:0x5000c500a2b10b70 297 | 298 | 299 | **Specifications** 300 | 301 | - Vendor : **ATA ** 302 | - Spinning Disk : **1** 303 | - Model : **ST8000VX0022-2EJ** 304 | - Size : **7.3T** 305 | - Serial : **ZA1719PV** 306 | 307 | ### WWN:0x5000c500a2cb8c43 308 | 309 | 310 | **Specifications** 311 | 312 | - Vendor : **ATA ** 313 | - Spinning Disk : **1** 314 | - Model : **ST8000VX0022-2EJ** 315 | - Size : **7.3T** 316 | - Serial : **ZA17B2X8** 317 | 318 | ### WWN:0x5000c500a2caa7a6 319 | 320 | 321 | **Specifications** 322 | 323 | - Vendor : **ATA ** 324 | - Spinning Disk : **1** 325 | - Model : **ST8000VX0022-2EJ** 326 | - Size : **7.3T** 327 | - Serial : **ZA17ASHZ** 328 | 329 | ### WWN:0x5000c500a2ca5a60 330 | 331 | 332 | **Specifications** 333 | 334 | - Vendor : **ATA ** 335 | - Spinning Disk : **1** 336 | - Model : **ST8000VX0022-2EJ** 337 | - Size : **7.3T** 338 | - Serial : **ZA17AX1D** 339 | 340 | ### WWN:0x5000c500a2ca4e18 341 | 342 | 343 | **Specifications** 344 | 345 | - Vendor : **ATA ** 346 | - Spinning Disk : **1** 347 | - Model : **ST8000VX0022-2EJ** 348 | - Size : **7.3T** 349 | - Serial : **ZA17B8YG** 350 | 351 | ### WWN:0x5000c500a2cadebe 352 | 353 | 354 | **Specifications** 355 | 356 | - Vendor : **ATA ** 357 | - Spinning Disk : **1** 358 | - Model : **ST8000VX0022-2EJ** 359 | - Size : **7.3T** 360 | - Serial : **ZA17AWWK** 361 | 362 | ### WWN:0x5000c500a2caeab9 363 | 364 | 365 | **Specifications** 366 | 367 | - Vendor : **ATA ** 368 | - Spinning Disk : **1** 369 | - Model : **ST8000VX0022-2EJ** 370 | - Size : **7.3T** 371 | - Serial : **ZA17AWHS** 372 | 373 | ### WWN:0x5000c500a2caec24 374 | 375 | 376 | **Specifications** 377 | 378 | - Vendor : **ATA ** 379 | - Spinning Disk : **1** 380 | - Model : **ST8000VX0022-2EJ** 381 | - Size : **7.3T** 382 | - Serial : **ZA17AR91** 383 | 384 | ### WWN:0x5000c500a2ca63e6 385 | 386 | 387 | **Specifications** 388 | 389 | - Vendor : **ATA ** 390 | - Spinning Disk : **1** 391 | - Model : **ST8000VX0022-2EJ** 392 | - Size : **7.3T** 393 | - Serial : **ZA17AWV6** 394 | 395 | ### WWN:0x5000c500a2ca5d47 396 | 397 | 398 | **Specifications** 399 | 400 | - Vendor : **ATA ** 401 | - Spinning Disk : **1** 402 | - Model : **ST8000VX0022-2EJ** 403 | - Size : **7.3T** 404 | - Serial : **ZA17AXDY** 405 | 406 | ### WWN:0x5000c500a2cae0f5 407 | 408 | 409 | **Specifications** 410 | 411 | - Vendor : **ATA ** 412 | - Spinning Disk : **1** 413 | - Model : **ST8000VX0022-2EJ** 414 | - Size : **7.3T** 415 | - Serial : **ZA17AWN5** 416 | 417 | ### WWN:0x5000c500a2ca574c 418 | 419 | 420 | **Specifications** 421 | 422 | - Vendor : **ATA ** 423 | - Spinning Disk : **1** 424 | - Model : **ST8000VX0022-2EJ** 425 | - Size : **7.3T** 426 | - Serial : **ZA171QCB** 427 | 428 | ### WWN:0x5000c500a2ca5e82 429 | 430 | 431 | **Specifications** 432 | 433 | - Vendor : **ATA ** 434 | - Spinning Disk : **1** 435 | - Model : **ST8000VX0022-2EJ** 436 | - Size : **7.3T** 437 | - Serial : **ZA17AXTC** 438 | 439 | ### WWN:0x5000c500a2ca2585 440 | 441 | 442 | **Specifications** 443 | 444 | - Vendor : **ATA ** 445 | - Spinning Disk : **1** 446 | - Model : **ST8000VX0022-2EJ** 447 | - Size : **7.3T** 448 | - Serial : **ZA17ATFX** 449 | 450 | ### WWN:0x5000c500a2caaab2 451 | 452 | 453 | **Specifications** 454 | 455 | - Vendor : **ATA ** 456 | - Spinning Disk : **1** 457 | - Model : **ST8000VX0022-2EJ** 458 | - Size : **7.3T** 459 | - Serial : **ZA17ASEF** 460 | 461 | ### WWN:0x5000c500a2cb915d 462 | 463 | 464 | **Specifications** 465 | 466 | - Vendor : **ATA ** 467 | - Spinning Disk : **1** 468 | - Model : **ST8000VX0022-2EJ** 469 | - Size : **7.3T** 470 | - Serial : **ZA17AQEP** 471 | 472 | ### WWN:0x5000c500a2ca5efb 473 | 474 | 475 | **Specifications** 476 | 477 | - Vendor : **ATA ** 478 | - Spinning Disk : **1** 479 | - Model : **ST8000VX0022-2EJ** 480 | - Size : **7.3T** 481 | - Serial : **ZA165QG7** 482 | 483 | ### WWN:0x5000c500a2cad881 484 | 485 | 486 | **Specifications** 487 | 488 | - Vendor : **ATA ** 489 | - Spinning Disk : **1** 490 | - Model : **ST8000VX0022-2EJ** 491 | - Size : **7.3T** 492 | - Serial : **ZA17B4DD** 493 | 494 | ### WWN:0x5000c500a2caca26 495 | 496 | 497 | **Specifications** 498 | 499 | - Vendor : **ATA ** 500 | - Spinning Disk : **1** 501 | - Model : **ST8000VX0022-2EJ** 502 | - Size : **7.3T** 503 | - Serial : **ZA17B4LC** 504 | 505 | ### WWN:0x5000c500a2cb6fe1 506 | 507 | 508 | **Specifications** 509 | 510 | - Vendor : **ATA ** 511 | - Spinning Disk : **1** 512 | - Model : **ST8000VX0022-2EJ** 513 | - Size : **7.3T** 514 | - Serial : **ZA17BDYQ** 515 | 516 | ### WWN:0x5000c500a2cafccc 517 | 518 | 519 | **Specifications** 520 | 521 | - Vendor : **ATA ** 522 | - Spinning Disk : **1** 523 | - Model : **ST8000VX0022-2EJ** 524 | - Size : **7.3T** 525 | - Serial : **ZA17ADF8** 526 | 527 | ### WWN:0x5000c500a2caeb83 528 | 529 | 530 | **Specifications** 531 | 532 | - Vendor : **ATA ** 533 | - Spinning Disk : **1** 534 | - Model : **ST8000VX0022-2EJ** 535 | - Size : **7.3T** 536 | - Serial : **ZA17AR79** 537 | 538 | ### WWN:0x5000c500a2cb62cc 539 | 540 | 541 | **Specifications** 542 | 543 | - Vendor : **ATA ** 544 | - Spinning Disk : **1** 545 | - Model : **ST8000VX0022-2EJ** 546 | - Size : **7.3T** 547 | - Serial : **ZA17AWZC** 548 | 549 | ### WWN:0x5000c500a2ca2534 550 | 551 | 552 | **Specifications** 553 | 554 | - Vendor : **ATA ** 555 | - Spinning Disk : **1** 556 | - Model : **ST8000VX0022-2EJ** 557 | - Size : **7.3T** 558 | - Serial : **ZA126SVN** 559 | 560 | ### WWN:0x5000c500a2b33b36 561 | 562 | 563 | **Specifications** 564 | 565 | - Vendor : **ATA ** 566 | - Spinning Disk : **1** 567 | - Model : **ST8000VX0022-2EJ** 568 | - Size : **7.3T** 569 | - Serial : **ZA177LWJ** 570 | 571 | ## CPU 572 | 573 | ### CPU1 574 | 575 | 576 | **Specifications** 577 | 578 | - Vendor : **Intel Corp.** 579 | - Product : **Intel(R) Xeon(R) CPU E5-1630 v3 @ 3.70GHz** 580 | - Clock : **95.37MHz** 581 | - Cores : **enabled: 4/4, threads 8** 582 | - Capabilities : **36-bit page size extensions, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cqm, cqm_llc, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ida, invpcid, invpcid_single, kaiser, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pts, rdrand, rdtscp, rep_good, sdbg, self-snoop, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 583 | 584 | ## Memory 585 | 586 | ### DIMMA1 587 | 588 | 589 | **Specifications** 590 | 591 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 592 | - Vendor : **Samsung** 593 | - Product : **M393A2K40CB1-CRC** 594 | - Size : **16.0GB** 595 | - Clock : **2400MHz** 596 | - Serial : **3790572B** 597 | 598 | ### DIMMA2 599 | 600 | 601 | **Specifications** 602 | 603 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 604 | - Vendor : **Samsung** 605 | - Product : **M393A2K40CB1-CRC** 606 | - Size : **16.0GB** 607 | - Clock : **2400MHz** 608 | - Serial : **379054BE** 609 | 610 | ### DIMMB1 611 | 612 | 613 | **Specifications** 614 | 615 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 616 | - Vendor : **Samsung** 617 | - Product : **M393A2K40CB1-CRC** 618 | - Size : **16.0GB** 619 | - Clock : **2400MHz** 620 | - Serial : **3790579C** 621 | 622 | ### DIMMB2 623 | 624 | 625 | **Specifications** 626 | 627 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 628 | - Vendor : **Samsung** 629 | - Product : **M393A2K40CB1-CRC** 630 | - Size : **16.0GB** 631 | - Clock : **2400MHz** 632 | - Serial : **37905479** 633 | 634 | ### DIMMC1 635 | 636 | 637 | **Specifications** 638 | 639 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 640 | - Vendor : **Samsung** 641 | - Product : **M393A2K40CB1-CRC** 642 | - Size : **16.0GB** 643 | - Clock : **2400MHz** 644 | - Serial : **379054BF** 645 | 646 | ### DIMMC2 647 | 648 | 649 | **Specifications** 650 | 651 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 652 | - Vendor : **Samsung** 653 | - Product : **M393A2K40CB1-CRC** 654 | - Size : **16.0GB** 655 | - Clock : **2400MHz** 656 | - Serial : **379057ED** 657 | 658 | ### DIMMD1 659 | 660 | 661 | **Specifications** 662 | 663 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 664 | - Vendor : **Samsung** 665 | - Product : **M393A2K40CB1-CRC** 666 | - Size : **16.0GB** 667 | - Clock : **2400MHz** 668 | - Serial : **37905692** 669 | 670 | ### DIMMD2 671 | 672 | 673 | **Specifications** 674 | 675 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 676 | - Vendor : **Samsung** 677 | - Product : **M393A2K40CB1-CRC** 678 | - Size : **16.0GB** 679 | - Clock : **2400MHz** 680 | - Serial : **3790575E** 681 | 682 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/dss-hc-42/dss-hc-42.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{dss-hc-42} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # dss-hc-42 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **43** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/43/](https://netbox.kat.ac.za/api/dcim/devices/43/)** 29 | - Serial : **SSQX0601-27** 30 | - Device Role : **Storage** 31 | - Device Type : **Peralex DSS-HC** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R4** 38 | - U : **29** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x5000c500a2cb1de2 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **ATA ** 49 | - Spinning Disk : **1** 50 | - Model : **ST8000VX0022-2EJ** 51 | - Size : **7.3T** 52 | - Serial : **ZA175C6V** 53 | 54 | ### WWN:0x5000c500a2cb0ad2 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **ATA ** 60 | - Spinning Disk : **1** 61 | - Model : **ST8000VX0022-2EJ** 62 | - Size : **7.3T** 63 | - Serial : **ZA17B3VF** 64 | 65 | ### WWN:0x5000c500a2cb6330 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **ATA ** 71 | - Spinning Disk : **1** 72 | - Model : **ST8000VX0022-2EJ** 73 | - Size : **7.3T** 74 | - Serial : **ZA17AWMT** 75 | 76 | ### WWN:0x5000c500a2caea22 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **ATA ** 82 | - Spinning Disk : **1** 83 | - Model : **ST8000VX0022-2EJ** 84 | - Size : **7.3T** 85 | - Serial : **ZA17AWMR** 86 | 87 | ### WWN:0x5000c500a2cb06e4 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **ATA ** 93 | - Spinning Disk : **1** 94 | - Model : **ST8000VX0022-2EJ** 95 | - Size : **7.3T** 96 | - Serial : **ZA17B40N** 97 | 98 | ### WWN:0x5000c500a2caaf0e 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **ATA ** 104 | - Spinning Disk : **1** 105 | - Model : **ST8000VX0022-2EJ** 106 | - Size : **7.3T** 107 | - Serial : **ZA170E01** 108 | 109 | ### WWN:0x5000c500a2cb7e9d 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **ATA ** 115 | - Spinning Disk : **1** 116 | - Model : **ST8000VX0022-2EJ** 117 | - Size : **7.3T** 118 | - Serial : **ZA17BDX8** 119 | 120 | ### WWN:0x5000c500a2cabfe3 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **ATA ** 126 | - Spinning Disk : **1** 127 | - Model : **ST8000VX0022-2EJ** 128 | - Size : **7.3T** 129 | - Serial : **ZA17B4SE** 130 | 131 | ### WWN:0x5000c500a2cae143 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **ATA ** 137 | - Spinning Disk : **1** 138 | - Model : **ST8000VX0022-2EJ** 139 | - Size : **7.3T** 140 | - Serial : **ZA17AWSG** 141 | 142 | ### WWN:0x5000c500a2cadcbc 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **ATA ** 148 | - Spinning Disk : **1** 149 | - Model : **ST8000VX0022-2EJ** 150 | - Size : **7.3T** 151 | - Serial : **ZA17AR8F** 152 | 153 | ### WWN:0x5000c500a2cadb0f 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **ATA ** 159 | - Spinning Disk : **1** 160 | - Model : **ST8000VX0022-2EJ** 161 | - Size : **7.3T** 162 | - Serial : **ZA17AW36** 163 | 164 | ### WWN:0x5000c500a2ca66c5 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **ATA ** 170 | - Spinning Disk : **1** 171 | - Model : **ST8000VX0022-2EJ** 172 | - Size : **7.3T** 173 | - Serial : **ZA16HQNY** 174 | 175 | ### WWN:0x5000c500a2caa7a8 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **ATA ** 181 | - Spinning Disk : **1** 182 | - Model : **ST8000VX0022-2EJ** 183 | - Size : **7.3T** 184 | - Serial : **ZA17ASJA** 185 | 186 | ### WWN:0x5000c500a2cae483 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **ATA ** 192 | - Spinning Disk : **1** 193 | - Model : **ST8000VX0022-2EJ** 194 | - Size : **7.3T** 195 | - Serial : **ZA17AWML** 196 | 197 | ### WWN:0x5000c500a2ca424b 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **ATA ** 203 | - Spinning Disk : **1** 204 | - Model : **ST8000VX0022-2EJ** 205 | - Size : **7.3T** 206 | - Serial : **ZA16DE7L** 207 | 208 | ### WWN:0x5000c500a2cab22f 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **ATA ** 214 | - Spinning Disk : **1** 215 | - Model : **ST8000VX0022-2EJ** 216 | - Size : **7.3T** 217 | - Serial : **ZA17ASFD** 218 | 219 | ### WWN:0x5000c500a2caafea 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **ATA ** 225 | - Spinning Disk : **1** 226 | - Model : **ST8000VX0022-2EJ** 227 | - Size : **7.3T** 228 | - Serial : **ZA17ASFY** 229 | 230 | ### WWN:0x5000c500a2cab654 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **ATA ** 236 | - Spinning Disk : **1** 237 | - Model : **ST8000VX0022-2EJ** 238 | - Size : **7.3T** 239 | - Serial : **ZA17B4YQ** 240 | 241 | ### WWN:0x5000c500a2cab06e 242 | 243 | 244 | **Specifications** 245 | 246 | - Vendor : **ATA ** 247 | - Spinning Disk : **1** 248 | - Model : **ST8000VX0022-2EJ** 249 | - Size : **7.3T** 250 | - Serial : **ZA17ASF5** 251 | 252 | ### WWN:0x5000c500a2caaf23 253 | 254 | 255 | **Specifications** 256 | 257 | - Vendor : **ATA ** 258 | - Spinning Disk : **1** 259 | - Model : **ST8000VX0022-2EJ** 260 | - Size : **7.3T** 261 | - Serial : **ZA17ASK7** 262 | 263 | ### WWN:0x5000c500a2cb7d14 264 | 265 | 266 | **Specifications** 267 | 268 | - Vendor : **ATA ** 269 | - Spinning Disk : **1** 270 | - Model : **ST8000VX0022-2EJ** 271 | - Size : **7.3T** 272 | - Serial : **ZA16ML84** 273 | 274 | ### WWN:0x5000c500a2caa5b9 275 | 276 | 277 | **Specifications** 278 | 279 | - Vendor : **ATA ** 280 | - Spinning Disk : **1** 281 | - Model : **ST8000VX0022-2EJ** 282 | - Size : **7.3T** 283 | - Serial : **ZA17ASHB** 284 | 285 | ### WWN:0x5000c500a2cb3e56 286 | 287 | 288 | **Specifications** 289 | 290 | - Vendor : **ATA ** 291 | - Spinning Disk : **1** 292 | - Model : **ST8000VX0022-2EJ** 293 | - Size : **7.3T** 294 | - Serial : **ZA17AQGW** 295 | 296 | ### WWN:0x5000c500a2cae203 297 | 298 | 299 | **Specifications** 300 | 301 | - Vendor : **ATA ** 302 | - Spinning Disk : **1** 303 | - Model : **ST8000VX0022-2EJ** 304 | - Size : **7.3T** 305 | - Serial : **ZA17AW38** 306 | 307 | ### WWN:0x5000c500a2caf02e 308 | 309 | 310 | **Specifications** 311 | 312 | - Vendor : **ATA ** 313 | - Spinning Disk : **1** 314 | - Model : **ST8000VX0022-2EJ** 315 | - Size : **7.3T** 316 | - Serial : **ZA17AR86** 317 | 318 | ### WWN:0x5000c500a2cafdd3 319 | 320 | 321 | **Specifications** 322 | 323 | - Vendor : **ATA ** 324 | - Spinning Disk : **1** 325 | - Model : **ST8000VX0022-2EJ** 326 | - Size : **7.3T** 327 | - Serial : **ZA17AWKR** 328 | 329 | ### WWN:0x5000c500a2ca77f7 330 | 331 | 332 | **Specifications** 333 | 334 | - Vendor : **ATA ** 335 | - Spinning Disk : **1** 336 | - Model : **ST8000VX0022-2EJ** 337 | - Size : **7.3T** 338 | - Serial : **ZA16HX6T** 339 | 340 | ### WWN:0x5000c500a2cb220d 341 | 342 | 343 | **Specifications** 344 | 345 | - Vendor : **ATA ** 346 | - Spinning Disk : **1** 347 | - Model : **ST8000VX0022-2EJ** 348 | - Size : **7.3T** 349 | - Serial : **ZA17B3MR** 350 | 351 | ### WWN:0x5000c500a2cad80b 352 | 353 | 354 | **Specifications** 355 | 356 | - Vendor : **ATA ** 357 | - Spinning Disk : **1** 358 | - Model : **ST8000VX0022-2EJ** 359 | - Size : **7.3T** 360 | - Serial : **ZA17AWCG** 361 | 362 | ### WWN:0x5000c500a2ca6558 363 | 364 | 365 | **Specifications** 366 | 367 | - Vendor : **ATA ** 368 | - Spinning Disk : **1** 369 | - Model : **ST8000VX0022-2EJ** 370 | - Size : **7.3T** 371 | - Serial : **ZA16CY2X** 372 | 373 | ### WWN:0x5000c500a2cb7b4d 374 | 375 | 376 | **Specifications** 377 | 378 | - Vendor : **ATA ** 379 | - Spinning Disk : **1** 380 | - Model : **ST8000VX0022-2EJ** 381 | - Size : **7.3T** 382 | - Serial : **ZA17A6K8** 383 | 384 | ### WWN:0x5000c500a2cb6abe 385 | 386 | 387 | **Specifications** 388 | 389 | - Vendor : **ATA ** 390 | - Spinning Disk : **1** 391 | - Model : **ST8000VX0022-2EJ** 392 | - Size : **7.3T** 393 | - Serial : **ZA17B33A** 394 | 395 | ### WWN:0x5000c500a2ca46fd 396 | 397 | 398 | **Specifications** 399 | 400 | - Vendor : **ATA ** 401 | - Spinning Disk : **1** 402 | - Model : **ST8000VX0022-2EJ** 403 | - Size : **7.3T** 404 | - Serial : **ZA17AX64** 405 | 406 | ### WWN:0x5000c500a2ca6582 407 | 408 | 409 | **Specifications** 410 | 411 | - Vendor : **ATA ** 412 | - Spinning Disk : **1** 413 | - Model : **ST8000VX0022-2EJ** 414 | - Size : **7.3T** 415 | - Serial : **ZA17AWX1** 416 | 417 | ### WWN:0x5000c500a2cb64b9 418 | 419 | 420 | **Specifications** 421 | 422 | - Vendor : **ATA ** 423 | - Spinning Disk : **1** 424 | - Model : **ST8000VX0022-2EJ** 425 | - Size : **7.3T** 426 | - Serial : **ZA17AQFM** 427 | 428 | ### WWN:0x5000c500a2cadf16 429 | 430 | 431 | **Specifications** 432 | 433 | - Vendor : **ATA ** 434 | - Spinning Disk : **1** 435 | - Model : **ST8000VX0022-2EJ** 436 | - Size : **7.3T** 437 | - Serial : **ZA17AWCS** 438 | 439 | ### WWN:0x5000c500a2cae5e6 440 | 441 | 442 | **Specifications** 443 | 444 | - Vendor : **ATA ** 445 | - Spinning Disk : **1** 446 | - Model : **ST8000VX0022-2EJ** 447 | - Size : **7.3T** 448 | - Serial : **ZA17AWEP** 449 | 450 | ### WWN:0x5000c500a2ca3504 451 | 452 | 453 | **Specifications** 454 | 455 | - Vendor : **ATA ** 456 | - Spinning Disk : **1** 457 | - Model : **ST8000VX0022-2EJ** 458 | - Size : **7.3T** 459 | - Serial : **ZA17AT6H** 460 | 461 | ### WWN:0x5000c500a2cad5f9 462 | 463 | 464 | **Specifications** 465 | 466 | - Vendor : **ATA ** 467 | - Spinning Disk : **1** 468 | - Model : **ST8000VX0022-2EJ** 469 | - Size : **7.3T** 470 | - Serial : **ZA17B4CF** 471 | 472 | ### WWN:0x5000c500a2caad68 473 | 474 | 475 | **Specifications** 476 | 477 | - Vendor : **ATA ** 478 | - Spinning Disk : **1** 479 | - Model : **ST8000VX0022-2EJ** 480 | - Size : **7.3T** 481 | - Serial : **ZA17ASFV** 482 | 483 | ### WWN:0x5000c500a2ca66ee 484 | 485 | 486 | **Specifications** 487 | 488 | - Vendor : **ATA ** 489 | - Spinning Disk : **1** 490 | - Model : **ST8000VX0022-2EJ** 491 | - Size : **7.3T** 492 | - Serial : **ZA1634AL** 493 | 494 | ### WWN:0x5000c500a2ca56e6 495 | 496 | 497 | **Specifications** 498 | 499 | - Vendor : **ATA ** 500 | - Spinning Disk : **1** 501 | - Model : **ST8000VX0022-2EJ** 502 | - Size : **7.3T** 503 | - Serial : **ZA15B63L** 504 | 505 | ### WWN:0x5000c500a2cb80d7 506 | 507 | 508 | **Specifications** 509 | 510 | - Vendor : **ATA ** 511 | - Spinning Disk : **1** 512 | - Model : **ST8000VX0022-2EJ** 513 | - Size : **7.3T** 514 | - Serial : **ZA17B2V9** 515 | 516 | ### WWN:0x5000c500a2cb61cc 517 | 518 | 519 | **Specifications** 520 | 521 | - Vendor : **ATA ** 522 | - Spinning Disk : **1** 523 | - Model : **ST8000VX0022-2EJ** 524 | - Size : **7.3T** 525 | - Serial : **ZA17B381** 526 | 527 | ### WWN:0x5000c500a2cac3f3 528 | 529 | 530 | **Specifications** 531 | 532 | - Vendor : **ATA ** 533 | - Spinning Disk : **1** 534 | - Model : **ST8000VX0022-2EJ** 535 | - Size : **7.3T** 536 | - Serial : **ZA17B4SV** 537 | 538 | ### WWN:0x5000c500a2cadfe2 539 | 540 | 541 | **Specifications** 542 | 543 | - Vendor : **ATA ** 544 | - Spinning Disk : **1** 545 | - Model : **ST8000VX0022-2EJ** 546 | - Size : **7.3T** 547 | - Serial : **ZA17AR9P** 548 | 549 | ### WWN:0x5000c500a2ca5901 550 | 551 | 552 | **Specifications** 553 | 554 | - Vendor : **ATA ** 555 | - Spinning Disk : **1** 556 | - Model : **ST8000VX0022-2EJ** 557 | - Size : **7.3T** 558 | - Serial : **ZA1744GX** 559 | 560 | ### WWN:0x5000c500a2cadbbf 561 | 562 | 563 | **Specifications** 564 | 565 | - Vendor : **ATA ** 566 | - Spinning Disk : **1** 567 | - Model : **ST8000VX0022-2EJ** 568 | - Size : **7.3T** 569 | - Serial : **ZA17AR8J** 570 | 571 | ## CPU 572 | 573 | ### CPU1 574 | 575 | 576 | **Specifications** 577 | 578 | - Vendor : **Intel Corp.** 579 | - Product : **Intel(R) Xeon(R) CPU E5-1630 v3 @ 3.70GHz** 580 | - Clock : **95.37MHz** 581 | - Cores : **enabled: 4/4, threads 8** 582 | - Capabilities : **36-bit page size extensions, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cqm, cqm_llc, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ida, invpcid, invpcid_single, kaiser, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pts, rdrand, rdtscp, rep_good, sdbg, self-snoop, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 583 | 584 | ## Memory 585 | 586 | ### DIMMA1 587 | 588 | 589 | **Specifications** 590 | 591 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 592 | - Vendor : **Samsung** 593 | - Product : **M393A2K40BB1-CRC** 594 | - Size : **16.0GB** 595 | - Clock : **2400MHz** 596 | - Serial : **184B15AE** 597 | 598 | ### DIMMA2 599 | 600 | 601 | **Specifications** 602 | 603 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 604 | - Vendor : **Samsung** 605 | - Product : **M393A2K40BB1-CRC** 606 | - Size : **16.0GB** 607 | - Clock : **2400MHz** 608 | - Serial : **184B1442** 609 | 610 | ### DIMMB1 611 | 612 | 613 | **Specifications** 614 | 615 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 616 | - Vendor : **Samsung** 617 | - Product : **M393A2K40BB1-CRC** 618 | - Size : **16.0GB** 619 | - Clock : **2400MHz** 620 | - Serial : **184AF88A** 621 | 622 | ### DIMMB2 623 | 624 | 625 | **Specifications** 626 | 627 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 628 | - Vendor : **Samsung** 629 | - Product : **M393A2K40BB1-CRC** 630 | - Size : **16.0GB** 631 | - Clock : **2400MHz** 632 | - Serial : **184B41D9** 633 | 634 | ### DIMMC1 635 | 636 | 637 | **Specifications** 638 | 639 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 640 | - Vendor : **Samsung** 641 | - Product : **M393A2K40BB1-CRC** 642 | - Size : **16.0GB** 643 | - Clock : **2400MHz** 644 | - Serial : **184B2039** 645 | 646 | ### DIMMC2 647 | 648 | 649 | **Specifications** 650 | 651 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 652 | - Vendor : **Samsung** 653 | - Product : **M393A2K40BB1-CRC** 654 | - Size : **16.0GB** 655 | - Clock : **2400MHz** 656 | - Serial : **184B203A** 657 | 658 | ### DIMMD1 659 | 660 | 661 | **Specifications** 662 | 663 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 664 | - Vendor : **Samsung** 665 | - Product : **M393A2K40BB1-CRC** 666 | - Size : **16.0GB** 667 | - Clock : **2400MHz** 668 | - Serial : **184B419C** 669 | 670 | ### DIMMD2 671 | 672 | 673 | **Specifications** 674 | 675 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 676 | - Vendor : **Samsung** 677 | - Product : **M393A2K40BB1-CRC** 678 | - Size : **16.0GB** 679 | - Clock : **2400MHz** 680 | - Serial : **184B134A** 681 | 682 | -------------------------------------------------------------------------------- /src/katsdpnetboxutilities/system/reportsCHPC/dss-hc-48/dss-hc-48.md: -------------------------------------------------------------------------------- 1 | --- 2 | papersize: a4 3 | lang: en-GB 4 | linkcolor: blue 5 | urlcolor: blue 6 | toccolor: blue 7 | colorlinks: true 8 | date: 19 June 2022 9 | header-includes: | 10 | \usepackage{fancyhdr} 11 | \pagestyle{fancy} 12 | \fancyhead[CO,CE]{SARAO SDP} 13 | \fancyhead[RO,RE]{dss-hc-48} 14 | title: 'servers' 15 | keywords: ['SDP', 'server'] 16 | hyperrefoptions: 17 | - linktoc=all 18 | - pdfwindowui 19 | - pdfpagemode=FullScreen 20 | ... 21 | # dss-hc-48 22 | 23 | ## Netbox Information 24 | 25 | 26 | - Status : **Active** 27 | - Id : **49** 28 | - Netbox URL : **[https://netbox.kat.ac.za/api/dcim/devices/49/](https://netbox.kat.ac.za/api/dcim/devices/49/)** 29 | - Serial : **SSQX0601-09** 30 | - Device Role : **Storage** 31 | - Device Type : **Peralex DSS-HC** 32 | 33 | ## Location 34 | 35 | 36 | - Site : **CHPC** 37 | - Rack : **R3** 38 | - U : **37** 39 | - Face : **Front** 40 | 41 | ## Disks 42 | 43 | ### WWN:0x5000c500a2ca6016 44 | 45 | 46 | **Specifications** 47 | 48 | - Vendor : **ATA ** 49 | - Spinning Disk : **1** 50 | - Model : **ST8000VX0022-2EJ** 51 | - Size : **7.3T** 52 | - Serial : **ZA175SDP** 53 | 54 | ### WWN:0x5000c500a2cad7ec 55 | 56 | 57 | **Specifications** 58 | 59 | - Vendor : **ATA ** 60 | - Spinning Disk : **1** 61 | - Model : **ST8000VX0022-2EJ** 62 | - Size : **7.3T** 63 | - Serial : **ZA17B4DR** 64 | 65 | ### WWN:0x5000c500a2caa3f7 66 | 67 | 68 | **Specifications** 69 | 70 | - Vendor : **ATA ** 71 | - Spinning Disk : **1** 72 | - Model : **ST8000VX0022-2EJ** 73 | - Size : **7.3T** 74 | - Serial : **ZA17ASAM** 75 | 76 | ### WWN:0x5000c500a2ca1e3e 77 | 78 | 79 | **Specifications** 80 | 81 | - Vendor : **ATA ** 82 | - Spinning Disk : **1** 83 | - Model : **ST8000VX0022-2EJ** 84 | - Size : **7.3T** 85 | - Serial : **ZA17AXW9** 86 | 87 | ### WWN:0x5000c500a2cb52fe 88 | 89 | 90 | **Specifications** 91 | 92 | - Vendor : **ATA ** 93 | - Spinning Disk : **1** 94 | - Model : **ST8000VX0022-2EJ** 95 | - Size : **7.3T** 96 | - Serial : **ZA17B34X** 97 | 98 | ### WWN:0x5000c500a2cb8367 99 | 100 | 101 | **Specifications** 102 | 103 | - Vendor : **ATA ** 104 | - Spinning Disk : **1** 105 | - Model : **ST8000VX0022-2EJ** 106 | - Size : **7.3T** 107 | - Serial : **ZA175BK7** 108 | 109 | ### WWN:0x5000c500a2ca76f2 110 | 111 | 112 | **Specifications** 113 | 114 | - Vendor : **ATA ** 115 | - Spinning Disk : **1** 116 | - Model : **ST8000VX0022-2EJ** 117 | - Size : **7.3T** 118 | - Serial : **ZA16FXSF** 119 | 120 | ### WWN:0x5000c500a2b300a4 121 | 122 | 123 | **Specifications** 124 | 125 | - Vendor : **ATA ** 126 | - Spinning Disk : **1** 127 | - Model : **ST8000VX0022-2EJ** 128 | - Size : **7.3T** 129 | - Serial : **ZA177SCZ** 130 | 131 | ### WWN:0x5000c500a2b338b6 132 | 133 | 134 | **Specifications** 135 | 136 | - Vendor : **ATA ** 137 | - Spinning Disk : **1** 138 | - Model : **ST8000VX0022-2EJ** 139 | - Size : **7.3T** 140 | - Serial : **ZA177SZJ** 141 | 142 | ### WWN:0x5000c500a2b30817 143 | 144 | 145 | **Specifications** 146 | 147 | - Vendor : **ATA ** 148 | - Spinning Disk : **1** 149 | - Model : **ST8000VX0022-2EJ** 150 | - Size : **7.3T** 151 | - Serial : **ZA177EA2** 152 | 153 | ### WWN:0x5000c500a2b306dc 154 | 155 | 156 | **Specifications** 157 | 158 | - Vendor : **ATA ** 159 | - Spinning Disk : **1** 160 | - Model : **ST8000VX0022-2EJ** 161 | - Size : **7.3T** 162 | - Serial : **ZA177SBP** 163 | 164 | ### WWN:0x5000c500a2b30503 165 | 166 | 167 | **Specifications** 168 | 169 | - Vendor : **ATA ** 170 | - Spinning Disk : **1** 171 | - Model : **ST8000VX0022-2EJ** 172 | - Size : **7.3T** 173 | - Serial : **ZA177SBT** 174 | 175 | ### WWN:0x5000c500a2b3030f 176 | 177 | 178 | **Specifications** 179 | 180 | - Vendor : **ATA ** 181 | - Spinning Disk : **1** 182 | - Model : **ST8000VX0022-2EJ** 183 | - Size : **7.3T** 184 | - Serial : **ZA177LZN** 185 | 186 | ### WWN:0x5000c500a2b30c51 187 | 188 | 189 | **Specifications** 190 | 191 | - Vendor : **ATA ** 192 | - Spinning Disk : **1** 193 | - Model : **ST8000VX0022-2EJ** 194 | - Size : **7.3T** 195 | - Serial : **ZA177E2M** 196 | 197 | ### WWN:0x5000c500a2b3048a 198 | 199 | 200 | **Specifications** 201 | 202 | - Vendor : **ATA ** 203 | - Spinning Disk : **1** 204 | - Model : **ST8000VX0022-2EJ** 205 | - Size : **7.3T** 206 | - Serial : **ZA177SBK** 207 | 208 | ### WWN:0x5000c500a2af914c 209 | 210 | 211 | **Specifications** 212 | 213 | - Vendor : **ATA ** 214 | - Spinning Disk : **1** 215 | - Model : **ST8000VX0022-2EJ** 216 | - Size : **7.3T** 217 | - Serial : **ZA16Y6WY** 218 | 219 | ### WWN:0x5000c500a2cae5b1 220 | 221 | 222 | **Specifications** 223 | 224 | - Vendor : **ATA ** 225 | - Spinning Disk : **1** 226 | - Model : **ST8000VX0022-2EJ** 227 | - Size : **7.3T** 228 | - Serial : **ZA17B47H** 229 | 230 | ### WWN:0x5000c500a2cadbcf 231 | 232 | 233 | **Specifications** 234 | 235 | - Vendor : **ATA ** 236 | - Spinning Disk : **1** 237 | - Model : **ST8000VX0022-2EJ** 238 | - Size : **7.3T** 239 | - Serial : **ZA17AR9S** 240 | 241 | ### WWN:0x5000c500a2cb4d2f 242 | 243 | 244 | **Specifications** 245 | 246 | - Vendor : **ATA ** 247 | - Spinning Disk : **1** 248 | - Model : **ST8000VX0022-2EJ** 249 | - Size : **7.3T** 250 | - Serial : **ZA17B382** 251 | 252 | ### WWN:0x5000c500a2cad663 253 | 254 | 255 | **Specifications** 256 | 257 | - Vendor : **ATA ** 258 | - Spinning Disk : **1** 259 | - Model : **ST8000VX0022-2EJ** 260 | - Size : **7.3T** 261 | - Serial : **ZA17AWEW** 262 | 263 | ### WWN:0x5000c500a2cae1f7 264 | 265 | 266 | **Specifications** 267 | 268 | - Vendor : **ATA ** 269 | - Spinning Disk : **1** 270 | - Model : **ST8000VX0022-2EJ** 271 | - Size : **7.3T** 272 | - Serial : **ZA17AW48** 273 | 274 | ### WWN:0x5000c500a2cab74a 275 | 276 | 277 | **Specifications** 278 | 279 | - Vendor : **ATA ** 280 | - Spinning Disk : **1** 281 | - Model : **ST8000VX0022-2EJ** 282 | - Size : **7.3T** 283 | - Serial : **ZA17B4XJ** 284 | 285 | ### WWN:0x5000c500a2cb3728 286 | 287 | 288 | **Specifications** 289 | 290 | - Vendor : **ATA ** 291 | - Spinning Disk : **1** 292 | - Model : **ST8000VX0022-2EJ** 293 | - Size : **7.3T** 294 | - Serial : **ZA17B3DX** 295 | 296 | ### WWN:0x5000c500a2cac2ff 297 | 298 | 299 | **Specifications** 300 | 301 | - Vendor : **ATA ** 302 | - Spinning Disk : **1** 303 | - Model : **ST8000VX0022-2EJ** 304 | - Size : **7.3T** 305 | - Serial : **ZA17B4QR** 306 | 307 | ### WWN:0x5000c500a2cafdc7 308 | 309 | 310 | **Specifications** 311 | 312 | - Vendor : **ATA ** 313 | - Spinning Disk : **1** 314 | - Model : **ST8000VX0022-2EJ** 315 | - Size : **7.3T** 316 | - Serial : **ZA176J49** 317 | 318 | ### WWN:0x5000c500a2caa8c3 319 | 320 | 321 | **Specifications** 322 | 323 | - Vendor : **ATA ** 324 | - Spinning Disk : **1** 325 | - Model : **ST8000VX0022-2EJ** 326 | - Size : **7.3T** 327 | - Serial : **ZA17ASJE** 328 | 329 | ### WWN:0x5000c500a2caf5a8 330 | 331 | 332 | **Specifications** 333 | 334 | - Vendor : **ATA ** 335 | - Spinning Disk : **1** 336 | - Model : **ST8000VX0022-2EJ** 337 | - Size : **7.3T** 338 | - Serial : **ZA17AR5S** 339 | 340 | ### WWN:0x5000c500a2ca4ea5 341 | 342 | 343 | **Specifications** 344 | 345 | - Vendor : **ATA ** 346 | - Spinning Disk : **1** 347 | - Model : **ST8000VX0022-2EJ** 348 | - Size : **7.3T** 349 | - Serial : **ZA17ASX3** 350 | 351 | ### WWN:0x5000c500a2ca23d7 352 | 353 | 354 | **Specifications** 355 | 356 | - Vendor : **ATA ** 357 | - Spinning Disk : **1** 358 | - Model : **ST8000VX0022-2EJ** 359 | - Size : **7.3T** 360 | - Serial : **ZA17ATGZ** 361 | 362 | ### WWN:0x5000c500a2cad6a0 363 | 364 | 365 | **Specifications** 366 | 367 | - Vendor : **ATA ** 368 | - Spinning Disk : **1** 369 | - Model : **ST8000VX0022-2EJ** 370 | - Size : **7.3T** 371 | - Serial : **ZA179CY3** 372 | 373 | ### WWN:0x5000c500a2cb2a9f 374 | 375 | 376 | **Specifications** 377 | 378 | - Vendor : **ATA ** 379 | - Spinning Disk : **1** 380 | - Model : **ST8000VX0022-2EJ** 381 | - Size : **7.3T** 382 | - Serial : **ZA17B3K8** 383 | 384 | ### WWN:0x5000c500a2cae454 385 | 386 | 387 | **Specifications** 388 | 389 | - Vendor : **ATA ** 390 | - Spinning Disk : **1** 391 | - Model : **ST8000VX0022-2EJ** 392 | - Size : **7.3T** 393 | - Serial : **ZA17B4C9** 394 | 395 | ### WWN:0x5000c500a2cae6bf 396 | 397 | 398 | **Specifications** 399 | 400 | - Vendor : **ATA ** 401 | - Spinning Disk : **1** 402 | - Model : **ST8000VX0022-2EJ** 403 | - Size : **7.3T** 404 | - Serial : **ZA17AWQQ** 405 | 406 | ### WWN:0x5000c500a2ca59bc 407 | 408 | 409 | **Specifications** 410 | 411 | - Vendor : **ATA ** 412 | - Spinning Disk : **1** 413 | - Model : **ST8000VX0022-2EJ** 414 | - Size : **7.3T** 415 | - Serial : **ZA17ASRV** 416 | 417 | ### WWN:0x5000c500a2cae475 418 | 419 | 420 | **Specifications** 421 | 422 | - Vendor : **ATA ** 423 | - Spinning Disk : **1** 424 | - Model : **ST8000VX0022-2EJ** 425 | - Size : **7.3T** 426 | - Serial : **ZA17AWNM** 427 | 428 | ### WWN:0x5000c500a2caa7ee 429 | 430 | 431 | **Specifications** 432 | 433 | - Vendor : **ATA ** 434 | - Spinning Disk : **1** 435 | - Model : **ST8000VX0022-2EJ** 436 | - Size : **7.3T** 437 | - Serial : **ZA17ASH3** 438 | 439 | ### WWN:0x5000c500a2caadbb 440 | 441 | 442 | **Specifications** 443 | 444 | - Vendor : **ATA ** 445 | - Spinning Disk : **1** 446 | - Model : **ST8000VX0022-2EJ** 447 | - Size : **7.3T** 448 | - Serial : **ZA17AS92** 449 | 450 | ### WWN:0x5000c500a2cada4e 451 | 452 | 453 | **Specifications** 454 | 455 | - Vendor : **ATA ** 456 | - Spinning Disk : **1** 457 | - Model : **ST8000VX0022-2EJ** 458 | - Size : **7.3T** 459 | - Serial : **ZA17AW1Q** 460 | 461 | ### WWN:0x5000c500a2ca522a 462 | 463 | 464 | **Specifications** 465 | 466 | - Vendor : **ATA ** 467 | - Spinning Disk : **1** 468 | - Model : **ST8000VX0022-2EJ** 469 | - Size : **7.3T** 470 | - Serial : **ZA17ASSW** 471 | 472 | ### WWN:0x5000c500a2caf019 473 | 474 | 475 | **Specifications** 476 | 477 | - Vendor : **ATA ** 478 | - Spinning Disk : **1** 479 | - Model : **ST8000VX0022-2EJ** 480 | - Size : **7.3T** 481 | - Serial : **ZA17B44F** 482 | 483 | ### WWN:0x5000c500a2ca586a 484 | 485 | 486 | **Specifications** 487 | 488 | - Vendor : **ATA ** 489 | - Spinning Disk : **1** 490 | - Model : **ST8000VX0022-2EJ** 491 | - Size : **7.3T** 492 | - Serial : **ZA1716WX** 493 | 494 | ### WWN:0x5000c500a2ca4f7b 495 | 496 | 497 | **Specifications** 498 | 499 | - Vendor : **ATA ** 500 | - Spinning Disk : **1** 501 | - Model : **ST8000VX0022-2EJ** 502 | - Size : **7.3T** 503 | - Serial : **ZA17AXFK** 504 | 505 | ### WWN:0x5000c500a2ca2cb1 506 | 507 | 508 | **Specifications** 509 | 510 | - Vendor : **ATA ** 511 | - Spinning Disk : **1** 512 | - Model : **ST8000VX0022-2EJ** 513 | - Size : **7.3T** 514 | - Serial : **ZA17ATAV** 515 | 516 | ### WWN:0x5000c500a2ca4942 517 | 518 | 519 | **Specifications** 520 | 521 | - Vendor : **ATA ** 522 | - Spinning Disk : **1** 523 | - Model : **ST8000VX0022-2EJ** 524 | - Size : **7.3T** 525 | - Serial : **ZA16DRB1** 526 | 527 | ### WWN:0x5000c500a2cb2fe5 528 | 529 | 530 | **Specifications** 531 | 532 | - Vendor : **ATA ** 533 | - Spinning Disk : **1** 534 | - Model : **ST8000VX0022-2EJ** 535 | - Size : **7.3T** 536 | - Serial : **ZA17AR4B** 537 | 538 | ### WWN:0x5000c500a2ca76e7 539 | 540 | 541 | **Specifications** 542 | 543 | - Vendor : **ATA ** 544 | - Spinning Disk : **1** 545 | - Model : **ST8000VX0022-2EJ** 546 | - Size : **7.3T** 547 | - Serial : **ZA17AXA2** 548 | 549 | ### WWN:0x5000c500a2cae741 550 | 551 | 552 | **Specifications** 553 | 554 | - Vendor : **ATA ** 555 | - Spinning Disk : **1** 556 | - Model : **ST8000VX0022-2EJ** 557 | - Size : **7.3T** 558 | - Serial : **ZA17AWKC** 559 | 560 | ### WWN:0x5000c500a2cadcc0 561 | 562 | 563 | **Specifications** 564 | 565 | - Vendor : **ATA ** 566 | - Spinning Disk : **1** 567 | - Model : **ST8000VX0022-2EJ** 568 | - Size : **7.3T** 569 | - Serial : **ZA17AW8N** 570 | 571 | ## CPU 572 | 573 | ### CPU1 574 | 575 | 576 | **Specifications** 577 | 578 | - Vendor : **Intel Corp.** 579 | - Product : **Intel(R) Xeon(R) CPU E5-1630 v3 @ 3.70GHz** 580 | - Clock : **95.37MHz** 581 | - Cores : **enabled: 4/4, threads 8** 582 | - Capabilities : **36-bit page size extensions, 4GB+ memory addressing (Physical Address Extension), 64bits extensions (x86-64), CPU Frequency scaling, FPU exceptions reporting, HyperThreading, abm, aes, aperfmperf, arat, arch_perfmon, avx, avx2, bmi1, bmi2, bts, clflush, compare and exchange 8-byte, conditional move instruction, constant_tsc, cqm, cqm_llc, cqm_occup_llc, cx16, dca, debug trace and EMON store MSRs, debugging extensions, ds_cpl, dtes64, dtherm, epb, ept, erms, est, f16c, fast floating point save/restore, fast system calls, fast system calls, flexpriority, flush_l1d, fma, fsgsbase, ibpb, ibrs, ida, invpcid, invpcid_single, kaiser, lahf_lm, machine check architecture, machine check exceptions, mathematical co-processor, md_clear, memory type range registers, model-specific registers, monitor, movbe, multimedia extensions (MMX), no-execute bit (NX), nonstop_tsc, nopl, on-chip advanced programmable interrupt controller (APIC), page attribute table, page global enable, page size extensions, pcid, pclmulqdq, pdcm, pdpe1gb, pebs, pending break event, pln, pni, popcnt, pts, rdrand, rdtscp, rep_good, sdbg, self-snoop, smep, smx, ssbd, sse4_1, sse4_2, ssse3, stibp, streaming SIMD extensions (SSE), streaming SIMD extensions (SSE2), thermal control (ACPI), thermal interrupt and status, time stamp counter, tm2, tpr_shadow, tsc_adjust, tsc_deadline_timer, virtual mode extensions, vmx, vnmi, vpid, wp, x2apic, xsave, xsaveopt, xtopology, xtpr** 583 | 584 | ## Memory 585 | 586 | ### DIMMA1 587 | 588 | 589 | **Specifications** 590 | 591 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 592 | - Vendor : **Samsung** 593 | - Product : **M393A2K40BB1-CRC** 594 | - Size : **16.0GB** 595 | - Clock : **2400MHz** 596 | - Serial : **184B213C** 597 | 598 | ### DIMMA2 599 | 600 | 601 | **Specifications** 602 | 603 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 604 | - Vendor : **Samsung** 605 | - Product : **M393A2K40BB1-CRC** 606 | - Size : **16.0GB** 607 | - Clock : **2400MHz** 608 | - Serial : **184AFA1D** 609 | 610 | ### DIMMB1 611 | 612 | 613 | **Specifications** 614 | 615 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 616 | - Vendor : **Samsung** 617 | - Product : **M393A2K40BB1-CRC** 618 | - Size : **16.0GB** 619 | - Clock : **2400MHz** 620 | - Serial : **184B2137** 621 | 622 | ### DIMMB2 623 | 624 | 625 | **Specifications** 626 | 627 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 628 | - Vendor : **Samsung** 629 | - Product : **M393A2K40BB1-CRC** 630 | - Size : **16.0GB** 631 | - Clock : **2400MHz** 632 | - Serial : **184B2133** 633 | 634 | ### DIMMC1 635 | 636 | 637 | **Specifications** 638 | 639 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 640 | - Vendor : **Samsung** 641 | - Product : **M393A2K40BB1-CRC** 642 | - Size : **16.0GB** 643 | - Clock : **2400MHz** 644 | - Serial : **184B2135** 645 | 646 | ### DIMMC2 647 | 648 | 649 | **Specifications** 650 | 651 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 652 | - Vendor : **Samsung** 653 | - Product : **M393A2K40BB1-CRC** 654 | - Size : **16.0GB** 655 | - Clock : **2400MHz** 656 | - Serial : **184AF9CB** 657 | 658 | ### DIMMD1 659 | 660 | 661 | **Specifications** 662 | 663 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 664 | - Vendor : **Samsung** 665 | - Product : **M393A2K40BB1-CRC** 666 | - Size : **16.0GB** 667 | - Clock : **2400MHz** 668 | - Serial : **184B2138** 669 | 670 | ### DIMMD2 671 | 672 | 673 | **Specifications** 674 | 675 | - Description : **DIMM Synchronous 2400 MHz (0.4 ns)** 676 | - Vendor : **Samsung** 677 | - Product : **M393A2K40BB1-CRC** 678 | - Size : **16.0GB** 679 | - Clock : **2400MHz** 680 | - Serial : **184B2D9E** 681 | 682 | --------------------------------------------------------------------------------