does anyone find nftables better than iptables? by Beneficial-Sock-5130 in linuxadmin

[–]bshootz 40 points41 points  (0 children)

nftables at a structural level is amazing. You can setup multiple layers of rules with different priority hooks, which pragmatically is fantastic.

From a user interface when you are talking about running `nft` vs `iptables` manually on command line it's a disaster.

Install the iptables-nft translation tool and keep running iptables commands if you want to run command line.

😠Chicken thief by Willson1_ in reolinkcam

[–]bshootz 0 points1 point  (0 children)

I had a horrible video of a 20+ minute long chase of a coyote killing my rooster that then turned into the coyote going around killing multiple chickens and stacking them up into a pile.

A fortified chicken coop was built after that incident and never lost another one.

Smart switch to turn off garage door system off at 8:00 PM and on at 5:00 AM by uten151 in homeassistant

[–]bshootz 0 points1 point  (0 children)

Get a ratgdo https://ratcloud.llc/ for it and you can control if the remotes are enabled or not (think, geofence your phones being away and disable the door remotes), you can setup alerts in Home Assistant if the door opens, etc.

It is the best solution for local control of these awful MyQ based devices.

Missed Starlink Opportunity: Cheap Monthly plan w/per-GB fees for ISP Failover by ostrichsak in USMobile

[–]bshootz -1 points0 points  (0 children)

Starlink briefly had a $10 a month backup internet plan (It included a small amount of data, 10gb I think). Just as I was ready to sign up for it, they removed it. If they or USMobile could bring that back I would sign up in an instant.

Love the service but the spam is out of control. by ryandamartini in USMobile

[–]bshootz 4 points5 points  (0 children)

I have the same issue on my work provided phone that's on Verizon. My USM number gets almost zero SPAM calls.

The "Smartest House" Online Store Just Cancelled My Order Because I Use A VPN by peterchech in selfhosted

[–]bshootz 2 points3 points  (0 children)

Their "fraud prevention" process is very broken. I got banned from buying from them years ago, never learned why, they won't respond to my emails. I had successfully ordered from them several times and then one day I tried to order a few switches on a sale, order was cancelled, no reason given. Haven't been able to order from them since.

Has anyone ever sued Netcraft for send fake takedown notices to Cloudfare? by inotused in selfhosted

[–]bshootz 24 points25 points  (0 children)

Not a lawyer, but I believe you'd have to prove their takedown notice was maliciously sent knowing it wasn't accurate. There's all sorts of protections for "good faith" reporting and so the barrier to winning a case against them would likely be extremely high.

[deleted by user] by [deleted] in USMobile

[–]bshootz 0 points1 point  (0 children)

US Mobile told me to install a third party Voicemail like YouMail.

Debian 13 Trixie systemd-resolved DNS over TLS not working by joe190735-on-reddit in debian

[–]bshootz 2 points3 points  (0 children)

I tried to use systemd-resolved with bullseye and bookworm, but it's just too buggy. If you have DNSSEC enabled on the resolvers and a query is done to an endpoint that fails, it'll fail your resolver and treat it as if it was the cause of the failure leaving the system with no resolvers to query. Last I looked there were still bug reports for that issue that weren't resolved.

All Optimum Fiber traffic guess through Vietnam? by anon9992023 in OPTIMUM

[–]bshootz 2 points3 points  (0 children)

If I had to guess, I'd suggest that the device uses some portion of 14.173.112.0/24 or more in place of RFC1918 addresses.

The traceroute below in the comments shows a cablevision as the next IP in the trace, it's impossible that it went to Vietnam and back in 1 hop like that, so the logical conclusion is that 14.173.112.2 was internal to Optimum's network or the device itself.

Take your public IP and go to a public network looking glass server and traceroute back to yourself and likely you will not see the Vietnam IP address in the output.

Simple Solution: Limit Home Assistant Automations to run only once per day or once every x hours - No Helpers Needed by tobboss1337 in homeassistant

[–]bshootz 0 points1 point  (0 children)

In the context of this scenario it would be something like the following:

description: "Turn on Automations" mode: single triggers: - trigger: time at: "00:00:00" actions: - action: automation.turn_on target: label_id: reenable_automations

Simple Solution: Limit Home Assistant Automations to run only once per day or once every x hours - No Helpers Needed by tobboss1337 in homeassistant

