Module for handling basic ping command operations over different operating systems for network diagnostic purposes.
Project description
[!IMPORTANT]
This project is under development. All source code and features on the main branch are for the purpose of testing or evaluation and not production ready.
MFD Ping
Module for handling ping command.
[!IMPORTANT] ESXi Users ONLY
This module requiresvsphere-automation-sdkto work.
Please addvsphere-automation-sdkto your requirements file or install it manually:pip install vsphere-automation-sdk @ git+https://github.com/vmware/vsphere-automation-sdk-python@v8.0.3.0For currently supported version of
vsphere-automation-sdkplease refer to mfd-esxi/README.
Usage
from mfd_connect import LocalConnection
from mfd_ping import Ping
ping_tool = Ping(connection=LocalConnection())
ping_process = ping_tool.start(dst_ip='127.0.0.1', count=10)
print(ping_tool.stop(ping_process))
API
- Start ping,
dst_ipis required, rest of arguments are optional. "namespace" argument is available only on Linux systems.
def start(
dst_ip: IPv4Address | IPv6Address | IPAddress | str,
mtu: int | None = None,
count: int | None = None,
packet_size: int | None = None,
src_ip: IPv4Address | IPv6Address | IPAddress | str | None = None,
timeout: int | None = None,
frag: bool | None = None,
ttl: int | None = None,
broadcast: bool | None = None,
args: str | None = None,
namespace: str | None = None,
output_file: str | None = None,
) -> "RemoteProcess"
"""
Start pinging destination machine.
:param dst_ip: Destination IP address to perform ping
:param mtu: Value of maximum transmission unit. Overriding usage of packet_size
:param count: Number of echo requests to send
:param packet_size: Size of ping packet in bytes. Not compatible with mtu. MTU size will be used instead.
:param src_ip: Source IP address to use ping
:param timeout: Program execution timeout, in seconds
:param frag: Enable fragmentation
:param ttl: Time-To-Live value
:param broadcast: Broadcast ping
:param args: Additional arguments to ping method
:param namespace: Namespace in which command should be executed
:param output_file: path to file where log will be saved
:return: OS process with ping.
:raises PingException: if addresses are incorrect.
if ping command fails on execution
if passed incorrect args
"""
- Stop ping
def stop(process: "RemoteProcess") -> "PingResult"
"""
Kill pinging process and report result.
:param process: OS process with ping.
:return: DataClass PingResult with pass_count and fail_count of ping requests.
"""
PingResult dataclass:
pass_count: int - (legacy packets_transmitted)
fail_count: int - (legacy packets_transmitted - packets_received)
packets_transmitted: int
packets_received: int
packets_duplicates: int
errors: int
packet_loss: float
rtt_min: float
rtt_avg: float
rtt_max: float
MTU (Maximum Transmission Unit)
MTU is a networking term that defines the largest packet size that can be sent over a network connection.
For IPv4 it's lowered about 28 and for IPv6 about 48 bytes (headers)
If user pass values to mtu and packet_size arguments in start() function at the same time, packet_size will be ignored and mtu will be used instead.
Traffic Manager
PingClientTraffic/PingServerTraffic has been implemented with Traffic interface. It can be used with Traffic Manager and Stream in mfd-traffic-manager as one of supported traffics. Details are available in mfd-traffic-manager documentation.
Traffic API
All classes for specific traffics (e.g. PingClientTraffic) should inherit from Traffic base class interface. It provides some abstract methods, all of them need to be implemented in child classes:
start() -> None- start trafficstop() -> None- stop trafficrun(duration: int) -> None- run traffic for a specified number of secondsvalidate(validation_criteria: dict[Callable, dict[str, Any]] | None = None) -> bool- validate traffic by passed criteria
Example usage:
import time
from mfd_connect import RPyCConnection
from mfd_ping import PingClientTraffic, PingServerTraffic
from mfd_traffic_manager import TrafficManager, Stream
manager = TrafficManager()
conn = RPyCConnection(ip="10.10.10.11")
ping_client_1 = PingClientTraffic(connection=conn, dst_ip="12.12.12.12")
ping_client_2 = PingClientTraffic(connection=conn, dst_ip="12.12.12.13" mtu=1500)
ping_server = PingServerTraffic() # Initialize dummy server for ping traffic
ping_stream_1 = Stream(clients=[ping_client_1], server=ping_server)
ping_stream_2 = Stream(clients=[ping_client_2], server=ping_server)
manager.add_stream(ping_stream_1)
manager.add_stream(ping_stream_2)
manager.start_all()
time.sleep(3) # some waiting or actions
manager.stop_all()
manager.validate_all()
manager.run_all(duration=5)
OS supported:
Here is a place to write what OSes support your MFD module:
- WINDOWS
- LINUX
- ESXi
- FREEBSD
- Mellanox switch with InteractiveSSHConnection
Issue reporting
If you encounter any bugs or have suggestions for improvements, you're welcome to contribute directly or open an issue here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mfd_ping-1.15.0-py3-none-any.whl.
File metadata
- Download URL: mfd_ping-1.15.0-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
755cf9c782dfb322498708dd92885f666e843d4cc94d42b55868501fd0252efa
|
|
| MD5 |
63ab4b9ee8f2c8bc89b6e85c99812e51
|
|
| BLAKE2b-256 |
f8e6c0f759b8c9488cbb4f1185f5845ed5a98b01ed155ecdeb281326e7cb39ac
|