Fix the server 2 address and sip transport
This commit is contained in:
parent
a15488a708
commit
7d62cc1e63
|
|
@ -180,6 +180,7 @@
|
|||
|
||||
<!-- SIP Transport -->
|
||||
<!-- UDP, TCP, Tls Or Tcp -->
|
||||
<!-- Variable Value: {$row.sip_transport} -->
|
||||
{if $row.sip_transport == ''}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
{if $row.sip_transport == 'udp'}<item name="account.{$row.line_number}.sip.transport">0</item>{/if}
|
||||
{if $row.sip_transport == 'tcp'}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
|
|
@ -913,6 +914,7 @@
|
|||
<!-- # Mandatory -->
|
||||
<item name="network.port.eth.1.vlan.enable">{if $grandstream_lan_port_vlan == '0'}No{else}Yes{/if}</item>
|
||||
|
||||
|
||||
<!-- # Layer 2 QoS. 802.1Q/VLAN Tag (VLAN classification for RTP). Default is 0 -->
|
||||
<!-- Layer 2 QoS 802.1Q/VLAN Tag (Ethernet) -->
|
||||
<!-- Number: 0 - 4095 -->
|
||||
|
|
|
|||
|
|
@ -38,7 +38,11 @@
|
|||
<item name="account.{$row.line_number}.sip.server.1.address">{$row.server_address}:{$row.sip_port}</item>
|
||||
{/if}
|
||||
<!-- Secondary SIP Server -->
|
||||
{if isset($row.server_address_secondary)}
|
||||
<item name="account.{$row.line_number}.sip.server.2.address">{$row.server_address_secondary}:{$row.sip_port}</item>
|
||||
{else}
|
||||
<item name="account.{$row.line_number}.sip.server.2.address"/>
|
||||
{/if}
|
||||
|
||||
<!-- Outbound Proxy -->
|
||||
{if $row.sip_transport != 'dns srv' && isset($row.outbound_proxy_primary)}
|
||||
|
|
@ -176,6 +180,7 @@
|
|||
|
||||
<!-- SIP Transport -->
|
||||
<!-- UDP, TCP, Tls Or Tcp -->
|
||||
<!-- Variable Value: {$row.sip_transport} -->
|
||||
{if $row.sip_transport == ''}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
{if $row.sip_transport == 'udp'}<item name="account.{$row.line_number}.sip.transport">0</item>{/if}
|
||||
{if $row.sip_transport == 'tcp'}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
|
|
@ -909,6 +914,7 @@
|
|||
<!-- # Mandatory -->
|
||||
<item name="network.port.eth.1.vlan.enable">{if $grandstream_lan_port_vlan == '0'}No{else}Yes{/if}</item>
|
||||
|
||||
|
||||
<!-- # Layer 2 QoS. 802.1Q/VLAN Tag (VLAN classification for RTP). Default is 0 -->
|
||||
<!-- Layer 2 QoS 802.1Q/VLAN Tag (Ethernet) -->
|
||||
<!-- Number: 0 - 4095 -->
|
||||
|
|
|
|||
|
|
@ -38,7 +38,11 @@
|
|||
<item name="account.{$row.line_number}.sip.server.1.address">{$row.server_address}:{$row.sip_port}</item>
|
||||
{/if}
|
||||
<!-- Secondary SIP Server -->
|
||||
{if isset($row.server_address_secondary)}
|
||||
<item name="account.{$row.line_number}.sip.server.2.address">{$row.server_address_secondary}:{$row.sip_port}</item>
|
||||
{else}
|
||||
<item name="account.{$row.line_number}.sip.server.2.address"/>
|
||||
{/if}
|
||||
|
||||
<!-- Outbound Proxy -->
|
||||
{if $row.sip_transport != 'dns srv' && isset($row.outbound_proxy_primary)}
|
||||
|
|
@ -176,10 +180,11 @@
|
|||
|
||||
<!-- SIP Transport -->
|
||||
<!-- UDP, TCP, Tls Or Tcp -->
|
||||
{if $row.sip_transport == ''}<item name="account.{$row.line_number}.sip.transport">TCP</item>{/if}
|
||||
{if $row.sip_transport == 'udp'}<item name="account.{$row.line_number}.sip.transport">UDP</item>{/if}
|
||||
{if $row.sip_transport == 'tcp'}<item name="account.{$row.line_number}.sip.transport">TCP</item>{/if}
|
||||
{if $row.sip_transport == 'tls'}<item name="account.{$row.line_number}.sip.transport">Tls</item>{/if}
|
||||
<!-- Variable Value: {$row.sip_transport} -->
|
||||
{if $row.sip_transport == ''}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
{if $row.sip_transport == 'udp'}<item name="account.{$row.line_number}.sip.transport">0</item>{/if}
|
||||
{if $row.sip_transport == 'tcp'}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
{if $row.sip_transport == 'tls'}<item name="account.{$row.line_number}.sip.transport">2</item>{/if}
|
||||
|
||||
<!-- SIP Listening Mode -->
|
||||
<!-- Transport_Only, Dual, Dual_BLF_Enforced, Dual_Secured -->
|
||||
|
|
@ -3318,4 +3323,4 @@
|
|||
{/foreach}
|
||||
|
||||
</config>
|
||||
</gs_provision>
|
||||
</gs_provision>
|
||||
|
|
|
|||
|
|
@ -38,7 +38,11 @@
|
|||
<item name="account.{$row.line_number}.sip.server.1.address">{$row.server_address}:{$row.sip_port}</item>
|
||||
{/if}
|
||||
<!-- Secondary SIP Server -->
|
||||
{if isset($row.server_address_secondary)}
|
||||
<item name="account.{$row.line_number}.sip.server.2.address">{$row.server_address_secondary}:{$row.sip_port}</item>
|
||||
{else}
|
||||
<item name="account.{$row.line_number}.sip.server.2.address"/>
|
||||
{/if}
|
||||
|
||||
<!-- Outbound Proxy -->
|
||||
{if $row.sip_transport != 'dns srv' && isset($row.outbound_proxy_primary)}
|
||||
|
|
@ -176,10 +180,11 @@
|
|||
|
||||
<!-- SIP Transport -->
|
||||
<!-- UDP, TCP, Tls Or Tcp -->
|
||||
{if $row.sip_transport == ''}<item name="account.{$row.line_number}.sip.transport">TCP</item>{/if}
|
||||
{if $row.sip_transport == 'udp'}<item name="account.{$row.line_number}.sip.transport">UDP</item>{/if}
|
||||
{if $row.sip_transport == 'tcp'}<item name="account.{$row.line_number}.sip.transport">TCP</item>{/if}
|
||||
{if $row.sip_transport == 'tls'}<item name="account.{$row.line_number}.sip.transport">Tls</item>{/if}
|
||||
<!-- Variable Value: {$row.sip_transport} -->
|
||||
{if $row.sip_transport == ''}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
{if $row.sip_transport == 'udp'}<item name="account.{$row.line_number}.sip.transport">0</item>{/if}
|
||||
{if $row.sip_transport == 'tcp'}<item name="account.{$row.line_number}.sip.transport">1</item>{/if}
|
||||
{if $row.sip_transport == 'tls'}<item name="account.{$row.line_number}.sip.transport">2</item>{/if}
|
||||
|
||||
<!-- SIP Listening Mode -->
|
||||
<!-- Transport_Only, Dual, Dual_BLF_Enforced, Dual_Secured -->
|
||||
|
|
@ -3318,4 +3323,4 @@
|
|||
{/foreach}
|
||||
|
||||
</config>
|
||||
</gs_provision>
|
||||
</gs_provision>
|
||||
|
|
|
|||
Loading…
Reference in New Issue