IPAddressRange 1.3.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package IPAddressRange --version 1.3.0.1
NuGet\Install-Package IPAddressRange -Version 1.3.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IPAddressRange" Version="1.3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IPAddressRange --version 1.3.0.1
#r "nuget: IPAddressRange, 1.3.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IPAddressRange as a Cake Addin
#addin nuget:?package=IPAddressRange&version=1.3.0.1

// Install IPAddressRange as a Cake Tool
#tool nuget:?package=IPAddressRange&version=1.3.0.1

This library allows you to parse range of IP address string such as "192.168.0.0/24" and "192.168.0.0/255.255.255.0" and "192.168.0.0-192.168.0.255", and can conatins check. This library supports both IPv4 and IPv6.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (35)

Showing the top 5 NuGet packages that depend on IPAddressRange:

Package Downloads
Ocelot

Ocelot is an API Gateway. The project is aimed at people using .NET running a micro services / service orientated architecture that need a unified point of entry into their system. In particular I want easy integration with IdentityServer reference and bearer tokens. reference tokens. Ocelot is a bunch of middlewares in a specific order. Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is stored in a per request scoped repository and retrived as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features.

WhoisClient.NET

This library is a WHOIS protocol client used to search owner information by IP address or domain name. This library determines the WHOIS server automatically and queries the referral server recursively. The response of the whois query contains strongly typed values, and the raw output.

ZNetCS.AspNetCore.IPFiltering

A middleware that allows whitelist or blacklist incomming requests based on IP address. It can be configured using single IP address or ranges. It supports single IP, IP range IPv4 and IPv6. There is also possible to ignore specific paths from IP filtering.

DNTCommon.Web.Core

DNTCommon.Web.Core provides common scenarios' solutions for ASP.NET Core applications.

IQX.RoleManager.Abstractions

Package Description

GitHub repositories (9)

Showing the top 5 popular GitHub repositories that depend on IPAddressRange:

Repository Stars
ThreeMammals/Ocelot
.NET API Gateway
slskd/slskd
A modern client-server application for the Soulseek file sharing network.
duyanming/Viper
Viper 是一个基于Anno微服务引擎开发的Dashboard示例项目。Anno 底层通讯采用 grpc、thrift。自带服务发现、调用链追踪、Cron 调度、限流、事件总线等等
LeonKou/NetPro
🌈An enhanced version with clean architecture of asp.netcore,efficiently manage startup,Support for netcore3.1/6.0
bitbrute/evillimiter-windows
Tool that limits bandwidth of devices on the same network without access.
Version Downloads Last updated
6.0.0 922,720 6/1/2023
4.0.0 2,073,717 8/31/2019
3.2.2 225,188 8/12/2019
3.2.1 248,648 6/26/2019
3.2.0 1,237,008 5/1/2018
3.1.1 7,367 4/26/2018
3.1.0 64,954 3/22/2018
3.0.0.1 9,830 3/3/2018
3.0.0-beta 1,524 2/23/2018
2.2.0 13,962 1/29/2018
2.1.1 76,017 11/28/2017
2.1.1-beta 1,642 11/20/2017
2.1.0.1 56,150 11/16/2017
2.1.0-alpha 1,606 11/1/2017
2.0.0.4 144,927 9/15/2017
2.0.0.3 125,818 7/4/2017
2.0.0.3-beta 1,615 5/29/2017
2.0.0-beta 1,817 5/19/2017
1.6.2.7 54,755 3/8/2017
1.6.2.6-beta 1,545 3/1/2017
1.6.2.1-beta 2,234 11/29/2016
1.6.1 74,363 9/27/2016
1.6.0 40,518 5/23/2016
1.5.0 200,215 10/16/2015
1.4.0.1 5,679 8/22/2015
1.4.0 23,155 6/3/2015
1.3.0.1 4,107 4/1/2015
1.3.0 1,855 4/1/2015
1.2.1 4,634 2/19/2015
1.2.0 61,257 2/5/2015
1.1.0-beta 3,105 11/4/2014
1.0.6 14,753 3/10/2014
1.0.5 3,475 12/9/2013
1.0.4 1,955 12/9/2013
1.0.3 1,956 12/9/2013
1.0.2 11,862 5/28/2012
1.0.1 2,998 5/22/2012
1.0.0 2,938 5/17/2012

v.1.3.0 - Enhance: support both "hyphen (-)" (0x002D) and "dash (–)" (0x2013) at begin-end format.
     v.1.2.1 - Fix: "Parse()" and "TryParse()" methods throw IndexOutOfRangeException when bit mask length is invalid at CIDR format.
     v.1.2.0 - Enhance: Add "Parse()" and "TryParse()" methods. (Instead, the constructor which has one string argument is obsoleted.)
     v.1.1.0 - Enhance: Add "Contains()" method overload version of IPAddressRange argument.
     v.1.0.6 - Fix Package: Repackage with Release build. (1.0.5 was Debug build)
     v.1.0.5 - Fix: IPv4 CIDR range ".../32" causes crush.
     v.1.0.4 - Enhance: support bit mask range not only CIDR range.
     v.1.0.3 - Fix: Can not parse the address which contains hex string.