Iperf: Network Performance Measurement Tool
├── Introduction
│   └── Understanding Iperf
├── Installation and Setup
│   ├── Installing Iperf
│   └── Basic Setup for Testing
├── Iperf Usage and Commands
│   ├── Basic Usage
│   ├── Advanced Features
│   └── Common Command Line Options
├── Practical Examples
│   ├── Example 1: Basic Bandwidth Test
│   ├── Example 2: Testing with Different Parameters
│   └── Example 3: Bidirectional Test
└── Conclusion
    └── Analyzing Test Results and Applications

1. Introduction

Understanding Iperf

2. Installation and Setup

Installing Iperf

# Installation command for Iperf (Linux)
sudo apt-get install iperf3

Basic Setup for Testing

3. Iperf Usage and Commands

Basic Usage

# Server mode
iperf3 -s

# Client mode
iperf3 -c <server_ip_address>

Advanced Features

Common Command Line Options

4. Practical Examples