从给定的IP地址和子网掩码获取所有IP地址
在Java中,我需要获取给定IP网络包含的所有IP地址的列表。
例如,假设网络为:192.168.5.0/24,则输出将为(192.168.5.0.192.168.5.255)。
我可以想到以下方式,但看起来很脏,有没有优雅的方式?InetAddress
类中没有同样的函数。
从输入IP和子网掩码获取网络IP。
mask = (long)(0xffffffff) << (32-subnetMask); Long netIp = getLongfromIp(Inputip)& mask;
函数‘getLongfromIp’包含-How to convert string (IP numbers) to Integer in Java
中的代码按子网掩码获取主机数
maxRange = (long)0x1<<(32-subnetMask);
通过在netIp
中添加ifor i in (0 .. maxRange)
获取所有希望的地址将上述步骤中的IP转换为八位字节字符串。
Ps:我确信IP地址将仅在IPv4中。
解决方案
回答我自己的问题,解决方案是使用apache commons.net库
import org.apache.commons.net.util.*;
SubnetUtils utils = new SubnetUtils("192.168.1.0/24");
String[] allIps = utils.getInfo().getAllAddresses();
//appIps will contain all the ip address in the subnet
阅读更多内容:Class SubnetUtils.SubnetInfo
相关文章