dev-master
9999999-devGenerate a random IPv4 address.
MIT
The Requires
1.0.0
1.0.0.0Generate a random IPv4 address.
MIT
The Requires
Wallogit.com
2017 © Pedro Peláez
Generate a random IPv4 address.
Generate a random private IPv4 subnet of specific size (bitmask), or pick a random address from a defined private IPv4 network., (*1)
Require the class in your own project using composer:, (*2)
composer require gregorj/randomip
The static functions can be called easily in your code:, (*3)
//echos a random class B (172.[16-31].0.0/12) network for 6 hosts. echo \GregorJ\RandomIP\RandomPrivateIPv4::randomNetwork('B', 29); //echos a random IP address inside the network 192.168.21.0/24 echo \GregorJ\RandomIP\RandomPrivateIPv4::randomIP("192.168.21.0", 24);
This code is only suitable for private IPv4 networks. Therefore the bitmask cannot be lower than the following:, (*4)
| Class | Starting address | minimum bitmask |
|---|---|---|
| A | 10.0.0.0 | 8 |
| B | 172.16.0.0 | 12 |
| C | 192.168.0.0 | 16 |
Generate a random IPv4 address.
MIT
Generate a random IPv4 address.
MIT