- Install k9sec and mgbl packages
- Generate crypto keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "info": { | |
| "_postman_id": "11d6bce2-fa70-40cd-b353-ca023e583f87", | |
| "name": "Cisco IOS-XE RESTCONF 101", | |
| "description": "RESTCONF 101 Postman Collection using DevNet IOS-XE Always-on Sandbox (GET, PATCH and DELETE)", | |
| "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
| }, | |
| "item": [ | |
| { | |
| "name": "RESTCONF on IOS XE - GET the root.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker network rm $(docker network ls | grep "foo" | awk '/ / { print $1 }') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # import is used to make specialty functions available | |
| # These are called modules | |
| import random | |
| import sys | |
| import os | |
| # Hello world is just one line of code | |
| # print() outputs data to the screen | |
| print("Hello World") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 1/ - FUNCTIONS - | |
| 2/ - CLASSES - | |
| 3/ - ARITHMETIC - | |
| 4/ - CASTING - | |
| 5/ - IF STATEMENT - | |
| 6/ - SWITCH STATEMENT - | |
| 7/ - TERNARY OPERATOR - | |
| 8/ - ARRAYS - | |
| 9/ - FOR LOOP - (loops) |
