Skip to content

Commit ee062a0

Browse files
authored
Merge pull request MicrosoftDocs#2300 from greiginsydney/patch-18
Changed "-CS" references to "-Cs"
2 parents ca10980 + 7964b52 commit ee062a0

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

skype/skype-ps/skype/Set-CSOnlinePSTNGateway.md renamed to skype/skype-ps/skype/Set-CsOnlinePSTNGateway.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
33
online version:
44
applicable: Skype for Business Online
5-
title: Set-CSOnlinePSTNGateway
5+
title: Set-CsOnlinePSTNGateway
66
schema: 2.0.0
77
---
88

9-
# Set-CSOnlinePSTNGateway
9+
# Set-CsOnlinePSTNGateway
1010

1111
## SYNOPSIS
1212
Modifies the previously defined Session Border Controller (SBC) Configuration that describes the settings for the peer entity. This cmdlet was introduced with Microsoft Phone System Direct Routing.
@@ -15,7 +15,7 @@ Modifies the previously defined Session Border Controller (SBC) Configuration th
1515

1616
### Identity (Default)
1717
```
18-
Set-CSOnlinePSTNGateway [-Tenant <System.Guid>] [-SipSignallingPort <Int32>] [-CodecPriority <String>]
18+
Set-CsOnlinePSTNGateway [-Tenant <System.Guid>] [-SipSignallingPort <Int32>] [-CodecPriority <String>]
1919
[-ExcludedCodecs <String>] [-FailoverTimeSeconds <Int32>] [-ForwardCallHistory <Boolean>]
2020
[-ForwardPai <Boolean>] [-SendSipOptions <Boolean>] [-MaxConcurrentSessions <System.Int32>]
2121
[-Enabled <Boolean>] [-MediaBypass <Boolean>] [-GatewaySiteId <String>] [-GatewaySiteLbrEnabled <Boolean>] [[-Identity] <XdsGlobalRelativeIdentity>] [-Force] [-WhatIf]
@@ -24,7 +24,7 @@ Set-CSOnlinePSTNGateway [-Tenant <System.Guid>] [-SipSignallingPort <Int32>] [-C
2424

2525
### Instance
2626
```
27-
Set-CSOnlinePSTNGateway [-Tenant <System.Guid>] [-SipSignallingPort <Int32>] [-CodecPriority <String>]
27+
Set-CsOnlinePSTNGateway [-Tenant <System.Guid>] [-SipSignallingPort <Int32>] [-CodecPriority <String>]
2828
[-ExcludedCodecs <String>] [-FailoverTimeSeconds <Int32>] [-ForwardCallHistory <Boolean>]
2929
[-ForwardPai <Boolean>] [-SendSipOptions <Boolean>] [-MaxConcurrentSessions <System.Int32>]
3030
[-Enabled <Boolean>] [-MediaBypass <Boolean>] [-GatewaySiteId <String>] [-GatewaySiteLbrEnabled <Boolean>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
@@ -38,14 +38,14 @@ Use this cmdlet to modify the configuration of the previously created Session Bo
3838

3939
### Example 1
4040
```powershell
41-
PS C:\> Set-CSOnlinePSTNGateway - Identity sbc.contoso.com -Enabled $true
41+
PS C:\> Set-CsOnlinePSTNGateway -Identity sbc.contoso.com -Enabled $true
4242
```
4343

4444
This example enables previously created SBC with Identity (and FQDN) sbc.contoso.com. All others parameters will stay default.
4545

4646
### Example 2
4747
```powershell
48-
PS C:\> Set-CSOnlinePSTNGateway -Identity sbc.contoso.com -SIPSignallingPort 5064 -ForwardPAI $true -Enabled $true
48+
PS C:\> Set-CsOnlinePSTNGateway -Identity sbc.contoso.com -SIPSignallingPort 5064 -ForwardPAI $true -Enabled $true
4949
```
5050

5151
This example modifies the configuration of an SBC with identity (and FQDN) sbc.contoso.com. It changes the SIPSignallingPort to 5064 and enabled P-Asserted-Identity field on outbound connections (outbound from Direct Routing to SBC). For each outbound to SBC session, the Direct Routing interface will report in P-Asserted-Identity fields the TEL URI and SIP address of the user who made a call. This is useful when a tenant administrator set identity of the caller as "Anonymous" or a general number of the company, but for the billing purposes the real identity of the user should be reported.
@@ -83,7 +83,7 @@ Accept wildcard characters: False
8383
```
8484
8585
### -Enabled
86-
Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC, while it is being updated or during maintenance. Note of the parameter not set the SBC will be created as disabled (default value -Enabled $false).
86+
Used to enable this SBC for outbound calls. Can be used to temporarily remove the SBC from service while it is being updated or during maintenance. Note if the parameter is not set the SBC will be created as disabled (default value -Enabled $false).
8787
8888
```yaml
8989
Type: Boolean
@@ -113,7 +113,7 @@ Accept wildcard characters: False
113113
```
114114
115115
### -FailoverTimeSeconds
116-
When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10.
116+
When set to 10 (default value), outbound calls that are not answered by the gateway within 10 seconds are routed to the next available trunk; if there are no additional trunks, then the call is automatically dropped. In an organization with slow networks and slow gateway responses, that could potentially result in calls being dropped unnecessarily. The default value is 10.
117117
118118
```yaml
119119
Type: Int32
@@ -201,7 +201,7 @@ Accept wildcard characters: False
201201
```
202202
203203
### -MaxConcurrentSessions
204-
Used by alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent session is 90% or higher than this value. If parameter is not set, the alerts are not generated. However, the monitoring system will report number of concurrent session every 24 hours.
204+
Used by the alerting system. When any value is set, the alerting system will generate an alert to the tenant administrator when the number of concurrent session is 90% or higher than this value. If this parameter is not set, the alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours.
205205
206206
```yaml
207207
Type: System.Int32
@@ -353,8 +353,8 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
353353
354354
## RELATED LINKS
355355
356-
[New-CSOnlinePSTNGateway](New-CSOnlinePSTNGateway.md)
356+
[New-CsOnlinePSTNGateway](New-CsOnlinePSTNGateway.md)
357357
358-
[Get-CSOnlinePSTNGateway](Get-CSOnlinePSTNGateway.md)
358+
[Get-CsOnlinePSTNGateway](Get-CsOnlinePSTNGateway.md)
359359
360-
[Remove-CSOnlinePSTNGateway](Remove-CSOnlinePSTNGateway.md)
360+
[Remove-CsOnlinePSTNGateway](Remove-CsOnlinePSTNGateway.md)

0 commit comments

Comments
 (0)