200-901 Cisco Platforms and Development • Complete Question Bank
Complete 200-901 Cisco Platforms and Development question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
{
"Cisco-IOS-XE-native:interface": {
"GigabitEthernet": [
{
"name": "1/0/1",
"description": "Server port",
"ip": {
"address": {
"primary": {
"address": "192.168.1.1",
"mask": "255.255.255.0"
}
}
},
"switchport": {
"access": {
"vlan": 10
},
"mode": "access"
}
}
]
}
}Refer to the exhibit.
! NSO configuration snippet
services {
l3vpn vpn1 {
endpoint ce1 {
device [pe1 pe2]
interface GigabitEthernet0/0/1
ip-address 10.0.0.1/30
}
endpoint ce2 {
device pe3
interface GigabitEthernet0/0/2
ip-address 10.0.0.5/30
}
}
}Refer to the exhibit.
{
"Cisco-IOS-XE-native:interface": {
"GigabitEthernet": [
{
"name": "1/0/1",
"description": "Link to Core",
"ip": {
"address": {
"primary": {
"address": "10.10.10.1",
"mask": "255.255.255.0"
}
}
}
}
]
}
}Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Copy a repository to local machine
Save changes to local repository
Upload local changes to remote repository
Fetch and merge changes from remote
List, create, or delete branches
Drag a concept onto its matching description — or click a concept then click the description.
Automatically build and test code changes
Automatically deploy to staging after CI
Automatically deploy to production after CI
Compile source code into artifacts
Sequence of automated steps for delivery
Refer to the exhibit. ``` subscription telemetry stream yang-push filter "/interfaces/interface/state/oper-status" encoding encode-kvp source-address 192.168.1.1 receiver ip 10.10.10.1 port 2000 protocol tls ```
Refer to the exhibit.
```json
{
"mac": "00:11:22:33:44:55",
"serial": "Q2XX-XXXX-XXXX",
"name": "Office AP",
"networkId": "N_12345",
"model": "MR42",
"lanIp": "192.168.1.100",
"status": "online"
}
```Refer to the exhibit.
```json
{
"errorMessage": "Invalid auth token",
"statusCode": 401,
"details": "Token has expired"
}
```Refer to the exhibit. Router# show ip interface brief Interface IP-Address OK? Method Status Protocol GigabitEthernet0/0 192.168.1.1 YES manual up up GigabitEthernet0/1 10.10.10.1 YES manual down down GigabitEthernet0/2 unassigned YES unset administratively down down
Refer to the exhibit.
{
"templateId": "template-123",
"templateName": "Branch-VPN",
"deviceType": "vedge-C8000V",
"configType": "template",
"features": [
{
"feature": "cisco-vpn",
"definition": {
"vpn-id": 10,
"name": "Data-VPN",
"ip": {
"route": [
{"prefix": "0.0.0.0/0", "nextHop": "10.0.0.1", "vpn": 0}
]
}
}
}
]
}Refer to the exhibit.
import requests
url = "https://sandboxdnac.cisco.com/dna/system/api/v1/auth/token"
payload = {"username": "devnetuser", "password": "Cisco123!"}
response = requests.post(url, data=payload, verify=False)
print(response.json())
Traceback (most recent call last):
File "script.py", line 4, in <module>
response = requests.post(url, data=payload, verify=False)
...
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='sandboxdnac.cisco.com', port=443): Max retries exceeded with url: /dna/system/api/v1/auth/token (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x...>: Failed to establish a new connection: [Errno 110] Connection timed out'))HTTP/1.1 400 Bad Request
Content-Type: application/yang-data+json
{
"ietf-restconf:errors": {
"error": [
{
"error-tag": "malformed-message",
"error-message": "Invalid JSON syntax at line 3, column 12"
}
]
}
}Router# show running-config | include username username admin privilege 15 secret 5 $1$abc$xyz username devuser privilege 1 secret 5 $1$def$123
[
{
"hostname": "Edge-Router",
"managementIpAddress": "10.1.1.1",
"softwareVersion": "16.12.3",
"deviceRole": "BORDER ROUTER"
}
]