Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 754 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 754 Bytes

ip-shifter-python

Command line IP Shifter. Changes IP address from the given address every x seconds.

Requirement

Python 3 or above is required.

pypiwin32 && wmi packages must be installed: pip install pypiwin32 wmi

How to use

Update config file according to your needs and run using cmd python main.py

Options

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*/
}