what is the difference between SAN,NAS and DAS?
feedback
|
migrated from stackoverflow.com Nov 5 '09 at 13:38
This question came from our site for professional and enthusiast programmers.
|
First it is best to define the difference between a block device and filesystem. This is easier grasped if you are familiar with UNIX because it makes an objective distinction between the two things. Still the same applies to Windows.
With those terms in mind it's then easier to see the distinction between the following.
| |||||||||
feedback
|
|
While the descriptions from itmanagement.com are ok, I think they could be a little more specific. With NAS, you're usually referring to something where you mount a shared storage space over a network using protocols like CIFS or NFS. The system on which these are mounted does not see them as local storage, it sees them as network storage. This is important because many programs will not allow the use of network storage for various things. With SAN, the storage space is mounted via iSCSI or Fiber Channel. You're still using a network to mount the space, but the protocols allow the system doing the mounting to see the space as local storage, thus allowing more programs to use it properly. DAS is simply storage directly attached (ie, not via a network) to a system. Internal harddrives, USB drives, etc. | |||
|
feedback
|
| |||
|
feedback
|
|
stands for Storage Area Network. A SAN is a network designed to attach storage hardware and software to servers. SANs generally come in two forms: as a network primarily dedicated to transferring data between computer systems and storage systems | |||
|
feedback
|
|
das - it is direct attached storage. system will have full control on disk.it is local storage. problem using das 1 it cannot use as common storage 2 it is not flexible Nas - it is n/w attached storage.disk attached over n/w. it can be used used as common storage or shared storage problem in nas 1 it maintain own filesystem called nfs.so we cannot install o.s in nas or we cannot boot from nas 2 When compare san nas performance is low. San - it is storage area n/w. A dedicated storage network that provides access to consolidated.SANs often utilise a Fibre Channel fabric topology. problems using san 1 cost is very high.so it cannot be used in mid-range company | |||
|
feedback
|