Golang : Get IP addresses of a domain name
This small program demonstrate how to Golang's net.LookupIP() function to get the IP addresses from a given domain name.
package main
import (
"fmt"
"net"
"os"
)
func main(){
ip, _ := net.LookupIP(os.Args[1]) // take from 1st argument
fmt.Println(ip)
}
Output :
go run getipaddress.go google.com
[173.194.126.37 173.194.126.34 173.194.126.40 173.194.126.32 173.194.126.36 173.194.126.41 173.194.126.33 173.194.126.38 173.194.126.46 173.194.126.35 173.194.126.39 2404:6800:4001:801::1008]
Reference :
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
+10.5k Golang : Underscore string example
+9.9k Golang : Edge detection with Sobel method
+5.8k Golang : Grab news article text and use NLP to get each paragraph's sentences
+4.9k Golang : Display packages names during compilation
+8.7k Golang : Find network service name from given port and protocol
+8k Golang : Find relative luminance or color brightness
+7.2k Golang : Individual and total number of words counter example
+11.9k Golang : Pagination with go-paginator configuration example
+6.3k Grep : How to grep for strings inside binary data
+4.5k Golang : How to pass data between controllers with JSON Web Token
+24.2k Golang : Time slice or date sort and reverse sort example