The original post: /r/mullvadvpn by /u/No-Attention8902 on 2024-08-05 16:38:46.

Please Help configure nft to work with proxy and vpn.

squid proxy without vpn works.

my excludeTraffic.rules:

table inet excludeTraffic {

chain allowIncoming {

type filter hook input priority -100; policy accept;

tcp dport 3128 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;

}

chain allowOutgoing {

type route hook output priority -100; policy accept;

tcp sport 3128 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;

}

}