Golang : Convert decimal number(integer) to IPv4 address
Problem :
You've read the previous tutorial on how to convert IPv4 address to decimal number and store into database. However, now you want to convert the decimal value back to IPv4 address. How to do that?
Solution :
Reverse the algorithm used in the conversion to decimal number. However, to get the correct result, we need to do two bit shifting and “0xff” masking.
For example :
package main
import (
"fmt"
"strconv"
)
func InttoIP4(ipInt int64) string {
// need to do two bit shifting and “0xff” masking
b0 := strconv.FormatInt((ipInt>>24)&0xff, 10)
b1 := strconv.FormatInt((ipInt>>16)&0xff, 10)
b2 := strconv.FormatInt((ipInt>>8)&0xff, 10)
b3 := strconv.FormatInt((ipInt & 0xff), 10)
return b0 + "." + b1 + "." + b2 + "." + b3
}
func main() {
// 1653276013 = 98.138.253.109
IPv4 := InttoIP4(1653276013)
fmt.Println(IPv4)
}
Output :
98.138.253.109
References :
https://processing.org/reference/bitwiseOR.html
http://stackoverflow.com/questions/12130464/ip-address-conversion-to-decimal-and-vice-versa
See also : Golang : Convert IPv4 address to decimal number(base 10) or integer
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
+5.3k Golang : Intercept, inject and replay HTTP traffics from web server
+29.4k Golang : Record voice(audio) from microphone to .WAV file
+5.2k JavaScript/JQuery : Redirect page examples
+5.4k Golang : If else example and common mistake
+16.7k Golang : How to generate QR codes?
+12.9k Golang : Calculate elapsed years or months since a date
+11.1k Golang : Fix - does not implement sort.Interface (missing Len method)
+13.2k Golang : Linear algebra and matrix calculation example
+5.2k Golang : Get FX sentiment from website example
+11.4k Golang : Generate DSA private, public key and PEM files example
+5.1k Golang : Convert lines of string into list for delete and insert operation
+21.9k Golang : Join arrays or slices example