Skip to main content

What is a Router ? | IT NETWORKS

What is a router?



Routers are responsible for transmitting packets from one end host on the internet, maybe a laptop to and from other end-hosts that are connected to the internet like a web server that we are accessing.

Routers are not computers that you might recognize, routers are specialized pieces of
computer hardware that is built to do one task over and over and over again and that determines where a packet should go.

 If the router only has two connections then when a packet comes in on one connection, it has to go out on the other and to some degree, there's no real point to have a router there at all same thing with the other direction because a router is on a destination for traffic it's just there to route traffic
to move it towards a destination that's an important distinction between end hosts and routers.

An end host can be a PC or a server...

Routers typically don't initiate that much traffic, they can initiate a little bit maybe using ICMP messages which are based on the Internet Control Message Protocol, to inform others on the internet about things that are happening.

Routers don't serve files to web users or do not provide a certain application they are conceived to route traffic.

what is a router, what does a router do, routers, cisco router, huawei router, juniper router, layer 3, network, router configuration


 Routers direct packets toward their destination once a router has one, two, three or more links then it starts to have a choice to make base on several conditions that are related to certain rules we call PROTOCOLs or some certain techniques to route traffic.

If a router receives packets faster than it can handle them, it can store them temporarily in its memory to try to process them, a very short time later, but if enough of those packets build up it has to start dropping them.

All routers are communicating with each other using the IP protocol and they do the Best-effort packet delivery trying to move the packet to its destination.

Here are some router models:

Cisco

what is a router, what does a router do,  routers, cisco router, huawei router,  juniper router, layer 3, network, router configuration
what is a router, what does a router do,  routers, cisco router, huawei router,  juniper router, layer 3, network, router configuration

Learn more:

In Programing

How to install PYTHON 3.8.0 :
https://itnetworks2020.blogspot.com/2019/12/1-programming-with-python-installing.html

In Security

Endpoint introduction :
https://itnetworks2020.blogspot.com/2019/10/endpoints-introduction.html

Firewalls:
https://itnetworks2020.blogspot.com/2019/10/firewalls.html

Security Email Gateways:
https://itnetworks2020.blogspot.com/2019/10/secure-email-gateway.html

CyberSecurity Evolution : UnKnown Threats:
https://itnetworks2020.blogspot.com/2019/10/cybersecurity-evolution-unknown-threats.html

CyberSecurity Evolution : Known Threats
https://itnetworks2020.blogspot.com/2019/10/cybersecurity-evolution-known-threats.html

Comments

Popular posts from this blog

Automating VLAN Creation on Cisco Devices with Ansible

  Automating VLAN Creation on Cisco Devices with Ansible Ansible is a powerful automation tool that simplifies network management tasks, including creating VLANs on Cisco devices. For beginners, this guide will walk you through automating VLAN creation step-by-step, from setting up Ansible to deploying VLAN configurations. What is a VLAN? A VLAN (Virtual Local Area Network) is a logical group of devices within a network that can communicate as if they were on the same physical network, regardless of their physical location. VLANs improve network efficiency and security by segmenting traffic. Why Use Ansible for VLAN Automation? Consistency: Avoid manual configuration errors. Efficiency: Configure multiple devices in seconds. Scalability: Manage large-scale networks easily. Flexibility: Supports various Cisco devices and integrates with other tools. Prerequisites Cisco Device Configuration: Ensure your Cisco devices support SSH and are configured to allow Ans...

20 Linux Commands for Listing Users, Folders, and Processes on Ubuntu and Red Hat

 Linux provides a variety of commands to retrieve information about system users, directories, and processes. This article presents 20 essential Linux commands for listing and managing users, folders, and processes, applicable to both Ubuntu and Red Hat systems. 1. Listing Users cat /etc/passwd Displays a list of all users on the system along with their user IDs, home directories, and shells. getent passwd Fetches user information from the system's databases, useful in environments with LDAP or NIS. who Shows all users currently logged in to the system. w Displays detailed information about logged-in users, including their active processes. users A simple command that lists the currently logged-in users. id [username] Displays user ID (UID), group ID (GID), and group memberships for a specific user. finger [username] Provides information about a user, including their real name, login time, and more. (May require installation: sudo apt install finger...

30 Linux Commands You Should Know

Linux is a powerful operating system used by developers, system administrators, and tech enthusiasts worldwide. Whether you're new to Linux or brushing up on your skills, here are 30 essential commands every Linux user should know: Start Learning   Linux Fundamentals  For Free 1. ls Lists files and directories in the current directory. ls 2. cd Changes the current directory. cd /path/to/directory 3. pwd Prints the current working directory. pwd 4. touch Creates an empty file. touch filename 5. mkdir Creates a new directory. mkdir new_directory 6. rm Removes files or directories. rm filename Use rm -r for directories. 7. cp Copies files or directories. cp source destination 8. mv Moves or renames files and directories. mv oldname newname 9. cat Displays the contents of a file. cat filename 10. nano Opens a simple text editor. nano filename 11. vim A powerful text editor. vim filename 12. chmod Changes file permissions. chmod 755 filen...