Home
last modified time | relevance | path

Searched refs:ssh_settings (Results 1 – 10 of 10) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/
Dpacket_capture.py62 return [pcap.ssh_settings.hostname for pcap in pcaps]
103 self.ssh_settings = settings.from_config(configs['ssh_config'])
104 self.ssh = connection.SshConnection(self.ssh_settings)
106 MOBLY_CONTROLLER_CONFIG_NAME, self.ssh_settings.hostname, msg))
279 self.ssh_settings,
Dopenwrt_ap.py98 return [ap.ssh_settings.hostname for ap in aps]
117 self.ssh_settings = settings.from_config(config["ssh_config"])
118 self.ssh = connection.SshConnection(self.ssh_settings)
123 self.ssh_settings.hostname)
126 self.ssh_settings.identity_file = openwrt_auth.private_key_file
127 self.ssh = connection.SshConnection(self.ssh_settings)
130 lambda msg: "[OpenWrtAP|%s] %s" % (self.ssh_settings.hostname, msg))
133 self.ssh, self.ssh_settings, self.log)
Daccess_point.py93 return [ap.ssh_settings.hostname for ap in aps]
213 self.ssh_settings = settings.from_config(configs['ssh_config'])
217 self.identifier = self.ssh_settings.hostname
231 self.ssh = connection.SshConnection(self.ssh_settings)
807 if not utils.can_ping(job, self.ssh_settings.hostname):
827 if utils.can_ping(job, self.ssh_settings.hostname):
Diperf_server.py432 self.ssh_settings = settings.from_config(ssh_config)
440 self.hostname = self.ssh_settings.hostname
573 self._ssh_session = connection.SshConnection(self.ssh_settings)
Dandroid_device.py270 ssh_settings = settings.from_config(ssh_config)
271 ssh_connection = connection.SshConnection(ssh_settings)
/tools/test/connectivity/acts_tests/tests/google/wifi/
DWifiPreTest.py100 ip = openwrt.ssh_settings.hostname
106 openwrt.ssh = connection.SshConnection(openwrt.ssh_settings)
/tools/test/connectivity/acts/framework/acts/controllers/openwrt_lib/
Dnetwork_settings.py67 def __init__(self, ssh, ssh_settings, logger): argument
77 self.ssh_settings = ssh_settings
78 self.user = self.ssh_settings.username
79 self.ip = self.ssh_settings.hostname
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/coex/
Dcoex_test_utils.py555 ssh_settings = settings.from_config(ssh_config)
556 ssh_session = connection.SshConnection(ssh_settings)
951 ssh_settings = settings.from_config(fping_params["ssh_config"])
952 ssh_session = connection.SshConnection(ssh_settings)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/
Dwifi_power_test_utils.py409 ipv4_gw = test_class.access_point.ssh_settings.hostname
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/abstract_devices/
Dwmm_transceiver.py144 if ap.ssh_settings.hostname == access_point_ip: