IPRangeAnalyzer is a Python script that analysis ip range.
extracts ip range
(192.168.0.1-192.168.0.5
) to
192.168.0.1
192.168.0.2
192.168.0.3
192.168.0.4
192.168.0.5
clone the repository.
git clone https://github.com/SinaKzlca/IPRangeAnalyzer
cd IPRangeAnalyzer/
ready to go!
python IPRangeAnalyzer.py -ipr [ip range list] -o [output file path]
python IPRangeAnalyzer.py -ipr 127.0.0.1-127.0.1.255 192.168.0.1-192.168.0.5 -o output.txt
python IPRangeAnalyzer.py -i [input file path] -o [output file path]
python IPRangeAnalyzer.py -i ~/Downloads/iprange.txt -o output.txt
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.