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
|
# ipaddress-go
[Go](https://golang.org/) library for handling IP addresses and subnets, both IPv4 and IPv6
IP address and network manipulation, CIDR, operations, iterations, containment checks, longest prefix match, subnetting, and data structures, with polymorphic code
[View Project Page](https://seancfoley.github.io/IPAddress/)
[View Godoc](https://pkg.go.dev/github.com/seancfoley/ipaddress-go/ipaddr) [](https://pkg.go.dev/github.com/seancfoley/ipaddress-go/ipaddr)
[View Code Examples](https://github.com/seancfoley/ipaddress-go/wiki/Code-Examples)
[View List of Users](https://github.com/seancfoley/ipaddress-go/wiki)
| Version | Notes |
| ------- | ------------- |
| [1.2.1](https://github.com/seancfoley/ipaddress-go/releases/tag/v1.2.1) | Requires Go 1.12 or higher |
| [1.4.1](https://github.com/seancfoley/ipaddress-go/releases/tag/v1.4.1) | Requires Go 1.13 or higher |
| [1.5.4](https://github.com/seancfoley/ipaddress-go/releases/tag/v1.5.4) | Requires Go 1.18 or higher |
In your go.mod file:\
require github.com/seancfoley/ipaddress-go v1.5.4
In your source file:\
import "github.com/seancfoley/ipaddress-go/ipaddr"
Also available as a [Java](https://www.oracle.com/java/) library from the [IPAddress repository](https://github.com/seancfoley/IPAddress)
## Getting Started
starting with address or subnet strings
```go
import "github.com/seancfoley/ipaddress-go/ipaddr"
ipv6AddrStr := ipaddr.NewIPAddressString("a:b:c:d::a:b/64")
if ipAddr, err := ipv6AddrStr.ToAddress(); err != nil {
// err.Error() has validation error
} else {
// use the address
}
```
...or avoid errors, checking for nil:
```go
str := ipaddr.NewIPAddressString("a:b:c:d:e-f:f:1.2-3.3.4/64")
addr := str.GetAddress()
if addr != nil {
// use address
}
```
starting with host name strings
```go
hostStr := "[::1]"
host := ipaddr.NewHostName(hostStr)
err := host.Validate()
if err == nil {
if host.IsAddress() {
fmt.Println("address: " + host.AsAddress().String())
} else {
fmt.Println("host name: " + host.String())
}
// use host
} else {
fmt.Println(err.Error())
}
```
|