Jack Doan

Results 24 comments of Jack Doan

I've got offsets for enabling/disabling the beeper too, but IDK how to wire that up to sysfs. A `SENSOR_DEVICE_ATTR_RW`?

I was thinking something like `beep_enable`, which also has precedent. For reference, here are the alarms, starting at offset 0x320 in the control packet: ``` struct d5next_alarms { bool vcc12;...

the alarms can be configured at the same offset (I think, need to test more) with these bit-positions: ``` enum d5next_alarm_config_index { ALARM_CFG_FLOW_0 = 0x0, ALARM_CFG_FLOW_1 = 0x1, ALARM_CFG_WATER_TEMP =...

Is there somewhere where I can read about the maintainers' thoughts on fan control? The way this is written, it looks like fan control is encouraged in https://www.kernel.org/doc/html/latest/hwmon/sysfs-interface.html. Another instance...

Hi @maggie44! I'm still reading through this, but I'm really curious about your use-case. How many CAs do you typically need to load (any why so many?) One of the...

There's a couple questions here, so I'm gonna try to pull them out and address them one-by-one: > The only log messages I can see are msg="Failed to write outgoing...

Hi @timteka! Can you post the contents of the CAs (`nebula-cert -print -path your-ca.crt`), some certificates signed with each of them, and the config files of the hosts that failed...

@timteka I'm not sure if this is relevant to your problem, but there is a typo in your config: ``` addvertise_addr: - ":42420" ``` should be: ``` advertise_addrs: - ":42420"...

Hi @ibrahimu8, thanks for the contribution! Limits are usually a good thing, but in this case I think it's important to point out that if an attacker is able to...

It does! Use a pkcs11 URL instead of a path to a public key. For example: ``` pki: ca: /etc/nebula/cfg/ca.crt cert: /etc/nebula/cfg/host.crt key: pkcs11:object=nebula;token=my_nebula_key;type=private?module-path=/usr/lib/softhsm/libsofthsm2.so ``` Please let me know if...