answersLogoWhite

0

It is typical for older routing protocols of the "distance vector" type, such as RIP, or IGRP, to send out their routing tables regularly to neighbors. By default, RIP does this every 30 seconds, while IGRP does it every 90 seconds.

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
ReneRene
Change my mind. I dare you.
Chat with Rene
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor

Add your answer:

Earn +20 pts
Q: What sends entire routing table to all routers at a schedule time?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

What is difference between swift or wire transfer?

The difference between swift and wire transfer is that swift sends information from one bank or other financial institution to another. Swift sends the payment orders, but not the finances. With a wire transfer funds are transferred from one person to another.


What is elevator auto-homing?

Elevator auto-homing sends the elevator to a predetermined floor when not in use. This is usually the first floor. Hydraulic jacks and cables raises and lowers the elevator cars.


If sender sends a series of packets to the same destination using 5 bit sequence number .if the sequence number starts with 0 then what is the sequence number after sending 100 packets?

0011


What is the difference between reply and reply all?

"Reply" is a response only to the person who sent you the email. "Reply all" or "Reply to all" sends your reply not only to the person who sent you the email but also to everyone else who received the same email that you did. In other words: "A" sends email to "B", "C", "D", "E" and "F". If "B" responds to "A", "B's" response will also be sent to C, D, E and F. Ideal for conversations where everyone on the list needs to see the reply, but something you would not want to use for most email as the effect is to fill a lot of mail boxes with a lot of irrelevant mail.


Why parity bit is used?

Parity bits are mainly meant for error detection in serial communication.It will be use full for determining the correctness of data sent from transmitter to receiver.even parity A wants to transmit: 1001 A computes parity bit value: 1^0^0^1 = 0 A adds parity bit and sends: 10010 B receives: 10010 B computes parity: 1^0^0^1^0 = 0 B reports correct transmission after observing expected even result.odd ParityA wants to transmit: 1001 A computes parity bit value: ~(1^0^0^1) = 1 A adds parity bit and sends: 10011 B receives: 10011 B computes overall parity: 1^0^0^1^1 = 1 B reports correct transmission after observing expected odd result.Transmission error detection on even parityA wants to transmit: 1001 A computes parity bit value: 1^0^0^1 = 0 A adds parity bit and sends: 10010 *** TRANSMISSION ERROR *** B receives: 11010 B computes overall parity: 1^1^0^1^0 = 1 B reports incorrect transmission after observing unexpected odd result.Transmission error detection on odd parityA wants to transmit: 1001 A computes even parity value: 1^0^0^1 = 0 A sends: 10010 *** TRANSMISSION ERROR *** B receives: 10011 B computes overall parity: 1^0^0^1^1 = 1 B reports incorrect transmission after observing unexpected odd result.Refference:Wikipedia