IPGenerator (inetnet_mapper v0.1.0)

Generates incremental IPv4 addresses starting from a given IP.

Summary

Functions

Generates a list of count incremental IP addresses starting from start_ip.

Functions

generate_ips(start_ip, count)

Generates a list of count incremental IP addresses starting from start_ip.

Example

iex> IPGenerator.generate_ips("1.0.0.0", 3)
["1.0.0.0", "1.0.0.1", "1.0.0.2"]