Skip to main content

All Questions

Tagged with
0 votes
0 answers
74 views

Linux 6.5 netfilter NAT reuses TCP ports in TIME_WAIT status?

In my understanding, Linux (netfilter)'s NAT doesn't reuse TCP ports in TIME_WAIT status, but seemingly Linux >= 6.5 reuses TCP ports in TIME_WAIT, even if the destination is the same. For example, ...
turgenev's user avatar
0 votes
1 answer
84 views

What is the correct way of shorten this nat based multiple ports?

Can these rules shorten to single line: post-up iptables -t nat -A PREROUTING -i vmbr0 -p tcp --dport 3050 -j DNAT --to-destination 192.168.1.3:3050 post-up iptables -t nat -A PREROUTING -i vmbr0 -p ...
Ozgur Erdogan's user avatar
0 votes
1 answer
413 views

Relay TCP upload traffic and make download traffic go directly to the client

This is a supplement for iptables SNAT for UDP rule is only applied to some traffic In fact, I have three machines: the client the target server the relay server What's my motivation for doing this? ...
Peiyuan's user avatar
  • 13
0 votes
0 answers
130 views

Returning tcp/udp packets to sender

I'm using a Linux machine with WiFi hotspot to test the WiFi stack of an embedded device. For context, the embedded device is designed to send and receive encrypted packets to/from a remote server. To ...
schnoop's user avatar