-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
18 lines (15 loc) · 1.13 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# iperf3 client config
iperf3_client = 'C:\\iperf-3.1.3-win64\\iperf3.exe' # Path to iperf3 executable. Make sure to use double backslashes. String
iperf3_args = ['-t 20', '-P 10', '-O 5'] # Any args you choose. -t = time in seconds for test, -P = parallel streams, -O = omit first seconds ramping. https://iperf.fr/iperf-doc.php for more. Python list
# locations
locations = ['Couch', 'Office', 'Table', 'Bedroom', 'Kitchen'] # Locations within your space that you wish to test from. Python list
# network specifications
[networks]
[networks.NachoWifi] # Specification for single network. Create as many as you please but make sure to maintain the same format.
ssid = "NachoWifi" # Name of wifi network that your computer sees. String
iperf3_server_ip = "192.168.1.101" # IP address of machine running iperf3 server. String
iperf3_server_port = 5201 # Port that iperf3 server is listening on. The default is 5201. Integer
[networks.WifiNetwork2]
ssid = "WifiNetwork2"
iperf3_server_ip = "10.10.4.2"
iperf3_server_port = 5201