Share via


Inbound Connections

[The IPv6 Internet Connection Firewall is available for use in the operating systems specified in the Requirements section. It is unavailable in subsequent versions. Instead, use the Windows Firewall API.]

There are two different methods to permit inbound connection attempts through the firewall for a port and protocol pair.

A GlobalPort is a setting that grants access to a specific port and protocol pair across all interfaces or connections on the machine, even those that may be added in the future. A standard port setting applies to a specific port/protocol pair on only one specific connection. To instruct the firewall to allow inbound traffic to the port and protocol pair for any IPv6 connection-type that the machine has (including any that may be added in the future), use the INetFwV6Mgr::OpenGlobalPort method. To restrict this setting to a specific connection-type, use the INetFwV6Connection::OpenPort method.

When determining whether the firewall should allow traffic through on a connection for a port/protocol pair, the following rules are checked, in order:

INetFwV6Connection methods that query or alter the settings of a port/protocol pair are affect any global settings unless they specifically mention Global in the name of the method. This means that if the developer wishes to determine whether traffic is allowed on a given connection and port/protocol pair, it is not enough to merely query the INetFwV6Connection::IsPortOpen method. The developer must also examine whether the pair exists in the GlobalPort settings of the INetFwV6Mgr, and whether this connection has been instructed to ignore the global setting. The Querying an ICF Port example illustrates this process in detail.