Book Image

Learning FreeNAS

By : Gary Sims
Book Image

Learning FreeNAS

By: Gary Sims

Overview of this book

<p>&nbsp;FreeNAS is free software that turns a PC into a Network Attached Storage (NAS) server. It supports client connections from Microsoft Windows, Apple OS X, Linux, and FreeBSD. It has a web interface for administration and includes support for RAID (0, 1, 5), iSCSI, drive encryption, and UPnP. Based on FreeBSD, it has modest system requirements but is scalable for the enterprise.<br /><br />This book will show you how to work with FreeNAS and set it up for your needs. You will learn how to configure and administer a FreeNAS server in a variety of networking scenarios. You will also learn how to plan and implement RAID on the server as well as how to use Storage Area Network technologies like iSCSI. The standard FreeNAS documentation walks you through the basic configuration, but this book will tell you exactly what you should do to plan, work, and deploy FreeNAS. This book has a comprehensive troubleshooting section that will point you in the right direction whenever you need help.</p> <p align="left">&nbsp;</p>
Table of Contents (16 chapters)
Learning FreeNAS
Credits
About the Author
About the Reviewer
Preface
Index

Connecting via CIFS


The Common Internet File System (CIFS) is the standard way in which files are accessed on a remote Windows computer. Developed and maintained by Microsoft for use on their Windows platform, it has also been implemented on most major operating systems including OS X and Linux using 3rd party software, the most popular of which is called Samba. Samba is open source software that provides remote file access services to CIFS clients on a variety of platforms (including to Windows clients). Samba is included in the FreeNAS server.

The abilities of CIFS are actually larger than just accessing files. With it, other resources like printers can also be shared on the network, but for FreeNAS, CIFS is used to share disks on the server and make them available to other computers that understand the CIFS protocol. This means that Windows, Linux, and OS X machines are all capable of accessing files on the FreeNAS server via the CIFS protocol.

Note

Sometimes, when reading about CIFS, you...