mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-01 19:28:00 +00:00
parameter fixes
This commit is contained in:
@@ -90,7 +90,9 @@ def main():
|
|||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
num_sta = 2
|
num_sta = 2
|
||||||
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
num_sta = int(args.num_stations)
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta",
|
station_list = LFUtils.portNameSeries(prefix_="sta",
|
||||||
start_id_=0,
|
start_id_=0,
|
||||||
|
|||||||
@@ -239,8 +239,13 @@ python3 ./test_fileio.py --upstream_port eth1 --fio_type fe_nfs4 --min_read 1Mbp
|
|||||||
parser.add_argument('--server_mount', help='--server_mount The server to mount, ex: 192.168.100.5/exports/test1',
|
parser.add_argument('--server_mount', help='--server_mount The server to mount, ex: 192.168.100.5/exports/test1',
|
||||||
default="10.40.0.1:/var/tmp/test")
|
default="10.40.0.1:/var/tmp/test")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
num_sta = 2
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
|
||||||
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_test = FileIOTest(args.mgr,
|
ip_test = FileIOTest(args.mgr,
|
||||||
|
|||||||
@@ -185,7 +185,12 @@ python3 ./test_ipv4_l4_ftp_wifi.py --upstream_port eth1 \\
|
|||||||
default="ul ftp://10.40.0.1 /dev/null")
|
default="ul ftp://10.40.0.1 /dev/null")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
num_sta = 2
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_test = IPV4L4(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd,
|
ip_test = IPV4L4(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd,
|
||||||
|
|||||||
@@ -168,7 +168,13 @@ python3 ./test_ipv4_l4_ftp_urls_per_ten.py --upstream_port eth1 \\
|
|||||||
default=600)
|
default=600)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
num_sta = 2
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
|
|
||||||
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_test = IPV4L4(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd, upstream_port=args.upstream_port,radio= args.radio,
|
ip_test = IPV4L4(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd, upstream_port=args.upstream_port,radio= args.radio,
|
||||||
|
|||||||
@@ -188,8 +188,13 @@ python3 ./test_ipv4_l4_wifi.py --upstream_port eth1 \\
|
|||||||
parser.add_argument('--dest', help='--dest specifies the destination (dl) or source (ul) for the file', default="/dev/null")
|
parser.add_argument('--dest', help='--dest specifies the destination (dl) or source (ul) for the file', default="/dev/null")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
num_sta = 2
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=2, padding_number_=10000,
|
|
||||||
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_test = IPV4L4(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd,
|
ip_test = IPV4L4(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd,
|
||||||
|
|||||||
@@ -208,8 +208,13 @@ Note: multiple --radio switches may be entered up to the number of radios avai
|
|||||||
parser.add_argument('--test_duration', help='--test_duration sets the duration of the test', default="5m")
|
parser.add_argument('--test_duration', help='--test_duration sets the duration of the test', default="5m")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
num_sta = 2
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
|
||||||
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_var_test = IPV4VariableTime(args.mgr, lfjson_port, number_template="00", sta_list=station_list,
|
ip_var_test = IPV4VariableTime(args.mgr, lfjson_port, number_template="00", sta_list=station_list,
|
||||||
|
|||||||
@@ -240,9 +240,9 @@ test_ipv4_ttls.py:
|
|||||||
Generic command layout:
|
Generic command layout:
|
||||||
python ./test_ipv4_ttls.py --upstream_port <port>
|
python ./test_ipv4_ttls.py --upstream_port <port>
|
||||||
--radio <radio 0>
|
--radio <radio 0>
|
||||||
--num_stations <stations>
|
--num_stations 3
|
||||||
--ssid <ssid>
|
--ssid ssid-wpa-1
|
||||||
--keyphrase <ssid password>
|
--keyphrase ssid-wpa-1
|
||||||
--security <security type: wpa2, open, wpa3>
|
--security <security type: wpa2, open, wpa3>
|
||||||
--debug
|
--debug
|
||||||
|
|
||||||
@@ -263,7 +263,12 @@ test_ipv4_ttls.py:
|
|||||||
parser.add_argument('--use_hs20', help='use HotSpot 2.0', default=False)
|
parser.add_argument('--use_hs20', help='use HotSpot 2.0', default=False)
|
||||||
parser.add_argument('--enable_pkc', help='enable opportunistic PMKSA WPA2 key caching', default=False)
|
parser.add_argument('--enable_pkc', help='enable opportunistic PMKSA WPA2 key caching', default=False)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000)
|
num_sta = 2
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000)
|
||||||
ttls_test = TTLSTest(lfjson_host, lfjson_port,
|
ttls_test = TTLSTest(lfjson_host, lfjson_port,
|
||||||
ssid=args.ssid,
|
ssid=args.ssid,
|
||||||
password=args.passwd,
|
password=args.passwd,
|
||||||
|
|||||||
@@ -140,8 +140,11 @@ python3 ./test_ipv6_connection.py --upstream_port eth1 \\
|
|||||||
parser.add_argument('--timeout', help='--timeout sets the length of time to wait until a connection is successful', default=120)
|
parser.add_argument('--timeout', help='--timeout sets the length of time to wait until a connection is successful', default=120)
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=num_sta-1, end_id_=1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ipv6_test = IPv6Test(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd,
|
ipv6_test = IPv6Test(args.mgr, lfjson_port, ssid=args.ssid, password=args.passwd,
|
||||||
|
|||||||
@@ -192,8 +192,11 @@ python3 ./test_ipv6_connection.py --upstream_port eth1 \\
|
|||||||
parser.add_argument('--test_duration', help='--test_duration sets the duration of the test', default="5m")
|
parser.add_argument('--test_duration', help='--test_duration sets the duration of the test', default="5m")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_var_test = IPV6VariableTime(args.mgr, lfjson_port, number_template="00", sta_list=station_list,
|
ip_var_test = IPV6VariableTime(args.mgr, lfjson_port, number_template="00", sta_list=station_list,
|
||||||
|
|||||||
@@ -208,8 +208,11 @@ TBD
|
|||||||
parser.add_argument('--vr_name', help='--vr_name sets the name to be used by the virtual router', default="vr_test")
|
parser.add_argument('--vr_name', help='--vr_name sets the name to be used by the virtual router', default="vr_test")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
if (args.num_stations is not None) and (int(args.num_stations) > 0):
|
||||||
|
num_stations_converted = int(args.num_stations)
|
||||||
|
num_sta = num_stations_converted
|
||||||
|
|
||||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=1, padding_number_=10000,
|
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_=0, end_id_=num_sta-1, padding_number_=10000,
|
||||||
radio=args.radio)
|
radio=args.radio)
|
||||||
|
|
||||||
ip_var_test = VRTest(args.mgr, lfjson_port, number_template="00", sta_list=station_list,
|
ip_var_test = VRTest(args.mgr, lfjson_port, number_template="00", sta_list=station_list,
|
||||||
|
|||||||
Reference in New Issue
Block a user