Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hrbrmstr/iptools
:fork_and_knife: A toolkit for manipulating, validating and testing IP addresses and ranges, along with datasets relating to IP addresses. While it primarily has support for the IPv4 address space, more extensive IPv6 support is intended.
https://github.com/hrbrmstr/iptools
iptools ipv4-address r r-cyber rstats
Last synced: 12 days ago
JSON representation
:fork_and_knife: A toolkit for manipulating, validating and testing IP addresses and ranges, along with datasets relating to IP addresses. While it primarily has support for the IPv4 address space, more extensive IPv6 support is intended.
- Host: GitHub
- URL: https://github.com/hrbrmstr/iptools
- Owner: hrbrmstr
- License: other
- Created: 2014-08-29T12:34:43.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T16:22:42.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T21:24:16.179Z (26 days ago)
- Topics: iptools, ipv4-address, r, r-cyber, rstats
- Language: Scilab
- Homepage: https://hrbrmstr.github.io/iptools/
- Size: 13 MB
- Stars: 51
- Watchers: 8
- Forks: 26
- Open Issues: 12
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Easy IP address handling with iptools
'iptools' is a set of tools for a working with IP addresses. The aim is to
provide functionality not presently available with any existing R package and to
do so with as much speed as possible. To that end, many of the operations are
written in `Rcpp` and require installation of the 'AsioHeaders' package. A current,
lofty goal is to mimic most of the functionality of the Python 'iptools' module and
make IP addresses first class R objects.Functionality
The package primarily supports IPv4 addresses due to deficiencies in R's support
for large numbers, but there is IPv6 support for some functionality, and we plan to
build more in as R improves and as we do. Functionality includes:- Converting IP addresses to their numeric form, and then back to strings, with
'ip_to_numeric' and 'numeric_to_ip';
- Validating and classifying IP addresses with 'ip_classify';
- Range generation and checking with 'range_boundaries', 'range_generate' and
'validate_range', and;
- Several inbuilt IP-related datasets.The vignettes contain detailed examples and are well worth the viewing time.
Thank You!
We owe Dirk Eddelbuettel many thanks for creating the 'AsioHeaders' package
which made it possible to both remove the Boost dependency and to get 'iptools'
running under Windows.