1

I have looked around so much but still couldn't find a practical working answer/example about adding a new storage machine to the iscsi san network and instead increase storage capacity.

What I have found and done.

  • I found steps on how to install iscsi targets and inititors.
  • I also found procedures on how to access the storage.

  • And setup redundancy among-st all components.

what happens when I add a new iscsi storage from a new machine.?

The initiator/client see the new machine storage as an independent storage yet I intend to make it extend the size of the current storage.

But now I need serious help on how to make all of these iscsi devices show as one enormous storage device as most blogs out there claim that it's the best acclaimed advantage of the iscsi protocol other than being cheaper than the fiber channel protocol.

Any help greatly appreciated, Thanks in advance.

Zac67
  • 13,684
Dennisrec
  • 121

1 Answers1

2

To provide a bit more useful answer than the comment:

iSCSI works very much as any other storage standard (Fibre Channel, SAS, SATA, ...) in that it connects a block storage (LUN on a target) to a "user" (initiator). The difference is that iSCSI uses any IP network for transport, while Fibre Channel uses a Fibre Channel network or direct cable, SAS uses a SAS cable (or expander network), SATA a SATA cable, and so on.

The initiator just reads from and writes to the storage. It doesn't care how the data is stored, it just wants to read back the exact data that's been written a while ago. The controller/target can present a single drive, a redundant array of a dozen drives, or a very large, tiered storage architecture on top of hundreds of SSDs, disks and even tape, connected by FC, SAS, anything. The initiator can even talk iSCSI to its next lower level - when it's presenting an abstraction of what's below and not even doing the storing and retrieving itself.

You could use a bunch of cheap iSCSI NASes, mount them into a storage server cluster and have them present a completely different view to the actual storage beneath via iSCSI, eg. one giant LUN. The hosts accessing the upper level have no information on what's below nor do they have to care.

So, iSCSI (or any other SAN protocol) delivers the service but the task of storage aggregation is that of the controller inside the target.

Zac67
  • 13,684