All of lore.kernel.org
 help / color / mirror / Atom feed
* Forward local traffic to another host with nftables
@ 2016-10-31 17:33 Геннадий Ковалёв
  2016-10-31 19:24 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 4+ messages in thread
From: Геннадий Ковалёв @ 2016-10-31 17:33 UTC (permalink / raw)
  To: netfilter

Hello!

I have linux box (external ip x.x.x.x; internal bridge (br0) ip 
10.0.2.1) with lxc container (10.0.2.22). I want to translate local http 
packet with daddr to public ip to lxc container. I have put dnat rule to 
nat chain with output hook, and snat rule to nat table with postrouting 
hook:

root@sed:~# nft list ruleset
table ip nat {
         chain output {
                 type nat hook output priority 0; policy accept;
                 oif lo ip daddr x.x.x.x tcp dport http counter packets 
7 bytes 420 nftrace set 1 dnat 10.0.2.22
         }

         chain postrouting {
                 type nat hook postrouting priority 0; policy accept;
                 oif br0 ip saddr x.x.x.x counter packets 7 bytes 420 
snat 10.0.2.1
         }
}

telnet x.x.x.x 80 terminated with "connection timeout" error.

I think trace looks good:

root@sed:~# nft monitor trace
trace id 51803d41 ip nat output packet: oif lo ip saddr x.x.x.x ip daddr 
x.x.x.x ip dscp 0x04 ip ecn not-ect ip ttl 64 ip id 47640 ip length 60 
tcp sport 54854 tcp dport http tcp flags == syn tcp window 43690
trace id 51803d41 ip nat output rule oif lo ip daddr x.x.x.x tcp dport 
http counter packets 1 bytes 60 nftrace set 1 dnat 10.0.2.22 (verdict 
accept)
trace id 51803d41 ip nat postrouting packet: oif br0 ip saddr x.x.x.x ip 
daddr 10.0.2.22 ip dscp 0x04 ip ecn not-ect ip ttl 64 ip id 47640 ip 
length 60 tcp sport 54854 tcp dport http tcp flags == syn tcp window 43690
trace id 51803d41 ip nat postrouting rule oif br0 ip saddr x.x.x.x 
counter packets 1 bytes 60 nftrace set 1 snat 10.0.2.1 (verdict accept)

And tcpdump. But there is strange third packet with reset flag:

root@sed:~# tcpdump -nvi br0  port 80
tcpdump: listening on br0, link-type EN10MB (Ethernet), capture size 
262144 bytes
20:11:36.619158 IP (tos 0x10, ttl 64, id 13945, offset 0, flags [DF], 
proto TCP (6), length 60)
     10.0.2.1.56682 > 10.0.2.22.80: Flags [S], cksum 0x1845 (incorrect 
-> 0xbf55), seq 2932709176, win 43690, options [mss 65495,sackOK,TS val 
113484097 ecr 0,nop,wscale 7], length 0
20:11:36.619188 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto 
TCP (6), length 60)
     10.0.2.22.80 > 10.0.2.1.56682: Flags [S.], cksum 0x1845 (incorrect 
-> 0x5d91), seq 1462474289, ack 2932709177, win 28960, options [mss 
1460,sackOK,TS val 113484097 ecr 113484097,nop,wscale 7], length 0
20:11:36.619201 IP (tos 0x0, ttl 64, id 57631, offset 0, flags [DF], 
proto TCP (6), length 40)
     10.0.2.1.56682 > 10.0.2.22.80: Flags [R], cksum 0x7408 (correct), 
seq 2932709177, win 0, length 0

