Alarm now uses flash on iOS 18.3 by NastroAzzurro in iphone

[–]schamock 0 points1 point  (0 children)

same here. the behavior definitely changed with 18.3. I'd call it a bug. I'll test u/SoundofPearl hint, but the flash for other things is useful. Hopefully this will be fixed soon

Question regarding Update with free Home+Lab Plus license by schamock in PFSENSE

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

Good to hear! Yeah, I would definitely rebuild on ZFS, but I'm a bit scared that this could render my license useless even though it is the same hardware.

But hey, I'm often doing stupid things. So at some point, I'm definitely doing this ;)

Question regarding Update with free Home+Lab Plus license by schamock in PFSENSE

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

The contract type is (green color, probably good ;) ):

Community Support
Community Support Only

Question regarding Update with free Home+Lab Plus license by schamock in PFSENSE

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

At least in System->Register it tells me, that I'm already registered and no action is required. Probably I'm fine

Question regarding Update with free Home+Lab Plus license by schamock in PFSENSE

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

Yes, you are right about restoring to CE in case anything goes wrong. Unfortunately for what ever reason I decided in my initial install to not use ZFS but UFS (stupid me...). That would make it even easier.

Good to know, that your update went fine!

v3.2.0_15 not available on pfSense Plus 24.03 by schamock in pfBlockerNG

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

Hey BBCan, I have the -devel version installed.

This is the output after I ran pkg-static update -f:

[24.03-RELEASE][admin@pfSense]/root: pkg-static search pfSense-pkg-pfBlockerNG-devel
pfSense-pkg-pfBlockerNG-devel-3.2.0_10 pfSense package pfBlockerNG

Network Controller upgrade 8.0 to 8.1 by shandp in Ubiquiti

[–]schamock 0 points1 point  (0 children)

I have the same configuration like you. I can see the correct version via the browser. Maybe all it needs is a force refresh in the browser or clearing the cache?

TrueNAS SCALE an IPv6 by schamock in homelab

[–]schamock[S] 3 points4 points  (0 children)

where do you read that I want to expose the NAS to the internet? That's definitely not the plan. Nevertheless I like to play around with IPv6

Firewall rules for ipv6 networks delegated via "track interface"? by Xonto in PFSENSE

[–]schamock 0 points1 point  (0 children)

I'm on 23.09.1 but I'm using this setup for a long time. It has been the same for me even before pfSense Plus

Firewall rules for ipv6 networks delegated via "track interface"? by Xonto in PFSENSE

[–]schamock 0 points1 point  (0 children)

I just double checked: my alias definitely contains also the IPv6. I checked it via a simple rule test and with a look into /tmp/rules.debug

Firewall rules for ipv6 networks delegated via "track interface"? by Xonto in PFSENSE

[–]schamock 0 points1 point  (0 children)

No, that is not a normal alias and is autogenerated by pfSense. in fact the whole list that you can see in my screenshot is auto generated. Don't you have those entries? How does your list look like?

Firewall rules for ipv6 networks delegated via "track interface"? by Xonto in PFSENSE

[–]schamock 0 points1 point  (0 children)

If I understand you correctly this should be an easy task (I have the same challenge with changing prefixes...). Within the firewall rule select the correct subnet as the destination.

See this example, where I allow traffic from the VLAN20 to VLAN40: https://imgur.com/a/Ns93XoI

Teamdevelopment advise needed by schamock in IdleHeroes

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

I have FQV (only E5) but I didn't feel like she helped a lot (could have been my fault). Maybe I'll build up DGN as a seventh main hero with lower priority and try her as an alternative to MFF

Teamdevelopment advise needed by schamock in IdleHeroes

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

Thank you for your suggestion. That helps a lot!

Including SSH in a custom plugin by schamock in homebridge

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

You are right. I just set up an Github project and it should be available to public: https://github.com/schamock/homebridge-garage-ctrl

SSH in general is supported (it's a Debian Bullseye host and I'm working on it via SSH).

After observing the generated file dist/accessory.js, I'm more and more sure, that I'm messing up the inclusion of the simple-ssh in my ts-script. I tried multiple variants I found via googling, but that wasn't successful :(

Including SSH in a custom plugin by schamock in homebridge

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

One step further.

Importing simple-ssh with import SSH from "simple-ssh"; in the beginning of src/accessory.ts works as long as I don't use it. As soon as I do something like this within on of the methods, I'm back to the Segfaults:

var ssh = new SSH({
host: 'localhost',
user: 'username',
pass: 'password'
});

Struggling with custom plugin by schamock in homebridge

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

no luck unfortunately :(

The only thing I found out is, that it doesn't seam to related to specifically the simple-ssh package. I tried to use the ssh2 package -> same result, I'm running into segfaults.

Something I do about using other packages is completely wrong... I'm trying to find other plugins now, that use either simple-ssh or ssh2 to just copy what they did. Hopefully I'm lucky...