SlideShare une entreprise Scribd logo
1  sur  57
Télécharger pour lire hors ligne
By:-
Shashank Bhatnagar 
( M.Tech­2015­AN­16 )
Tapesh Mandal 
( M.Tech­2015­AN­18 )
    Flow of Presentation:­
1) What is NAS ?
2) Why we use NAS?
1)  Actual real world scenario
2)  Benefits of NAS
3) NAS Components
4) Types of Network File Sharing Protocols
5) Samba
1) Implementation in Ubuntu of Samba
2) SMB Prompt
3) Samba in Ubuntu­Windows
6) NFS
1) Implementation in Ubuntu of NFS
2) NFS in Ubuntu­Windows
1) Feature of Windows ­ Services for NFS
2) How to use NFS in Windows 
7) Comparisions
1) NAS v/s SAN 3) Samba v/s NFS
2) NAS v/s DAS 4) Samba v/s CIFS
8) NAS challenges
What is NAS?
Network­attached storage (NAS) is a 
✔ file­level 
✔ computer data storage server 
✔ connected to a computer network 
✔ providing data access to a heterogeneous group of clients.
NAS is specialized for serving files either by its 
hardware, software, or configuration.
NAS systems are networked appliances which contain 
one or more storage drives, often arranged into logical, 
redundant storage containers or RAID.
So, Basically, 
Storage device which directly attached to the network is 
called network attached storage(NAS)
Why we use NAS ?
➢ Actual Real World Scenario
➢ Benifits of NAS
Actual real world scenario :­
✔
If we are Not Using NAS
✔ If we are Using NAS
Scenario ::­ If we are Not Using NAS
Everyone has different attached 
storage
If Update, then must be updated 
everyone
If 1GB of storage, then, total 4GB 
require, in which everyone has 
the same copy of 1 GB
Scenario ::­ If we are Using NAS
Everyone now has the same 
workspace of 1GB through 
Network
If Updated by one , will reflect to 
others
Use of 1GB inplace of 4GB
Example Scenario ::­ (Computer Lab)
When we are doing our computer practicals in the lab, we can connect 
or Map Network Drive to save our practicals in it, which can be later 
evaluated by the faculty by accessing your folder into the drive.
Also, when some software needs to be install or some common file 
needs to be share, its very easy for server to share it with everyone 
using this network drive.
This Mapped Network Drive will look like as local drive of your computer. 
Mapped Network Drive looking 
like a Local Drive
Benefits of NAS ::­
1. Supports global information access
2. Improves accessibility
3. Provide flexibility
4. Centralizes storage
5. Simplifies management
6. Scalability
7. High Availability – through native clustering
8. Provides security integration through environment 
(user authentication & authorization)
1. Supports global information access
➢ Enables greater file sharing, even over a long distance
➢ Can share data across platforms
2. Improves accessibility
➢ Eliminates bottlenecks encountered when accessing files from central file 
server
➢ Relieves general­purpose servers of many file management operations, 
improving performance of those servers
3. Provide flexibility
➢ works with many types of clients on both UNIX and Microsoft Windows 
platforms using Industry standard protocols.
4. Centralizes storage
➢ minimizes duplication on client workstations, reducing management 
complexity and improving data protection.
5. Simplifies management
➢ leverages existing security infrastructure through standard network 
protocols. Single point of management for multiple systems for multiple data 
sets. Identifies data by file name and byte offsets, transfers file data or file 
meta­data.
6. Scalability
➢ Due to its high performance, low latency design, enables NAS to scale well 
and depending upon utilization profiles, address many differing types of 
business applications.
7. High Availability – through native clustering
      
