Added Client-Type scenarios Existing Stations, Real + Virtual, Real + Existing Stations.#60
Conversation
Sidartha-CT
reviewed
May 20, 2026
|
|
||
| import shutil | ||
| from datetime import datetime, timedelta | ||
|
|
| self.interval = interval | ||
| self.debug = debug | ||
| self.sta_list = sta_list | ||
| self.sta_list = sta_list if self.sta_list == [] else self.sta_list |
Collaborator
There was a problem hiding this comment.
check with if self.sta_list self.sta_list==[] is not required
Sidartha-CT
reviewed
May 20, 2026
Comment on lines
+283
to
+288
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
Collaborator
There was a problem hiding this comment.
No extra lines , please have flake8 & flake8-bugbear check
Sidartha-CT
reviewed
May 20, 2026
|
|
||
|
|
||
| self.last_written_seq = {} | ||
| # self.last_Result_per_Station = {} |
Collaborator
There was a problem hiding this comment.
remove commented code
…for --clients_type -> Real Clients, Virtual Stations, Existing Virtual Stations, Real + Virtual Stations, Real + Existing Stations" Signed-off-by: Manoj9088 <manoj.kolluru@candelatech.com>
… clients type Real, Virtual, Existing Station List, Real + Virtual, Real + Existing Station and Added functionality of Pinging different ips from one ip(--sta_port) VERIFIED CLI: 1.python3 lf_interop_ping.py --mgr 192.168.207.78 --ping_interval 5 --ping_duration 1 --expected_passfail_value 5 --clients_type real --sta_to_res --sta_port 1.1.eth1 --use_default_config --res_ip 192.168.204.80 --device_list 1.4,1.15 2.python3 lf_interop_ping.py --mgr 192.168.207.78 --ping_interval 5 --ping_duration 1 --expected_passfail_value 5 --clients_type both --target 8.8.8.8 --num_sta 5 --ssid NETGEAR_5G_wpa2 --passwd Password@123 --security wpa2 --radio 1.1.wiphy1 --use_default_config 3.python3 lf_interop_ping.py --mgr 192.168.207.78 --ping_interval 5 --ping_duration 1 --expected_passfail_value 5 --clients_type both --target 8.8.8.8 --use_existing_sta_list --existing_sta_list 1.1.sta00,1.1.sta01,1.1.sta02 --use_default_config 4.python3 lf_interop_ping.py --mgr 192.168.207.78 --ping_interval 5 --ping_duration 1 --expected_passfail_value 5 --clients_type virtual --target 8.8.8.8 --use_existing_sta_list --existing_sta_list 1.1.sta00,1.1.sta01,1.1.sta02 --use_default_config 5.python3 lf_interop_ping.py --mgr 192.168.207.78 --ping_interval 5 --ping_duration 1 --expected_passfail_value 5 --clients_type both --target 8.8.8.8 --use_existing_sta_list --existing_sta_list 1.1.sta00,1.1.sta01,1.1.sta02 --ssid NETGEAR_2G_wpa2 --passwd Password@123 --security wpa2 Signed-off-by: Manoj9088 <manoj.kolluru@candelatech.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Also added functionality of pinging devices specified in device_list / ip's mentioned in resp_ip from --sta_port.