OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 """ |
| 6 You must have the 53d0a92e9b0b37daebc795cc1ea4684d1c0dffd8 from |
| 7 chromeos/master to have the necessary configuration changes to the |
| 8 openwrt repository. You must then build the 'rspro' variant and |
| 9 upgrade your router with the new firmware to be able to run this test. |
| 10 |
| 11 You must build the 'rspro' openwrt variant with these configuration |
| 12 changes, and update the rspro router to the newly built firmware to be |
| 13 able to run this test. |
| 14 |
| 15 This test starts & verfies a VPN connection from the Client (DUT) to |
| 16 the Server (rspro). |
| 17 """ |
| 18 |
| 19 from autotest_lib.server import site_wifitest |
| 20 |
| 21 class network_VPN(site_wifitest.test): |
| 22 pass |
OLD | NEW |