➢ Can safely centralize large amounts of user data behind a single NAS device 
with redundant networking equipment to provide maximum connectivity 
options.
➢ Clustering technology for failover in the event of filer failure  
8. Provides security integration through environment 
➢ (user authentication & authorization) Handles security, user 
authentication, and file locking in conjunction with industry standard 
security schemas
NAS Components:­
Windows
UNIX
NFS
IP
NAS Head
Storage Array
NFS CIFS
NAS Device OS
Storage Interface
Network Interface
A NAS device is made up of the following components:
NAS head (CPU and Memory)
One or more network interface cards (NICs), which provide connectivity 
To the network. 
Examples of NICs include Gigabit Ethernet, Fast Ethernet, ATM, and 
Fiber Distributed Data Interface (FDDI). 
An optimized operating system for managing NAS functionality
NFS and CIFS protocols for stack file sharing
Industry­standard storage protocols to connect and manage physical 
disk resources, such as ATA, SCSI, or FC
The NAS environment includes clients accessing a NAS device over an 
IP network using standard protocols.
Types of Network file sharing 
protocols:­
 NFS­Network File System
 Samba
SAMBA 
 SAMBA in 
Ubuntu Server ­ Ubuntu 
Client
 SMB prompt
 SAMBA in 
Ubuntu Server – Windows 
Client
SAMBA in 
Ubuntu Server ­ Ubuntu Client
Steps for Configuration of Ubuntu Server:­
Step 1:­  “install SAMBA”
sudo apt­get install samba samba­common
Step 2:­ “Configure smb.conf”
sudo nano ­w /etc/samba/smb.conf
So, towards the end of the file,
[tapsmb]
path = /home/tapesh/Desktop/tapsmb
browsable = yes
writable = yes
read only = no
guest ok = yes
Step 3:­ “compiling”:­
testparm
  Which gives error , like, 
rlimit error
  So, to solve this error,
Sudo nano /etc/sercurity/limits.conf
At the end of the file, add lines,
<domain>  <type>  <item>  <value>
*  – nofile  16384
Root  –  nofile  16384
● Wildcard * for default entry, 
● group and wildcard limits are not applied to root. To apply a 
limit to the root user, <domain> must be the literal username 
root.
● nofile ­ max number of open files
Step 4:­ “Add user“
Sudo smbpasswd ­a tapesh
Passwd
Retype passwd
Added user
Step 5:­ “change the permission of the folder 
created in  /home/tapesh/Desktop/tapsmb ”
Sudo chown tapesh:tapesh tapsmb
Here, so if we are in above path then just folder name 
otherwise complete path required.
  
Step 6:­ “reload, restart, status”:­
After any change we need to reload and restart samba server
For reload:­
sudo /etc/init.d/samba reload
For restart:­
sudo /etc/init.d/samba restart
For status:­
sudo /etc/init.d/samba status 
Steps for Configuration of 
Ubuntu Client:­
Step 1:­ “install prerequisites”:­
Sudo apt­get install nautilus­share smbclient
Step 2:­ “connect to server”:­
Sudo //server­ip//share­folder ­U user­name
So, after successful execution of above steps, you will get a 
smb prompt. Now, you can access shared files.
smb:>
To List public 
smb share
SMB Prompt
SAMBA in 
Ubuntu Server – Windows Client
Step 1:­ ping to the server from client:­
Step 2:­ Now, go to the network tab in windows explorer 
and refresh it, if it show the connected PC then okey but if 
not, then jus type the ip address of the server into the 
address bar and hit enter. The below shown screen 
showing the shared folder by the server.
Shared folder by 
server
Ip­address 
of server
Inside 
shared 
folder by 
server
NFS 
 NFS in 
Ubuntu Server ­ Ubuntu Client
 NFS in 
