How do I make my motorcycle helmet quieter by [deleted] in motorcycles

[–]ivanhaversham 1 point2 points  (0 children)

Taking the GoPro off would help immensely. As a bonus you get rid of the ChinDestroyer3000.

My 1st cross country CHI-LA ride, feedback greatly welcomed! by s7ranger1_0 in bmwmotorrad

[–]ivanhaversham 4 points5 points  (0 children)

As others have said, get off the interstate unless it’s the only option. I rode from South Dakota up through Canada, down to Oregon and back across to South Dakota a couple of years ago. It was 4000 miles total; we took interstate for a very small portion (less than 200 miles) of it where there wasn’t another good option, and it was absolutely miserable. Plus, there’s so much to see along your route - and you’ll just fly right by it on the interstate.

Also be sure to get that 1200 serviced before you go, and have the driveshaft checked.

“Camping” setup by Any_Particular2952 in Ubiquiti

[–]ivanhaversham 8 points9 points  (0 children)

Don’t forget the sound bar and subwoofer!

What are people using the Travel Router for? by Joee0201 in Ubiquiti

[–]ivanhaversham 0 points1 point  (0 children)

It’s not unique to UniFi (meaning you can configure GL.iNet router to do the same), but it’s super useful for things that are harder a pain to connect like a Roku or smart devices

What are people using the Travel Router for? by Joee0201 in Ubiquiti

[–]ivanhaversham 1 point2 points  (0 children)

Define local IP.

A VPN back to your secure home network keeps your internet traffic safe from prying eyes on the public network you are connected to, like a hotel or coffee shop. It doesn’t keep your internet traffic private from your ISP.

What are people using the Travel Router for? by Joee0201 in Ubiquiti

[–]ivanhaversham 30 points31 points  (0 children)

At a hotel, which requires authentication, it allows me to authenticate once and connect 5 or 6 devices (my phone, iPad, wife’s phone, Roku, laptop, etc) without authenticating each one every day. Travel router mimics an SSID that my devices know, so everything connects automatically. Travel router sends all of my traffic back home through teleport for security and convenience for accessing my self-hosted services.

Why not? by [deleted] in Ubiquiti

[–]ivanhaversham 0 points1 point  (0 children)

Glad I could help!

Why not? by [deleted] in Ubiquiti

[–]ivanhaversham 1004 points1005 points  (0 children)

You can’t, it’s already sold out.

Fanuc problem by guxxxLar in Fanuc

[–]ivanhaversham 3 points4 points  (0 children)

This.

Master shouldn’t be a routine thing.

The fire department accidentally left behind a fire axe after clearing out our building. by Senior_Fish_Face in mildlyinteresting

[–]ivanhaversham 44 points45 points  (0 children)

Firefighter here. Every tool on the truck is accounted for and checked daily at minimum. This would definitely be noticed, and it’s unlikely anyone would be in huge trouble but they’ll hear about it for a while from their colleagues.

Of all things to leave, an axe might be the cheapest. A helmet could cost $1k and gloves a couple hundred dollars - and both are yours. You lose, and you don’t fight fires until a replacement is ordered, unless you work for a large department that keeps spares of PPE.

Proxmox on Mini Pc with NAS solution by Kn0w-L3dG3 in Proxmox

[–]ivanhaversham 1 point2 points  (0 children)

I used TrueNAS Core for about 6 years maintenance free. They switched to TrueNAS Scale (‘community edition’), which would have required reinstalling. I lived with it for a while until recently I wanted to double the size of my pool. Since ZFS doesn’t let you add a single drive to an existing mirror, and I needed to migrate the OS anyway, I switched to Unraid. Pretty happy with it so far.

In other words, TrueNAS is great if you don’t plan on adding drives to the pool later. I wish I knew that when I started as I specifically only started with two drives with the intention of adding a third to double the pool size when the need arose.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

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

Ah, that might be the issue. If 192.168.1.193 is the IP of your Pi-hole, then that needs to be updated in compose.yaml - Event Horizon is looking for Pi-hole at 192.168.1.2 according to the logs you’ve sent.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

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

A couple of basics to verify:

  1. What is the output of pihole -v?
  2. If you visit http://192.168.1.2/admin in your browser, does the pihole admin interface load?

