You are modifying the default route preference under the [edit protocols] hierarchy. In which two routing information sources can you change the default preference value?() A. localB. OSPFC. directD. BGP

You are modifying the default route preference under the [edit protocols] hierarchy. In which two routing information sources can you change the default preference value?()

A. local

B. OSPF

C. direct

D. BGP


相关考题:

--Must we finish our homework now? --No, you ______. You _______ finish it after school. A.needn't , mayB.mustn't , mayC.can't , canD.needn't , must

22.In the daytime, when you dive in the sea, you ________A. can see everything green and blueB. can- t be in dangerC. can catch nothingD. can't see anything clearly

下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2; System.out.println("two"); default: System.out.println("default"); } } }A.oneB.one,defaultC.one,two,defaultD.default

-Mayweleavetheclassroomnow?-No,you______.You______toleaveuntilthebellrings.A.mustn’t,areallowedB.don’thaveto,aresupposedC.needn’t,aren’tallowedD.can’t,aren’tsupposed

下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.but.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println ("default"); } } }A.oneB.one, defaultC.one, two, defaultD.default

编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }A.one,B.one,two,C.one,two,defaultD.default

下面关于各个协议下发缺省路由配置命令描述错误的是() A.在静态路由中,Iproute-static default-preference命令用来在当前路由器生成一条缺省路由。B.在RIP协议中,default-route originate命令用来在当前路由器生成一条缺省路由或者将路由表中存在的缺省路由发送给邻居C.在OSPF协议中,default-route-advertise命令用来将缺省路由通告到普通OSPF区域中D.在BGP协议中,default-route importd命令来使能将缺省路由引入到BGP路由表中的功能

关于BGP Local-Preference,下面哪些描述是正确的?() A.在BGP选路规则中,Preference-Value的优先级要高于Local-Preference,即优先比较Prefrred-ValueB.BGP路由Local-Preference的缺省值是100C.BGPLocal-Preference通常在选路规则策略中用于控制数据流如何入ASD.在BGP选路规则中,MED的优先级要高于Local-Preference即优先比较MED

下面关于LOCAL_Preference描述正确的是() A.Local_preference是公认必遵属性B.Local_preference一般情况下,影响进入AS内的流量C.Local_preference可以跨AS传播D.Local_preference默认值是100

【填空题】下列程序段运行的结果为() x=2; switch(x%3) { case 2: printf("Are "); case 1:printf("you "); case 0:printf("right"); default: printf("?"); }