1. Two connected routers are configured with RIP routing. What will be the result when a router receives a routing update that contains a higher-cost path to a network already in its routing table?





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 02 Jun 2017 01.56 am
    When a routing update is received by a router, the router first checks the administrative distance (AD) and always chooses the route with the lowest AD. However, if two routes are received and they both have the same AD, then the router will choose the one route with the lowest metrics, or in RIP's case, hop count.
Show Similar Question And Answers
QA->Assume that 20 cows and 40 goats can be kept for 10 days for Rs. If the cost of keeping 5 goats is the same as the cost of keeping 1 cow, what will be the cost for keeping 50 cows and 30 goats for 12 days?....
QA->A trader marks an article at 30% more than the cost price. He gives 10% discount to his customers and gains Rs. 25·50 per article. The cost price of the article is—....
QA->To make a notebook act as a desktop model, the notebook can be connected to a ………………….. which is connected to a monitor-and other devices.....
QA->A garden is 90 m long and 75m broad.A path 5 m wide is to be built outside around it. Find the area of the path:....
QA->The length of a park is 50m and the breadth is 35m. The width of a path running around the park is 5m. Find the area of the path?....
MCQ->Two connected routers are configured with RIP routing. What will be the result when a router receives a routing update that contains a higher-cost path to a network already in its routing table?....
MCQ->Network 206.143.5.0 was assigned to the Acme Company to connect to its ISP. The administrator of Acme would like to configure one router with the commands to access the Internet. Which commands could be configured on the Gateway router to allow Internet access to the entire network? Gateway(config)# ip route 0.0.0.0 0.0.0.0 206.143.5.2 Gateway(config)# router rip Gateway(config-router)# network 206.143.5.0 Gateway(config-router)# network 206.143.5.0 default....
MCQ->Which two of the following are true regarding the distance-vector and link-state routing protocols? Link state sends its complete routing table out all active interfaces on periodic time intervals. Distance vector sends its complete routing table out all active interfaces on periodic time intervals. Link state sends updates containing the state of its own links to all routers in the internetwork. Distance vector sends updates containing the state of its own links to all routers in the internetwork.....
MCQ->What will be the output of the program? public class WrapTest { public static void main(String [] args) { int result = 0; short s = 42; Long x = new Long("42"); Long y = new Long(42); Short z = new Short("42"); Short x2 = new Short(s); Integer y2 = new Integer("42"); Integer z2 = new Integer(42); if (x == y) / Line 13 / result = 1; if (x.equals(y) ) / Line 15 / result = result + 10; if (x.equals(z) ) / Line 17 / result = result + 100; if (x.equals(x2) ) / Line 19 / result = result + 1000; if (x.equals(z2) ) / Line 21 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->What will be the output of the program? public class BoolTest { public static void main(String [] args) { int result = 0; Boolean b1 = new Boolean("TRUE"); Boolean b2 = new Boolean("true"); Boolean b3 = new Boolean("tRuE"); Boolean b4 = new Boolean("false"); if (b1 == b2) / Line 10 / result = 1; if (b1.equals(b2) ) / Line 12 / result = result + 10; if (b2 == b4) / Line 14 / result = result + 100; if (b2.equals(b4) ) / Line 16 / result = result + 1000; if (b2.equals(b3) ) / Line 18 / result = result + 10000; System.out.println("result = " + result); } }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution