Quantcast
Channel: Howtos & more …– LANbugs
Browsing all 144 articles
Browse latest View live

CLI Tool – Export AP inventory from an Cisco Wireless LAN Controller (WLC)

This tool exports the complete AP inventory from an Cisco WLC. You can create an CSV export or an table. Download: https://gist.github.com/lanbugs/e86042c0b2afaf7166637a9aa9711cb6 $ python...

View Article


Commandline Tool to export current registered users at APs from an Cisco...

This tool exports all current clients on all APs assigned to the WLC. You can export as CSV or as table. Download: https://gist.github.com/lanbugs/6dc874ad0736424c5c7808f01ec78f96 $ python...

View Article


Commandline Tool for exporting Cisco hardware inventory via SNMP

This tool exports every hardware asset from an Cisco device with a serial number. You can export the list as table or CSV. Download: https://gist.github.com/lanbugs/4dbed5e0e8a7d5b6d29c4ea9b9e93bb2...

View Article

Image may be NSFW.
Clik here to view.

Check_MK: TG-Notify – Telegram Notification Bot with Callback for ACK & Downtime

TG-Notify ist eine von mir geschriebene Erweiterung für Check_MK welche Notifications über Telegram ermöglicht und über Callback Acknowledge und Downtimes setzen kann für Hosts/Services. Sourcecode:...

View Article

E-Mail Aliase und Domains aus Plesk Datenbank exportieren

Das Skript verwende ich um aus der Plesk Datenbank alle gültigen E-Mail Adressen für einen Frondend Mailserver zu exportieren.  

View Article


Parse postfix databases / lookup tables with python

With this script you can parse the postfix databases / lookuptables which are in berkley database format.  

View Article

Image may be NSFW.
Clik here to view.

Gitolite mit ansible-playbook post-update hook zum Verteilen von...

Gitolite ist ein einfaches Script um einen GIT Repo Server aufzusetzen. Zusammen mit Ansible nutze ich es um z.B. Zonenfiles auf Bind9 Server zu verteilen. Das werde ich in diesem Beispiel zeigen....

View Article

Check certificate subject alternative names

The title says everything … From webserver: openssl s_client -connect example.org:443 | openssl x509 -noout -text | grep DNS: And from file: openssl x509 -noout -text -in cert.pem | grep DNS:  

View Article


Python & ARISTA eAPI

Von ARISTA wird ein Python Paket bereitgestellt um über die eAPI mit dem Switch arbeiten zu können. Dies ist eine Qickanleitung. pyeapi Paket installieren pip install pyeapi ARISTA eAPI aktivieren Auf...

View Article


ARISTA bash event-handler in different VRF context

We are using an event-handler with on-startup-config write to push the configuration to our langley service which push the config in the central GIT repository. To execute an bash command in an...

View Article

Ansible AWX/Tower Check_MK inventory plugin

Das Script kann als Inventory Plugin verwendet werden für AWX / Tower um Hosts von Check_MK in AWX / Tower zu importieren. Dazu muss ein View angelegt werden mit folgenden Spalten: Host, IPv4 address,...

View Article

Python: Snippet – Default dictionary

Normalerweise erzeugt ein Python Dictionary einen „KeyError“ wenn auf einen Key zugegriffen wird der nicht existiert. Mit „defaultdict“ werden die Keys einfach erzeugt wenn sie nicht existieren. Ohne...

View Article

Python: Snippet – Letzten Monat ausgeben

import datetime today = datetime.date.today() first = today.replace(day=1) lastMonth = first - datetime.timedelta(days=1) str_last_month = lastMonth.strftime("%m-%Y") print(str_last_month) '05-2019'

View Article


Image may be NSFW.
Clik here to view.

ssm – SSH Shell Menu

SSH Shell Menu written in Python Source: https://github.com/lanbugs/ssm This is a small python script for a shell menu to manage and open ssh connections. Requirements python3dialogpythondialog...

View Article

Debian/Ubuntu Liste installierter Pakete exportieren und diese Liste auf...

Mit diesem Befehl lassen sich die installieren Pakete in eine Liste exportieren. sudo dpkg-query -f '${binary:Package}\n' -W > packages_list.txt Mit xargs lässt sich apt install z.B. auf einem...

View Article


Files in einem Folder mit Regex Pattern suchen

find . -regextype posix-egrep -regex '.*20200123.*\.cfg' -exec echo {} \;

View Article

Schnelle rsync Alternative für Filetransfer

Auf der Suche nach einer alternative zu RSYNC für einen einmaligen Filetransfer zwischen Linux Systemen bin ich auf folgenden Artikel gestoßen. Die Methode eignet sich besonders wenn das Zielsystem...

View Article


Image may be NSFW.
Clik here to view.

Backup mit Borgmatic und Borg zu eigenem Backup Server via SSH

Borgmatic ist ein Tool um borgbackup zu steuern. Hier eine kleine Anleitung. Backup Server vorbereiten Erstellen eines Backup Users Unter diesem User werden die Backup Repos zur Verfügung gestellt....

View Article

Image may be NSFW.
Clik here to view.

Check_MK: Export hosts to SecureCRT Session Manager

This script exports over an Check_MK View hosts and imports them in SecureCRT Session Manager. Get source code: https://github.com/lanbugs/check_mk_to_securecrt_export The bundled python of SecureCRT...

View Article

Image may be NSFW.
Clik here to view.

GITEA Install script for Ubuntu 20.04 LTS

Get source code: https://github.com/lanbugs/gitea_installer This script pulls the newest version of gitea and install all requirements. The following will be installed: GITNginxMariaDBLetencrypt...

View Article
Browsing all 144 articles
Browse latest View live