How can I find my Internet Service Provider (ISP) using a bash script?

I want to use my Internet Service Provider's name in a script, and I don't know how can I do this.

Please help me, thanks in advance.

3 Answers

You could use e.g. the services of ipinfo.io to determine your public IP including some additional information like the provider company name.

The site can be normally visited in your browser, but if you query it from the command-line with e.g. curl, they respond in a clean and well-defined JSON format so that you don't need to parse any HTML:

$ curl ipinfo.io
{ "ip": "xxx.xxx.xxx.xxx", "hostname": "xxxxxxxxxxxxxxxxxxxxxxxxxxx.xx", "city": "xxxxxxxx", "region": "xxxxxxxxxx", "country": "xx", "loc": "xxx.xxxx,xxx.xxxx", "org": "xxxxxxxxxxxx", "postal": "xxxxx"
}

To only show one value, you can directly send a request to the respective path. E.g. for the ISP name (org), try this:

curl 

Inspired by this answer.

3

You can use many websites provided to find your ISP name. One of them is whoismyisp.

To get your ISP name in a bash script, you can get this site by something like curl.

wget -q -O - whoismyisp.org | grep -oP -m1 '(?<=isp">).*(?=</p)'

Also you can find ISP of any desired IPs with this command:

wget -q -O - | grep -oP -m1 '(?<=isp">).*(?=</p)'

Where xxx.xxx.xxx.xxx is that IP you want to find its ISP.


Additional information: You can find your IP by bash with this command (that may be helpful for scripts):

dig +short myip.opendns.com @resolver1.opendns.com
5

First I fetch the Autonomous System number :

$ curl -s
AS2094 Renater

Then I fetch the full name of that AS :

$ curl -s (curl -s | cut -d" " -f1) | awk '/as-name/{print$NF}'

$ whois $(curl -s | cut -d" " -f1) | awk -F: 'BEGIN{IGNORECASE=1}/(as-?name|org-?name):/{sub("^ *","",$2);print$2}'
FR-TELECOM-MANAGEMENT-SUDPARIS
Renater
7

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like