mrx

Results 10 comments of mrx

easy way to fix this , just unset the client var ``` targets = ['server1', 'server2'] for target in targets: client = iperf3.Client() ## do iperf stuff client = None...

this will be added to conda, working on it now

Please remove the binaries, taking forever to clone this repo. Thx

facing same issue, ipv6 is disabled for security, unable to use nebula

can this be merged? We want to use this tool but are unable to due to ipv6 requirements

is there a way to run this like SimpleHTTPServer, basically open a port and report any HTTP calls, but not share any directories?

added a PR with latest master https://github.com/slackhq/nebula/pull/787

for RPM pkg workaround, 1. place your systemd startup script into the dir that you will be packaging as RPM, 2. run FPM with -s dir, provide a --after-install script...

noticing similar error trying to start minion on rocky9 vagrant instance ``` 2024-02-06 14:54:34,285 [tornado.application:640 ][ERROR ][1134] Exception in callback functools.partial(, ) Traceback (most recent call last): File "/opt/salt/lib64/python3.9/site-packages/salt/transport/zeromq.py", line...

was able to get it to index a web page by modifiying timeout value inside the container, ``` def check_internet_connection(url: str) -> None: try: response = requests.get(url, timeout=3) ``` changed...