https://github.com/adlered/ipsegmentscanner
:computer:Find out the gateway FAST! e.g. If you tell scanner to scan '192.0.1.1', it will be scan '192.0.1.1', '192.1.1.1', '192.2.1.1'... by your customize!
https://github.com/adlered/ipsegmentscanner
Last synced: 7 months ago
JSON representation
:computer:Find out the gateway FAST! e.g. If you tell scanner to scan '192.0.1.1', it will be scan '192.0.1.1', '192.1.1.1', '192.2.1.1'... by your customize!
- Host: GitHub
- URL: https://github.com/adlered/ipsegmentscanner
- Owner: adlered
- License: mit
- Created: 2019-03-30T10:35:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-09T13:05:27.000Z (almost 7 years ago)
- Last Synced: 2024-10-30T08:23:52.390Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IPSegmentScanner
:computer:Smarter network segment scanner! e.g. If you tell scanner to scan '192.0.1.1', it will be scan '192.0.1.1', '192.1.1.1', '192.2.1.1'... by your customize!
### Use Python 2.* plz!
### You must install "fping" to run this application!
#### For macOS:
```
brew install fping
```
#### For Linux:
```
apt-get install -y fping
```
or
```
yum install -y fping
```
# e.g.
If you want to scan segment C, Type:
python scanner.py -i 10.2.0.1 -r 0-20 -d -t 0
i - Specified IP address
r - Specified IP scan range
d - Show detials
t - Set timeout (Recommend 0 as second, if not working try 1)
You will got results:
```
Scanning 10.2.0-20.1
! 10.2.0.1
! 10.2.1.1
. 10.2.2.1
. 10.2.3.1
. 10.2.4.1
. 10.2.5.1
. 10.2.6.1
. 10.2.7.1
. 10.2.8.1
. 10.2.9.1
! 10.2.10.1
! 10.2.11.1
! 10.2.12.1
! 10.2.13.1
! 10.2.14.1
! 10.2.15.1
! 10.2.16.1
! 10.2.17.1
! 10.2.18.1
! 10.2.19.1
! 10.2.20.1
ALIVE HOSTS:
> 10.2.0.1
> 10.2.1.1
> 10.2.10.1
> 10.2.11.1
> 10.2.12.1
> 10.2.13.1
> 10.2.14.1
> 10.2.15.1
> 10.2.16.1
> 10.2.17.1
> 10.2.18.1
> 10.2.19.1
> 10.2.20.1
13 Online.
```