Skip to main content

INTERNET INTRANET EXTRANET

What is Internet ?
It is a Global network of computers, (servers or clients) to exchange information.
It is a "network of networks" that includes millions of  private and public, academic, business, and government networks (local or Global),
linked by copper wires, wireless connections, and other technologies.

Hardware and Software of Internet
Variety of hardware and software are used to make Internet functional.

  • Modem
Device that enables computers to communicate through phone lines.
When we start internet the our modem communicates to modem of ISP.

  • Computer
In addition to a modem, you need a client capable of handling multiple data types.

  • Software
Two types of software’s required to enable your PC as an Internet PC.
        Communication software to establish connection
        Client software for browsing, e-mail, news.
        these software’s are provided with windows itself


Applications Of Internet :-

  1. Download programs and files
  2. E-Mail
  3. Voice and Video Conferencing
  4. E-Commerce
  5. File Sharing
  6. Information browsing
  7. Search the web addresses for access through search engine
  8. Chatting and many more…

Disadvantages of Internet:-
  1. Theft of personal information such as name, address, credit card number etc.
  2. Virus threats nothing but a program which disrupts the normal functioning of your system.
  3. Spamming refers to receiving unwanted e-mails in bulk, which provide no purpose and needlessly obstruct the entire system.
  4. Pornography This is perhaps the biggest threat related to children’s healthy mental life. A very serious issue concerning the Internet. 
Though, internet can also create havoc, destruction and its misuse can be very fatal, 
the advantages of it outweigh its disadvantages




What is Intranet ?
Internal company network that uses Internet standards (HTML, HTTP & TCP/IP protocols) & software.
Accessed only by authorized persons, especially members or employees of the organization

Intranet Security:-
Two levels of Security required:
Internal
It can be imposed by  Public Key Security & Encryption Key.
External
Through Firewall.

What is Firewall?
Security device located between firm’s internal network (intranet) & external network (internet).
Regulates access into & out of a company’s network based on a set of rules.

Note :  needs to be upgraded from time to time to check latest potential security problems.

Virtual Private Network (VPN):-
A secure connection between two points across the Internet
Tunneling:-
The process by which VPNs transfer information by encapsulating traffic in IP packets and sending the packets over the Internet




Applications of Intranet
  1. Sharing of company policies/rules & regulations
  2. Access employee database
  3. Distribution of circulars/Office Orders
  4. Access product & customer data
  5. Sharing of information  of common interest
  6. Launching of personal/departmental home pages
  7. Submission of reports 

What is Extranet?
Extranet is an Intranet for outside authorized users using same internet technology.
Inter-organizational information system.
Enable outsiders to work together with company’s employees. 
Open to selected suppliers, customers & other business partners
Corporate telephone directories

Examples..
Dealers/distributors have access to product files such as :-
  • product specification,
  • pictures,
  • images, etc.
  • to answer the queries of the customer.

Components of extranets ..
  1. Some basic infrastructure components such as the internet Including :- 
  2. TCP/IP protocols,
  3. E-mail,
  4. Web-browsers,
  5. External business partners &
  6. Tele-commuting employees place order, check status & send E-mail.


Benefits of Extranet:-
  1. Improved quality.
  2. lower travel costs.
  3. lower administrative & other overhead  costs.
  4. reduction in paperwork.
  5. delivery of accurate information on time.
  6. improved customer service.
  7. better communication.
  8. overall improvement in business effectiveness.

Disadvantages of Extranet:-
  1. The suppliers & customer who don’t have technical knowledge feel problem.
  2. Faceless contact.
  3. Information can be  misused  by other competitors.
  4. Fraud may be possible.
  5. Technical Employees are required.







Popular posts from this blog

Solve

Directions: In each Q1 to Q3 of the following questions, there are five letter groups or words in each question. Four of these letter groups or words are alike in some way, while one is different. Find the one which is different. Q.1.    (1) black    (2) red    (3) green    (4) paint    (5) yellow Answer:- (4) paint Q.2.    (1) BC    (2) MN    (3) PQ    (4) XZ    (5) ST Answer :-(4)XZ Q.3.    (1) Mango    (2)Apple    (3) Orange    (4) Guava    (5) Rose Answer :- (5) Rose Directions : In each of the following questions, there is a question mark in which only one of the five alternatives given under the question satisfies the same relationship as is found between the two terms to the left of the sign :: given in the question. Find the correct answer ...

Solved practical slips of 12th Computer Science journal

Program 1:- Write a function in C++ that exchanges data (passing by references )using swap function to interchange the given two numbers.*/ # include<iostream.h> # include<conio.h> void swap(float &x ,float &y) { float t=x; x=y; y=t; } void main() { void swap(float &,float &); float a,b; cin>>a>>b; cout<<” a := ” << a <<” b := ”<< b<< endl; swap(a,b); cout<< ”a:= ”<< a<< ” b := ”<< b<< endl; } Output : 2 4 a := 2 b:= 4 a:= 4 b: =2   Program 2:- Write a program in C++ with a ratio class using member functions like assign () function to initialize its member data integer numerator and denominator ,convert() function to convert the ratio into double, invert() to get the inverse of the ratio and print() function to print the ratio and its reciprocal.*/ ...

SOLVE QUESTION ANSWERS ON OPERATING SYSTEM .

1.One can interface with operating system by means of ------- A) Operating system call in a program B) Operating system commands C) Operating system process D) Both by operating system call and operating system commands Answer :-  D) Both by operating system call and operating system commands 2. Which of the following is not type of processing ? A) Serial B) Network C) Batch D) Multiprogramming Answer :- B) Network 3. Kernel is _____ A) A part of operating system B) An operating system C) A hardware D) A register Answer :-  A) A part of operating system 4. UNIX operating system is based on ______ A) Language structure B) Kernel approach C) Virtual machine D) Time sharing Answer :-   B) Kernel approach 5. A transition between two memory resident process in a memory resident process in amultiprograming system is called ______ A) Process switch B) Mode switch C) Transition switch D) None of these Answer :-    A) Process ...