Asterisk SIP NAT solutions

本文深入探讨了Asterisk作为SIP客户端和服务器在NAT网络中的配置方案,包括与不同网络环境的交互方式及常见问题解决策略。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Asterisk SIP NAT solutions


Asterisk, SIP and NAT


Asterisk can both act as a  SIP  client and a SIP server. Asterisk as a SIP client is configured with  type=peer  (or  type=friend ) in one or more client sections of sip.conf  and, optionally, one or more  register=>  lines in the [general] section of  sip.conf . Asterisk as a SIP server connects clients (SIP Phones) configured by specifying their own username, secret, etc. (and either  type=peer  or type=friend ) in client sections of  sip.conf .

Asterisk SIP channels in a NATed network can be generalized like this:
  1. Asterisk as a SIP client behind nat, connecting to outside SIP Proxies
  2. Asterisk as a SIP client behind nat, connecting to inside SIP proxies
  3. Asterisk as a SIP server behind nat, clients on the outside connecting to Asterisk
  4. Asterisk as a SIP server behind nat, clients on the outside behind a second NAT connecting to Asterisk
  5. Asterisk as a SIP server behind nat, clients on the inside connecting to Asterisk
  6. Asterisk as a SIP client outside nat, connecting to outside SIP proxies
  7. Asterisk as a SIP client outside nat, connecting to inside SIP proxies
  8. Asterisk as a SIP server outside nat, clients on the outside connecting to Asterisk
  9. Asterisk as a SIP server outside nat, clients on the inside connecting to Asterisk


Every setup works somewhere, but it depends on the client, the NAT, the server and many other factors. In most cases, 1 and 3 is broken. SIP is a peer-to-peer protocol and a NAT can be generalized and simplified as a solution that allows clients on the inside to connect to servers on the outside and _not_ allow clients on the outside to connect to any server on the inside.

  • #1 works with a NAT-supporting proxy as SIP Express router as the outside proxy. (Get an account at IPtel.org and try!). Fails with Free World Dialup.
  • #2 Works- no NAT in between
  • #3 Works with port forwarding and some header mangling magic tips
  • #4 Works with port forwardingSTUN on the remote and some fine tuning of RTP port allocation
  • #5 Works - no NAT in between
  • #6 is no problem. No NAT in the middle
  • #7 is a problem if no port forwarding is done, similar to 3 above.
  • #8 is no problem. No NAT in the middle
  • #9 is solved with nat=yes and qualify=xxx in sip.conf for the client in most cases. Some clients (X-lite) assist themselves by using STUN and sending UDP keep-alive packets. Qualify sends keep-alive packets from Asterisk to the client on the inside.

Then we have even worse cases...

9. Asterisk inside a NAT, client inside ANOTHER NAT <---Isn't this the same as previous option 4???

In this case, we need a middle man to even find each other, an outbound SIP proxy that handles the SIP transaction and is reachable by all parties. To get media streams from point to point we need another middle man, a media server. Asterisk could be that media server, that could add media codec conversion.  RTPProxy  or AG Projects  MediaProxy  works together with  SIP Express router  as a media server in this situation.

I would like to add that this option contains the largest amount of cow poop around it. I've been searching for some time to fix this problem, and I'm sure it's very fixable. Also, this does seem to be a very common thing to do, so, does anyone have a GOOD solution?

I'm sure we can find case #10-xx as well.


For sample config files to setup Asterisk behind a NAT router to make and receive  Free World Dialup  calls see:  Asterisk FWD NAT Config Example



Olles comments 2003-11-04:

I'm afraid if I configure externalIP= in  sip.conf, 1 works, like with FWD, but 2 is broken.
I don't know what happens with 4 if I at the same time use externalip= and have clients
configured as 3.
As I see it, externalip= is an ugly hack that causes problems. There are better solutions
in the bug tracking system, being discussed and refined.

STUN support, and the netmask/ip-network configuration helps asterisk to find out itself
if there's a NAT in the middle and if something should be done.



Other solutions



IP Tunneling Solution

If you have an asterisk server, you are obvoiusly running linux (or something that can handle IPIP and GRE tunnels). In most cases when people have just 1 phone, I use an IAXy, and it is no setup required behind nat. In cases where multiple phones are required, IE setting up an client office w/ a virtual PBX, the only real hardphones out are SIP.

Farfon.... been waiting a while...

What I have done to fix this SIP NAT issue is install a small linux router at the client site, which has a public IP, and is the gateway for a private network. Using netfilter and NAT, you can do anything you want, and all you need to do is setup an IPIP tunnel back to your asterisk server to allow SIP phones to have a direct IP connection.

Server
  • iptunnel add iptun0 mode ipip remote $CLIENTROUTERIP (tunnel)
  • ifconfig iptun0 200.0.0.1 pointopoint 200.0.1.1 (tunnel endpoint)
  • route add -net 200.0.1.0/24 dev iptun0 (tunnel network)
  • route add -net 10.0.0.0/24 dev iptun0 (client network)
  • route add -net 10.0.0.0/24 gw 200.0.1.1 (client gateway)

Client
  • iptunnel add iptun0 mode ipip remote $ASTERISKIP (tunnel)
  • ifconfig iptun0 200.0.1.1 pointopoint 200.0.0.1 (tunnel endpoint)


From anywhere inside the client 10.0.0.0/24 network, you can access 200.0.0.1 (asterisk) and vice versa. This totally eliminates your SIP NAT issues.

Yes this is insecure compared to IPSEC or the like, however, if you are wanting to run SIP over the net without IPSEC, this is the exact same thing, and a lot easier to setup then IPSEC.

You may want to use this script for multiple ipip tunnels



\!/bin/sh

\#ON CLIENT
\#iptunnel add iptun0 mode ipip remote 69.56.173.241
\#ifconfig iptun0 200.0.1.1 pointopoint 200.0.0.1


\#EACH TUNNEL ON NEWLINE
\#FORMAT IS CLIENTIP:CLIENT NETWORK
TUNNELS="0.0.0.0:10.0.0.0/24"

start()
{
c=0
for tun in $TUNNELS
do
d1=`echo $tun | cut -d ":" -f 1`
d2=`echo $tun | cut -d ":" -f 2`
iptunnel add iptun$c mode ipip remote $d1
ifconfig iptun$c 200.$c.0.1 pointopoint 200.$c.1.1
route add -net 200.$c.1.0/24 dev iptun$c
route add -net $d2 dev iptun$c
route add -net $d2 gw 200.$c.1.1
c += 1 
done
}

stop()
{
c=0
for tun in $TUNNELS
do
iptunnel del iptun$c
c += 1 
done
}

case "$1" in
start)
start ;;
stop)
stop ;;
restart)
stop
start ;;
esac


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值