mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
Update firewall-csp.md
Sample SyncML to evaluate DefaultOutboundAction impact
This commit is contained in:
parent
430caad8b9
commit
a20197d22f
@ -150,7 +150,7 @@ The following diagram shows the Firewall configuration service provider in tree
|
|||||||
<p style="margin-left: 20px">Value type is bool. Supported operations are Add, Get and Replace.</p>
|
<p style="margin-left: 20px">Value type is bool. Supported operations are Add, Get and Replace.</p>
|
||||||
|
|
||||||
<a href="" id="defaultoutboundaction"></a>**/DefaultOutboundAction**
|
<a href="" id="defaultoutboundaction"></a>**/DefaultOutboundAction**
|
||||||
<p style="margin-left: 20px">This value is the action that the firewall does by default (and evaluates at the very end) on outbound connections. The merge law for this option is to let the value of the GroupPolicyRSoPStore win if it is configured; otherwise, the local store value is used.</p>
|
<p style="margin-left: 20px">This value is the action that the firewall does by default (and evaluates at the very end) on outbound connections. The merge law for this option is to let the value of the GroupPolicyRSoPStore win if it is configured; otherwise, the local store value is used. DefaultOutboundAction will block all outbound traffic unless it is explicitly specified not to block.</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>0x00000000 - allow</li>
|
<li>0x00000000 - allow</li>
|
||||||
<li>0x00000001 - block</li>
|
<li>0x00000001 - block</li>
|
||||||
@ -158,6 +158,30 @@ The following diagram shows the Firewall configuration service provider in tree
|
|||||||
<p style="margin-left: 20px">Default value is 0 (allow).</p>
|
<p style="margin-left: 20px">Default value is 0 (allow).</p>
|
||||||
<p style="margin-left: 20px">Value type is integer. Supported operations are Add, Get and Replace.</p>
|
<p style="margin-left: 20px">Value type is integer. Supported operations are Add, Get and Replace.</p>
|
||||||
|
|
||||||
|
Sample syncxml to provision the firewall settings to evaluate
|
||||||
|
|
||||||
|
``` syntax
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<SyncML xmlns="SYNCML:SYNCML1.1">
|
||||||
|
<SyncBody>
|
||||||
|
<!-- Block Outbound by default -->
|
||||||
|
<Add>
|
||||||
|
<CmdID>2010</CmdID>
|
||||||
|
<Item>
|
||||||
|
<Target>
|
||||||
|
<LocURI>./Vendor/MSFT/Firewall/MdmStore/DomainProfile/DefaultOutboundAction</LocURI>
|
||||||
|
</Target>
|
||||||
|
<Meta>
|
||||||
|
<Format xmlns="syncml:metinf">int</Format>
|
||||||
|
</Meta>
|
||||||
|
<Data>1</Data>
|
||||||
|
</Item>
|
||||||
|
</Add>
|
||||||
|
<Final/>
|
||||||
|
</SyncBody>
|
||||||
|
</SyncML>
|
||||||
|
|
||||||
|
```
|
||||||
<a href="" id="defaultinboundaction"></a>**/DefaultInboundAction**
|
<a href="" id="defaultinboundaction"></a>**/DefaultInboundAction**
|
||||||
<p style="margin-left: 20px">This value is the action that the firewall does by default (and evaluates at the very end) on inbound connections. The merge law for this option is to let the value of the GroupPolicyRSoPStore.win if it is configured; otherwise, the local store value is used.</p>
|
<p style="margin-left: 20px">This value is the action that the firewall does by default (and evaluates at the very end) on inbound connections. The merge law for this option is to let the value of the GroupPolicyRSoPStore.win if it is configured; otherwise, the local store value is used.</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user