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
+7.3k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+10.5k Golang : Command line file upload program to server example
+20.4k Golang : Saving private and public key to files
+14.8k Golang : Accurate and reliable decimal calculations
+26.3k Golang : Encrypt and decrypt data with AES crypto
+18k Golang : Get path name to current directory or folder
+6.4k Golang : Join lines with certain suffix symbol example
+16.7k Golang : Get number of CPU cores
+11k Golang : Delay or limit HTTP requests example
+20.1k Golang : Pipe output from one os.Exec(shell command) to another command
+8.5k Golang : Heap sort example
+13.1k Golang : Verify token from Google Authenticator App