Skip to content

Commit b21b9fd

Browse files
authored
Merge pull request #197140 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 1d134e2 + 0aa1606 commit b21b9fd

File tree

5 files changed

+98
-5
lines changed

5 files changed

+98
-5
lines changed

articles/active-directory-b2c/configure-authentication-sample-angular-spa-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export const b2cPolicies = {
145145
export const msalConfig: Configuration = {
146146
auth: {
147147
clientId: '<your-MyApp-application-ID>',
148-
authority: b2cPolicies.authorities.signUpSignIn,
148+
authority: b2cPolicies.authorities.signUpSignIn.authority,
149149
knownAuthorities: [b2cPolicies.authorityDomain],
150150
redirectUri: '/',
151151
},

articles/healthcare-apis/events/events-troubleshooting-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This article provides guides and resources to troubleshoot Events.
3030
>
3131
> - **FhirResourceDeleted** - The event emitted after a FHIR resource gets soft deleted successfully.
3232
>
33-
> For more information about the FHIR service delete types, see [FHIR Rest API capabilities for Azure Health Data Services FHIR service](../../healthcare-apis/fhir/fhir-rest-api-capabilities.md)
33+
> For more information about the FHIR service delete types, see [FHIR REST API capabilities for Azure Health Data Services FHIR service](../../healthcare-apis/fhir/fhir-rest-api-capabilities.md)
3434
3535
### Events message structure
3636

articles/healthcare-apis/fhir/configure-import-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The final step is to set the import configuration of the FHIR service, which con
4747
> [!NOTE]
4848
> If you haven't assigned storage access permissions to the FHIR service, the import operations ($import) will fail.
4949
50-
To specify the Azure Storage account, you need to use [Rest API](/rest/api/healthcareapis/services/create-or-update) to update the FHIR service.
50+
To specify the Azure Storage account, you need to use [REST API](/rest/api/healthcareapis/services/create-or-update) to update the FHIR service.
5151

5252
To get the request URL and body, browse to the Azure portal of your FHIR service. Select **Overview**, and then **JSON View**.
5353

articles/mysql/flexible-server/concepts-server-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Review the [MySQL documentation](https://dev.mysql.com/doc/refman/5.7/en/innodb-
4848
|Burstable (B1s)|1|1|134217728|33554432|134217728|
4949
|Burstable (B1ms)|1|2|536870912|134217728|536870912|
5050
|Burstable|2|4|2147483648|134217728|2147483648|
51-
|General Purpose|2|8|6442450944|134217728|6442450944|
51+
|General Purpose|2|8|5368709120|134217728|5368709120|
5252
|General Purpose|4|16|12884901888|134217728|12884901888|
5353
|General Purpose|8|32|25769803776|134217728|25769803776|
5454
|General Purpose|16|64|51539607552|134217728|51539607552|

articles/virtual-network/what-is-ip-address-168-63-129-16.md

Lines changed: 94 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,100 @@ The public IP address 168.63.129.16 is used in all regions and all national clou
4343

4444
- When the VM is part of a load balancer backend pool, [health probe](../load-balancer/load-balancer-custom-probe-overview.md) communication should be allowed to originate from 168.63.129.16. The default network security group configuration has a rule that allows this communication. This rule leverages the [AzureLoadBalancer](../virtual-network/service-tags-overview.md#available-service-tags) service tag. If desired this traffic can be blocked by configuring the network security group however this will result in probes that fail.
4545

46+
## Troubleshoot connectivity
47+
### Windows OS
48+
You can test communication to 168.63.129.16 by using the following tests with PowerShell.
49+
50+
```
51+
Test-NetConnection -ComputerName 168.63.129.16 -Port 80
52+
Test-NetConnection -ComputerName 168.63.129.16 -Port 32526
53+
Invoke-RestMethod -Headers @{"Metadata"="true"} -Method GET -Uri http://168.63.129.16/?comp=versions
54+
```
55+
Results should return as shown below.
56+
57+
```
58+
Test-NetConnection -ComputerName 168.63.129.16 -Port 80
59+
ComputerName : 168.63.129.16
60+
RemoteAddress : 168.63.129.16
61+
RemotePort : 80
62+
InterfaceAlias : Ethernet
63+
SourceAddress : 10.0.0.4
64+
TcpTestSucceeded : True
65+
```
66+
67+
```
68+
Test-NetConnection -ComputerName 168.63.129.16 -Port 32526
69+
ComputerName : 168.63.129.16
70+
RemoteAddress : 168.63.129.16
71+
RemotePort : 32526
72+
InterfaceAlias : Ethernet
73+
SourceAddress : 10.0.0.4
74+
TcpTestSucceeded : True
75+
```
76+
77+
```
78+
Invoke-RestMethod -Headers @{"Metadata"="true"} -Method GET -Uri http://168.63.129.16/?comp=versions
79+
xml Versions
80+
--- --------
81+
version="1.0" encoding="utf-8" Versions
82+
```
83+
You can also test communication to 168.63.129.16 by using telnet or psping.
84+
85+
If successful, telnet should connect and the file that is created will be empty.
86+
87+
```
88+
telnet 168.63.129.16 80 >> C:\<<EDIT-DIRECTORY>>\168-63-129-16_test-port80.txt
89+
telnet 168.63.129.16 32526 >> C:\<<EDIT-DIRECTORY>>\168-63-129-16_test--port32526.txt
90+
```
91+
92+
```
93+
Psping 168.63.129.16:80 >> C:\<<EDIT-DIRECTORY>>\168-63-129-16_test--port80.txt
94+
Psping 168.63.129.16:32526 >> C:\<<EDIT-DIRECTORY>>\168-63-129-16_test-port32526.txt
95+
```
96+
### Linux OS
97+
On Linux, you can test communication to 168.63.129.16 by using the following tests.
98+
99+
```
100+
echo "Testing 80 168.63.129.16 Port 80" > 168-63-129-16_test.txt
101+
traceroute -T -p 80 168.63.129.16 >> 168-63-129-16_test.txt
102+
echo "Testing 80 168.63.129.16 Port 32526" >> 168-63-129-16_test.txt
103+
traceroute -T -p 32526 168.63.129.16 >> 168-63-129-16_test.txt
104+
echo "Test 168.63.129.16 Versions" >> 168-63-129-16_test.txt
105+
curl http://168.63.129.16/?comp=versions >> 168-63-129-16_test.txt
106+
```
107+
108+
Results inside 168-63-129-16_test.txt should return as shown below.
109+
110+
```
111+
traceroute -T -p 80 168.63.129.16
112+
traceroute to 168.63.129.16 (168.63.129.16), 30 hops max, 60 byte packets
113+
1 168.63.129.16 (168.63.129.16) 0.974 ms 1.085 ms 1.078 ms
114+
115+
traceroute -T -p 32526 168.63.129.16
116+
traceroute to 168.63.129.16 (168.63.129.16), 30 hops max, 60 byte packets
117+
1 168.63.129.16 (168.63.129.16) 0.883 ms 1.004 ms 1.010 ms
118+
119+
curl http://168.63.129.16/?comp=versions
120+
<?xml version="1.0" encoding="utf-8"?>
121+
<Versions>
122+
<Preferred>
123+
<Version>2015-04-05</Version>
124+
</Preferred>
125+
<Supported>
126+
<Version>2015-04-05</Version>
127+
<Version>2012-11-30</Version>
128+
<Version>2012-09-15</Version>
129+
<Version>2012-05-15</Version>
130+
<Version>2011-12-31</Version>
131+
<Version>2011-10-15</Version>
132+
<Version>2011-08-31</Version>
133+
<Version>2011-04-07</Version>
134+
<Version>2010-12-15</Version>
135+
<Version>2010-28-10</Version>
136+
</Supported>
137+
```
138+
46139
## Next steps
47140

48141
- [Security groups](./network-security-groups-overview.md)
49-
- [Create, change, or delete a network security group](manage-network-security-group.md)
142+
- [Create, change, or delete a network security group](manage-network-security-group.md)

0 commit comments

Comments
 (0)