"Hey guys, quick question—can other people connect to the proxy I set up, or is it just for me?
I set up a proxy on my machine (using Squid, if that matters), and it works fine for my own stuff. But I’m kinda curious if friends or, uh, *unwanted visitors* could also hop on it.
How do I even check that? Is there a way to see who’s using it, or do I need to tweak some settings to lock it down?
Also, if it *is* open, how risky is that? Don’t wanna wake up to some random dude hogging my bandwidth lol.
Thanks in advance for any tips!"
Yeah, can other people connect to the proxy I set up? Depends on your config. If you didn’t restrict access, then yeah, anyone who knows your IP could use it.
Check your squid.conf file for lines like `acl localnet src 192.168.1.0/24`—that limits it to your local network. No restrictions? Then it’s wide open.
To see active connections, try `squidclient mgr:active_requests` or just `netstat -tulnp | grep squid`.
Risk? High. Random folks could abuse it for shady stuff, and you’d get blamed. Lock it down ASAP.
If you’re asking "can other people connect to the proxy I set up," the answer is *probably*. By default, Squid might allow external connections unless you’ve explicitly blocked them.
Quick fix? Edit your squid.conf and add:
`http_access deny all`
`http_access allow localhost`
`http_access allow your_trusted_network`
Also, check your firewall. If port 3128 (or whatever port you’re using) is open to the world, that’s a problem. Tools like `nmap` can scan your IP to see what’s exposed.
casual reply:
lol yeah dude, if you didn’t lock it down, others can totally hop on your proxy.
check `/var/log/squid/access.log` to see who’s been using it. if you see weird IPs, yikes.
bandwidth hogging is the least of your worries—someone could use it for illegal stuff and you’d be on the hook.
close the barn door before the horses bolt. google "squid proxy secure setup" and follow a guide.
can other people connect to the proxy I set up? Short answer: Yes, if it’s exposed.
Long answer: Squid defaults aren’t always secure. You need to:
1) Restrict IPs in squid.conf
2) Set up auth if you want friends to use it safely
3) Monitor logs (`tail -f /var/log/squid/access.log`)
Tools like `fail2ban` can help block brute-force attempts. Also, consider using a VPN instead—way safer for sharing.
opinionated:
Bro, you’re basically leaving your front door unlocked. can other people connect to the proxy I set up? Absolutely, unless you’ve got rules in place.
Squid’s logs will show traffic (`/var/log/squid/`), but why wait? Shut it down or restrict it NOW.
If you *must* share it, use authentication. Google "Squid basic auth" for steps. Otherwise, you’re asking for trouble.
question-based:
Wait, so can other people connect to the proxy I set up if it’s on my home network?
If your machine’s IP is public (like no NAT/router firewall), then yes. But most home routers block incoming proxy traffic by default.
Still, check your Squid config for `http_access` rules. If it’s just `allow all`, that’s bad. Also, run `iptables -L` to see if your firewall’s helping.
detailed:
The question "can other people connect to the proxy I set up" boils down to networking + Squid settings.
First, is your proxy bound to `0.0.0.0` (all interfaces) or just `127.0.0.1` (local)? Check `http_port` in squid.conf.
Second, firewall rules matter. If you’re on Linux, `ufw status` or `iptables -L` will show if traffic’s allowed.
For monitoring, `squidclient mgr:info` gives stats, and `ngrep` can sniff traffic. But really, just restrict access and sleep easy.
Hey everyone, thanks for the quick replies! I checked my squid.conf and yikes—it *was* set to allow all. No wonder I was paranoid.
I added `http_access deny all` and only allowed my local IP. Also ran `nmap` on my public IP like someone suggested, and the proxy port’s closed now. Phew.
One follow-up: If I *do* want a friend to use it occasionally, is basic auth (username/password) the easiest way? Saw mixed opinions on security.
Thanks again—this thread saved me from becoming a free VPN for randos lol.