单选题What is the Cisco IOS default behavior for switching from the shared tree to the shortest path tree in PIM-SM operations?()Aimmediately after receiving the first packet on the shared tree for a given (S,G)Bafter receiving over 1 kb/s traffic onthe shared tree for a given (S,G)C10 seconds after receiving the first packet on the shared tree for a given (S,G)D30 seconds after receiving the first packet on the shared tree for a given (S,G)Eafter receiving over 10 kb/s traffic onthe shared tree for a given (S,G)

单选题
What is the Cisco IOS default behavior for switching from the shared tree to the shortest path tree in PIM-SM operations?()
A

immediately after receiving the first packet on the shared tree for a given (S,G)

B

after receiving over 1 kb/s traffic onthe shared tree for a given (S,G)

C

10 seconds after receiving the first packet on the shared tree for a given (S,G)

D

30 seconds after receiving the first packet on the shared tree for a given (S,G)

E

after receiving over 10 kb/s traffic onthe shared tree for a given (S,G)


参考解析

解析: 暂无解析

相关考题:

To control the execution of a server process when it is receiving bad packets from a potentially malicious client, you set the SEC_PROTOCOL_ERROR_FURTHER_ACTION initialization parameter as follows:SQL ALTER SYSTEM SET SEC_PROTOCOL_ERROR_FURTHER_ACTION = Drop,10;What is the significance of this setting?()A. It terminates the client connection after 10 bad packets and the client cannot reconnect to the same instance.B. It terminates the client connection after 10 bad packets but the client can still reconnect, and attempt the same operation again.C. It terminates the client connection 10 seconds after receiving a bad packet and the client cannot reconnect to the same instance.D. It terminates the client connection after receiving a bad packet and the client can reconnect to the same instance after 10 minutes.

Do you know the man who’s in a () study under the tree over there?

Which of the following are shared distribution tree characteristics() A.Memory requirements are higher for shared distribution tree than for source distributiontree.B.Creates a tree from a central RP to all last-hoprouters.C.Uses a rendezvous point.D.An optimal path is created between each source router and each last-hoprouter.E.Place(S,G)entry in each router’smulticast routing table.F.Place(*,G)entry in a router’smulticast routing to table.

Which two of these statements correctly describe classic PIM-SM?()A、The IOS default is for a last-hop router to trigger a switch to the shortest path tree as soon as a new source is detected on the shared tree.B、The IOS default is for every one of the routers on the shared tree to trigger a switch to the shortest path tree as soon as a new source is detected on the shared tree.C、The default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to "infinity."D、The default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to "zero."

Which two statements about spanning tree path cost are true?()A、The path cost can be changed for an interface using the spanning-tree cost commandB、The path cost can be changed for an interface using the stp path-cost commandC、The SPT default path cost depends on the interface speedD、The STP default path cost is similar for all interface

Which of the following statements is correct regarding PIM Sparse Mode operations?()A、It does not support all underlying unicast routing protocols like GBPB、It supports shared trees only assuming all hosts want the multicast trafficC、Receivers are registered with RP by their first-hop routerD、Receivers are joinedto the Shared Tree(rooted the rp )by their local Designated Router(DR)E、From the RP,traffic flows down a Source Tree to each receiver

The default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to "zero." ()A、loop guardB、storm controlC、storm suppressionD、broadcast suppressionE、BPDU guard

Which of the following are shared distribution tree characteristics()A、Memory requirements are higher for shared distribution tree than for source distributiontree.B、Creates a tree from a central RP to all last-hoprouters.C、Uses a rendezvous point.D、An optimal path is created between each source router and each last-hoprouter.E、Place(S,G)entry in each router’smulticast routing table.F、Place(*,G)entry in a router’smulticast routing to table.

What is the Cisco IOS default behavior for switching from the shared tree to the shortest path tree in PIM-SM operations?()A、immediately after receiving the first packet on the shared tree for a given (S,G)B、after receiving over 1 kb/s traffic onthe shared tree for a given (S,G)C、10 seconds after receiving the first packet on the shared tree for a given (S,G)D、30 seconds after receiving the first packet on the shared tree for a given (S,G)E、after receiving over 10 kb/s traffic onthe shared tree for a given (S,G)

In a Cisco Unified Computing System, What is the "designated receiver" port in end-host mode used for?()A、 Sending all broadcastsB、 Receiving all traffic from upstream switchesC、 Receiving broadcast trafficD、 Negotiating spanning tree with upstream switchesE、 Learning MAC addresses from upstream switches

现有:  class Tree {  private static String tree = "tree ";  String getTree ()  {  return tree;  }       }  class Elm extends Tree {  private static String tree = "elm ";  public static void main (String  []  args)  {       new Elm() .go (new Tree())  ;      } }  void go (Tree t)  {  String  s =  t.getTree () +Elm.tree  +  tree  +   (new  Elm() .getTree ()) ;      System.out.println (s) ;}     结果为:()                 A、 elm elm elm elmB、 tree elm elm elmC、 tree elm elm treeD、 tree elm tree elm

What Cisco technology protects against Spanning-Tree Protocol manipulation?()A、 Spanning tree protectB、 Root Guard and BPDU GuardC、 Unicast Reverse Path ForwardingD、 MAC spoof guardE、 Port Security

