Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to configure iptable rules based on UID to achieve split tunneling. All the packets in the TCP connection have an UID, except the last ACK packet.(after the FIN ACK )

Because of this, the last ACK packet is not going through VPN route. Does anybody have an idea how to match the last ACK packet without the UID? Can we make it follow the tun0 route using any other iptable commands ?

Commands:

To set the mark:    
sudo iptables -t mangle -D OUTPUT -m owner --uid-owner 10090 -j MARK --set-mark 10

To set the Masquerade:
sudo iptables -t nat -A POSTROUTING -o tun0 -j MASQUERADE

To set the route:
sudo ip rule add fwmark 10 table 10
sudo ip route add 0.0.0.0/0 table 10 dev tun0


To print the uid and gid:
sudo iptables -I INPUT -p tcp -j LOG --log-prefix "INPUT: " --log-uid
sudo iptables -I OUTPUT -p tcp -j LOG --log-prefix "OUTPUT: " --log-uid
dmesg > ~/test.txt

Output:
OUTPUT: IN= OUT=wlan0 SRC=192.168.224.108 DST=208.71.44.31 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=18864 DF PROTO=TCP SPT=33793 DPT=80 WINDOW=913 RES=0x00 ACK FIN URGP=0 UID=10090 GID=10090
INPUT: IN=wlan0 OUT=  SRC=208.71.44.31 DST=192.168.224.108 LEN=52 TOS=0x00 PREC=0x00 TTL=52 ID=61471 DF PROTO=TCP SPT=80 DPT=33793 WINDOW=30 RES=0x00 ACK FIN URGP=0
OUTPUT: IN= OUT=wlan0 SRC=192.168.224.108 DST=208.71.44.31 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=18865 DF PROTO=TCP SPT=33793 DPT=80 WINDOW=913 RES=0x00 ACK URGP=0 

(Note the missing UID and GID at the end, for the last outgoing packet. Probably because the socket is closed by the client and kernel generated the final ACK)

Any help is appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.