xp IP安全策略 ipseccmd,xpip策略ipseccmd
///下載 ipseccmd.exe
//禁止 xp 連接
public static void BannedXPRunCmd()
{
string str = Console.ReadLine();
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false; //是否使用操作系統shell啟動
p.StartInfo.RedirectStandardInput = true;//接受來自調用程序的輸入信息
p.StartInfo.RedirectStandardOutput = true;//由調用程序獲取輸出信息
p.StartInfo.RedirectStandardError = true;//重定向標准錯誤輸出
p.StartInfo.CreateNoWindow = true;//不顯示程序窗口
p.Start();//啟動程序
//跳轉到指定的路徑,並輸入信息
str = "cd " + Application.StartupPath + @"\lib";
p.StandardInput.WriteLine(str);
//創建一個Ip策略(阻止所有連接),並指派
str = "ipseccmd -w REG -p BannedConnectIP -r BannedConnectIP -f 0+* -n BLOCK -x ";
p.StandardInput.WriteLine(str);
//運行配置IP訪問
string StrIPArr = ConfigurationSettings.AppSettings["RemoteIPAddr"];
if (StrIPArr.Contains(','))
{
string[] strArr = StrIPArr.Split(',');
for (int i = 0; i < strArr.Length; i++)
{
string strarr = strArr[i].ToString();
str = "ipseccmd -w REG -p BannedConnectIP -r AllowConnectIP(" + strarr + ") -f 0+" + strarr + " -n PASS -x ";
p.StandardInput.WriteLine(str);
}
}
else
{
str = "ipseccmd -w REG -p BannedConnectIP -r AllowConnectIP(" + StrIPArr + ") -f 0+" + StrIPArr + " -n PASS -x ";
p.StandardInput.WriteLine(str);
}
////創建一個Ip策略(允許155連接),並指派
//str = "ipseccmd -w REG -p BannedConnectIP -r AllowConnectIP(155) -f 0+192.168.1.155 -n PASS -x ";
//p.StandardInput.WriteLine(str);
p.StandardInput.WriteLine("exit");
p.StandardInput.AutoFlush = true;
//向標准輸入寫入要執行的命令。這裡使用&是批處理命令的符號,表示前面一個命令不管是否執行成功都執行後面(exit)命令,如果不執行exit命令,後面調用ReadToEnd()方法會假死
//同類的符號還有&&和||前者表示必須前一個命令執行成功才會執行後面的命令,後者表示必須前一個命令執行失敗才會執行後面的命令
p.WaitForExit();//等待程序執行完退出進程
p.Close();
}
//開放 xp 連接
public static void AllowXPRunCmd()
{
string str = Console.ReadLine();
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false; //是否使用操作系統shell啟動
p.StartInfo.RedirectStandardInput = true;//接受來自調用程序的輸入信息
p.StartInfo.RedirectStandardOutput = true;//由調用程序獲取輸出信息
p.StartInfo.RedirectStandardError = true;//重定向標准錯誤輸出
p.StartInfo.CreateNoWindow = true;//不顯示程序窗口
p.Start();//啟動程序
//跳轉到指定的路徑,並輸入信息
str = "cd " + Application.StartupPath + @"\lib";
p.StandardInput.WriteLine(str);
//取消指派
str = " ipseccmd -w REG -p BannedConnectIP -y ";
p.StandardInput.WriteLine(str);
//刪除策略(刪除前,需要取消指派)
str = " ipseccmd -p BannedConnectIP -w reg -o ";
p.StandardInput.WriteLine(str);
p.StandardInput.WriteLine("exit");
p.StandardInput.AutoFlush = true;
//向標准輸入寫入要執行的命令。這裡使用&是批處理命令的符號,表示前面一個命令不管是否執行成功都執行後面(exit)命令,如果不執行exit命令,後面調用ReadToEnd()方法會假死
//同類的符號還有&&和||前者表示必須前一個命令執行成功才會執行後面的命令,後者表示必須前一個命令執行失敗才會執行後面的命令
p.WaitForExit();//等待程序執行完退出進程
p.Close();
}