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.
Install using the ZNetCS.AspNetCore.IPFiltering NuGet package
PM> Install-Package ZNetCS.AspNetCore.IPFiltering
When you install the package, it should be added to your .csproj
. Alternatively, you can add it directly by adding:
<ItemGroup>
<PackageReference Include="ZNetCS.AspNetCore.IPFiltering" Version="6.0.1" />
</ItemGroup>
In order to use the IP filtering middleware, you must configure the services in the Program.cs
file.
// Add services to the container.
builder.Services.AddIPFiltering(builder.Configuration.GetSection("IPFiltering"));
or
// Add services to the container.
builder.Services.AddIPFiltering(
opts =>
{
opts.DefaultBlockLevel = DefaultBlockLevel.All;
opts.HttpStatusCode = HttpStatusCode.NotFound;
opts.Blacklist = new List<string> { "192.168.0.100-192.168.1.200" };
opts.Whitelist = new List<string> { "192.168.0.10-192.168.10.20", "fe80::/10" };
opts.IgnoredPaths = new List<string> { "get:/ignoreget", "*:/ignore" };
opts.PathOptions = new List<PathOptions> { ... };
});
then
// Configure IP filtering
app.UseIPFiltering();
In order to use the IP filtering middleware, you must configure the services in the ConfigureServices
and Configure
call of Startup
. Make
sure middleware is added just after logging to prevent any other middleware to run, so block is most effective:
public void ConfigureServices(IServiceCollection services)
{
services.AddIPFiltering(this.Configuration.GetSection("IPFiltering"));
}
or
public void ConfigureServices(IServiceCollection services)
{
services.AddIPFiltering(
opts =>
{
opts.DefaultBlockLevel = DefaultBlockLevel.All;
opts.HttpStatusCode = HttpStatusCode.NotFound;
opts.Blacklist = new List<string> { "192.168.0.100-192.168.1.200" };
opts.Whitelist = new List<string> { "192.168.0.10-192.168.10.20", "fe80::/10" };
opts.IgnoredPaths = new List<string> { "get:/ignoreget", "*:/ignore" };
opts.PathOptions = new List<PathOptions> { ... };
});
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseIPFiltering();
// other middleware e.g. MVC etc
}
Middleware can be configured in appsettings.json
file. By adding following section and use following ConfigureServices
method:
{
"IPFiltering": {
"DefaultBlockLevel": "All",
"HttpStatusCode": 404,
"Whitelist": [ "192.168.0.10-192.168.10.20", "fe80::/10" ],
"Blacklist": [ "192.168.0.100-192.168.1.200"],
"IgnoredPaths": [ "GET:/ignoreget", "*:/ignore" ],
"PathOptions": [
{
"Paths": [ "GET:/pathget", "*:/path" ],
"DefaultBlockLevel": "None",
"HttpStatusCode": 401,
"Whitelist": [ "192.168.0.100-192.168.1.200" ],
"Blacklist": [ "192.168.0.10-192.168.10.20", "fe80::/10" ]
},
{
"Paths": [ "GET:/path2get", "*:/path2" ],
"DefaultBlockLevel": "All",
"HttpStatusCode": 401,
"Whitelist": [ "192.168.0.10-192.168.10.20", "fe80::/10" ],
"Blacklist": [ "192.168.0.100-192.168.1.200" ]
}
]
}
}
This middleware can be configured using following configuration options:
DefaultBlockLevel
defines default action when IP address is not listed. Can be configured toNone
orAll
. Default value isAll
.HttpStatusCode
defines status code that is returned to client when IP address is forbidden. Default value is404
(Not Found
).Whitelist
defines list of IP address ranges that are allowed for request.Blacklist
defines list of IP address ranges that are forbidden for request.IgnoredPaths
defines list of paths with HTTP Verb to be ignored from IP filtering.*
means all HTTP Verbs for given path will be ignored. Format{VERB}:{PATH}
(no space after:
). This configuration is case insensitive.PathOptions
defines list of paths with HTTP Verb to be processed with custom rules.*
means all HTTP Verbs for given path will be ignored. Format{VERB}:{PATH}
(no space after:
). This configuration is case insensitive.
Whitelist
and Blacklist
can be defined as single IP address or IP address range. For parsing middleware is using extenal
package: https://github.com/jsakamoto/ipaddressrange. Ranges can be defined in following formats:
192.168.0.0/255.255.255.0
192.168.0.10-192.168.10.20
fe80::/10