Private/Helper/Start-iPerfServer.ps1

<#
Copyright © 2024 Integris. For internal company use only. All rights reserved.
#>


FUNCTION Start-iPerfServer {
    <#
    .SYNOPSIS
    Starts iPerf3 in server mode.
 
    .DESCRIPTION
    This function starts iPerf3 in server mode to allow other devices to connect and run network performance tests.
 
    .PARAMETER None
 
    .EXAMPLE
    Start-iPerfServer
 
    .NOTES
    The function uses the Start-iPerf function to start iPerf3 in server mode.
    #>


    Start-iPerf -StartServer
}