PrepAway - Latest Free Exam Questions & Answers

Category: 640-760 (v.1)

Exam 640-760: Cisco Certified Network Associate in Service Provider Operations (CCNA SP Operations) (update Sep 4th, 2015)

Which of the following would allow the link to forward data traffic within a few seconds after bringing up bot

Refer to the exhibit.

A Cisco 7200 Series Router is directly connected to a Cisco Catalyst 3560 Series Switch over a
Gigabit Ethernet link. It takes an average of 50 seconds after bringing up both ends of the link for
data traffic to flow across the link. Which of the following would allow the link to forward data traffic
within a few seconds after bringing up both ends of the link?

Which statement is true about this script?

The following UNIX shell script was created to generate a configuration for the Cisco GGSN.
Which statement is true about this script?
#!/bin/sh
echo “gprs access-point-list AC”
x=1000
y=1501
while [ $x -lt $y ]; do
 echo ” access-point $x”
 echo ” access-point-name AutomationApn$x”
 echo ” access-type real”
 echo ” access-mode non-transparent”
 echo ” service-mode operational”
 echo ” vrf CHARGING”
 echo ” aaa-group accounting AAAactServer”
 echo ” aaa-group authentication AAAautServer”

 echo ” charging profile any 6 override”
 echo ” aggregate auto”
 echo ” gtp response-message wait-accounting”
 echo ” gtp pdp-context timeout idle 600 uplink”
 echo ” exit”
 echo ” !”
 x=`expr $x + 1`
done
echo “!”


Page 11 of 12« First...89101112