IPSec with VB.NET or C#

  • Thread starter Thread starter TampaWebDevelopment
  • Start date Start date
T

TampaWebDevelopment

I use IPSec to create a filter list of IP addresses that I ban from
accessing one of my servers. Right now, I use the MMC to manage an
existing IP Filter List; adding a new filter to the list each time I
want to ban an IP address. I want to do this within VB.NET. Does
anyone have some sample code or can point me in the right direction?
System.Net???? System.Security???? Anyone that can help in anyway, I
would appreciate it.
 
(e-mail address removed) wrote in @e65g2000hsc.googlegroups.com:
I use IPSec to create a filter list of IP addresses that I ban from
accessing one of my servers. Right now, I use the MMC to manage an
existing IP Filter List; adding a new filter to the list each time I
want to ban an IP address. I want to do this within VB.NET. Does
anyone have some sample code or can point me in the right direction?
System.Net???? System.Security???? Anyone that can help in anyway, I
would appreciate it.


..NET doesn't have any knowledge of the IPSec policies, since it's a
function of the operating system.

However, with .NET you can edit IPSec policies with the following tools -
or directly in the registry:

http://technet2.microsoft.com/windowsserver/en/library/4dca53ac-435b-45f7-
9f5c-1cb77b7a6a391033.mspx?mfr=true
 
Back
Top