Golang : Convert IP version 6 address to integer or decimal number
Problem :
You have IP address version 6 in string format and you want to convert it into integer. How to do that?
NOTE : IP address in decimal number format is easier to search, filter or compare. For example, searching for IP address in a given range.
Solution :
Use math/big.Int.SetBytes()
to convert the IPv6 address to a signed multi-precision integer.
package main
import (
"fmt"
"math/big"
"net"
)
func IP6toInt(IPv6Address net.IP) *big.Int {
IPv6Int := big.NewInt(0)
// from http://golang.org/pkg/net/#pkg-constants
// IPv6len = 16
IPv6Int.SetBytes(IPv6Address.To16())
return IPv6Int
}
func main() {
ipv6Decimal := IP6toInt(net.ParseIP("FE80::0202:B3FF:FE1E:8329"))
fmt.Println(ipv6Decimal)
}
Output :
338288524927261089654163772891438416681
References :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+24.2k Golang : Upload to S3 with official aws-sdk-go package
+17.4k Golang : How to tell if a file is compressed either gzip or zip ?
+11k Golang : Replace a parameter's value inside a configuration file example
+11.4k Golang : How to pipe input data to executing child process?
+20.8k Golang : Secure(TLS) connection between server and client
+7.9k Golang : Getting Echo framework StartAutoTLS to work
+21.8k Golang : Setting up/configure AWS credentials with official aws-sdk-go
+12.5k Golang : Search and extract certain XML data example
+14.1k Golang : Google Drive API upload and rename example
+29.6k Golang : Saving(serializing) and reading file with GOB
+4.8k PHP : Extract part of a string starting from the middle
+6.2k Golang : Create new color from command line parameters