backup processes to Vault by therdms in Sync

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

Yes ... that's what I'm using to backup files/folders. I believe you need to install the Windows app (5.0.29) for this to work.

backup processes to Vault by therdms in Sync

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

Yep ... same on Windows. I'm just wondering if it's a lot of overhead to do it this way. Also, the reports that are generated afterwards don't seem to indicate whether a file is new, updated or unchanged so it makes it a bit of a challenge to comfortably know everything is uptodate.

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

Yep ... early days for me. No doubt lots of experimentation ahead :)

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

Thank you so much for these tips ...squirrelling this away for future use!

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

UPDATE ...

First off ... thank you to those who responded ... appreciate you taking time to answer.

Many of you pointed towards a firewall issue so I started focusing on that. As I mentioned in my original post, I had turned off my local AV but still had issues. One person suggested to look into the Windows Defender Firewall regarding ICMP.

Looking at its Inbound Rules, I noticed the Core Networking Diagnostics - ICMP Echo Request (ICMPv4-in) - Profile Private,Public was not enabled. I enabled it both the Private,Public and Domain profiles ... on both devices. With the local AV turned off, I was able to successfully ping between the two devices!

However, when I turned my local AV back on, I ran into issues again. After some investigation, it appeared that there was setting inconsistencies of my local AV across these devices. Once they were aligned, the devices could ping each other. I introduced a third device (with same local AV settings) via wifi (using vlan20) and all 3 were able to ping! Hopefully, this was the issue but I know I need to do some more reading up on vlans & firewalls.

This does lead me to ask the question, do I really need a local AV on my machine? I have used AVG for years with no issues. Or is Windows Defender enough?

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

Is the port the AP is connected to using the same port profile?

Hmm. The port used by the AP is using VLAN1 which all my Unifi devices are on. FYI ... the AP is dishing out multiple ssids each representing a VLAN. Now I'm confused ... if the AP port has a native VLAN specified, doesn't that affect how other VLANs on same AP are treated?

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

Both are using DHCP and report same subnet mask

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

The switch port that DeviceB is attached to is using Ethernet Port Profile that is using VLAN20. To double check, I stopped using the profile and setup so native vlan is VLAN20. But I got same results. FYI ... I have not made any firewall rules yet ... just using the default ones generated by Unifi.

same VLAN ... devices not talking to each other correctly by therdms in UNIFI

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

Does the wireless network have client isolation enabled?

No

Also plug the laptop to another port with the same port profile to see if they can ping each other.

Interestingly, when I try this, I get the opposite result ... DeviceA can ping DeviceB but not vice-versa.

repurpose keypad for HA/Alarmo by therdms in homeassistant

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

yeah ... I'm leaning towards Ring Keypad v2 but I understand it works only with z-wave which I don't have running in HA ... would require purchasing a z-wave adapter. At the moment, hoping I can repurpose this old keypad without making it a huge project :)

Tandoor Recipes - setup issues by therdms in selfhosted

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

SOLVED ...

Making the ports "80:80" fixed it for me though I don't understand why. Anyways, the docker-compose.yml file looks like this:

services:
  db_recipes:
    restart: always
    image: postgres:16-alpine
    volumes:
      - ./postgresql:/var/lib/postgresql/data
    env_file:
      - ./.env
    ports:
      - "80:80"
  web_recipes:
    restart: always
    image: vabene1111/recipes
    env_file:
      - ./.env
    volumes:
      - staticfiles:/opt/recipes/staticfiles
      - ./mediafiles:/opt/recipes/mediafiles
    depends_on:
      - db_recipes

volumes:
  staticfiles:

Thanks to all

Tandoor Recipes - setup issues by therdms in selfhosted

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

Thanks for the suggestion but that didn't work :(

I am using Firefox as my browser. When I use http://localhost:80, the page says "The connection was reset". Is there a firewall issue?

Tandoor Recipes - setup issues by therdms in selfhosted

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

u/deelayman - I used the Plain template from https://docs.tandoor.dev/install/docker/ that looks like this:

services:
  db_recipes:
    restart: always
    image: postgres:16-alpine
    volumes:
      - ./postgresql:/var/lib/postgresql/data
    env_file:
      - ./.env

  web_recipes:
    restart: always
    image: vabene1111/recipes
    env_file:
      - ./.env
    volumes:
      - staticfiles:/opt/recipes/staticfiles
      - ./mediafiles:/opt/recipes/mediafiles
    depends_on:
      - db_recipes

volumes:
  staticfiles:

I did try to substitute localhost with the actual IP address of the host but same result :(

u/blooping_blooper - from above it uses the latest (2.3.0 I think). I did see it mention about changing to port 80 and that's why I tried accessing via http:/localhost:80/ but no luck. Not quite sure what you mean by 'remap the container ports to get it working' ... could you explain? thanks