this post was submitted on 22 Jun 2024
26 points (93.3% liked)

Piracy

2830 readers
1 users here now

Arr

founded 2 years ago
MODERATORS
 

How does this firm (or whatever it is) know I torrented something? My VPN app took a shit in the middle of a download and I think it exposed my IP to some "anti-piracy" bullshit firm that contacted my ISP. ISP emailed to let me know and to "not do it again". How does this firm know about torrenting? Do they like watch these sites and hope someone's VPN slips like mine did today?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] user224@lemmy.sdf.org 2 points 9 months ago (1 children)

Oof, sorry. This will depend on OS and the software you use for FW configs. I am too dumb.

For example, I use UFW on Linux. So for me it's

# Deny all incoming and outgoing traffic by default
ufw default deny outgoing
ufw default deny incoming

# Allow connection to VPN server
ufw allow out to <VPN server IP address> [port] <VPN server port number> [proto] <tcp|udp>

# Allow connection via VPN interface
ufw allow out on <interface name> from any to any

# Enable UFW
ufw enable

That's just one simple way.