Ubuntu Server – Windows Client
NFS in 
Ubuntu Server ­ Ubuntu Client
Steps for Configuration of Ubuntu Server:­
Step 1:­  “install NFS”:­
sudo apt­get install nfs­kernel­server nfs­common
Step 2:­ “add the shared folders to the export file”:­
sudo nano /etc/exports
NFS in 
Ubuntu Server ­ Ubuntu Client
Step 3­  “restart NFS server”:­
sudo /etc/init.d/nfs­kernel­server restart
Step 4:­ “display export folders”
showmount ­e
NFS in 
Ubuntu Server ­ Ubuntu Client
Step 5­  “host allow”:­
sudo /etc/host.allow
Step 6:­ “host deny”:­
Sudo /etc/host.deny
NFS in 
Ubuntu Server ­ Ubuntu Client
Steps for Configuration of Ubuntu client:­
Step 1:­ “ping server to check connection”:­
Step 2: “show shared folders”:­
Showmount ­e ip­address­of­server
Step 3:­ “access the shared folder according to 
the permission assigned by server”:­
Sudo mount ­t nfs ip­address­of­server :shared­folder
/home folder of 
server mounted 
as /media
NFS in 
Ubuntu Server ­ Windows Client
Step 1:­ install windows services from control panel
“services for NFS”
Just do check the check­boxes against the option and 
do install
Step 2:­ “mounting”
In cmd,
mount ip­address­of­servershared­folder­name drive­letter : 
So, simultaneously also we can mount all the shared folder 
which are visible as a local drive in my computer
Home folder of server 
mounted as drive I in 
windows 
Mounted home folder 
seen as a local drive 
tmp also can be 
mounted similarly 
and 
simultaneously
Step 3:­ “unmounting”
In cmd,
Umount [­f] { ­a | drive } 
where, ­f for forcefully and ­a for all and drive showing the drive letter 
which you specify will get unmounted. Curly braces stands for options
Drive Z: is 
unmounted now, if 
we use ­a option in­
place of drive letter, 
all drives will get 
unmounted 
Comparisions
NAS v/s SAN
NAS
(Network Attached Storage)
SAN
(Storage Area Network)
1.) Almost any machine that 
connects to a LAN ( or is it 
interconnect to a LAN via WAN) may 
utilize NFS, CIFS or HTTP to connect 
to a NAS
1.) Server class devices that are 
euipped with SCSI fiber channel 
adapters connect to a SAN. A fiber 
channel based solution has a 
distance limit of approximately 6 
miles 
2.) A NAS identifies the data by file 
name and byte offset, transfers file 
data or metadata, and handles 
security, user authentication, file 
locking
2.) A SAN addresses the data by 
logical block numbers, and transfers 
the data in (raw) disk blocks.
3.) A NAS allows greater sharing of 
information, especially among 
different operating systems.
3.) File sharing is operating system 
dependent and may not exist for all 
operating systems that are being 
used
4.) File system is managed by the 
NAS head units
4.) The host server is manage by file 
server
NAS
(Network Attached Storage)
SAN
(Storage Area Network)
5.) Backups and mirrors are 
generated on files
5.) Backups and mirrors are 
generated on block
6.) NAS solutions utilize TCP/IP 
based network, such as Ethernet
6.) SAN uses Fiber channel 
connection (Fiber / copper)
7.) Communicates at the File level 
like:­
“Create­file­MyHomeWork.doc”
Or
“read­file­Budget.xls”
7.) Communicates at the Block Level 
Like:­
“read­block­thirty­four”
Or
“write­block­five­hundred­and­two”
8.) LAN Backup 8.) LAN free Backup
9.) Large Blocks of Data 9.) Large Nos. of small Blocks
NAS v/s DAS
NAS DAS
1.) For large businesses that 
require several servers to store 
data
1.) It can provide a viable storage 
and backup solution for small 
businesses
2.) high initial cost but system 
can be easily expanded and the 
cost after initial setup is 
relatively low
2.) Low initial cost for setup but 
cost increases as the system 
expands
3.) high scalability 3.) limited scalability
4.) Better fault tolerance 4.) Poor fault tolerance as clients 
connect directly to the server 
that contains the storage
NAS DAS
5.) No limitation 5.) Limitation in the number of 
devices as host bus adapter can 
only support a limited number of 
drives
6.) It specializes in file­level 
access
6.) ideal for both block level 
access ( access particular data in 
a file ) and file­level access 
( access complete files ) running 
simultaneously
7.) connects to a server with 
ethernet
7.) connects to the server 
through host bus adapter
8.) Simplicity of setups even 
non­IT personnels can setup
8.) Takes specialized people to 
setup
NAS DAS
9.) Adds storage by simply 
attaching to the network
9.) It adds storage by attaching 
to the server
10.) NAS supports both NFS and 
CIFS
10.) May or may not support 
both
11.) Replication of data is 
possible
11.) Does not support replication
Samba v/s NFS
Samba NFS
1.) Works naturally on both Unix 
and non­unix systems
1.) Tailormade for unix and unix 
like systems
2.) Implementation of SMB/CIFS 
protocol
2.) was developed by sun 
microsystems
3.) it is just a remaging of CIFS 3.) NFS is a protocol that allows 
a user to access files over a 
network
4.) NFS has 4 versions latest of 
which includes a stateful 
protocol
4.) Samba has multiple versions, 
the latest of which file and print 
sharing between multiple 
computers
Samba NFS
5.) SMB does not have unix like 
semantics
5.) NFS provides normal unix file 
system semantics
6)  SMB uses authentication 
using a username / password
6.) NFS relies entirely on “trust” 
security though
7.) samba can be slower in some 
cases
7.) NFS is generally faster
8.) Samba is a way to manage 
windows network file systems on 
a Linux plateform
8.) NFS is a way to mount 
remote file systems on UNIX so 
they look local
9.) Samba is an emulation of the 
file system . It is a protocol
9.) NFS is a file system
Samba v/s CIFS
Samba CIFS
Was originally SMB server It is an extension of SMB 
protocol. Poor performance over 
higher latencey networks.
NAS Challenges
1)Speed
1)Network Latency and Congestion
2)Protocol stack inefficiency
3)Application response requirements
2)Reliability
3)Connectivity
4)Scalability
Speed
● Network latency and congestion
● Protocol stack inefficiency 
● encapsulation,  possessor  overhead,  and  relatively 
small payload
● Application response requirements
Reliability
● Due  to  the  large  geographical  coverage  of  enterprise 
networks  there  are  inherent  possibilities  for  network 
failures, but with redundancy planning these issues can 
be minimized.
● Centralized  storage  silos  may  become  single  points  of 
failure without remote mirroring or backup facilities.
NAS Challenges
Connectivity
● Without newly emerging technologies, iSCSI, FCIP & iFCP, 
many applications required block level access therefore 
excluding NAS as a solution for businesses
Scalability
● Although NAS devices can scale to terabytes of storage 
capacity, once the capacity is exhausted the only way to 
expand is to add additional devices. This can cause 
additional problems when data center real estate is at a 
premium
● Once a NAS device is fully populated, including external 
storage enclosures, the only remaining scaling option is to 
buy another system. When data center real estate is at a 
premium this can be seen as a major limitation.
NAS Challenges
Thank You

