C 新增修改防火牆埠及程式

2022-02-18 06:54:46 字數 1173 閱讀 6682

文章**:

一、新增 com 引用

在引用裡,選擇 com 頁, 找到netfwtypelib, 確定即可

二、新增允許通過防火牆的例外程式

using

system;

using

system.collections.generic;

using

system.linq;

using

system.text;

using

netfwtypelib;

namespace

common

else

objport.scope =net_fw_scope_.net_fw_scope_all;

objport.enabled = true

;

bool exist = false

;

//加入到防火牆的管理策略

foreach (inetfwopenport mport in

netfwmgr.localpolicy.currentprofile.globallyopenports)

}if (!exist) netfwmgr.localpolicy.currentprofile.globallyopenports.add(objport);

}//////

將應用程式新增到防火牆例外

/// ///

應用程式名稱

///應用程式可執行檔案全路徑

public

static

executablepath)}}

//////

刪除防火牆例外埠

/// ///

埠 ///

協議(tcp、udp)

public

static

protocol)

else

}//////

刪除防火牆例外中應用程式

/// ///

程式的絕對路徑

public

static

executablepath)

}}

C 新增刪除防火牆例外(程式 埠)

一 新增 com 引用 在引用裡,選擇 com 頁,找到netfwtypelib,確定即可 二 新增允許通過防火牆的例外程式 using system using system.collections.generic using system.linq using system.text using...

linux防火牆新增埠並開閉防火牆

安裝 yum install firewalld 啟動 systemctl start firewalld 檢視狀態 systemctl status firewalld 禁用,禁止開機啟動 systemctl disable firewalld 開機啟用 systemctl enable fire...

linux埠及防火牆

埠ip 埠抓包 tcpdump i eth0 port 9080 檢視iptables狀態 未關閉會造成一些埠無法使用 service iptables status 防火牆狀態 service iptables stop iptables 關閉防火牆 service iptables start ...