Skip to content

Commit 1d9928a

Browse files
committed
remove stale argument
1 parent 7aed677 commit 1d9928a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

routeros/docker/launch.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env python3
22

33
import datetime
4+
import ftplib
45
import logging
56
import os
67
import re
78
import signal
89
import sys
9-
import ftplib
1010

1111
import vrnetlab
1212

@@ -56,7 +56,7 @@ def __init__(self, hostname, username, password, conn_mode):
5656
self.qemu_args.extend(["-boot", "n"])
5757
self.hostname = hostname
5858
self.conn_mode = conn_mode
59-
self.nic_type = "virtio-net" # "e1000" is default but breaks mtu > 1500 on vlan subinterfaces on RouterOS 6.x.x
59+
self.nic_type = "virtio-net" # "e1000" is default but breaks mtu > 1500 on vlan subinterfaces on RouterOS 6.x.x
6060
self.num_nics = 31
6161

6262
# set up bridge for management interface to a localhost
@@ -279,4 +279,4 @@ def __init__(self, hostname, username, password, conn_mode):
279279
args.password,
280280
conn_mode=args.connection_mode,
281281
)
282-
vr.start(add_fwd_rules=False)
282+
vr.start()

0 commit comments

Comments
 (0)