[Help] Disks with same serial in D8 Hybrid, firmware updated

RAID, Volume, storage pool, hard drive, USB, SSD cache and iSCSI LUN
Post Reply
User avatar
mmartin
Posts: 3
Joined: 25 Mar 2026, 19:31
Spain

[Help] Disks with same serial in D8 Hybrid, firmware updated

Post by mmartin »

Hi folks,

I have one D8 Hybrid DAS updated with the latest firmware from viewtopic.php?t=6748 and I am using TrueNAS as the OS.

The issue with NVMe disks reporting the same serial seems to be fixed and I am able to use them in storage pools. However now I have kind of the same issue with the SATA drive. I have two WDC WD80EZAZ-11TDBA0 and two ST6000VN0033-2EE110 conected to the SATA slots and although all of them seem to be reporting different serial numbers with hdparm:

Code: Select all

root@terramaster[~]# hdparm -I /dev/sdd

/dev/sdd:

ATA device, with non-removable media
        Model Number:       WDC WD80EZAZ-11TDBA0
        Serial Number:      XXXXX7HD
        Firmware Revision:  83.H0A83
        Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0; Revision: ATA8-AST T13 Project D1697 Revision 0b 
        ...
        
root@terramaster[~]#  hdparm -I /dev/sde

/dev/sde:

ATA device, with non-removable media
        Model Number:       WDC WD80EZAZ-11TDBA0
        Serial Number:      XXXXXUSD
        Firmware Revision:  83.H0A83
        Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0; Revision: ATA8-AST T13 Project D1697 Revision 0b
        ...

root@terramaster[~]# hdparm -I /dev/sdg

/dev/sdg:

ATA device, with non-removable media
        Model Number:       ST6000VN0033-2EE110
        Serial Number:      XXXXXXJG
        Firmware Revision:  SC60
        Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0
root@terramaster[~]# hdparm -I /dev/sdh

/dev/sdh:

ATA device, with non-removable media
        Model Number:       ST6000VN0033-2EE110
        Serial Number:      XXXXXXDA
        Firmware Revision:  SC60
        Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0

They cannot be added to a storage pool becasuse "Disks have duplicate serial numbers: 'A00022304202' (sdg, sdh)".

I was wondering where that A00022304202 serial number was coming from and it turns out that it comes from smartctl:

Code: Select all