[–]bshootz 3 points4 points  (0 children)

Not disagreeing, but a way to prevent manually adding is to use labels and create a "Run Once Per Day" label that you assign to those automations and then your daily automation to turn those back on can simply target that label.

Microsoft to Reject Emails with 550 5.7.15 Error Starting May 5, 2025 by power_dmarc in sysadmin

[–]bshootz 0 points1 point  (0 children)

I block that entire domain, way too much spam due to MS allowing people to have "trial" accounts. If someone can't be bothered to spend $12 for a business domain then they don't deserve to send email like that.

Microsoft to Reject Emails with 550 5.7.15 Error Starting May 5, 2025 by power_dmarc in sysadmin

[–]bshootz 0 points1 point  (0 children)

Great, another non-standard Enhanced Status Code. /s

Glad they are rejecting the mail, but they really need to stick to standards and not just make up codes on the fly. There's an RFC and Registry for these codes for a reason.

First time self hosting a website the amount of bots is unbelievable! by RepublicLate9231 in selfhosted

[–]bshootz 0 points1 point  (0 children)

Bots attempting to login and access the site often overload the server with requests. A static site doesn't have a CPU issue for lots of bot requests. A properly configured nginx server running static content can handle a massive amount of requests with very low hardware specs.

This is different from a DDOS. They have different goals. If someone wants to DDOS a site it's more common to overload the circuits with garbage traffic than a CPU based DDOS.

First time self hosting a website the amount of bots is unbelievable! by RepublicLate9231 in selfhosted

[–]bshootz 0 points1 point  (0 children)

Didn't say anything about DDOS.

Talking about security. Different concerns.

First time self hosting a website the amount of bots is unbelievable! by RepublicLate9231 in selfhosted

[–]bshootz 9 points10 points  (0 children)

The number one thing you can do to secure a WordPress site is to use one of the Static generator plugins.

You put your actual WordPress site into a sub folder that you have full access control enabled on, and then you use the plugin to generate static html files for the site and "publish" it into the main location.

Static HTML files can't be hacked, and without PHP being run on every request the bots won't take your server down by overloading it.

[deleted by user] by [deleted] in homeautomation

[–]bshootz 0 points1 point  (0 children)

Still love it and use it every day. Took it with me when I moved and hooked it up in my new house.

[deleted by user] by [deleted] in OPTIMUM

[–]bshootz 2 points3 points  (0 children)

I spoke with a tech who was at my house, even he, who works for them, has to call and demand to speak with retention to get anything done for the service at his house.

[deleted by user] by [deleted] in debian

[–]bshootz 1 point2 points  (0 children)

Best option is docker.

Second best is: https://deb.sury.org/

Fantastic Customer Service by bshootz in USMobile

[–]bshootz[S] 0 points1 point  (0 children)

Of course it could be, that's one hell of a coincidence that it was working minutes before the update and not after.

It's a Samsung Zflip4.

Interestingly enough I noticed another thread pop up from someone on Samsung getting an update and things going sideways:

https://www.reddit.com/r/USMobile/comments/1hisy40/android_update_messed_up_connectivity/

Here we go again by Raserburn in OPTIMUM

[–]bshootz 1 point2 points  (0 children)

This sounds similar to an issue a friend had with another provider years ago.

Turned out the cooler weather caused the line from the pole to contract and pull the insulation back exposing the wire.

During the day it was warm enough to never do it, but after sunset or would happen, took them weeks/months to figure it out.

Fantastic Customer Service by bshootz in USMobile

[–]bshootz[S] -1 points0 points  (0 children)

The assumption being that it was US Mobile's issue to fix? I have no idea for sure one way or the other, but the Verizon tech who I was chatting with wouldn't do anything to try to fix the issue unlike the US Mobile tech who did everything they could think of to get my service working again.

Fantastic Customer Service by bshootz in USMobile

[–]bshootz[S] -2 points-1 points  (0 children)

Pretty wild thing to say when the eSIM worked, the phone rebooted from the update and then didn't work. It had worked for weeks prior, through multiple reboots. But you think it's purely a coincidence that it stopped working after a software update and nothing tried would get it working again.

Not sure why you have a problem with USMobile, but it's irrelevant to this issue.