netstat showing connection like this (don't see outgoing port number, 
it's another try):

tcp        0      1 x.x.x.x:60404       x.x.x.x:80 SYN_SENT

There are no iptable_* modules loaded:

root@sed:~# lsmod | grep iptable
root@sed:~#

The same settings with iptables works for me. Where I can find solution 
with nftables?

Thanks,

Gennady Kovalev


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Forward local traffic to another host with nftables
  2016-10-31 17:33 Forward local traffic to another host with nftables Геннадий Ковалёв
@ 2016-10-31 19:24 ` Pablo Neira Ayuso
  2016-10-31 21:36   ` Gennady Kovalev
  0 siblings, 1 reply; 4+ messages in thread
From: Pablo Neira Ayuso @ 2016-10-31 19:24 UTC (permalink / raw)
  To: Геннадий
	Ковалёв
  Cc: netfilter

On Mon, Oct 31, 2016 at 08:33:57PM +0300, Геннадий Ковалёв wrote:
> Hello!
> 
> I have linux box (external ip x.x.x.x; internal bridge (br0) ip 10.0.2.1)
> with lxc container (10.0.2.22). I want to translate local http packet with
> daddr to public ip to lxc container. I have put dnat rule to nat chain with
> output hook, and snat rule to nat table with postrouting hook:
> 
> root@sed:~# nft list ruleset
> table ip nat {
>         chain output {
>                 type nat hook output priority 0; policy accept;
>                 oif lo ip daddr x.x.x.x tcp dport http counter packets 7
> bytes 420 nftrace set 1 dnat 10.0.2.22
>         }
> 
>         chain postrouting {
>                 type nat hook postrouting priority 0; policy accept;
>                 oif br0 ip saddr x.x.x.x counter packets 7 bytes 420 snat
> 10.0.2.1
>         }
> }
>
> telnet x.x.x.x 80 terminated with "connection timeout" error.
> 
> I think trace looks good:
> 
> root@sed:~# nft monitor trace
> trace id 51803d41 ip nat output packet: oif lo ip saddr x.x.x.x ip daddr
> x.x.x.x ip dscp 0x04 ip ecn not-ect ip ttl 64 ip id 47640 ip length 60 tcp
> sport 54854 tcp dport http tcp flags == syn tcp window 43690
> trace id 51803d41 ip nat output rule oif lo ip daddr x.x.x.x tcp dport http
> counter packets 1 bytes 60 nftrace set 1 dnat 10.0.2.22 (verdict accept)
> trace id 51803d41 ip nat postrouting packet: oif br0 ip saddr x.x.x.x ip
> daddr 10.0.2.22 ip dscp 0x04 ip ecn not-ect ip ttl 64 ip id 47640 ip length
> 60 tcp sport 54854 tcp dport http tcp flags == syn tcp window 43690
> trace id 51803d41 ip nat postrouting rule oif br0 ip saddr x.x.x.x counter
> packets 1 bytes 60 nftrace set 1 snat 10.0.2.1 (verdict accept)
> 
> And tcpdump. But there is strange third packet with reset flag:
> 
> root@sed:~# tcpdump -nvi br0  port 80
> tcpdump: listening on br0, link-type EN10MB (Ethernet), capture size 262144
> bytes
> 20:11:36.619158 IP (tos 0x10, ttl 64, id 13945, offset 0, flags [DF], proto
> TCP (6), length 60)
>     10.0.2.1.56682 > 10.0.2.22.80: Flags [S], cksum 0x1845 (incorrect ->
> 0xbf55), seq 2932709176, win 43690, options [mss 65495,sackOK,TS val
> 113484097 ecr 0,nop,wscale 7], length 0
> 20:11:36.619188 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP
> (6), length 60)
>     10.0.2.22.80 > 10.0.2.1.56682: Flags [S.], cksum 0x1845 (incorrect ->
> 0x5d91), seq 1462474289, ack 2932709177, win 28960, options [mss
> 1460,sackOK,TS val 113484097 ecr 113484097,nop,wscale 7], length 0
> 20:11:36.619201 IP (tos 0x0, ttl 64, id 57631, offset 0, flags [DF], proto
> TCP (6), length 40)
>     10.0.2.1.56682 > 10.0.2.22.80: Flags [R], cksum 0x7408 (correct), seq
> 2932709177, win 0, length 0
> 
> netstat showing connection like this (don't see outgoing port number, it's
> another try):
> 
> tcp        0      1 x.x.x.x:60404       x.x.x.x:80 SYN_SENT
> 
> There are no iptable_* modules loaded:
> 
> root@sed:~# lsmod | grep iptable
> root@sed:~#
> 
> The same settings with iptables works for me. Where I can find solution with
> nftables?

From https://wiki.nftables.org/wiki-nftables/index.php/Performing_Network_Address_Translation_%28NAT%29