Contenu connexe

Tendances

Storage area network
Storage area networkStorage area network
Storage area networkNeha Agarwal
 
Storage Area Network(SAN)
Storage Area Network(SAN)Storage Area Network(SAN)
Storage Area Network(SAN)Krishna Kahar
 
Storage Area Network (San)
Storage Area Network (San)Storage Area Network (San)
Storage Area Network (San)sankcomp
 
Basics of storage Technology
Basics of storage TechnologyBasics of storage Technology
Basics of storage TechnologyLopamudra Das
 
Storage Area Networks, Networks, Networking, Computer Networks
Storage Area Networks, Networks, Networking,  Computer NetworksStorage Area Networks, Networks, Networking,  Computer Networks
Storage Area Networks, Networks, Networking, Computer NetworksSeraphic Nazir
 
Introduction to san ( storage area networks )
Introduction to san ( storage area networks )Introduction to san ( storage area networks )
Introduction to san ( storage area networks )sagaroceanic11
 
VMware Virtual SAN Presentation
VMware Virtual SAN PresentationVMware Virtual SAN Presentation
VMware Virtual SAN Presentationvirtualsouthwest
 
Storage Technology Overview
Storage Technology OverviewStorage Technology Overview
Storage Technology Overviewnomathjobs
 
Storage Virtualization
Storage VirtualizationStorage Virtualization
Storage Virtualizationrjain51
 
Data center Technologies
Data center TechnologiesData center Technologies
Data center TechnologiesEMC
 
Fundamentals of Servers, server storage and server security.
Fundamentals of Servers, server storage and server security.Fundamentals of Servers, server storage and server security.
Fundamentals of Servers, server storage and server security.Aakash Panchal
 
Hyper-Converged Infrastructure: Concepts
Hyper-Converged Infrastructure: ConceptsHyper-Converged Infrastructure: Concepts
Hyper-Converged Infrastructure: ConceptsNick Scuola
 