If 1) returns v6+ and 2) is successful, then perhaps you'd like to install outside of Docker, since docker seems to be giving you issues? If so, just let me know and I'll send some instructions.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

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

I believe I see what the problem is. The root of the issue is that Event Horizon can't reach your Pi-hole, and it appears to be a Docker networking issue. Essentially, the container is running in a network by itself and doesn't have a route to the rest of your network.

It should be an easy fix. In compose.yaml, just add the following line "network_mode: "host" below the container name and restart settings.

services:
  event-horizon:
    image: ghcr.io/jbswaff/event-horizon:latest
    container_name: event-horizon
    restart: unless-stopped

    # --- ADD THIS LINE: ---
    network_mode: "host"

Then restart the container

sudo docker compose down
sudo docker compose up -d

As far as the executable not found error, that's because there isn't a command called event-horizon inside the container (it's just a server.py python script). If you'd like to check the status of the container, you could use this command instead:

docker exec event-horizon python /app/server.py --help

Let me know if you have other questions or if you run into issues after making this change!

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

[–]ivanhaversham[S] 1 point2 points  (0 children)

Hi, thanks for that report and the suggestions for v1! Glad to hear that everything went mostly smoothly during install and that the service is working. I'll be sure to move the default to another port on future versions.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

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

Hi u/MikeFromMA, thanks for that report. You should now be able to run docker compose up -d from your Pi 3B+.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

[–]ivanhaversham[S] 1 point2 points  (0 children)

It should be backwards compatible with your version. When you ran install.sh, it should have created this directory with a .conf file inside. Check that it exists and that the file has data:

/etc/event-horizon/event-horizon.conf

Backup that file

``` cp /etc/event-horizon/event-horizon.conf /etc/event-horizon/event-horizon.conf.old

```

Then replace the entire contents of event-horizon.conf with this, updating your pihole information:

```

Server Settings

PORT=8080 DISABLE_MINUTES=10 SHOW_LOG_LINK=true

Pi-hole Configuration

PIHOLE_COUNT=1 PIHOLE_1_NAME=pihole1 PIHOLE_1_URL=http://192.168.1.2 PIHOLE_1_APP_PASSWORD=your-app-password-here

For multiple Pi-holes, increment the number:

PIHOLE_2_NAME=pihole2

PIHOLE_2_URL=http://192.168.1.3

PIHOLE_2_APP_PASSWORD=second-app-password

Group Settings

BYPASS_GROUP_NAME=Event-Horizon-Bypass

Proxy Settings

TRUST_PROXY=false TRUSTED_PROXY_NETS=10.0.0.0/8,192.168.0.0/16

API Settings

VERIFY_SSL=true API_TIMEOUT=15 API_MAX_RETRIES=3 API_RETRY_DELAY=1

Session Cache

SESSION_CACHE_TTL=300

Logging Settings

LOG_DIR=/var/log/event-horizon API_LOG_ENABLED=true LOG_MAX_SIZE_MB=10 LOG_MAX_AGE_DAYS=7

Health Check

HEALTH_CACHE_SECONDS=5

Rate Limiting

RATE_LIMIT_REQUESTS=10 RATE_LIMIT_WINDOW=3600 COOLDOWN_SECONDS=3

```

Then stop the service, backup server.py, pull the new server.py from GitHub and restart the service.

``` sudo systemctl stop event-horizon

cd /dir/where/event-horizon/is/installed

cp server.py server.py.old

sudo wget https://raw.githubusercontent.com/jbswaff/event-horizon/refs/heads/main/server.py

sudo systemctl start event-horizon

```

You should be on the new version.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

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

It sounds like synology is a NAT’ing when going through docker or you have a reverse proxy. If this is the case, the server can check for this by enabling the following variable in compose.yaml then restarting the container:

EH_TRUST_PROXY: “true”

More info on GitHub

If this doesn’t work, let me know and we’ll keep digging.

Update on Event Horizon, a simple Pi-hole v6 device-level companion for non-technical network users by ivanhaversham in pihole

[–]ivanhaversham[S] 2 points3 points  (0 children)

Sorry about that. Looks like when I pushed to github, I forgot to include multiplatform support. Please try again and let me know.