Browse Source

Listen on all IPs and ports by default, avoids complications with ports

3.12
dschreiber 14 years ago
parent
commit
1a486ad8ac
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      opensips/opensips.tmp

+ 4
- 4
opensips/opensips.tmp View File

@ -42,10 +42,10 @@ alias=localhost.localdomain
######################################################################
## Connectivity
######################################################################
listen=udp:eth0:{{SIP_PORT}}
listen=udp:eth0:7000
listen=tcp:eth0:{{SIP_PORT}}
listen=tcp:eth0:7000
listen=udp:0.0.0.0:{{SIP_PORT}}
listen=udp:0.0.0.0:7000
listen=tcp:0.0.0.0:{{SIP_PORT}}
listen=tcp:0.0.0.0:7000
tos=IPTOS_LOWDELAY
# advertised_address={{SIP_IP}}
# advertised_port={{SIP_PORT}}


Loading…
Cancel
Save