# Storage Area Network
## What is a SAN
A Storage Area Network, abbreviated as SAN, is a specialized high-speed network that connects servers to shared storage devices such as disk arrays and tape libraries. Unlike a regular network that connects computers for general communication, a SAN is specifically designed to provide servers with fast access to centralized storage resources. The storage devices in a SAN appear to the connected servers as if they were locally attached drives, even though they are actually connected over a network. SANs are commonly used in enterprise environments, data centers, and any situation where large amounts of storage need to be shared efficiently between multiple servers.
## Why SANs Exist
Before SANs, each server had to have its own dedicated storage attached directly to it. This approach was inefficient because storage attached to one server could not be easily accessed or shared by other servers. If one server had more storage than it needed while another server was running out of space, the excess storage could not be redistributed. SANs solve this problem by creating a pool of shared storage that any server in the network can access and use as needed.
## SAN Technologies
Fibre Channel is the traditional and most widely used SAN technology. It uses specialized Fibre Channel switches and host bus adapters to create a dedicated high-speed storage network separate from the regular Ethernet network. Fibre Channel supports speeds from 8 gigabits per second to 128 gigabits per second. iSCSI, which stands for Internet Small Computer System Interface, is an alternative SAN technology that transmits storage commands over regular Ethernet networks, making it less expensive than Fibre Channel. Fibre Channel over Ethernet, or FCoE, combines Fibre Channel storage traffic with regular network traffic over a single Ethernet infrastructure.
## Advantages of SAN
SANs provide very high-speed access to storage, which improves the performance of applications that need to read and write large amounts of data quickly. Storage capacity can be added to the SAN without disrupting running servers. Multiple servers can share storage resources, improving utilization of expensive storage hardware. Data backup and disaster recovery are simplified because all storage is centralized. SANs support advanced storage features such as snapshots, replication, and thin provisioning.
## Disadvantages of SAN
SANs are complex to design, implement, and manage. Fibre Channel SANs require specialized hardware that is significantly more expensive than regular Ethernet equipment. SANs require skilled administrators who understand both networking and storage technologies. The initial investment for a SAN is substantial, making it unsuitable for small organizations.Back to Subject