mirror of
https://github.com/jopohl/urh.git
synced 2026-03-06 16:26:48 +01:00
9 lines
274 B
Python
9 lines
274 B
Python
#!/usr/bin/env python3
|
|
|
|
from subprocess import call
|
|
|
|
# call(["ifconfig", "eth0", "192.168.10.1"])
|
|
call("sysctl -w net.core.rmem_max=50000000", shell = True)
|
|
call("sysctl -w net.core.rmem_max=50000000", shell = True)
|
|
call("sysctl -w net.core.wmem_max=1048576", shell = True)
|