Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: server/site_linux_router.py

Issue 3139013: 802.1x EAP-TLS Authentication for wifi tests (Closed) Base URL: ssh://gitrw.chromium.org/autotest.git
Patch Set: Change eap_tls to eap-tls Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « server/site_eap_tls.py ('k') | server/site_tests/network_WiFiSecMat/019CheckWPA_1x_AES » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/site_linux_router.py
diff --git a/server/site_linux_router.py b/server/site_linux_router.py
index 5ed08fd6fdd2d2fdab10bd9cf687d25586c85177..50375700447819aaa18e9d09a531fe25f494e963 100644
--- a/server/site_linux_router.py
+++ b/server/site_linux_router.py
@@ -4,6 +4,7 @@
import logging, re
from autotest_lib.client.common_lib import error
+from autotest_lib.server import site_eap_tls
def isLinuxRouter(router):
router_uname = router.run('uname').stdout
@@ -254,6 +255,8 @@ class LinuxRouter(object):
pass # NB: meaningless for hostapd; ignore
elif k == '-ampdu':
pass # TODO(sleffler) need hostapd support
+ elif k == 'eap-tls':
+ conf.update(site_eap_tls.router_config(self.router, v))
else:
conf[k] = v
« no previous file with comments | « server/site_eap_tls.py ('k') | server/site_tests/network_WiFiSecMat/019CheckWPA_1x_AES » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698