CertExams.com Simulator Lab Exercises Answers
Description : The lab exercise explains how to configure bandwidth,clock rate of an interface of a router using JSON
Instructions
1. In a GUI simulator window(Graphical Network Configurator) click JSON Simulator button.
2. In JSON simulator window configure the following parameters. Enter appropriate JSON code in the console window for the same.
1. host-name: router1
2. if-name: serial0/0
3. bandwidth: 64
4. clock rate: 64000
Explanation:
JSON schema for setting bandwidth and clock rate of a router is
{ "description": "A Router", "type":"'object", "properties": {"host-name": {"type": "string","minLength": 2,"maxLength": 25}, "if-name": {"type": "string"}, "bandwidth": {"type": "number"}, "clock rate" : {"type": "number"} }, "required": ["host-name","if-name","bandwidth","clock rate"] }
Please refer to the CertExams.com Network Simulator software for complete lab with commands.