我在一台机器上设置了一个OWIN自助主机,我使用以下命令为特定端口注册了证书:
netsh http add sslcert ipport=0.0.0.0:8082 certhash=<cert_thumbprint_here> appid={00000000-0000-0000-0000-AABBCCDDEEFF}
我的OWIN主机已启动此URL:
using (WebApp.Start<OwinStartup>(url: https://my-pc:8082))
{
// do stuff
}
我想知道的是,是否可以使用C#来确定证书是否与此端口绑定。基本上,我想检查我的应用程序是否已在用户的服务器上执行netsh命令,因为OWIN将在https上运行正常,但没有人能够连接。
答案 0 :(得分:1)
要查找绑定是否已完成,您需要检查该特定端口发生的情况 为此,您需要在CMD中执行命令,如下所示:
netstat -o -n -a | find /c "0.0.0.0:8082"
此命令将禁止在特定IP(0.0.0.0)和端口(8082)上激活套接字
这是您可以使用C#执行它的CMD,如下所示:
try
{
var configProc = new ProcessStartInfo();
string cmdConfig = @"netstat -o -n -a | find /c "0.0.0.0:8082";
configProc.UseShellExecute = true;
configProc.WorkingDirectory = @"C:\Windows\System32";
configProc.FileName = @"C:\Windows\System32\cmd.exe";
configProc.Verb = "runas";
configProc.Arguments = "/c " + cmdConfig;
configProc.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(configProc);
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}