我有一个由“from”和“to”形成的IP范围
从:127.0.0.1到:127.0.0.255等。
如何控制127.0.1.253的发送Ip?它在Ip范围内吗?
答案 0 :(得分:8)
Convert the IPs to an integer,并检查它是否适合该范围。
127.0.0.255 = 2130706687
127.0.1.253 = 2130706941
因此它不适合该范围。
public static long IP2Long(string ip)
{
string[] ipBytes;
double num = 0;
if(!string.IsNullOrEmpty(ip))
{
ipBytes = ip.Split('.');
for (int i = ipBytes.Length - 1; i >= 0; i--)
{
num += ((int.Parse(ipBytes[i]) % 256) * Math.Pow(256, (3 - i)));
}
}
return (long)num;
}
来源:http://geekswithblogs.net/rgupta/archive/2009/04/29/convert-ip-to-long-and-vice-versa-c.aspx
因此,使用此方法可以执行以下操作:
long start = IP2Long("127.0.0.1");
long end = IP2Long("127.0.0.255");
long ipAddress = IP2Long("127.0.1.253");
bool inRange = (ipAddress >= start && ipAddress <= end);
if (inRange){
//IP Address fits within range!
}