Skip to main content

Advantages and Disadvantages of LAN Local Area Network

Topic: Advantages and Disadvantages of LAN Local Area Network

What is LAN ? - Local Area Network

LAN stands for Local Area Network. It normally connects the computers and other devices within one office, building or a group of nearby buildings.
Advantages Disadvantages of LAN - Local Area Network
Advantages Disadvantages of LAN - Local Area Network

Advantages of LAN or Local Area Network

1. Resource Sharing

Computer hardware resources like printers, modems, DVD-Rom drives and hard disks can be shared with the help of local area networks. This will reduce cost of hardware purchases. For example, a business organization using a Local Area Network for an office can use a single network printer for the employees of this office.

2. Software Applications Sharing

It is cheaper to use same software over network instead of purchasing separate licensed software for each client in a network. It will cost more to purchase a separate licensed software for each computer in a network.

3. Easy and Cheap Communication

Sponsored Links

Data and messages can easily be transferred over networked computers. It saves a lot of time and money.

4. Centralized Data

The data of all network users can be saved on hard disk of the server computer. This will help users to use any workstation in a network to access their data. Because data is not stored on workstations locally. But it is stored on a server computer. User will access their own data by logging into their accounts from any client computer in the network.

5. Data Security

Since, data is stored on server computer centrally, it will be easy to manage data at only one place and the data will be more secure too, because of more security for the server computer.
Sponsored Links

6. Internet Sharing

Local Area Network provides the facility to share a single internet connection among all the LAN users. In Net Cafes, single internet connection sharing system keeps the internet expenses cheaper. Because only one high speed internet connection is purchased by a net cafe from any ISP - Internet Service Provider company.

This single high speed internet connection is managed on the server computer of the Net Cafe and available for all network clients with the help of Internet Connection Sharing facilities of the operating system.

Advantages and Disadvantages of LAN Local Area Network
Advantages and Disadvantages of LAN Local Area Network

Disadvantages of LAN or Local Area Network

1. High Setup Cost

Although the LAN will save cost over time due to shared computer resources but the initial setup costs of installing Local Area Networks is high. This is because any organization that will setup a network, will have to purchase necessary hardware equipment for networking.

It may require a sophisticated server computer - a Mini Computer, Network LAN cards, Network Routers, HUBS / Switches, Networking Cables (for wired networks only) and connectors etc. Additionally a Network technician will be required for setting up a new network in an organization.

If an organization has a large network, it must hire a network administrator for smooth running of network and solving any problems. 

2. Privacy Violations

 The LAN administrator has the rights to check personal data files of each and every LAN user. Moreover he can check the internet history and computer use history of the LAN users.

3. Data Security Threat

Unauthorized users can access important data of an organization if centralized data repository is not secured properly by the LAN administrator. LAN Administer is responsible for the security of the whole data resource in an organization.

LAN administrator will implement a fully functional security policy for database safety.

4. LAN Maintenance Job

Sponsored Links

Local Area Network requires a LAN Administrator. Because, there are problems of software installations or hardware failures or cable disturbances in Local Area Network. A LAN Administrator is needed at this full time job.

A LAN Administrator may be with an M.C.S. or B.S.C.S. degree holder person optionally with a course / diploma in networking field or with relative experience in the field.

5. Covers Limited Area

Local Area Network covers a small area like one office, one building or a group of nearby buildings.





Comments

Popular posts from this blog

Microsoft Excel Formulas and Functions Fast and Easy Way -1

Introduction Using Formulas and Functions in Microsoft Excel is really a tough job for new students. This is a series of tutorials to make the use of Formulas and Functions in worksheets, easy with various real life example worksheets. مائیکروسافٹ ایکسل میں فارمولوں اور فنکشنزکا استعمال نئے طلبا کے لیے ہمیشہ سے ایک مسئلہ رہا ہے۔ میری کوشش ہے کہ فارمولا اور فنکشن کا ٹاپک پریکٹیکلی اور پکچرز کے ساتھ تفصیل سے بیان کروں۔ Let,s start. What is Microsoft Excel? Microsoft Excel is a popular application software used to manage data in the form of rows and columns and using Excel formulas and built-in Excel functions to perform various calculations on these data. Microsoft Excel is a part of Microsoft Office. We can make different types of worksheets in Excel, for example: Employee Pay Sheet Student Test Score Result Sheet with Grades Calculation Simple Electricity Bill Calculation Formula What is an Excel Formula? Excel Formula is a proper combination of operators (like +...

How To Create Yahoo E-Mail Account

Today, we are discussing the procedure for Creating a New Yahoo Free E-Mail Account. Yahoo.Com is one of the most popular and oldest Free Email Provider world wide. Yahoo provides many free features to its email account holders including Yahoo Email account. How To Create Free Yahoo Email Account in Seconds Sponsored Links We can easily create a new yahoo email account by performing the following steps in the given order. Actually first of all you have to be connected with a fast internet connection. The second step is obviously to open a web browser. you can use any web browser but I prefer Google Chrome or Mozilla Firefox because they provide the best smooth less browsing experience.  So, here are the Main steps to create a new Yahoo Free E-mail Account: Open web browser, For example Google Chrome, Mozilla Firefox or Internet Explorer. Always use latest updated versions of web browsers for your computers security from hackers and malware. I re...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...