Command line IP Shifter. Changes IP address from the given address every x seconds.
Python 3 or above is required.
pypiwin32
&& wmi
packages must be installed: pip install pypiwin32 wmi
Update config file according to your needs and run using cmd python main.py
Options are loaded from config.json
in the root directory.
{
"ip": {
"start": "10.50.153.1", /*Starting address of range*/
"end": "10.50.154.255" /*Ending address of range*/
},
"subnet": "255.0.0.0",
"gateway": "10.50.151.254",
"dns": "10.50.151.254",
"timeout": 7, /*Timeout before testing internet on the new IP address*/
"delay": 50 /*Delay between switching IP addresses*/
}