From: sean darcy <seandarcy2@gmail.com>
To: netfilter@vger.kernel.org
Subject: Re: why can't I DNAT SIP?
Date: Thu, 08 May 2008 21:18:20 -0400 [thread overview]
Message-ID: <g008p1$g2c$1@ger.gmane.org> (raw)
In-Reply-To: <fvvuil$ldh$1@ger.gmane.org>
sean darcy wrote:
> Grant Taylor wrote:
>> On 05/07/08 20:10, sean darcy wrote:
>>> On my outside box I trying to route sip ( port 5060 ) and iax ( 4659
>>> ) packets to an internal asterisk server. I use DNAT, which works
>>> fine for iax, but doesn't for SIP. I'm using identical DNAT statments.
>>
>> No you are not.
>>
>>> $IPT -t nat -A PREROUTING -i external -p udp --dport 4569 -j DNAT
>>> --to 10.10.10.180:4569
>>
>> (verses)
>>
>>> $IPT -t nat -A PREROUTING -s ext-box -p udp --dport 5060 -j DNAT
>>> --to 10.10.10.180:5060
>>
>> Note that you have "-i external" on the first (IAX) rule and "-s
>> ext-box" on the second (SIP) rule.
>>
> I tried it both ways. FWIW, it works both ways for iax. I showed it that
> way because the LOG statement were that way. I've run them all both ways.
>
>> I don't know if you have taken this in to account or not, but remember
>> that SIP is not really NAT friendly.
>>
>
> Yeah, but why is iptables not filtering the packet correctly; it's just
> a port 5060 udp packet. How can it matter that it's 5060 instead of 4569?
>
> Here it comes in -t raw -A PREROUTING:
>
> GATEWAY: IN=external OUT=
> MAC=00:48:54:8b:ab:29:00:1a:e2:84:bf:3b:08:00 SRC=xxx.yyy.148.160
> DST=yyy.xxx.167.178 LEN=527 TOS=0x04 PREC=0x00 TTL=48 ID=32417 PROTO=UDP
> SPT=5060 DPT=5060 LEN=507
>
> either:
> $IPT -t nat -A PREROUTING -s ext-box -p udp --dport 5060 -j DNAT --to
> 10.10.10.180:5060
>
> or:
>
> $IPT -t nat -A PREROUTING -i external -p udp --dport 5060 -j DNAT --to
> 10.10.10.180:5060
>
> should send the packet to the FORWARD chain, but instead it shows up in
> INPUT:
>
> SIP-INPUT: IN=external OUT=
> MAC=00:48:54:8b:ab:29:00:1a:e2:84:bf:3b:08:00 SRC=xxx.yyy.148.160
> DST=yyyy.xxx.167.178 LEN=527 TOS=0x04 PREC=0x00 TTL=48 ID=32417
> PROTO=UDP SPT=5060 DPT=5060 LEN=507
>
>
> ?????
>
AFAICS, ports 4569 and 5060 should both be FORWARD'ed:
+ /sbin/iptables -v -t nat -A PREROUTING -i external -p udp --dport 4569
-j DNAT --to 10.10.10.180:4569
DNAT udp opt -- in external out * 0.0.0.0/0 -> 0.0.0.0/0 udp
dpt:4569 to:10.10.10.180:4569
+ /sbin/iptables -v -A FORWARD -p udp -m state --state NEW -d
10.10.10.180 --dport 4569 -j ACCEPT
ACCEPT udp opt -- in * out * 0.0.0.0/0 -> 10.10.10.180 state NEW udp
dpt:4569
+ /sbin/iptables -v -t nat -A PREROUTING -i external -p udp --dport 5060
-j DNAT --to 10.10.10.180:5060
DNAT udp opt -- in external out * 0.0.0.0/0 -> 0.0.0.0/0 udp
dpt:5060 to:10.10.10.180:5060
+ /sbin/iptables -v -A FORWARD -p udp --dport 5060 -m state --state NEW
-d 10.10.10.180 -j ACCEPT
ACCEPT udp opt -- in * out * 0.0.0.0/0 -> 10.10.10.180 udp dpt:5060
state NEW
sean
next prev parent reply other threads:[~2008-05-09 1:18 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-08 1:10 why can't I DNAT SIP? sean darcy
2008-05-08 19:31 ` Grant Taylor
2008-05-08 22:24 ` sean darcy
2008-05-09 1:18 ` sean darcy [this message]
2008-05-09 14:15 ` Grant Taylor
2008-05-09 14:23 ` Patrick McHardy
2008-05-10 2:04 ` sean darcy
2008-05-10 8:43 ` Jan Engelhardt
2008-05-11 14:53 ` sean darcy
2008-05-11 14:58 ` Jan Engelhardt
2008-05-11 18:02 ` sean darcy
2008-05-11 18:12 ` Jan Engelhardt
2008-05-12 16:01 ` Patrick McHardy
2008-05-09 0:31 ` Mike Wright
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='g008p1$g2c$1@ger.gmane.org' \
--to=seandarcy2@gmail.com \
--cc=netfilter@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.