-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
68 lines (63 loc) · 1.26 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package main
import (
"bytes"
"net"
)
//
//IPRange - a struct that holds the start and end of an IP range
//
type IPRange struct {
Start net.IP
End net.IP
}
//
// privateRanges ...
//
var privateRanges = []IPRange{
IPRange{
Start: net.ParseIP("10.0.0.0"),
End: net.ParseIP("10.255.255.255"),
},
IPRange{
Start: net.ParseIP("100.64.0.0"),
End: net.ParseIP("100.127.255.255"),
},
IPRange{
Start: net.ParseIP("172.16.0.0"),
End: net.ParseIP("172.31.255.255"),
},
IPRange{
Start: net.ParseIP("192.0.0.0"),
End: net.ParseIP("192.0.0.255"),
},
IPRange{
Start: net.ParseIP("192.168.0.0"),
End: net.ParseIP("192.168.255.255"),
},
IPRange{
Start: net.ParseIP("198.18.0.0"),
End: net.ParseIP("198.19.255.255"),
},
}
//
// InRange - check to see if a given IP address is within a given range
//
func InRange(r IPRange, ipAddress net.IP) bool {
if bytes.Compare(ipAddress, r.Start) >= 0 && bytes.Compare(ipAddress, r.End) < 0 {
return true
}
return false
}
//
// IsPrivateSubnet - check if the IP address is in a private subnet
//
func IsPrivateSubnet(ipAddress net.IP) bool {
if ipCheck := ipAddress.To4(); ipCheck != nil {
for _, r := range privateRanges {
if InRange(r, ipAddress) {
return true
}
}
}
return false
}