test_l3_WAN_LAN: Fix whitespace

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-24 16:27:51 -08:00
parent 5abac844e0
commit d92d6f8e84

View File

@@ -10,7 +10,6 @@ if sys.version_info[0] != 3:
print("This script requires Python 3") print("This script requires Python 3")
exit(1) exit(1)
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../"))) sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
lfcli_base = importlib.import_module("py-json.LANforge.lfcli_base") lfcli_base = importlib.import_module("py-json.LANforge.lfcli_base")
@@ -179,6 +178,7 @@ class VRTest(LFCliBase):
self._pass("PASS: Station build finished") self._pass("PASS: Station build finished")
exit(1) exit(1)
def main(): def main():
lfjson_port = 8080 lfjson_port = 8080
@@ -200,13 +200,21 @@ TBD
parser.add_argument('--a_min', help='--a_min bps rate minimum for side_a', default=256000) parser.add_argument('--a_min', help='--a_min bps rate minimum for side_a', default=256000)
parser.add_argument('--b_min', help='--b_min bps rate minimum for side_b', default=256000) parser.add_argument('--b_min', help='--b_min bps rate minimum for side_b', default=256000)
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")
parser.add_argument('--upstream_subnets', help='--upstream_subnets sets the subnets used by the upstream vrcx', default="20.20.20.0/24") parser.add_argument('--upstream_subnets', help='--upstream_subnets sets the subnets used by the upstream vrcx',
parser.add_argument('--upstream_nexthop', help='--upstream_nexthop sets the nexthop used by the upstream vrcx, should be rdd gateway', default="20.20.20.1") default="20.20.20.0/24")
parser.add_argument('--local_subnets', help='--local_subnets sets the subnets used by the rdd vrcx', default="10.40.0.0/24") parser.add_argument('--upstream_nexthop',
parser.add_argument('--local_nexthop', help='--local_nexthop sets the nexthop used by the upstream vrcx, should be upstream ip', default="10.40.3.198") help='--upstream_nexthop sets the nexthop used by the upstream vrcx, should be rdd gateway',
default="20.20.20.1")
parser.add_argument('--local_subnets', help='--local_subnets sets the subnets used by the rdd vrcx',
default="10.40.0.0/24")
parser.add_argument('--local_nexthop',
help='--local_nexthop sets the nexthop used by the upstream vrcx, should be upstream ip',
default="10.40.3.198")
parser.add_argument('--rdd_ip', help='--rdd_ip sets the ip to be used by the rdd', default="20.20.20.20") parser.add_argument('--rdd_ip', help='--rdd_ip sets the ip to be used by the rdd', default="20.20.20.20")
parser.add_argument('--rdd_gateway', help='--rdd_gateway sets the gateway to be used by the rdd', default="20.20.20.1") parser.add_argument('--rdd_gateway', help='--rdd_gateway sets the gateway to be used by the rdd',
parser.add_argument('--rdd_netmask', help='--rdd_netmask sets the netmask to be used by the rdd', default="255.255.255.0") default="20.20.20.1")
parser.add_argument('--rdd_netmask', help='--rdd_netmask sets the netmask to be used by the rdd',
default="255.255.255.0")
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()