Newer
Older
NetAddr-IP / README
@Michael Robinton Michael Robinton on 21 Oct 2014 6 KB Import of MIKER/NetAddr-IP-4.020 from CPAN.
  1. -----BEGIN PGP SIGNED MESSAGE-----
  2. Hash: SHA1
  3.  
  4.  
  5.  
  6.  
  7.  
  8. NetAddr::IP - Manage IP addresses and subnets
  9.  
  10. This distribution is designed as a help for managing (ranges of) IP
  11. addresses. It includes efficient implementations for most common tasks
  12. done to subnets or ranges of IP addresses, namely verifying if an
  13. address is within a subnet, comparing, looping, splitting subnets into
  14. longer prefixes, compacting addresses to the shortest prefixes, etc.
  15.  
  16. The general idea, is that you should be able to do
  17.  
  18. use NetAddr::IP;
  19.  
  20. my $ip = new NetAddr::IP $something_vaguely_resembling_a_subnet;
  21.  
  22. and as long as $something_vaguely_resembling_a_subnet holds something
  23. that describes a subnet unambiguously, you should receive an object
  24. representing such subnet. Currently this includes various flavors of
  25. CIDR notation, traditional notation in one, two, three and four dotted
  26. octets, hexadecimal, range and subnet notations as well as other, less
  27. used formats. IPv6 addresses are also supported.
  28.  
  29. Overloading is also used to ease printing and doing simple aritmetic
  30. and comparisons on the IP addresses. For instance, you can do things
  31. like:
  32.  
  33. use NetAddr::IP;
  34.  
  35. for (my $ip = new NetAddr::IP '10.0.0.1/28';
  36. $ip < $ip->broadcast;
  37. $ip ++)
  38. {
  39. print "$ip\n";
  40. }
  41.  
  42. This will print out something like...
  43.  
  44. 10.0.0.1/28
  45. 10.0.0.2/28
  46. 10.0.0.3/28
  47. 10.0.0.4/28
  48. 10.0.0.5/28
  49. (and so on...)
  50.  
  51. ...which is quite useful for generating config files and the
  52. such. This works even for huge ranges of IP addresses.
  53.  
  54. This module can be installed without compiling any XS code, although
  55. some parts are available as XS for speed. It has been extensively
  56. tested in a variety of platforms. An extensive test suite is provided
  57. with the module to verify correct results.
  58.  
  59. The lastest version of this module should be preferred. You can obtain
  60. it on the nearest CPAN mirror. Please find a mirror near you to help
  61. spread the load.
  62.  
  63. Version 4 works with earlier versions of perl at least back to 5.00503
  64. however overloaded iterative arrays and binary bit strings 0b101010101
  65. are not supported in versions of perl prior to 5.6.0.
  66.  
  67. To use the old behavior for ->nth($index) and ->num():
  68.  
  69. use NetAddr::IP::Lite qw(:old_nth);
  70.  
  71. old behavior:
  72. NetAddr::IP->new('10/32')->nth(0) == undef
  73. NetAddr::IP->new('10/32')->nth(1) == undef
  74. NetAddr::IP->new('10/31')->nth(0) == undef
  75. NetAddr::IP->new('10/31')->nth(1) == 10.0.0.1/31
  76. NetAddr::IP->new('10/30')->nth(0) == undef
  77. NetAddr::IP->new('10/30')->nth(1) == 10.0.0.1/30
  78. NetAddr::IP->new('10/30')->nth(2) == 10.0.0.2/30
  79. NetAddr::IP->new('10/30')->nth(3) == 10.0.0.3/30
  80.  
  81. Note that in each case, the broadcast address is represented in the
  82. output set and that the 'zero'th index is alway undef.
  83.  
  84. new behavior:
  85. NetAddr::IP->new('10/32')->nth(0) == 10.0.0.0/32
  86. NetAddr::IP->new('10.1/32'->nth(0) == 10.0.0.1/32
  87. NetAddr::IP->new('10/31')->nth(0) == undef
  88. NetAddr::IP->new('10/31')->nth(1) == undef
  89. NetAddr::IP->new('10/30')->nth(0) == 10.0.0.1/30
  90. NetAddr::IP->new('10/30')->nth(1) == 10.0.0.2/30
  91. NetAddr::IP->new('10/30')->nth(2) == undef
  92.  
  93. Note that a /32 net always has 1 usable address while a /31 has none
  94. since it has a network and broadcast address, but no host
  95. addresses. The first index (0) returns the address immediately
  96. following the network address.
  97.  
  98. To install, follow the standard CPAN recipe of:
  99.  
  100. $ perl Makefile.PL
  101. $ make
  102. $ make test
  103.  
  104. If all tests pass, then do
  105.  
  106. $ make install
  107.  
  108. NetAddr::IP depends on NetAddr::IP::Util which utilizes perl_xs. If
  109. you do not have a C compiler on your system or you would prefer the
  110. slower PURE PERL version for some obtuse reason then build as follows:
  111.  
  112. $ perl Makefile.PL -noxs
  113. $ make
  114. $ make test
  115.  
  116. $ make install
  117.  
  118. Tests related to address compaction could be too resource-intensive in
  119. some environments. If this is your case, you can skip those tests by
  120. setting an environment variable before make'ing test. In a bash-like
  121. shell, you could use the following example:
  122.  
  123. $ LIGHTERIPTESTS=yes; export LIGHTERIPTESTS
  124. $ make test
  125.  
  126. The module's documentation can be accessed through POD. After
  127. installing the module, you can do
  128.  
  129. $ perldoc NetAddr::IP
  130. $ perldoc NetAddr::IP::Lite
  131. $ perldoc NetAddr::IP::Util
  132. $ perldoc NetAddr::IP::UtilPP
  133.  
  134. to access the documentation. There is also a tutorial in HTML at the
  135. following URIs
  136.  
  137. http://mipagina.cantv.net/lem/perl/iptut.htm
  138. http://mipagina.cantv.net/lem/perl/ipperf.htm
  139.  
  140. If you want to thank me for this module, please go look at those
  141. tutorials and if you see banners there, click on a few :)
  142.  
  143. Bug reports are welcome. Please do not forget to tell me what
  144. version/platform are you running this code on. Providing a small piece
  145. of code that shows the bug helps me a lot in sorting it out and
  146. possibly in writting more tests for the distribution.
  147.  
  148. Also, this code is intended to be strict and -w safe, so please report
  149. cases where warnings are generated so that I can fix them.
  150.  
  151. Report your bugs to me (luismunoz@cpan.org) or through the CPAN RT
  152. interface at http://rt.cpan.org/.
  153.  
  154. DO YOU WANT TO THANK ME?
  155.  
  156. If you consider this a valuable contribution, there is a web page
  157. where you can express your gratitude. Please see
  158.  
  159. http://mipagina.cantv.net/lem/thanks-en.html (English)
  160. http://mipagina.cantv.net/lem/thanks-es.html (Spanish)
  161.  
  162. SECURITY CONSIDERATIONS
  163.  
  164. I have no control on the machanisms involved in the storage or
  165. transport of this distribution. This means that I cannot guarantee
  166. that the distribution you have in your hands is indeed, the same
  167. distribution I packed and uploaded.
  168.  
  169. Starting with v3.14_1, along the distribution file, you should have a
  170. file with the extension ".asc". This contains a GPG "detached
  171. signature" that makes it impossible for anybody to alter this
  172. distribution. If security is of any concern to you, by all means
  173. verify the signature of this file and contact the author if any
  174. discrepancy is detected.
  175.  
  176. You can find more information about this at the following URL
  177.  
  178. http://mipagina.cantv.net/lem/gpg/
  179.  
  180. This information includes the correct keys, fingerprints, etc.Note
  181. that this README file should also be signed.
  182.  
  183. Additionally, I am also using Module::Signature to ease with the
  184. signature verification. Module::Signature can automatically retrieve
  185. the PGP keys from public keyservers, as well as verifying each
  186. individual file.
  187.  
  188. LICENSE AND WARRANTY
  189.  
  190. This software is (c) Luis E. Muñoz and Michael A. Robinton. It can be
  191. used under the terms of the perl artistic license provided that proper
  192. credit for the work of the authors is preserved in the form of this
  193. copyright notice and license for this module.
  194.  
  195. No warranty of any kind is expressed or implied. This code might make
  196. your computer go up in a puff of black smoke.
  197.  
  198. -----BEGIN PGP SIGNATURE-----
  199. Version: GnuPG v1.2.1 (Darwin)
  200.  
  201. iD8DBQFE4KXRQyDWGRI/hhARAqjSAJ4/MnV9e01zLfrIJ1CtfwfaJiKUDwCePdhb
  202. djsPkRD3CRKuxz5d+9oX9zc=
  203. =srrF
  204. -----END PGP SIGNATURE-----