Which Cisco IOS command would be used to alter the source interface used for BGP communications?
A) neighbor ip-address source-interface interface
B) neighbor ip-address interface interface
C) neighbor ip-address source interface
D) neighbor ip-address update-source interface
D
Explanation: D) The neighbor ip-address update-source interface command is used to alter the source interface (source IP address) used for BGP communication. It is common for this command to be used along with a configured loopback interface, so the source IP address used is not linked with an interface that can go down, making easier BGP communication rerouting possible.
You might also like to view...
You can add a row to a data table as long as you put in the row immediately below the table
Indicate whether the statement is true or false
Almost every Cisco device has a command a network tech can use to document that configuration of that document. What is that command?
A. Performance Monitor B. show startup-config C. netstat D. msconfig
Contextual targeting analyzes keywords on your blog to match ads to blog content.
Answer the following statement true (T) or false (F)
Which of the following is an invalid way to instantiate a String object?
a)``` String title = new String("Java Software Solutions"); ``` b)``` String name = "John Lewis"; ``` c)``` String empty = ""; ``` d)``` String alsoEmpty = new String(""); ``` e)``` all of the above are valid ```