root@terramaster[~]# smartctl -d scsi -x /dev/sdg
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               TerraMas
Product:              TDAS
Revision:             0
Compliance:           SPC-4
User Capacity:        6,001,175,126,016 bytes [6.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:        7200 rpm
Form Factor:          2.5 inches
Logical Unit id:      0x5000000000000001
Serial number:        A00022304202
....

root@terramaster[~]# smartctl -d scsi -x /dev/sdh
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               TerraMas
Product:              TDAS
Revision:             0
Compliance:           SPC-4
User Capacity:        6,001,175,126,016 bytes [6.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:        7200 rpm
Form Factor:          2.5 inches
Logical Unit id:      0x5000000000000001
Serial number:        A00022304202
...
To get that output I needed to add -d scsi parameter because smartctl doesn't seem to recognize the USB bridge:

Code: Select all

root@terramaster[~]# smartctl -x /dev/sdg
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

/dev/sdg: Unknown USB bridge [0x1352:0xa006 (0x100)]
Please specify device type with the -d option.

Use smartctl -h to get a usage summary

root@terramaster[~]# smartctl -x /dev/sdh
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

/dev/sdh: Unknown USB bridge [0x1352:0xa006 (0x100)]
Please specify device type with the -d option.

Use smartctl -h to get a usage summary
Indeed, the disks are not shown when running a scan:

Code: Select all

root@terramaster[~]# smartctl --scan
/dev/sda -d scsi # /dev/sda, SCSI device
/dev/sdb -d scsi # /dev/sdb, SCSI device
/dev/sdc -d scsi # /dev/sdc, SCSI device
/dev/sdf -d scsi # /dev/sdf, SCSI device
/dev/sdi -d scsi # /dev/sdi, SCSI device
/dev/sdj -d scsi # /dev/sdj, SCSI device
/dev/sdk -d sntrealtek # /dev/sdk [USB NVMe Realtek], NVMe device
/dev/sdl -d sntrealtek # /dev/sdl [USB NVMe Realtek], NVMe device
/dev/sdm -d sntrealtek # /dev/sdm [USB NVMe Realtek], NVMe device
/dev/sdn -d sntrealtek # /dev/sdn [USB NVMe Realtek], NVMe device
/dev/nvme0 -d nvme # /dev/nvme0, NVMe device
/dev/nvme1 -d nvme # /dev/nvme1, NVMe device


Is this a known problem?, is there any way to fix or workaround it?

Thanks a lot for your help!
User avatar
Phil
TM Support
Posts: 91
Joined: 23 Feb 2026, 09:38
China

Re: [Help] Disks with same serial in D8 Hybrid, firmware updated

Post by Phil »

Thank you for your detailed feedback. Since SATA slots 1 and 2 are controlled by the same RAID chip, we recommend using the disks in slots 1 and 2 in a RAID configuration.
This may not support software RAID on TRUENAS, but the other three native SATA slots can support software RAID.
User avatar
mmartin
Posts: 3
Joined: 25 Mar 2026, 19:31
Spain

Re: [Help] Disks with same serial in D8 Hybrid, firmware updated

Post by mmartin »

Thank you Phil for your reply and recommendation.

At the moment, I’m not using any supported RAID configurations (and, to be honest, I’d prefer not to). The D8 is set to the supported Single mode, and I can see four separate disks.

Shouldn’t each disk report its own serial number? This looks like a bug to me—am I mistaken?
User avatar
TMjack
TM Support
Posts: 185
Joined: 27 Oct 2020, 08:41

Re: [Help] Disks with same serial in D8 Hybrid, firmware updated

Post by TMjack »

Hello, due to the hardware design characteristics of the D8 Hybrid, the HDD1/2 ports are driven by the same controller chip. As a result, the hard drives installed in these two ports cannot display their individual serial numbers separately; only a unified HDD serial number will be shown. However, hard drives connected to the HDD3/4 ports can each display their own independent serial number normally.
To contact our team, please send email to following addresses, remember to replace (at) with @
Technical team: support(at)terra-master.com (for technical support)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
User avatar
mmartin
Posts: 3
Joined: 25 Mar 2026, 19:31
Spain

Re: [Help] Disks with same serial in D8 Hybrid, firmware updated

Post by mmartin »

TMjack wrote: 27 Mar 2026, 12:14 Hello, due to the hardware design characteristics of the D8 Hybrid, the HDD1/2 ports are driven by the same controller chip. As a result, the hard drives installed in these two ports cannot display their individual serial numbers separately; only a unified HDD serial number will be shown. However, hard drives connected to the HDD3/4 ports can each display their own independent serial number normally.
Well that's not what I see in my system, disks in HDD3/4 ports also share serial number:

Code: Select all

root@terramaster[~]# smartctl -d scsi -x /dev/sdd
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               TerraMas
Product:              TDAS
Revision:             0
Compliance:           SPC-4
User Capacity:        8,001,563,222,016 bytes [8.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
Logical Unit id:      0x5000000000000001
Serial number:        800022304202
Device type:          disk
Local Time is:        Mon Mar 30 20:44:55 2026 CEST
SMART support is:     Available - device has SMART capability.
SMART support is:     Enabled
Temperature Warning:  Disabled or Not Supported
Read Cache is:        Enabled
Writeback Cache is:   Enabled

=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK
Current Drive Temperature:     0 C
Drive Trip Temperature:        0 C

Error Counter logging not supported

Device does not support Self Test logging
Device does not support Background scan results logging
Device does not support General statistics and performance logging

root@terramaster[~]# smartctl -d scsi -x /dev/sde
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               TerraMas
Product:              TDAS
Revision:             0
Compliance:           SPC-4
User Capacity:        8,001,563,222,016 bytes [8.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
Logical Unit id:      0x5000000000000001
Serial number:        800022304202
Device type:          disk
Local Time is:        Mon Mar 30 20:44:58 2026 CEST
SMART support is:     Available - device has SMART capability.
SMART support is:     Enabled
Temperature Warning:  Disabled or Not Supported
Read Cache is:        Enabled
Writeback Cache is:   Enabled

=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK
Current Drive Temperature:     0 C
Drive Trip Temperature:        0 C

Error Counter logging not supported

Device does not support Self Test logging
Device does not support Background scan results logging
Device does not support General statistics and performance logging

root@terramaster[~]# smartctl -d scsi -x /dev/sdi
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               TerraMas
Product:              TDAS
Revision:             0
Compliance:           SPC-4
User Capacity:        6,001,175,126,016 bytes [6.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:        7200 rpm
Form Factor:          2.5 inches
Logical Unit id:      0x5000000000000001
Serial number:        A00022304202
Device type:          disk
Local Time is:        Mon Mar 30 20:45:21 2026 CEST
SMART support is:     Available - device has SMART capability.
SMART support is:     Enabled
Temperature Warning:  Disabled or Not Supported
Read Cache is:        Enabled
Writeback Cache is:   Enabled

=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK
Current Drive Temperature:     0 C
Drive Trip Temperature:        0 C

Error Counter logging not supported

Device does not support Self Test logging
Device does not support Background scan results logging
Device does not support General statistics and performance logging
root@terramaster[/home/truenas_admin]# smartctl -d scsi -x /dev/sdg
smartctl 7.4 2023-08-01 r5530 [x86_64-linux-6.12.33-production+truenas] (local build)
Copyright (C) 2002-23, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               TerraMas
Product:              TDAS
Revision:             0
Compliance:           SPC-4
User Capacity:        6,001,175,126,016 bytes [6.00 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:        7200 rpm
Form Factor:          2.5 inches
Logical Unit id:      0x5000000000000001
Serial number:        A00022304202
Device type:          disk
Local Time is:        Mon Mar 30 20:45:23 2026 CEST
SMART support is:     Available - device has SMART capability.
SMART support is:     Enabled
Temperature Warning:  Disabled or Not Supported
Read Cache is:        Enabled
Writeback Cache is:   Enabled

=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK
Current Drive Temperature:     0 C
Drive Trip Temperature:        0 C

Error Counter logging not supported

Device does not support Self Test logging
Device does not support Background scan results logging
Device does not support General statistics and performance logging
User avatar
EriChan
TM Support
Posts: 196
Joined: 06 Jan 2026, 12:27
United States of America

Re: [Help] Disks with same serial in D8 Hybrid, firmware updated

Post by EriChan »

Early versions of the D8 Hybrid may have this issue. You can refer to this guide for firmware updates.

It is important to emphasize that during the update process, please make sure to remove all other hard drives and only keep the hard drive in the HDD3/4 port, otherwise, it may cause irreversible effects.
Post Reply

Return to “Storage”