ipscan 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -10
- data/ipscan.gemspec +2 -2
- data/lib/ipscan/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6792454cbf3a7b36581274440317f3e98e8ba0af
|
4
|
+
data.tar.gz: 8412021a7aca60ed61020036d5a6e2e40a22fd6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9da169c585eed084462e24b96885359e92902e2ec330b1e8c65cdda506fb6b44cc7d567adf3e3a1cb136ca959384dd850b868abe6d5dce8679dacbc2df31217e
|
7
|
+
data.tar.gz: 38f1828357f49b40d91d8a8d556b68fa2d1ce29ac30cda1765c92eaea3bb2e730c437f4e27b829d862643fddbc4a97fecec2213a5f946cec60cf83e6fa3c7a85
|
data/README.md
CHANGED
@@ -1,24 +1,27 @@
|
|
1
|
-
#
|
1
|
+
# IPScan
|
2
2
|
|
3
|
-
|
3
|
+
IPScan scans your local area network to determine the identity of all machines on the LAN.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
7
|
+
### Mac OS X
|
8
8
|
|
9
|
-
gem
|
10
|
-
|
11
|
-
And then execute:
|
12
|
-
|
13
|
-
$ bundle
|
9
|
+
$ gem install ipscan
|
14
10
|
|
15
|
-
|
11
|
+
### Linux (Ubuntu)
|
16
12
|
|
13
|
+
$ sudo apt-get install nbtscan
|
17
14
|
$ gem install ipscan
|
18
15
|
|
19
16
|
## Usage
|
20
17
|
|
21
|
-
|
18
|
+
$ ipscan range 192.168.1.0-254
|
19
|
+
check 192.168.1.0 ~ 192.168.1.254
|
20
|
+
Progress: |==========================================================================================================================================|
|
21
|
+
IP Address Mac Address Name NetBIOS Name
|
22
|
+
192.168.1.1 xx:xx:xx:xx:xx:xx xxx.me XXXXX
|
23
|
+
192.168.1.190 <no entry> xxxxxx <unknown>
|
24
|
+
192.168.1.232 xx:xx:xx:xx:xx:xx xxxxxx XXXXX
|
22
25
|
|
23
26
|
## Contributing
|
24
27
|
|
data/ipscan.gemspec
CHANGED
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = IPScan::VERSION
|
9
9
|
spec.authors = ["k-yamada"]
|
10
10
|
spec.email = ["yamadakazu45@gmail.com"]
|
11
|
-
spec.summary = %q{}
|
11
|
+
spec.summary = %q{IPScan scans your local area network to determine the identity of all machines on the LAN.}
|
12
12
|
spec.description = %q{}
|
13
|
-
spec.homepage = ""
|
13
|
+
spec.homepage = "https://github.com/k-yamada/ipscan"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/ipscan/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ipscan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- k-yamada
|
@@ -112,7 +112,7 @@ files:
|
|
112
112
|
- lib/ipscan.rb
|
113
113
|
- lib/ipscan/cli.rb
|
114
114
|
- lib/ipscan/version.rb
|
115
|
-
homepage:
|
115
|
+
homepage: https://github.com/k-yamada/ipscan
|
116
116
|
licenses:
|
117
117
|
- MIT
|
118
118
|
metadata: {}
|
@@ -135,6 +135,7 @@ rubyforge_project:
|
|
135
135
|
rubygems_version: 2.0.3
|
136
136
|
signing_key:
|
137
137
|
specification_version: 4
|
138
|
-
summary:
|
138
|
+
summary: IPScan scans your local area network to determine the identity of all machines
|
139
|
+
on the LAN.
|
139
140
|
test_files: []
|
140
141
|
has_rdoc:
|