Category : Uncategorized

SNMP v2 Walk Command Walk the device to see what might be interesting on it. snmpwalk -v2c -c COMMUNITY IP.ADD.RE.SS snmpwalk -v2c -c netbotz 10.90.34.172:1024 # To view all MIBs snmpwalk -v2c -c netbotz -m all 10.90.34.172:1024 Note: This might limit the results of the walk. To view EVERYTHING, start at ‘.1’ snmpwalk -v2c -c ..

Read more

6. Clone the demo app Go to: https://github.com/habmic/opentelemetry-101 Clone the repo – giving a star never hurt 😉 cd to opentelemetry-101 run ‘git checkout 1’ – we use tags to jump to different stages of the project docker-compose up 8. Install OpenTelemetry https://github.com/habmic/opentelemetry-101/blob/main/docs/installing-opentelemetry.md Installing the libraries yarn add @opentelemetry/api @opentelemetry/auto-instrumentations-node @opentelemetry/exporter-trace-otlp-proto @opentelemetry/sdk-node Verify everything is ..

Read more

cmdlets Run these directly from the command line or use them in your scripts. New-Item Creating Files C:\path\to\somewhere\> New-Item -path C:\scripts\myfile.txt -type “file” -value “Here is some text” C:>cd \scripts C:> ls Mode LastWriteTime Length Name … -a—- MM/DD/YYYY H:mm 17 myfile.txt … C:\scripts\> New-Item -path .\myotherfile.txt -type “file” -value “Here is some text” C:> ..

Read more

Powershell Loops For Loops For Loop (Using Counters) For(InitValue; Comparison; Increment){ … } $myFriends = @(‘Rob’, ‘Paul’, ‘Sam’, ‘Kyle’) For($counter=0; $counter -le ($myFriends.Length – 1); $counter++){ Write-Host $myFriends[$counter] “is my friend.” } Note: Would have been better to use -lt and actual length instead of the extra math, but showing what can be done here. ..

Read more

User Input Read-Host $userName = Read-Host -Prompt “What is your name? More Advanced: Write-Host “What is your favorite system?” Write-Host “1. NES” Write-Host “2. Atari” Write-Host “3. N64” Write-Host “4. Wii” Write-Host “5. Switch” $favSystem = Read-Host -Prompt “What is your favorite gaming syste..

Read more

Training Docs https://zenpacks.zenoss.io/zdk/dev-env/ 2:36 NetBotz Device: IP: 10.90.34.172 Port: 1024 Version: 2c Community: netbotz Day 1 – 5 hrs No sound for 1st 7 minutes Video Link #y*26Psp Times: 0:28:00 Creating ZenPack (CLI) X:XX:00 Creating a Monitoring Template (UI) 1:06:00 Create Data Point (UI) Includes how to translate a MIB Definition to an OID (CLI) ..

Read more

Cmdlets Verb-Noun (Action)-(Thing) Get, Add, Export, Import, Start `get-verb` Verbs are subdivided into Groups Examining the Help System -examples -detailed: Shows examples, but also includes additional details about how to use the command -full: Detailed, but includes additional parameters -online: Opens a browser to the online help Get-Help Get-Service -Examples Combining Commands using the Pipe ..

Read more

https://www.baeldung.com/linux/letsencrypt-renew-ssl-certificate-automatically sudo apt-get install software-properties-common sudo apt-get update sudo apt-get install certbot # this did not work sudo apt-get install python-certbot-apache #this did! sudo apt-get install python3-certbot-apache sudo certbot –apache To manually renew sudo certbot renew –apache     &nb..

Read more

Section 13: Working with the Horizon Dashboard 43. Introduction https://www.udemy.com/course/openstack/learn/lecture/6765166#overview Create a complete project with VMs and users Create the Project Identity > Projects > [+ Create Project] Project Information tab Name: engineering_cloud Project Members tab Assign admin user as admin to the project [Create Project]* *Quota tab This tab does not exist in my ..

Read more

CCNA Course Outline 38% Complete The CCNA/ICND1 courses split here. 121. Introduction https://www.udemy.com/course/ccna-complete/learn/lecture/7840926#overview   122. RIP the Routing Information Protocol Overview Distance Vector routing protocol Metric: Hop Count Max hop count = 15 Equal cost Multi Path for up to 4 paths by default RIPv2 vs RIPv1 v1 legacy. Still supported but not used. Does ..

Read more