C# - 确定 IP 地址范围是否包含特定地址

发布于 2024-11-05 12:40:31 字数 187 浏览 0 评论 0原文

在 C# 中,假设您有一个表示为字符串值的 IP 地址范围:

“192.168.1.1-192.168.2.30”

,并且您还有一个表示为字符串值的 IP 地址,例如:

192.168.1.150”

“ 确定地址范围是否包含单个 IP 地址的最优雅方法?

In C#, assume that you have an IP address range represented as a string value:

"192.168.1.1-192.168.2.30"

and you also have a single IP address represented as a string value like:

"192.168.1.150"

What would be the most elegant way to determine if the address range contains the single IP address?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荒路情人 2024-11-12 12:40:31

将IP转换为32位整数(IP是4字节,因此也可以表示为整数)。
检查范围只是检查给定的 IP (int) 是否位于其他两个 IP(另外 2 个 int)之间。

if( low_range <= checked_ip <= high_range ){ TRUE! }

Cast the IP to 32bit integer (IP is 4 bytes, so it could be also represented as an integer).
Than checking the range is simply checking if the given IP (int) is between two other IPs (2 other ints).

if( low_range <= checked_ip <= high_range ){ TRUE! }
素衣风尘叹 2024-11-12 12:40:31

我刚刚写了一个小库 IpSet 来检查指定的 IP 地址是否包含在预定义的范围内。

var set = IpSet.ParseOrDefault("192.168.0.*,10.10.1.0/24,192.168.1.1-192.168.2.30");
var result = set.Contains("192.168.1.150"); // true

同时支持 IPv4 和 IPv6。
支持 CIDR 表示法。
底层工作是将IP地址转换为整数并进行比较。

I just wrote a small library IpSet to check if the specified IP address is contained by a pre-defined range.

var set = IpSet.ParseOrDefault("192.168.0.*,10.10.1.0/24,192.168.1.1-192.168.2.30");
var result = set.Contains("192.168.1.150"); // true

Support both IPv4 and IPv6.
Support CIDR notation.
The underlying work is convert IP addresses to integers and compare them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文