How To

This section provides some how-to steps including how to collect the `ethtool -S` and `nicinfo.sh` information from Linux and Vmware hosts respectively.

Collecting `ethtool -S` output (Linux)

To collect the `ethtool -S` output on a Linux system, open a terminal and run the following command:

ethtool -S your_interface_name

Replace `your_interface_name` with the actual name of the network interface (e.g., `eth0`, `ens33`). You can redirect the output to a file using:

ethtool -S your_interface_name > ethtool-S-output.txt

Collecting `nicinfo.sh` output (VMware ESXi)

To collect the `nicinfo.sh` output on a VMware ESXi host:

  1. Connect to the ESXi host using SSH.
  2. Navigate to the directory where `nicinfo.sh` is located (usually `/usr/lib/vmware/bin`).
  3. Execute the script:
    ./nicinfo.sh > nicinfo.sh.txt
  4. The output will be saved to the `nicinfo.sh.txt` file.

Back to Parser