Skip to main content

Top 20 Definitions of Networking

1.      ARP – It stands for Address Resolution Protocol. It’s Network layer protocol that IP uses to ascertain (find out) the MAC address of a known IP address when IP determines that the destination is on the local subnet and communication with the destination must therefore occur at the Data Link Layer.  

2.     ATM – It stands for Asynchronous Transfer Mode. A connection-oriented network architecture based on broadband ISDN technology that uses constant size 53-byte cells instead of packets. Because cells don’t change size, they are switched much faster and more efficiently than packets across a network.

3.      Bandwidth – In network communications, the amount of data that can be sent across a wire in a given time. Each communication that possess along the wire decreases the amount of available bandwidth.

4.      Bridge – A network device, operating at the Data Link Layer, that logically separates a single network into segments but lets the two segments appear to be one network to higher-layer protocols.

5.      Carrier – Signal at a frequency that is chosen to carry data. Addition of data to the frequency is modulation and the removal of data from the frequency is demodulation. This is used on analog devices like modems.

6.      CSMA/CA – It stands for Carrier Sense Multiple Access / Collision Avoidance. A media access method that sends a request to send (RTS) packet and waits to receive a clear to send (CTS) packet before sending. Once the CTS is received, the sender sends the packet of information.

7.      CSMA/CD – It stands for Carrier Sense Multiple Access / Collision Detection. A media access method that first senses whether there is a signal on the wire, indicating that someone is transmitting currently. If no one else is transmitting, it attempts a transmission and listens for someone else trying to transmit at the same time. If this happens, both senders back off and don’t transmit again until some specified period of time has passed.

8.      Circuit Switching – A switching method where a dedicated connection between the sender and receiver is maintained throughout the conversation. POTS and ISDN, for example, establish circuit-switched connections through dialed numbers.

9.      Packet Switching – A method of switching that sends information as potentially smaller discrete, each one independently addressed for the intended recipient. Intermediate devices, such as switches and routers, can send these packets alone one or more different paths to the same destination, making the autonomy of each packet imperative. A packet-switched connection is virtual and the physical paths are shared, in contrast to the concept of the dedicated paths of circuit switching.

10.  POTS – It stands for Plain Old Telephone Service. The classic analog circuit commonly used to connect to the Public Switched Telephone Network (PSTN) to make voice calls for conversations and modem and facsimile sessions.

11.  CIDR – It stands for Class Interdomain Routing. The new routing method used by InterNIC to assign IP addresses. CIDR can be described as slash x network. The x represents the number of bits in the network that InterNIC controls.

12.  DNS – It stands for Domain Name Service. The network service used in TCP/IP networks that translates host names to IP addresses.

13.  CNAME Record - A DNS record type that specifies other names for existing hosts. This allows a DNS administrator to assign multiple DNS host names to a single DNS host. Also known as alias record.

14.  CRC – It stands for Cyclic Redundancy Check. An error-checking method in data communication that runs a formula against data before transmissions. The sending station then appends the resultant value (called a checksum) to the data and sends it. The receiving station uses the same formula on the data. If the receiving station doesn’t get the same checksum result for the calculation, it considers the transmission invalid, rejects the frame, and asks for a retransmission.

15.  DoS – It stands for Denial of Service attack. Type of hack that prevents any users – even legitimate ones – from using the system.

16.  DHCP – It stands for Dynamic Host Configuration Protocol. A protocol used on a TCP/IP network to send configuration data, including TCP/IP address, default gateway, subnet mask, and DNS configuration, to clients.

17.  DSL – It stands for Digital Subscriber Line. A digital WAN technology that brings high speed digital networking to homes and business over POTS. There are many types, including HDSL (high-speed DSL) and VDSL (very high data-rate DSL).

18.  EAP – It stands for Extensible Authentication Protocol. As extension to PPP that supports multiple authentication methods, including Kerberos, passwords, certificates, smart cards, and so on. IEEE 802.1x is the standard that dictates how EAP is used within Ethernet frames.

19.  FDDI – It stands for Fiber Distributed Data Interface. A network topology that uses fiber-optic cable as a transmission medium and dual, counter-rotating rings to provide data delivery and fault tolerance.

20.  Firewall – A combination of hardware and software that protects a network from attack by hackers that could gain access through public networks, including the Internet.

 Resource Used:
Network + Study Guide by David Groth Toby Skandier

Compiled By: Chaudhary Amit V.

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...