aboutsummaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-05 20:49:40 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-05 20:49:40 +0000
commit3517450ecf9f151f5c00f8b6894396e2b2d048cc (patch)
tree4e79957a6249b793a5b2acc13e55043c03ce64c8 /configs
parentc4283406d5ce4e7c2302395306be631edf268107 (diff)
Merged revisions 128237 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r128237 | oej | 2008-07-05 22:39:54 +0200 (Lör, 05 Jul 2008) | 2 lines Make TCP disabled by default (it's considered experimental) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@128239 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configs')
-rw-r--r--configs/sip.conf.sample7
1 files changed, 4 insertions, 3 deletions
diff --git a/configs/sip.conf.sample b/configs/sip.conf.sample
index 6f80f9567..116d9ed87 100644
--- a/configs/sip.conf.sample
+++ b/configs/sip.conf.sample
@@ -75,9 +75,10 @@ allowoverlap=no ; Disable overlap dialing support. (Default is yes)
; asterisk.conf, it defaults to that system name
; Realms MUST be globally unique according to RFC 3261
; Set this to your host name or domain name
-bindport=5060 ; UDP Port to bind to (SIP standard port is 5060)
+bindport=5060 ; UDP Port to bind to (SIP standard port for unencrypted UDP
+ ; and TCP sessions is 5060)
; bindport is the local UDP port that Asterisk will listen on
-bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
+bindaddr=0.0.0.0 ; IP address to bind UDP listen socket to (0.0.0.0 binds to all)
;
; Note that the TCP and TLS support for chan_sip is currently considered
@@ -85,7 +86,7 @@ bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
; subject to change in any release. If they are changed, the changes will
; be reflected in this sample configuration file, as well as in the UPGRADE.txt file.
;
-tcpenable=yes ; Enable server for incoming TCP connections (default is yes)
+tcpenable=no ; Enable server for incoming TCP connections (default is yes)
tcpbindaddr=0.0.0.0 ; IP address for TCP server to bind to (0.0.0.0 binds to all interfaces)
; Optionally add a port number, 192.168.1.1:5062 (default is port 5060)