I am currently trying to access a SonicWALL VPN
, inside of a .NET application. We have all the necessary credentials inside of our database, but I can't find a way to call the SonicWALL Global VPN
inside a .NET application to start it.
- Does
SonicWALL
have an API of any sort? - Or does .NET have a way to access the
SonicWALL Global VPN
?
I have seen Remote Access Services but not sure if this library can access SonicWALL Global VPNs
or just Windows VPNs.
The answer was simpler then the process I was trying.
You can launch sonicwall vpn client from the command line, and since you can do that obviously you can launch it through .NET using Process.start("path to client", "arguments")
Check out http://www.sonicwall.com/downloads/Global_VPN_Client_21_AdminGuide.pdf on launching sonicwall from the command line.