You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| validate-revocation| Boolean. Specifies whether certificate is validated against online revocation list. Policy expressions aren't allowed.| No |`true`|
58
-
| validate-trust| Boolean. Specifies if validation should fail in case chain cannot be successfully built up to trusted CA. Policy expressions aren't allowed. | No |`true`|
59
-
| validate-not-before | Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
60
-
| validate-not-after| Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
61
-
| ignore-error| Boolean. Specifies if policy should proceed to the next handler or jump to on-error upon failed validation. Policy expressions aren't allowed. | No |`false`|
57
+
| validate-revocation | Boolean. Specifies whether certificate is validated against online revocation list. Policy expressions aren't allowed. | No |`true`|
58
+
| validate-trust| Boolean. Specifies if validation should fail in case chain cannot be successfully built up to trusted CA. Policy expressions aren't allowed. | No |`true`|
59
+
| validate-not-before | Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
60
+
| validate-not-after | Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
61
+
| ignore-error | Boolean. Specifies if policy should proceed to the next handler or jump to on-error upon failed validation. Policy expressions aren't allowed. | No |`false`|
62
62
63
63
## Elements
64
64
@@ -70,27 +70,24 @@ For more information about custom CA certificates and certificate authorities, s
| serial-number | Certificate serial number. | No | N/A |
75
75
| common-name | Certificate common name (part of Subject string). | No | N/A |
76
76
| subject | Subject string. Must follow format of Distinguished Name, which consists of comma-separated name attributes, for example, *"CN=MyName, OU=MyOrgUnit, C=US..."*.| No | N/A |
77
77
| dns-name | Value of dnsName entry inside Subject Alternative Name claim. | No | N/A |
78
-
| issuer-subject | Issuer's subject. Must follow format of Distinguished Name, which consists of comma-separated name attributes, for example, *"CN=MyName, OU=MyOrgUnit, C=US..."*. | No | N/A |
79
-
| issuer-thumbprint | Issuer thumbprint. | No | N/A |
80
-
| issuer-certificate-id | Identifier of existing certificate entity representing the issuer's public key. Mutually exclusive with other issuer attributes. | No | N/A |
78
+
| issuer-subject | Issuer's subject. Must follow format of Distinguished Name. | No | N/A |
| issuer-certificate-id | Identifier of existing certificate entity representing the issuer's public key. Mutually exclusive with other issuer attributes. | No | N/A |
* You must use double quotes to enclose values of name attributes in the `subject` and `issuer-subject` attributes when they contain certain special characters such as ",". For example, specify `O="Contoso, Inc."` instead of `O=Contoso, Inc.` for the organization name. [Learn more](/windows/win32/api/wincrypt/nf-wincrypt-certnametostra#remarks)
92
-
93
-
## Example
94
91
95
92
The following example validates a client certificate to match the policy's default validation rules and checks whether the subject and issuer name match specified values.
96
93
@@ -109,6 +106,25 @@ The following example validates a client certificate to match the policy's defau
109
106
</validate-client-certificate>
110
107
```
111
108
109
+
The following example performs a stricter validation by cheking whether the subject thumbprint and the issuer thumbprint match specified values.
Copy file name to clipboardExpand all lines: articles/virtual-network/virtual-network-optimize-network-bandwidth.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,13 +47,13 @@ For all other Windows VMs, using Receive Side Scaling (RSS) can reach higher max
47
47
48
48
## Linux virtual machines
49
49
50
-
RSS is always enabled by default in an Azure Linux Virtual Machine (VM). Linux kernels released since October 2017 include new network optimizations options that enable a Linux VM to achieve higher network throughput.
50
+
RSS is always enabled by default in a Linux Virtual Machine (VM) in Azure. Linux kernels released since October 2017 include new network optimizations options that enable a Linux VM to achieve higher network throughput.
51
51
52
52
### Enable Azure Accelerated Networking for optimal throughput
53
53
54
54
Azure provides accelerated networking which can really improve network performance, latency, jitter. There are currently two different technologies that are used depending on the virtual machine size, [Mellanox](/azure/virtual-network/accelerated-networking-how-it-works) which is wide available and [MANA](/azure/virtual-network/accelerated-networking-mana-overview) which is developed by Microsoft.
55
55
56
-
### Azure Linux Tuned Kernels
56
+
### Azure Tuned Kernels
57
57
58
58
Some distributions such as Ubuntu (Canonical) and SUSE have [Azure tuned kernels](/azure/virtual-machines/linux/endorsed-distros#azure-tuned-kernels).
59
59
@@ -70,9 +70,9 @@ uname -r
70
70
71
71
Most modern distributions have significant improvements with newer kernels. Check the current kernel version to make sure that you're running a kernel that is newer than 4.19, which includes some great improvements in networking, for example support for the *BBR Congestion-Based Congestion Control*.
72
72
73
-
## Achieving consistent transfer speeds in Azure Linux VMs
73
+
## Achieving consistent transfer speeds in Linux VMs in Azure
74
74
75
-
Azure Linux VMs often experience network performance issues, particularly when transferring large files (1 GB to 50 GB) between regions, such as West Europe and West US. These issues are caused by older kernel versions as well as, default kernel configurations, default network buffer settings and default congestion control algorithms, which result in delayed packets, limited throughput, and inefficient resource usage.
75
+
Linux VMs often experience network performance issues, particularly when transferring large files (1 GB to 50 GB) between regions, such as West Europe and West US. These issues are caused by older kernel versions as well as, default kernel configurations, default network buffer settings and default congestion control algorithms, which result in delayed packets, limited throughput, and inefficient resource usage.
76
76
77
77
To get consistent network performance, consider implementing the following optimizations that are proven effective in many situations on Azure:
0 commit comments