Skip to content
/ getip Public

❗ This is a read-only mirror of the CRAN R package repository. getip — 'IP' Address 'Lookup'

License

Notifications You must be signed in to change notification settings

cran/getip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

getip

A micro-package for getting your IP address, either the local/internal or the public/external one. Currently only IPv4 addresses are supported.

Installation

You can install the stable version from CRAN using the usual `install.packages()

install.packages("getip")

The development version is maintained on GitHub:

remotes::install_github("wrathematics/getip")

Usage

To get your local (internal) IP address:

getip::getip("internal")

To get your public (external) IP address:

getip::getip("external")

The argument is case-insensitive and operates by partial matching. So if you're very lazy, you can just type getip("e") for the external IP.

There are two other exported helper functions. One is validip() which will check if a vector of strings are potentially valid IP addresses (though not necessarily in active use --- i.e., it does not use the internet)

ips = c("127.0.0.1", "25", "255.255.255.255", "255.555.255.1")
getip::validip(ips)
## [1]  TRUE FALSE  TRUE FALSE

The final exported function is hostname2ip(). This returns a list of vectors of IP addresses for a vector of hostnames. This queries the internet.

hosts = c("www.google.com", "localhost", "www.yahoo.com")
getip::hostname2ip(hosts)
## [[1]]
## [1] "64.233.185.103" "64.233.185.99"  "64.233.185.147" "64.233.185.106"
## [5] "64.233.185.105" "64.233.185.104"
## 
## [[2]]
## [1] "127.0.0.1" "127.0.0.1"
## 
## [[3]]
## [1] "74.6.231.21" "74.6.231.20" "74.6.143.26" "74.6.143.25"

About

❗ This is a read-only mirror of the CRAN R package repository. getip — 'IP' Address 'Lookup'

Resources

License

Stars

Watchers

Forks

Packages

No packages published