Which statement about PIM sparse mode operations is true?()A、It does not support all underlying unicast routing protocols like BGPB、Receivers are registered with RP by their first hop routerC、From the RP, traffic flows down a source tree to each receiver.D、It supports shared trees only, and assumes all hosts want the multicast trafficE、Receivers are joined to the shared tree by their local designated router

Which of the following are shared distribution tree characteristics? (Choose all that apply.)()A、Memory requirements are higher for shared distribution tree than for source distribution treeB、Creates a tree from a central RP to all last-hop routersC、Uses a rendezvous pointD、An optimal path is created between each source router and each last-hop routerE、Place (S,G) entry in each router’s multicast routing tableF、Place (*,G) entry in a router’s multicast routing to table

Which of these statements about PIM join messages in classic PIM-SM is correct?()A、PIM join messages are sent every 60 seconds to refresh the upstream router’s mroute state for the multicast tree.B、Routers send a PIM join acknowledgement in response to each PIM join message received from a downstream router.C、PIM join messages are only sent when the multicast distribution tree is first being established.D、PIM join messages are sent every three minutes to refresh the upstream router’s mroute state for the multicast tree.

final class Tree {  private static String tree = "tree ";  String getTree() { return tree; }  }  class Elm extends Tree {  private static String tree = "elm "; public static void main(String [] args) {  new Elm().go(new Tree());  }  void go(Tree t) {  String s = t.getTree()+Elm.tree+tree+(new Elm().getTree());  System.out.println(s);  } }  结果为:() A、elm elm elm elmB、tree elm elm elmC、tree elm tree elmD、编译失败

单选题In a Cisco Unified Computing System, What is the "designated receiver" port in end-host mode used for?()A Sending all broadcastsB Receiving all traffic from upstream switchesC Receiving broadcast trafficD Negotiating spanning tree with upstream switchesE Learning MAC addresses from upstream switches

单选题final class Tree {  private static String tree = "tree ";  String getTree() { return tree; }  }  class Elm extends Tree {  private static String tree = "elm "; public static void main(String [] args) {  new Elm().go(new Tree());  }  void go(Tree t) {  String s = t.getTree()+Elm.tree+tree+(new Elm().getTree());  System.out.println(s);  } }  结果为:()Aelm elm elm elmBtree elm elm elmCtree elm tree elmD编译失败

单选题Which statement about PIM sparse mode operations is true?()AIt does not support all underlying unicast routing protocols like BGPBReceivers are registered with RP by their first hop routerCFrom the RP, traffic flows down a source tree to each receiver.DIt supports shared trees only, and assumes all hosts want the multicast trafficEReceivers are joined to the shared tree by their local designated router

多选题Which of the following are shared distribution tree characteristics()AMemory requirements are higher for shared distribution tree than for source distributiontree.BCreates a tree from a central RP to all last-hoprouters.CUses a rendezvous point.DAn optimal path is created between each source router and each last-hoprouter.EPlace(S,G)entry in each router’smulticast routing table.FPlace(*,G)entry in a router’smulticast routing to table.

单选题What Cisco technology protects against Spanning-Tree Protocol manipulation?()A Spanning tree protectB Root Guard and BPDU GuardC Unicast Reverse Path ForwardingD MAC spoof guardE Port Security

单选题现有:  class Tree {  private static String tree = "tree ";  String getTree ()  {  return tree;  }       }  class Elm extends Tree {  private static String tree = "elm ";  public static void main (String  []  args)  {       new Elm() .go (new Tree())  ;      } }  void go (Tree t)  {  String  s =  t.getTree () +Elm.tree  +  tree  +   (new  Elm() .getTree ()) ;      System.out.println (s) ;}     结果为:()A elm elm elm elmB tree elm elm elmC tree elm elm treeD tree elm tree elm

单选题Which of these statements about PIM join messages in classic PIM-SM is correct?()APIM join messages are sent every 60 seconds to refresh the upstream router’s mroute state for the multicast tree.BRouters send a PIM join acknowledgement in response to each PIM join message received from a downstream router.CPIM join messages are only sent when the multicast distribution tree is first being established.DPIM join messages are sent every three minutes to refresh the upstream router’s mroute state for the multicast tree.

多选题Which two of these statements correctly describe classic PIM-SM?()AThe IOS default is for a last-hop router to trigger a switch to the shortest path tree as soon as a new source is detected on the shared tree.BThe IOS default is for every one of the routers on the shared tree to trigger a switch to the shortest path tree as soon as a new source is detected on the shared tree.CThe default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to infinity.DThe default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to zero.

多选题The default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to "zero." ()Aloop guardBstorm controlCstorm suppressionDbroadcast suppressionEBPDU guard

单选题Which of the following statements is correct regarding PIM Sparse Mode operations?()AIt does not support all underlying unicast routing protocols like GBPBIt supports shared trees only assuming all hosts want the multicast trafficCReceivers are registered with RP by their first-hop routerDReceivers are joinedto the Shared Tree(rooted the rp )by their local Designated Router(DR)EFrom the RP,traffic flows down a Source Tree to each receiver

单选题A port in a redundant topology is currently in the blocking state and is not receiving BPDUs. To ensure that this port does not erroneously transition to the forwarding state,  which command should be configured to satisfy the requirement?()ASwitch(config)#spanning-tree loopguard defaultBSwitch(config-if)#spanning-tree bdpufilterCSwitch(config)#udld aggressiveDSwitch(config-if)#spanning-tree bpduguard