"You have to register the prerouting chain even if you have no rules
there since this chain invokes the NAT engine for the packets coming
in the input path."

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Forward local traffic to another host with nftables
  2016-10-31 19:24 ` Pablo Neira Ayuso
@ 2016-10-31 21:36   ` Gennady Kovalev
  2016-11-03 16:25     ` Pablo Neira Ayuso
  0 siblings, 1 reply; 4+ messages in thread
From: Gennady Kovalev @ 2016-10-31 21:36 UTC (permalink / raw)
  To: netfilter

31.10.2016 22:24, Pablo Neira Ayuso wrote:
> On Mon, Oct 31, 2016 at 08:33:57PM +0300, Геннадий Ковалёв wrote:  >> I have linux box (external ip x.x.x.x; internal bridge (br0) ip >> 
10.0.2.1) with lxc container (10.0.2.22). I want to translate local >> 
http packet with daddr to public ip to lxc container. I have put >> dnat 
rule to nat chain with output hook, and snat rule to nat table >> with 
postrouting hook: > From > 
https://wiki.nftables.org/wiki-nftables/index.php/Performing_Network_Address_Translation_%28NAT%29 
 > > "You have to register the prerouting chain even if you have no rules
> there since this chain invokes the NAT engine for the packets coming > in the input path."

Oh, I try to make example simple and make mistake in simple config. 
Another try:

root@sed:~# nft list ruleset
table ip nat {
         chain prerouting {
                 type nat hook prerouting priority 0; policy accept;
         }

         chain output {
                 type nat hook output priority 0; policy accept;
                 oif lo ip daddr x.x.x.x tcp dport http counter nftrace 
set 1 dnat 10.0.2.22
         }

         chain postrouting {
                 type nat hook postrouting priority 0; policy accept;
                 oif br0 ip saddr x.x.x.x counter snat 10.0.2.1
         }
}

And cuted tcpdump output:
IP 10.0.2.1.36320 > 10.0.2.22.80: Flags [S], seq 2655320356...
IP 10.0.2.22.80 > x.x.x.x.36320: Flags [S.], seq 1337026682, ack 
2655320357...
IP x.x.x.x.36320 > 10.0.2.22.80: Flags [R], seq 2655320357...

It looks like at reverse path ip changed by snat restored, but changed 
by dnat not.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Forward local traffic to another host with nftables
  2016-10-31 21:36   ` Gennady Kovalev
@ 2016-11-03 16:25     ` Pablo Neira Ayuso
  0 siblings, 0 replies; 4+ messages in thread
From: Pablo Neira Ayuso @ 2016-11-03 16:25 UTC (permalink / raw)
  To: Gennady Kovalev; +Cc: netfilter

On Tue, Nov 01, 2016 at 12:36:39AM +0300, Gennady Kovalev wrote:
> 31.10.2016 22:24, Pablo Neira Ayuso wrote:
> >On Mon, Oct 31, 2016 at 08:33:57PM +0300, Геннадий Ковалёв wrote:  >> I
> >have linux box (external ip x.x.x.x; internal bridge (br0) ip >>
> 10.0.2.1) with lxc container (10.0.2.22). I want to translate local >> http
> packet with daddr to public ip to lxc container. I have put >> dnat rule to
> nat chain with output hook, and snat rule to nat table >> with postrouting
> hook: > From > https://wiki.nftables.org/wiki-nftables/index.php/Performing_Network_Address_Translation_%28NAT%29
> > > "You have to register the prerouting chain even if you have no rules
> >there since this chain invokes the NAT engine for the packets coming > in the input path."
> 
> Oh, I try to make example simple and make mistake in simple config. Another
> try:
> 
> root@sed:~# nft list ruleset
> table ip nat {
>         chain prerouting {
>                 type nat hook prerouting priority 0; policy accept;

I can also see priority numbers don't match the same we use in
iptables. This should be:

        priority -100

>         }
> 
>         chain output {
>                 type nat hook output priority 0; policy accept;
>                 oif lo ip daddr x.x.x.x tcp dport http counter nftrace set 1
> dnat 10.0.2.22
>         }
> 
>         chain postrouting {
>                 type nat hook postrouting priority 0; policy accept;

This should be:

        priority 100

>                 oif br0 ip saddr x.x.x.x counter snat 10.0.2.1
>         }
> }
> 
> And cuted tcpdump output:
> IP 10.0.2.1.36320 > 10.0.2.22.80: Flags [S], seq 2655320356...
> IP 10.0.2.22.80 > x.x.x.x.36320: Flags [S.], seq 1337026682, ack
> 2655320357...
> IP x.x.x.x.36320 > 10.0.2.22.80: Flags [R], seq 2655320357...
> 
> It looks like at reverse path ip changed by snat restored, but changed by
> dnat not.

Out of curiosity. Is iptable_nat load? If so, rmmod iptable_nat.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-03 16:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-31 17:33 Forward local traffic to another host with nftables Геннадий Ковалёв
2016-10-31 19:24 ` Pablo Neira Ayuso
2016-10-31 21:36   ` Gennady Kovalev
2016-11-03 16:25     ` Pablo Neira Ayuso

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.