Block Level Storage Vs File Level Storage
Block Level Storage Vs File Level StorageBlock Level Storage Vs File Level Storage
Block Level Storage Vs File Level StoragePradeep Jagan
 

Tendances (20)

Storage area network
Storage area networkStorage area network
Storage area network
 
Storage Basics
Storage BasicsStorage Basics
Storage Basics
 
Storage Area Network(SAN)
Storage Area Network(SAN)Storage Area Network(SAN)
Storage Area Network(SAN)
 
Storage Area Network (San)
Storage Area Network (San)Storage Area Network (San)
Storage Area Network (San)
 
Basics of storage Technology
Basics of storage TechnologyBasics of storage Technology
Basics of storage Technology
 
Storage Area Networks, Networks, Networking, Computer Networks
Storage Area Networks, Networks, Networking,  Computer NetworksStorage Area Networks, Networks, Networking,  Computer Networks
Storage Area Networks, Networks, Networking, Computer Networks
 
ZFS
ZFSZFS
ZFS
 
NetApp & Storage fundamentals
NetApp & Storage fundamentalsNetApp & Storage fundamentals
NetApp & Storage fundamentals
 
Storage basics
Storage basicsStorage basics
Storage basics
 
Introduction to san ( storage area networks )
Introduction to san ( storage area networks )Introduction to san ( storage area networks )
Introduction to san ( storage area networks )
 
VMware Virtual SAN Presentation
VMware Virtual SAN PresentationVMware Virtual SAN Presentation
VMware Virtual SAN Presentation
 
SAN
SANSAN
SAN
 
Storage Technology Overview
Storage Technology OverviewStorage Technology Overview
Storage Technology Overview
 
Storage Virtualization
Storage VirtualizationStorage Virtualization
Storage Virtualization
 
Data center Technologies
Data center TechnologiesData center Technologies
Data center Technologies
 
Nfs
NfsNfs
Nfs
 
Fundamentals of Servers, server storage and server security.
Fundamentals of Servers, server storage and server security.Fundamentals of Servers, server storage and server security.
Fundamentals of Servers, server storage and server security.
 
Hyper-Converged Infrastructure: Concepts
Hyper-Converged Infrastructure: ConceptsHyper-Converged Infrastructure: Concepts
Hyper-Converged Infrastructure: Concepts
 
Windows Server 2019 -InspireTech 2019
Windows Server 2019 -InspireTech 2019Windows Server 2019 -InspireTech 2019
Windows Server 2019 -InspireTech 2019
 
Block Level Storage Vs File Level Storage
Block Level Storage Vs File Level StorageBlock Level Storage Vs File Level Storage
Block Level Storage Vs File Level Storage
 

Similaire à Understanding NAS and File Sharing Protocols

Network Attached Storage Details enivorments.ppt
Network Attached Storage Details enivorments.pptNetwork Attached Storage Details enivorments.ppt
Network Attached Storage Details enivorments.pptLakshmi101519
 
SAN BASICS..Why we will go for SAN?
SAN BASICS..Why we will go for SAN?SAN BASICS..Why we will go for SAN?
SAN BASICS..Why we will go for SAN?Saroj Sahu
 
Nas and san
Nas and sanNas and san
Nas and sansongaco
 
Network attached storage (nas)
Network attached storage (nas)Network attached storage (nas)
Network attached storage (nas)Vîvék Thørät
 
GlusterFs: a scalable file system for today's and tomorrow's big data
GlusterFs: a scalable file system for today's and tomorrow's big dataGlusterFs: a scalable file system for today's and tomorrow's big data
GlusterFs: a scalable file system for today's and tomorrow's big dataRoberto Franchini
 
GlusterFS : un file system open source per i big data di oggi e domani - Robe...
GlusterFS : un file system open source per i big data di oggi e domani - Robe...GlusterFS : un file system open source per i big data di oggi e domani - Robe...
GlusterFS : un file system open source per i big data di oggi e domani - Robe...Codemotion
 
Tier 2 net app baseline design standard revised nov 2011
Tier 2 net app baseline design standard   revised nov 2011Tier 2 net app baseline design standard   revised nov 2011
Tier 2 net app baseline design standard revised nov 2011Accenture
 
