Toolpack:Configuring DNS Parameters C: Difference between revisions
(Created page with "{{DISPLAYTITLE:Configuring DNS Parameters}} Applies to version(s): v2.9 == To configure the DNS parameters == 1- Enable Advanced Transport Server Configuration in the SIP co...") |
(Removed SBC - Applies to TMG only) |
||
| (11 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
{{DISPLAYTITLE:Configuring DNS Parameters}} | {{DISPLAYTITLE:Configuring DNS Parameters}} | ||
{| class="wikitable" | |||
|- | |||
|rowspan="3"|This article applies to: | |||
|'''Product''' | |||
|'''Version''' | |||
|- | |||
|Tmedia | |||
|3.0, 3.2, 3.3 | |||
|} | |||
== To configure the DNS parameters == | == To configure the DNS parameters == | ||
| Line 26: | Line 35: | ||
[[Image:ConfigureDnsParams_6.png]] | [[Image:ConfigureDnsParams_6.png]] | ||
<div class="mw-collapsible mw-collapsed" data-collapsetext="Northbound Interface" data-expandtext="Northbound Interface" style="width: 400px;"> | <div class="mw-collapsible mw-collapsed" data-collapsetext="Northbound Interface" data-expandtext="Northbound Interface" style="width: 400px;"> | ||
| Line 31: | Line 42: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
/configurations/@[configuration_name]/naps/@[nap_name] | |||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
/configurations/@[configuration_name]/sip_stacks/@[sipStack_Name]/dns_parameters | |||
"local_dns_transport_server" : { | |||
"ip_interface" : "@[hardware_name].@[voip_Name]", | |||
"port" : 1024, | |||
"port_type" : "UDP" | |||
}, | |||
cache_expire_time = "12 hours" | |||
enabled = false | |||
query_retry_count = 3 | |||
query_timer = "20 seconds" | |||
server_address = "" | |||
server_dns_port = 53 | |||
use_cache = true | |||
use_enum = false | |||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
{ | |||
"dns_parameters" : { | |||
"cache_expire_time" : "12 hours", | |||
"enabled" : false, | |||
"local_dns_transport_server" : { | |||
"ip_interface" : "@[hardware_name].@[voip_Name]", | |||
"port" : 1024, | |||
"port_type" : "UDP" | |||
}, | |||
"query_retry_count" : 3, | |||
"query_timer" : "20 seconds", | |||
"server_address" : "", | |||
"server_dns_port" : 53, | |||
"use_cache" : true, | |||
"use_enum" : false | |||
} | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
==List of Parameters== | ==List of Parameters== | ||
Latest revision as of 16:41, 1 November 2024
| This article applies to: | Product | Version |
| Tmedia | 3.0, 3.2, 3.3 |
To configure the DNS parameters
1- Enable Advanced Transport Server Configuration in the SIP configuration window.
- Click SIP in the navigation panel.
2- Select a SIP configuration.
3- Click DNS Parameters in the SIP configuration window.
- Enable the DNS, cache and ENUM support (if required)
- Enter the IP address of the DNS server
- Click Save
4- Verify that the 'SIP transport server was successfully updated' message is displayed.
Path
/configurations/@[configuration_name]/naps/@[nap_name]
Parameters (text)
/configurations/@[configuration_name]/sip_stacks/@[sipStack_Name]/dns_parameters
"local_dns_transport_server" : {
"ip_interface" : "@[hardware_name].@[voip_Name]",
"port" : 1024,
"port_type" : "UDP"
},
cache_expire_time = "12 hours"
enabled = false
query_retry_count = 3
query_timer = "20 seconds"
server_address = ""
server_dns_port = 53
use_cache = true
use_enum = false
Parameters (json)
{
"dns_parameters" : {
"cache_expire_time" : "12 hours",
"enabled" : false,
"local_dns_transport_server" : {
"ip_interface" : "@[hardware_name].@[voip_Name]",
"port" : 1024,
"port_type" : "UDP"
},
"query_retry_count" : 3,
"query_timer" : "20 seconds",
"server_address" : "",
"server_dns_port" : 53,
"use_cache" : true,
"use_enum" : false
}
}


