Skip to content

Commit ef12e78

Browse files
Corrected typos, renamed to "CS-" references to "Cs-"
1 parent 9bc243e commit ef12e78

File tree

1 file changed

+23
-24
lines changed

1 file changed

+23
-24
lines changed

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

Lines changed: 23 additions & 24 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: New-CSOnlinePSTNGateway
5+
title: New-CsOnlinePSTNGateway
66
schema: 2.0.0
77
---
88

9-
# New-CSOnlinePSTNGateway
9+
# New-CsOnlinePSTNGateway
1010

1111
## SYNOPSIS
1212
Creates a new 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 @@ Creates a new Session Border Controller (SBC) Configuration that describes the s
1515

1616
### Identity (Default)
1717
```
18-
New-CSOnlinePSTNGateway [-Tenant <System.Guid>] -SipSignallingPort <Int32> [-CodecPriority <String>]
18+
New-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> [-InMemory] [-Force]
@@ -24,36 +24,36 @@ New-CSOnlinePSTNGateway [-Tenant <System.Guid>] -SipSignallingPort <Int32> [-Cod
2424

2525
### ParentAndRelativeKey
2626
```
27-
New-CSOnlinePSTNGateway [-Tenant <System.Guid>] -Fqdn <String> -SipSignallingPort <Int32>
27+
New-CsOnlinePSTNGateway [-Tenant <System.Guid>] -Fqdn <String> -SipSignallingPort <Int32>
2828
[-CodecPriority <String>] [-ExcludedCodecs <String>] [-FailoverTimeSeconds <Int32>]
2929
[-ForwardCallHistory <Boolean>] [-ForwardPai <Boolean>] [-SendSipOptions <Boolean>]
3030
[-MaxConcurrentSessions <System.Int32>] [-Enabled <Boolean>] [-MediaBypass <Boolean>] [-GatewaySiteId <String>] [-GatewaySiteLbrEnabled <Boolean>] [-InMemory] [-Force]
3131
[-WhatIf] [-Confirm] [<CommonParameters>]
3232
```
3333

3434
## DESCRIPTION
35-
Use this cmdlet to create a new Session Border Controller (SBC) configuration. Each configuration contains specific settings for an SBC. These settings configure such entities as SIP signaling port, whether media bypass is enabled on this SBC, will the SBC send SIP options, specify the limit of maximum concurrent sessions, The cmdlet also let drain the SBC by setting parameter -Enabled to true or false state. When the Enabled parameter is set to $false, the SBC will continue existing calls, but all new calls will be routed to another SBC in a route (if exists).
35+
Use this cmdlet to create a new Session Border Controller (SBC) configuration. Each configuration contains specific settings for an SBC. These settings configure such entities as the SIP signaling port, whether media bypass is enabled on this SBC, will the SBC send SIP Options, and specify the limit of maximum concurrent sessions. The cmdlet also lets the administrator drain the SBC by setting parameter -Enabled to $true or $false state. When the Enabled parameter is set to $false, the SBC will continue existing calls, but all new calls will be routed to another SBC in a route (if one exists).
3636

3737
## EXAMPLES
3838

3939
### Example 1
4040
```powershell
41-
PS C:\> New-CSOnlinePSTNGateway - FQDN sbc.contoso.com -SIPSignallingPort 5061
41+
PS C:\> New-CsOnlinePSTNGateway -FQDN sbc.contoso.com -SIPSignallingPort 5061
4242
```
4343

4444
This example creates an SBC with FQDN sbc.contoso.com and signaling port 5061. All others parameters will stay default. Note the SBC will be in the disabled state.
4545

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

51-
This example creates an SBC with FQDN sbc.contoso.com and signaling port 5061. 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.
51+
This example creates an SBC with FQDN sbc.contoso.com and signaling port 5061. 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 sets the identity of the caller as "Anonymous" or a general number of the company, but for billing purposes the real identity of the user is required.
5252

5353
## PARAMETERS
5454

5555
### -CodecPriority
56-
Allows choosing codec priority when media is negotiated between Media Proxy and SBC. Default priority is ("SILKWB,SILKNB,PCMU,PCMA").
56+
Allows choice of codec priority when media is negotiated between Media Proxy and SBC. Default priority is ("SILKWB,SILKNB,PCMU,PCMA").
5757

5858
```yaml
5959
Type: String
@@ -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
@@ -98,7 +98,7 @@ Accept wildcard characters: False
9898
```
9999
100100
### -ExcludedCodecs
101-
Allows exclude some codecs during the process of media negotiation between Media Proxy and SBC.
101+
Allows some codecs to be excluded when media is being negotiated between Media Proxy and SBC.
102102
103103
```yaml
104104
Type: String
@@ -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
@@ -142,7 +142,7 @@ Accept wildcard characters: False
142142
```
143143
144144
### -ForwardCallHistory
145-
Indicates whether call history information will be forwarded through the trunk. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False).
145+
Indicates whether call history information will be forwarded to the SBC. If enabled, the Office 365 PSTN Proxy sends two headers: History-info and Referred-By. The default value is False ($False).
146146
147147
```yaml
148148
Type: Boolean
@@ -187,7 +187,7 @@ Accept wildcard characters: False
187187
```
188188
189189
### -Identity
190-
The parameter is not mandatory when creating a new SBC, the identity must be identical to the -FQDN parameter, described below. If the parameter not defined the Idetity will be copied from the -FQDN parameter.
190+
When creating a new SBC, the identity must be identical to the -FQDN parameter, described above. If the parameter is not defined the Identity will be copied from the -FQDN parameter. The Identity parameter is not mandatory.
191191
192192
```yaml
193193
Type: XdsGlobalRelativeIdentity
@@ -216,7 +216,7 @@ Accept wildcard characters: False
216216
```
217217
218218
### -MaxConcurrentSessions
219-
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.
219+
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 sessions is 90% or higher than this value. If the parameter is not set, alerts are not generated. However, the monitoring system will report the number of concurrent sessions every 24 hours.
220220
221221
```yaml
222222
Type: System.Int32
@@ -231,7 +231,7 @@ Accept wildcard characters: False
231231
```
232232
233233
### -MediaBypass
234-
Parameter indicated of the SBC supports Media Bypass and the administrator wants to use it for this SBC.
234+
Parameter indicates if the SBC supports Media Bypass and the administrator wants to use it for this SBC.
235235
236236
```yaml
237237
Type: Boolean
@@ -245,9 +245,8 @@ Accept pipeline input: False
245245
Accept wildcard characters: False
246246
```
247247
248-
### -ReinviteResponceCode
249-
If Direct Routing receives any 4xx or 6xx SIP error code in response on outgoing Invite (outgoing means call from a Teams client to PSTN with traffic flow :Teams Client -> Direct Routing -> SBC -> Telephony network) the call considered completed by default.
250-
Setting the SIP codes in this parameter forces Direct Routing on receicving the specified codes try another SBC (if another SBC exists in the vocie routing policy of the user). Pelase find more in "Reference" section of "Phone System Direct Routing" documentation
248+
### -ReinviteResponseCode
249+
If Direct Routing receives any 4xx or 6xx SIP error code in response to an outgoing Invite the call is considered completed by default. (Outgoing in this context is a call from a Teams client to the PSTN with traffic flow: Teams Client -> Direct Routing -> SBC -> Telephony network). Setting the SIP codes in this parameter forces Direct Routing on receiving the specified codes try another SBC (if another SBC exists in the voice routing policy of the user). Find more information in the "Reference" section of "Phone System Direct Routing" documentation.
251250
252251
```yaml
253252
Type: Int
@@ -277,7 +276,7 @@ Accept wildcard characters: False
277276
```
278277
279278
### -GatewaySiteLbrEnabled
280-
Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is turned on, the SBC will report the site name as defined by tenant administrator. On incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False).
279+
Used to enable this SBC to report assigned site location. Site location is used for Location Based Routing. When this parameter is enabled ($True), the SBC will report the site name as defined by the tenant administrator. On an incoming call to a Teams user the value of the site assigned to the SBC is compared with the value of the site assigned to the user to make a routing decision. The parameter is mandatory for enabling Location Based Routing feature. The default value is False ($False).
281280
282281
```yaml
283282
Type: Boolean
@@ -292,7 +291,7 @@ Accept wildcard characters: False
292291
```
293292
294293
### -SendSipOptions
295-
Defines if an SBC will or will not send the SIP options. If disabled, the SBC will be excluded from Monitoring and Alerting system. We highly recommend that you enable SIP options. Default value is True.
294+
Defines if an SBC will or will not send SIP Options messages. If disabled, the SBC will be excluded from the Monitoring and Alerting system. We highly recommend that you enable SIP Options. The default value is True.
296295
297296
```yaml
298297
Type: Boolean
@@ -368,8 +367,8 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
368367
369368
## RELATED LINKS
370369
371-
[Set-CSOnlinePSTNGateway](Set-CSOnlinePSTNGateway.md)
370+
[Set-CsOnlinePSTNGateway](Set-CsOnlinePSTNGateway.md)
372371
373-
[Get-CSOnlinePSTNGateway](Get-CSOnlinePSTNGateway.md)
372+
[Get-CsOnlinePSTNGateway](Get-CsOnlinePSTNGateway.md)
374373
375-
[Remove-CSOnlinePSTNGateway](Remove-CSOnlinePSTNGateway.md)
374+
[Remove-CsOnlinePSTNGateway](Remove-CsOnlinePSTNGateway.md)

0 commit comments

Comments
 (0)