Explaining Routers

3

Como você explicaria a funcionalidade "roteador" para pessoas não técnicas?

    
por Simple Man 22.02.2011 / 16:59

4 respostas

5

Ou como em uma junção de autoestrada. Os carros que chegam de A e vão para B tomarão a saída B1, tudo isso dependendo dos sinais / rotas nessa junção / roteador.

    
por 22.02.2011 / 17:07
5

Basicamente, o roteamento é o seguinte:

It's like the sorting centre in a post office. Data from a network packet are like the letters you send, it contains information for the recipient. It reads the recipient's address (but instead of a post address, computers use MAC and IP addresses) from the internet packets (like mail recipients) and sends them off to the computer it is meant for (mail recipient). A switch very much works the same way, only a router is the only one of the two that keeps track of who are in the neighbourhood (network).

Hoje em dia, os roteadores têm muito mais funcionalidade, como conversão de sinal sem fio (WiFi), funções de modem, etc. Mas a função de roteamento básica seria a anterior.

    
por 22.02.2011 / 17:03
3

Todas as boas respostas, mas o OP estava perguntando como explicar para as pessoas não técnicas . Nesse caso, costumo usar uma analogia de divisor de cabo, porque a maioria das pessoas está familiarizada com essa tecnologia:

A TV a cabo entra em sua casa em um local, mas você tem duas TVs em salas diferentes. Portanto, você conecta um divisor, que permite conectar cabos do divisor a seus dois (ou mais) aparelhos de TV separados. Um roteador faz algo parecido, já que sua internet vem através de um cabo conectado a um modem. O modem tem uma saída ethernet, que se conecta ao roteador. O roteador fornece mais saídas para se conectar a vários computadores, bem como acesso sem fio.

Eu sei que não é uma analogia perfeita, mas quando começo a mencionar pacotes de dados, pessoas leigas têm aquele olhar brilhante e começam a pensar em quanto tempo vai durar até o jantar, ou pelo menos até eu terminar de falar.

    
por 22.02.2011 / 22:45
0

A router is a device in computer networking that forwards data packets to their destinations, based on their addresses. The work a router does it called routing, which is somewhat like switching, but a router is different from a switch. The latter is simply a device to connect machines to form a LAN.

How a Router Works

When data packets are transmitted over a network (say the Internet), they move through many routers (because they pass through many networks) in their journey from the source machine to the destination machine. Routers work with IP packets, meaning that it works at the level of the IP protocol. Each router keeps information about its neighbors (other routers in the same or other networks). This information includes the IP address and the cost, which is in terms of time, delay and other network considerations. This information is kept in a routing table, found in all routers.

When a packet of data arrives at a router, its header information is scrutinized by the router. Based on the destination and source IP addresses of the packet, the router decides which neighbor it will forward it to. It chooses the route with the least cost, and forwards the packet to the first router on that route.

.

Fonte

    
por 22.02.2011 / 17:08