[GH-ISSUE #25] no CPU temp on DS413 / Freescale qoriq CPU #4

Open
opened 2026-03-04 19:25:39 +03:00 by kerem · 13 comments
Owner

Originally created by @pinkycz on GitHub (Jan 14, 2026).
Original GitHub issue: https://github.com/007revad/Synology_CPU_temperature/issues/25

Hi, found your project as I'm desperately tryng to get CPU temp off my DS413 with DSM6.2 running FREESCALE QorIQ P1022

There is no coretemp under /sys/bus/platform/devices/ unfortunately, wunning the sxcript I only get

root@Uboci_NAS:/volume1/scripts$ bash syno_cpu_temp.sh
Synology_CPU_temp v2.3.9
DS413-j DSM 6.2.4-25556-8
synology_qoriq_413
Logging to /volume1/scripts/logs
syno_cpu_temp.sh: line 433: show__temps: command not found
root@Uboci_NAS:/volume1/scripts$

root@Uboci_NAS:/proc$ cat cpuinfo
processor       : 0
cpu             : e500v2
clock           : 1066.666000MHz
revision        : 5.1 (pvr 8021 1151)
bogomips        : 133.33

processor       : 1
cpu             : e500v2
clock           : 1066.666000MHz
revision        : 5.1 (pvr 8021 1151)
bogomips        : 133.33

total bogomips  : 266.66
timebase        : 66666667
platform        : P1022 DS
model           : fsl,P1022
Memory          : 1024 MB
root@Uboci_NAS:/proc$

even when I try modify line 276 so that Freescale with Intel Style is detected for e500v2, it does not error, but shows nothing.. looks like on this DSM the CPU temp is not available by any of the methods used?

Originally created by @pinkycz on GitHub (Jan 14, 2026). Original GitHub issue: https://github.com/007revad/Synology_CPU_temperature/issues/25 Hi, found your project as I'm desperately tryng to get CPU temp off my DS413 with DSM6.2 running FREESCALE QorIQ P1022 There is no coretemp under /sys/bus/platform/devices/ unfortunately, wunning the sxcript I only get ``` root@Uboci_NAS:/volume1/scripts$ bash syno_cpu_temp.sh Synology_CPU_temp v2.3.9 DS413-j DSM 6.2.4-25556-8 synology_qoriq_413 Logging to /volume1/scripts/logs syno_cpu_temp.sh: line 433: show__temps: command not found root@Uboci_NAS:/volume1/scripts$ root@Uboci_NAS:/proc$ cat cpuinfo processor : 0 cpu : e500v2 clock : 1066.666000MHz revision : 5.1 (pvr 8021 1151) bogomips : 133.33 processor : 1 cpu : e500v2 clock : 1066.666000MHz revision : 5.1 (pvr 8021 1151) bogomips : 133.33 total bogomips : 266.66 timebase : 66666667 platform : P1022 DS model : fsl,P1022 Memory : 1024 MB root@Uboci_NAS:/proc$ ``` even when I try modify line 276 so that Freescale with Intel Style is detected for e500v2, it does not error, but shows nothing.. looks like on this DSM the CPU temp is not available by any of the methods used?
Author
Owner

@007revad commented on GitHub (Jan 14, 2026):

Try inserting this after line 278

elif grep e500v2 /proc/cpuinfo >/dev/null; then
    vendor="Freescale"
    style="intel"

If still nothing change the style="intel" to style="realtek"

elif grep e500v2 /proc/cpuinfo >/dev/null; then
    vendor="Freescale"
    style="realtek"

If still nothing change the style="realtek" to style="marvell"

elif grep e500v2 /proc/cpuinfo >/dev/null; then
    vendor="Freescale"
    style="marvell"

If still nothing we will need to dig deeper to find where the CPU temperature is hiding.

<!-- gh-comment-id:3751698619 --> @007revad commented on GitHub (Jan 14, 2026): Try inserting this after line 278 ``` elif grep e500v2 /proc/cpuinfo >/dev/null; then vendor="Freescale" style="intel" ``` If still nothing change the `style="intel"` to `style="realtek"` ``` elif grep e500v2 /proc/cpuinfo >/dev/null; then vendor="Freescale" style="realtek" ``` If still nothing change the `style="realtek"` to `style="marvell"` ``` elif grep e500v2 /proc/cpuinfo >/dev/null; then vendor="Freescale" style="marvell" ``` If still nothing we will need to dig deeper to find where the CPU temperature is hiding.
Author
Owner

@pinkycz commented on GitHub (Jan 15, 2026):

unfortunately none of these attempts detect anything on thi system. I think the core bit fetching it from the system in your script is towards the end here

if [[ $dsm -ge "6" ]]; then
    if [[ $style == "realtek" ]]; then
        show_"${style}"_temps "/sys/class/thermal/thermal_zone0"
    elif [[ $style == "marvell" ]]; then
        show_"${style}"_temps "/sys/class/hwmon/hwmon0/device"
    else
        if [[ -f "/sys/class/hwmon/hwmon0/device/temp2_input" ]]; then
            device="/device"
        fi
        show_"${style}"_temps "/sys/class/hwmon/hwmon" "$device"
    fi
else
    echo "Unknown or unsupported DSM version ${dsm}!" |& tee -a "$Log_File"
fi

but on this system
/sys/class/ has no thermal subdir
sys/class/hwmon exists but no subdir there either
sys/class/hwmon does not exist either

so none of the common places seem to exist on this unit.
The only way I seem to be able to get System/CPU temp is via Syno.DSM.Info but that sucks synce that requires extra authentication to obtain something there should be somewhere... I just can't find it anywhere on the system dirctly available.

<!-- gh-comment-id:3756258073 --> @pinkycz commented on GitHub (Jan 15, 2026): unfortunately none of these attempts detect anything on thi system. I think the core bit fetching it from the system in your script is towards the end here ``` if [[ $dsm -ge "6" ]]; then if [[ $style == "realtek" ]]; then show_"${style}"_temps "/sys/class/thermal/thermal_zone0" elif [[ $style == "marvell" ]]; then show_"${style}"_temps "/sys/class/hwmon/hwmon0/device" else if [[ -f "/sys/class/hwmon/hwmon0/device/temp2_input" ]]; then device="/device" fi show_"${style}"_temps "/sys/class/hwmon/hwmon" "$device" fi else echo "Unknown or unsupported DSM version ${dsm}!" |& tee -a "$Log_File" fi ``` but on this system /sys/class/ has no thermal subdir sys/class/hwmon exists but no subdir there either sys/class/hwmon does not exist either so none of the common places seem to exist on this unit. The only way I seem to be able to get System/CPU temp is via Syno.DSM.Info but that sucks synce that requires extra authentication to obtain something there should be somewhere... I just can't find it anywhere on the system dirctly available.
Author
Owner

@007revad commented on GitHub (Jan 15, 2026):

What about ls /sys/bus/platform/devices? Is there any coretemp, coretemp.0 or coretemp.1 directories?

<!-- gh-comment-id:3756515904 --> @007revad commented on GitHub (Jan 15, 2026): What about `ls /sys/bus/platform/devices`? Is there any coretemp, coretemp.0 or coretemp.1 directories?
Author
Owner

@pinkycz commented on GitHub (Jan 15, 2026):

Negative, empty too.
Discovered only /tmp/.syno_temp_cache actually storing the temperature,
just overall system temp, the same that is shown in Info Centre, but ie. no
details per core.
Cache seem to be updated every 5 mins or so so that will have to do for my
purpose and I can avoid API calls to get the same info.

On Thu, 15 Jan 2026, 19:29 Dave Russell, @.***> wrote:

007revad left a comment (007revad/Synology_CPU_temperature#25)
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756515904

What about ls /sys/bus/platform/devices? Is there any coretemp,
coretemp.0 or coretemp.1 directories?


Reply to this email directly, view it on GitHub
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756515904,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/BBGNARMDYMONK3FXL5JHMNT4G7TANAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJWGUYTKOJQGQ
.
You are receiving this because you authored the thread.Message ID:
@.***>

<!-- gh-comment-id:3756740162 --> @pinkycz commented on GitHub (Jan 15, 2026): Negative, empty too. Discovered only /tmp/.syno_temp_cache actually storing the temperature, just overall system temp, the same that is shown in Info Centre, but ie. no details per core. Cache seem to be updated every 5 mins or so so that will have to do for my purpose and I can avoid API calls to get the same info. On Thu, 15 Jan 2026, 19:29 Dave Russell, ***@***.***> wrote: > *007revad* left a comment (007revad/Synology_CPU_temperature#25) > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756515904> > > What about ls /sys/bus/platform/devices? Is there any coretemp, > coretemp.0 or coretemp.1 directories? > > — > Reply to this email directly, view it on GitHub > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756515904>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/BBGNARMDYMONK3FXL5JHMNT4G7TANAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJWGUYTKOJQGQ> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Author
Owner

@007revad commented on GitHub (Jan 15, 2026):

I can work with that.

What does this return?

cat /tmp/.syno_temp_cache
<!-- gh-comment-id:3756783254 --> @007revad commented on GitHub (Jan 15, 2026): I can work with that. What does this return? ``` cat /tmp/.syno_temp_cache ```
Author
Owner

@pinkycz commented on GitHub (Jan 15, 2026):

I need to run it as sudo but it is just plain text number representing
temperature there
sudo cat /tmp/.syno_temp_cache
Password:
13

It is VERY cold, I know, it runs in a remote unheated location, last week
when temp on the outside of that building reached -12 it stopped
responding, hence my temp monitoring effort, lol.

čt 15. 1. 2026 v 20:44 odesílatel Dave Russell @.***>
napsal:

007revad left a comment (007revad/Synology_CPU_temperature#25)
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756783254

I can work with that.

What does this return?

cat /tmp/.syno_temp_cache


Reply to this email directly, view it on GitHub
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756783254,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/BBGNARPZEDPHEUV5WGBTQG34G73Z5AVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJWG44DGMRVGQ
.
You are receiving this because you authored the thread.Message ID:
@.***>

<!-- gh-comment-id:3756982310 --> @pinkycz commented on GitHub (Jan 15, 2026): I need to run it as sudo but it is just plain text number representing temperature there sudo cat /tmp/.syno_temp_cache Password: 13 It is VERY cold, I know, it runs in a remote unheated location, last week when temp on the outside of that building reached -12 it stopped responding, hence my temp monitoring effort, lol. čt 15. 1. 2026 v 20:44 odesílatel Dave Russell ***@***.***> napsal: > *007revad* left a comment (007revad/Synology_CPU_temperature#25) > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756783254> > > I can work with that. > > What does this return? > > cat /tmp/.syno_temp_cache > > — > Reply to this email directly, view it on GitHub > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3756783254>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/BBGNARPZEDPHEUV5WGBTQG34G73Z5AVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJWG44DGMRVGQ> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Author
Owner

@007revad commented on GitHub (Jan 15, 2026):

13 does seem very cold for a CPU. But a quick google shows that the Freescale e500v2 CPU has a minimum operating temperature of 0°C (or -40°C for the industrial CPUs).

I'm curious why scemd.xml did not contain the shutdown temp. Does this return anything?

sudo cat /usr/syno/etc.defaults/scemd.xml | grep 'shutdown' | grep 'cpu'
<!-- gh-comment-id:3757170819 --> @007revad commented on GitHub (Jan 15, 2026): 13 does seem very cold for a CPU. But a quick google shows that the Freescale e500v2 CPU has a minimum operating temperature of 0°C (or -40°C for the industrial CPUs). I'm curious why scemd.xml did not contain the shutdown temp. Does this return anything? ``` sudo cat /usr/syno/etc.defaults/scemd.xml | grep 'shutdown' | grep 'cpu' ```
Author
Owner

@007revad commented on GitHub (Jan 15, 2026):

Also can you try this version: https://github.com/007revad/Synology_CPU_temperature/releases/tag/v2.3.10

<!-- gh-comment-id:3757229077 --> @007revad commented on GitHub (Jan 15, 2026): Also can you try this version: https://github.com/007revad/Synology_CPU_temperature/releases/tag/v2.3.10
Author
Owner

@pinkycz commented on GitHub (Jan 16, 2026):

Yes, it is rather cold, I will have to think about housing the unit better

  • it is a remote location in mountains and conditions can be harsh there.
    As for the CPU shutdown temperature, that's negative, there appears to be
    none set specifically referring to CPU... I read the below that system
    shutdown temp is 65?. My full scemd.xml below

sudo cat /usr/syno/etc.defaults/scemd.xml

0 45 51 60 70
                    <temperature fan_speed="21%40hz"

action="NONE">0
45
55
65
</fan_config>
<fan_config period="20" threshold="6" type="DUAL_MODE_LOW"
hibernation_speed="ULTRA_LOW">
<disk_temperature fan_speed="12%40hz"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="21%40hz"
action="NONE">46</disk_temperature>
<disk_temperature fan_speed="35%40hz"
action="NONE">51</disk_temperature>
<disk_temperature fan_speed="60%40hz"
action="NONE">56</disk_temperature>
<disk_temperature fan_speed="99%40hz"
action="NONE">61</disk_temperature>
<disk_temperature fan_speed="99%40hz"
action="SHUTDOWN">70</disk_temperature>

                    <temperature fan_speed="12%40hz"

action="NONE">0
46
58
65
</fan_config>

<fan_config hw_version="Synology-DX5" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="FULL">
<disk_temperature fan_speed="FULL"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX5" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="FULL">
<disk_temperature fan_speed="FULL"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX510" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX510" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1211" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">58</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1211" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">58</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1211" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1211" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1211rp" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1211rp" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX513" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX513" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="MIDDLE"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1213sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1213sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX213" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="ULTRA_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="LOW"
action="NONE">46</disk_temperature>
<disk_temperature fan_speed="VERY_HIGH"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="ULTRA_HIGH"
action="NONE">58</disk_temperature>
<disk_temperature fan_speed="ULTRA_HIGH"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX213" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="ULTRA_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="LOW"
action="NONE">46</disk_temperature>
<disk_temperature fan_speed="VERY_HIGH"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="ULTRA_HIGH"
action="NONE">58</disk_temperature>
<disk_temperature fan_speed="ULTRA_HIGH"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1214" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1214" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1214rp" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1214rp" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1217" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1217" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1217rp" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1217rp" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">52</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX415" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX415" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RXD1215sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="ULTRA_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RXD1215sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="ULTRA_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RX1216sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="ULTRA_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1216sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="ULTRA_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="HIGH"
action="NONE">45</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX1217sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RX1217sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RX2417sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RX2417sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RXD1219sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-RXD1219sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
<fan_module_config order="0" module="0"></fan_module_config>
<fan_module_config order="1" module="0"></fan_module_config>
<fan_module_config order="2" module="1"></fan_module_config>
<fan_module_config order="3" module="1"></fan_module_config>
<fan_module_config order="4" module="2"></fan_module_config>
<fan_module_config order="5" module="2"></fan_module_config>
<fan_module_config order="6" module="3"></fan_module_config>
<fan_module_config order="7" module="3"></fan_module_config>
</fan_config>

<fan_config hw_version="Synology-DX1215" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1215" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX517" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">58</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX517" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">58</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX418" period="20" threshold="6"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX418" period="20" threshold="6"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX6021sas" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-RX6021sas" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-FX2421" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-FX2421" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW">
<disk_temperature fan_speed="VERY_LOW"
action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature>
<disk_temperature fan_speed="FULL"
action="ALERT_LED">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">58</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1221" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1221" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1215II" period="300" threshold="2"
type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

<fan_config hw_version="Synology-DX1215II" period="300" threshold="2"
type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW">
<disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature>
<disk_temperature fan_speed="MIDDLE"
action="NONE">48</disk_temperature>
<disk_temperature fan_speed="FULL"
action="NONE">55</disk_temperature>
<disk_temperature fan_speed="FULL"
action="SHUTDOWN">61</disk_temperature>
</fan_config>

čt 15. 1. 2026 v 22:37 odesílatel Dave Russell @.***>
napsal:

007revad left a comment (007revad/Synology_CPU_temperature#25)
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3757229077

Also can you try this version:
https://github.com/007revad/Synology_CPU_temperature/releases/tag/v2.3.10


Reply to this email directly, view it on GitHub
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3757229077,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/BBGNARPKIXPB7SJ34TQWN6D4HAJCDAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJXGIZDSMBXG4
.
You are receiving this because you authored the thread.Message ID:
@.***>

<!-- gh-comment-id:3758879104 --> @pinkycz commented on GitHub (Jan 16, 2026): Yes, it is rather cold, I will have to think about housing the unit better - it is a remote location in mountains and conditions can be harsh there. As for the CPU shutdown temperature, that's negative, there appears to be none set specifically referring to CPU... I read the below that system shutdown temp is 65?. My full scemd.xml below sudo cat /usr/syno/etc.defaults/scemd.xml <?xml version="1.0" encoding="UTF-8"?> <scemd> <fan_config period="20" threshold="6" type="DUAL_MODE_HIGH" hibernation_speed="ULTRA_LOW"> <disk_temperature fan_speed="21%40hz" action="NONE">0</disk_temperature> <disk_temperature fan_speed="35%40hz" action="NONE">45</disk_temperature> <disk_temperature fan_speed="60%40hz" action="NONE">51</disk_temperature> <disk_temperature fan_speed="99%40hz" action="NONE">60</disk_temperature> <disk_temperature fan_speed="99%40hz" action="SHUTDOWN">70</disk_temperature> <temperature fan_speed="21%40hz" action="NONE">0</temperature> <temperature fan_speed="60%40hz" action="NONE">45</temperature> <temperature fan_speed="99%40hz" action="NONE">55</temperature> <temperature fan_speed="99%40hz" action="SHUTDOWN">65</temperature> </fan_config> <fan_config period="20" threshold="6" type="DUAL_MODE_LOW" hibernation_speed="ULTRA_LOW"> <disk_temperature fan_speed="12%40hz" action="NONE">0</disk_temperature> <disk_temperature fan_speed="21%40hz" action="NONE">46</disk_temperature> <disk_temperature fan_speed="35%40hz" action="NONE">51</disk_temperature> <disk_temperature fan_speed="60%40hz" action="NONE">56</disk_temperature> <disk_temperature fan_speed="99%40hz" action="NONE">61</disk_temperature> <disk_temperature fan_speed="99%40hz" action="SHUTDOWN">70</disk_temperature> <temperature fan_speed="12%40hz" action="NONE">0</temperature> <temperature fan_speed="60%40hz" action="NONE">46</temperature> <temperature fan_speed="99%40hz" action="NONE">58</temperature> <temperature fan_speed="99%40hz" action="SHUTDOWN">65</temperature> </fan_config> <fan_config hw_version="Synology-DX5" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="FULL"> <disk_temperature fan_speed="FULL" action="NONE">0</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX5" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="FULL"> <disk_temperature fan_speed="FULL" action="NONE">0</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX510" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX510" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1211" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">58</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1211" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">58</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1211" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1211" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1211rp" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1211rp" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX513" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX513" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="MIDDLE" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1213sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1213sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX213" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="ULTRA_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="LOW" action="NONE">46</disk_temperature> <disk_temperature fan_speed="VERY_HIGH" action="NONE">52</disk_temperature> <disk_temperature fan_speed="ULTRA_HIGH" action="NONE">58</disk_temperature> <disk_temperature fan_speed="ULTRA_HIGH" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX213" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="ULTRA_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="LOW" action="NONE">46</disk_temperature> <disk_temperature fan_speed="VERY_HIGH" action="NONE">52</disk_temperature> <disk_temperature fan_speed="ULTRA_HIGH" action="NONE">58</disk_temperature> <disk_temperature fan_speed="ULTRA_HIGH" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1214" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1214" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1214rp" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1214rp" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1217" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1217" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1217rp" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1217rp" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">52</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX415" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX415" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RXD1215sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="ULTRA_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RXD1215sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="ULTRA_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RX1216sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="ULTRA_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1216sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="ULTRA_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="HIGH" action="NONE">45</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX1217sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RX1217sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RX2417sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RX2417sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RXD1219sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-RXD1219sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> <fan_module_config order="0" module="0"></fan_module_config> <fan_module_config order="1" module="0"></fan_module_config> <fan_module_config order="2" module="1"></fan_module_config> <fan_module_config order="3" module="1"></fan_module_config> <fan_module_config order="4" module="2"></fan_module_config> <fan_module_config order="5" module="2"></fan_module_config> <fan_module_config order="6" module="3"></fan_module_config> <fan_module_config order="7" module="3"></fan_module_config> </fan_config> <fan_config hw_version="Synology-DX1215" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1215" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX517" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">58</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX517" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">58</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX418" period="20" threshold="6" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX418" period="20" threshold="6" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX6021sas" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-RX6021sas" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-FX2421" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-FX2421" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="VERY_LOW"> <disk_temperature fan_speed="VERY_LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">40</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">53</disk_temperature> <disk_temperature fan_speed="FULL" action="ALERT_LED">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">58</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1221" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1221" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1215II" period="300" threshold="2" type="DUAL_MODE_HIGH_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> <fan_config hw_version="Synology-DX1215II" period="300" threshold="2" type="DUAL_MODE_LOW_EBOX" hibernation_speed="LOW"> <disk_temperature fan_speed="LOW" action="NONE">0</disk_temperature> <disk_temperature fan_speed="MIDDLE" action="NONE">48</disk_temperature> <disk_temperature fan_speed="FULL" action="NONE">55</disk_temperature> <disk_temperature fan_speed="FULL" action="SHUTDOWN">61</disk_temperature> </fan_config> </scemd> čt 15. 1. 2026 v 22:37 odesílatel Dave Russell ***@***.***> napsal: > *007revad* left a comment (007revad/Synology_CPU_temperature#25) > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3757229077> > > Also can you try this version: > https://github.com/007revad/Synology_CPU_temperature/releases/tag/v2.3.10 > > — > Reply to this email directly, view it on GitHub > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3757229077>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/BBGNARPKIXPB7SJ34TQWN6D4HAJCDAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJXGIZDSMBXG4> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Author
Owner

@007revad commented on GitHub (Jan 16, 2026):

A shutdown temp of 65 degrees is quit low. Though Synology does like to be conservative and shutdown at lower a lower temp than the CPU specs allow for.

My Synology have the following shutdown temps:

  • DS925+ 100 degrees
  • DS1821+ 95 degrees
  • DS720+ 90 degrees
  • DS1812+ 87 degrees

Can you confirm that this command returns 65

cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '</temperature>' | uniq | cut -d">" -f2 | cut -d"<" -f1
<!-- gh-comment-id:3759112246 --> @007revad commented on GitHub (Jan 16, 2026): A shutdown temp of 65 degrees is quit low. Though Synology does like to be conservative and shutdown at lower a lower temp than the CPU specs allow for. My Synology have the following shutdown temps: - DS925+ 100 degrees - DS1821+ 95 degrees - DS720+ 90 degrees - DS1812+ 87 degrees Can you confirm that this command returns 65 ``` cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '</temperature>' | uniq | cut -d">" -f2 | cut -d"<" -f1 ```
Author
Owner

@007revad commented on GitHub (Jan 16, 2026):

Can you try this version https://github.com/007revad/Synology_CPU_temperature/releases/tag/v2.3.11 and show me what the script output looks like and what the log file looks like?

<!-- gh-comment-id:3759173762 --> @007revad commented on GitHub (Jan 16, 2026): Can you try this version https://github.com/007revad/Synology_CPU_temperature/releases/tag/v2.3.11 and show me what the script output looks like and what the log file looks like?
Author
Owner

@pinkycz commented on GitHub (Jan 16, 2026):

Yes, cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i
'' | uniq | cut -d">" -f2 | cut -d"<" -f1
returns 65 on my NAS

pá 16. 1. 2026 v 9:52 odesílatel Dave Russell @.***>
napsal:

007revad left a comment (007revad/Synology_CPU_temperature#25)
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246

A shutdown temp of 65 degrees is quit low. Though Synology does like to be
conservative and shutdown at lower a lower temp than the CPU specs allow
for.

My Synology have the following shutdown temps:

  • DS925+ 100 degrees
  • DS1821+ 95 degrees
  • DS720+ 90 degrees
  • DS1812+ 87 degrees

Can you confirm that this command returns 65

cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '' | uniq | cut -d">" -f2 | cut -d"<" -f1


Reply to this email directly, view it on GitHub
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/BBGNARJY3UGBJIDOUFQGZXD4HCYEBAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJZGEYTEMRUGY
.
You are receiving this because you authored the thread.Message ID:
@.***>

<!-- gh-comment-id:3759653527 --> @pinkycz commented on GitHub (Jan 16, 2026): Yes, cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '</temperature>' | uniq | cut -d">" -f2 | cut -d"<" -f1 returns 65 on my NAS pá 16. 1. 2026 v 9:52 odesílatel Dave Russell ***@***.***> napsal: > *007revad* left a comment (007revad/Synology_CPU_temperature#25) > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246> > > A shutdown temp of 65 degrees is quit low. Though Synology does like to be > conservative and shutdown at lower a lower temp than the CPU specs allow > for. > > My Synology have the following shutdown temps: > > - DS925+ 100 degrees > - DS1821+ 95 degrees > - DS720+ 90 degrees > - DS1812+ 87 degrees > > Can you confirm that this command returns 65 > > cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '</temperature>' | uniq | cut -d">" -f2 | cut -d"<" -f1 > > — > Reply to this email directly, view it on GitHub > <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/BBGNARJY3UGBJIDOUFQGZXD4HCYEBAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJZGEYTEMRUGY> > . > You are receiving this because you authored the thread.Message ID: > ***@***.***> >
Author
Owner

@pinkycz commented on GitHub (Jan 16, 2026):

2.3.11 now runs fine on DS413

sudo bash /volume1/scripts/syno_cpu_temp.sh
Password:
Synology_CPU_temp v2.3.11
DS413-j DSM 6.2.4-25556-8
synology_qoriq_413
Logging to /volume1/scripts/logs

Max temp threshold: 65°C 149°F
CPU: 13°C 55.4°F

pá 16. 1. 2026 v 11:39 odesílatel Jan Penkava @.***>
napsal:

Yes, cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i
'' | uniq | cut -d">" -f2 | cut -d"<" -f1
returns 65 on my NAS

pá 16. 1. 2026 v 9:52 odesílatel Dave Russell @.***>
napsal:

007revad left a comment (007revad/Synology_CPU_temperature#25)
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246

A shutdown temp of 65 degrees is quit low. Though Synology does like to
be conservative and shutdown at lower a lower temp than the CPU specs allow
for.

My Synology have the following shutdown temps:

  • DS925+ 100 degrees
  • DS1821+ 95 degrees
  • DS720+ 90 degrees
  • DS1812+ 87 degrees

Can you confirm that this command returns 65

cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '' | uniq | cut -d">" -f2 | cut -d"<" -f1


Reply to this email directly, view it on GitHub
https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/BBGNARJY3UGBJIDOUFQGZXD4HCYEBAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJZGEYTEMRUGY
.
You are receiving this because you authored the thread.Message ID:
@.***>

<!-- gh-comment-id:3759661828 --> @pinkycz commented on GitHub (Jan 16, 2026): 2.3.11 now runs fine on DS413 sudo bash /volume1/scripts/syno_cpu_temp.sh Password: Synology_CPU_temp v2.3.11 DS413-j DSM 6.2.4-25556-8 synology_qoriq_413 Logging to /volume1/scripts/logs Max temp threshold: 65°C 149°F CPU: 13°C 55.4°F pá 16. 1. 2026 v 11:39 odesílatel Jan Penkava ***@***.***> napsal: > Yes, cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i > '</temperature>' | uniq | cut -d">" -f2 | cut -d"<" -f1 > returns 65 on my NAS > > > pá 16. 1. 2026 v 9:52 odesílatel Dave Russell ***@***.***> > napsal: > >> *007revad* left a comment (007revad/Synology_CPU_temperature#25) >> <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246> >> >> A shutdown temp of 65 degrees is quit low. Though Synology does like to >> be conservative and shutdown at lower a lower temp than the CPU specs allow >> for. >> >> My Synology have the following shutdown temps: >> >> - DS925+ 100 degrees >> - DS1821+ 95 degrees >> - DS720+ 90 degrees >> - DS1812+ 87 degrees >> >> Can you confirm that this command returns 65 >> >> cat /usr/syno/etc.defaults/scemd.xml | grep -i 'shutdown' | grep -i '</temperature>' | uniq | cut -d">" -f2 | cut -d"<" -f1 >> >> — >> Reply to this email directly, view it on GitHub >> <https://github.com/007revad/Synology_CPU_temperature/issues/25#issuecomment-3759112246>, >> or unsubscribe >> <https://github.com/notifications/unsubscribe-auth/BBGNARJY3UGBJIDOUFQGZXD4HCYEBAVCNFSM6AAAAACRWYS6QOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONJZGEYTEMRUGY> >> . >> You are receiving this because you authored the thread.Message ID: >> ***@***.***> >> >
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Synology_CPU_temperature#4
No description provided.