Introduction to storage
Introduction to storageIntroduction to storage
Introduction to storagesagaroceanic11
 
Introduction to Storage.ppt
Introduction to Storage.pptIntroduction to Storage.ppt
Introduction to Storage.pptParam Eswaran
 
What is BranchCache.pdf
What is BranchCache.pdfWhat is BranchCache.pdf
What is BranchCache.pdfEIHEducation
 
SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience aniadkar
 
Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)Tuan Yang
 
Qnap iei partners_day_2016 1108
Qnap iei partners_day_2016 1108Qnap iei partners_day_2016 1108
Qnap iei partners_day_2016 1108qnapivan
 
Storage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewStorage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewAlan McSweeney
 
New Oracle Infrastructure2
New Oracle Infrastructure2New Oracle Infrastructure2
New Oracle Infrastructure2markleeuw
 
Personal storage to enterprise storage system journey
Personal storage to enterprise storage system journeyPersonal storage to enterprise storage system journey
Personal storage to enterprise storage system journeySoumen Sarkar
 

Similaire à Understanding NAS and File Sharing Protocols (20)

Network Attached Storage Details enivorments.ppt
Network Attached Storage Details enivorments.pptNetwork Attached Storage Details enivorments.ppt
Network Attached Storage Details enivorments.ppt
 
SAN BASICS..Why we will go for SAN?
SAN BASICS..Why we will go for SAN?SAN BASICS..Why we will go for SAN?
SAN BASICS..Why we will go for SAN?
 
Ch18 system administration
Ch18 system administration Ch18 system administration
Ch18 system administration
 
BSDCan2006.pdf
BSDCan2006.pdfBSDCan2006.pdf
BSDCan2006.pdf
 
Nas and san
Nas and sanNas and san
Nas and san
 
Network attached storage (nas)
Network attached storage (nas)Network attached storage (nas)
Network attached storage (nas)
 
GlusterFs: a scalable file system for today's and tomorrow's big data
GlusterFs: a scalable file system for today's and tomorrow's big dataGlusterFs: a scalable file system for today's and tomorrow's big data
GlusterFs: a scalable file system for today's and tomorrow's big data
 
GlusterFS : un file system open source per i big data di oggi e domani - Robe...
GlusterFS : un file system open source per i big data di oggi e domani - Robe...GlusterFS : un file system open source per i big data di oggi e domani - Robe...
GlusterFS : un file system open source per i big data di oggi e domani - Robe...
 
Network attached stroage
Network attached stroageNetwork attached stroage
Network attached stroage
 
Tier 2 net app baseline design standard revised nov 2011
Tier 2 net app baseline design standard   revised nov 2011Tier 2 net app baseline design standard   revised nov 2011
Tier 2 net app baseline design standard revised nov 2011
 
Introduction to storage
Introduction to storageIntroduction to storage
Introduction to storage
 
Introduction to Storage.ppt
Introduction to Storage.pptIntroduction to Storage.ppt
Introduction to Storage.ppt
 
What is BranchCache.pdf
What is BranchCache.pdfWhat is BranchCache.pdf
What is BranchCache.pdf
 
SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience
 
Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)
 
Qnap iei partners_day_2016 1108
Qnap iei partners_day_2016 1108Qnap iei partners_day_2016 1108
Qnap iei partners_day_2016 1108
 
Storage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewStorage, San And Business Continuity Overview
Storage, San And Business Continuity Overview
 
New Oracle Infrastructure2
New Oracle Infrastructure2New Oracle Infrastructure2
New Oracle Infrastructure2
 
Storage Networks
Storage NetworksStorage Networks
Storage Networks
 
Personal storage to enterprise storage system journey
Personal storage to enterprise storage system journeyPersonal storage to enterprise storage system journey
Personal storage to enterprise storage system journey
 

Dernier

Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGSIVASHANKAR N
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 

Dernier (20)

DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTINGMANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
MANUFACTURING PROCESS-II UNIT-1 THEORY OF METAL CUTTING
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 

Understanding NAS and File Sharing Protocols