User contributions for Chubbard
Jump to navigation
Jump to search
16 April 2024
- 10:1510:15, 16 April 2024 diff hist +370 m Main Page No edit summary
4 April 2024
- 10:4110:41, 4 April 2024 diff hist +177 m Postgres →Migrate from MySQL to Psql current
3 April 2024
- 11:1311:13, 3 April 2024 diff hist +2,377 m Postgres →Useful commands to remember
- 11:0811:08, 3 April 2024 diff hist +149 m Postgres →Links
- 11:0711:07, 3 April 2024 diff hist +69 N Category:Postgres Created page with "Anything specific to postgres should get dropped into this category.." current
- 11:0611:06, 3 April 2024 diff hist +1,084 N Postgres Created page with "== Postgres Notes == I generally use MySQL, however there have been cases where I need to use Postgres. I can never remember the exact syntax to do basic things, so here we are... === Create User and Database === Admin login to Postgeres (fresh install Pg14) <pre> sudo -u postgres psql postgres </pre> Create User <pre> CREATE ROLE someUser LOGIN PASSWORD 'somePassword'; </pre> Create database and add someUser as the owner <pre> CREATE DATABASE databaseName with owner =..."
29 March 2024
- 13:4613:46, 29 March 2024 diff hist +64 N Category:Docker Created page with "Docker specific stuff that goes beyond generic "container stuff"" current
- 13:4513:45, 29 March 2024 diff hist +37 m Containers No edit summary current
21 March 2024
- 10:1710:17, 21 March 2024 diff hist +313 m Main Page No edit summary
5 March 2024
- 10:3010:30, 5 March 2024 diff hist +1,292 m Main Page No edit summary
17 February 2024
- 18:0718:07, 17 February 2024 diff hist +558 m Nms-trapReceiver No edit summary current
- 17:5717:57, 17 February 2024 diff hist +903 N General links howTo Created page with "=Links to different HowTo pages= I have a tendency to loose pages that I find interesting, and my bookmark list is a mess :) I will be saving links here that I find useful for different things either pertaining to the NMS work I am doing or just cool howto articles I find on the net. == PHP Specific == * [https://alexwebdevelop.com/php-daemons/ Basic PHP Daemons tutorial] * [https://github.com/barracudanetworks/forkdaemon-php github project - Using this for now for dae..." current
- 16:3916:39, 17 February 2024 diff hist +28 m Nms-trapReceiver No edit summary
- 16:3616:36, 17 February 2024 diff hist 0 m Rrdtool info →last
11 February 2024
- 11:5711:57, 11 February 2024 diff hist +332 m Main Page No edit summary
8 February 2024
- 15:5415:54, 8 February 2024 diff hist +762 m Git notes →Change submodule URL
- 15:0615:06, 8 February 2024 diff hist +68 m Git notes →Change submodule URL
- 15:0515:05, 8 February 2024 diff hist +69 m Git notes →Change submodule URL
- 12:3112:31, 8 February 2024 diff hist +388 m Git notes No edit summary
- 11:3111:31, 8 February 2024 diff hist +1,645 m Nms-authentication No edit summary current
6 February 2024
- 09:3209:32, 6 February 2024 diff hist +153 m Bash ip addresses →Get routable IP address current
- 09:2709:27, 6 February 2024 diff hist +429 N Bash ip addresses Created page with "==Interesting bash commands working with IP Addresses== =Get routable IP address= So far this seems both the simplest and most straightforward way to reliably get our IP address.. <pre> chubbard@kvm03:~$ ip route get 1.2.3.4 | awk '{print $7}' 192.168.15.107 Details without awk: chubbard@kvm03:~$ ip route get 1.2.3.4 1.2.3.4 via 192.168.15.1 dev enp2s0f0 src 192.168.15.107 uid 1000 cache </pre> Category:Bash"
4 February 2024
- 10:2610:26, 4 February 2024 diff hist +151 m Nmap-examples No edit summary current
- 10:2610:26, 4 February 2024 diff hist +247 m Nmap-examples No edit summary
2 February 2024
- 16:0316:03, 2 February 2024 diff hist +278 m Nms-reporting →Generation current
- 11:3711:37, 2 February 2024 diff hist +32 m NMS status →GUI current
- 10:3110:31, 2 February 2024 diff hist +145 m NMS status No edit summary
- 09:4909:49, 2 February 2024 diff hist +536 m NMS status No edit summary
- 09:4109:41, 2 February 2024 diff hist +1,318 N NMS status Created page with "=Current Status= Just a quick and dirty dump of the status of different parts of Vigilare as of 02-02-2024 ==API== # Event (active): Functional stable # Event (history): Functional with known issues ## current bug appending to event when moving from active to history ## bug with endEvent on move to history # Login: functional stable # Devices: functional stable # Monitors: functional stable ## Need to revisit as this area is not quite user friendly yet # Reporting: Non..."
1 February 2024
- 15:5615:56, 1 February 2024 diff hist +2,615 N Nms-reporting Created page with "=Basic Flow= As of right now, I am beginning the ability to create reporting on events seen in Vigilare. Not working against metrics other than events and historical events currently. I do not see it as likely going against perf when we are dealing with RRDTool. That will just be a futile exercise. I could do something against Graphite, but suspect the ROI will be minimal at best. InfluxDb however would be a nice candidate for performance in the future. I will have..."
- 09:4009:40, 1 February 2024 diff hist +2,630 N Nms-templates Created page with "=NMS Templates for API= Since I cannot know how people are going to want to use or leverage the system a template system is in place to support or extend how the NMS behaves. Currently all API templates reside in <root>/templates. The most common area where this seems like it will be used is for working with metrics. Getting them pretty so we can save the data seems to be the hardest thing we can do. Both RRDTool and Graphite are particular in how they want their met..." current
29 January 2024
- 14:0814:08, 29 January 2024 diff hist +17 m Nms-definitions No edit summary current
- 14:0714:07, 29 January 2024 diff hist +3,394 N Nms-definitions Created page with "==Definitions and Logic for NMS== =Device= The simplest "thing" that can exist. In general it should be a monitorable device, however it does not have to be. Fake devices that are inactive, but used for other things such as CNAME ELB's or devices like that can have a definition even though they are not real. Another example would be specific VHOST definitions for a webserver. =HostGroup= A CSV list of device ids. In general this is used for grouping a number of ide..."
19 January 2024
- 10:1510:15, 19 January 2024 diff hist −17 m Openssl →Basic SSL verification
- 10:1310:13, 19 January 2024 diff hist +5,308 m Openssl No edit summary
- 10:1010:10, 19 January 2024 diff hist +295 m Openssl →check ciphers for cert
16 January 2024
- 16:1716:17, 16 January 2024 diff hist −18 m Gitalb api →Pulling Snippets current
- 16:1716:17, 16 January 2024 diff hist −18 m Gitalb api →Working Example
11 January 2024
- 07:3507:35, 11 January 2024 diff hist +1,955 N Nms Name and Path Created page with "===Name=== So after much thought and poking at ChatGPT for ideas, I have settled on "Vigliare" for the name of this project. Yay! Heh, writing code is easier than figuring out a decent name it appears. It's derived from Latin, meaning "to watch" or "to keep watch." "Vigilare" is pronounced as \vih-JIH-lah-ray. Here's a breakdown: * vih: pronounced like the "vi" in "vivid" * JIH: with a soft 'j', similar to the 'g' in "gem" * lah: similar to the "la" in "la..." current
8 January 2024
- 15:0915:09, 8 January 2024 diff hist +22 m Tcpdump find dhcp leased No edit summary current
- 15:0815:08, 8 January 2024 diff hist +2,512 m Tcpdump find dhcp leased No edit summary
2 January 2024
- 15:4615:46, 2 January 2024 diff hist +4,339 m MySQL notes →In String current
30 December 2023
- 10:0910:09, 30 December 2023 diff hist +6 m MySQL notes →In String
- 10:0910:09, 30 December 2023 diff hist +534 m MySQL notes →In String
- 10:0710:07, 30 December 2023 diff hist +151 m MySQL notes →In String
- 10:0610:06, 30 December 2023 diff hist +996 m MySQL notes →Group and sorts
28 December 2023
- 10:3610:36, 28 December 2023 diff hist +143 m MySQL notes →Group and sorts
- 10:3310:33, 28 December 2023 diff hist +721 m MySQL notes →Notes for working with MySQL
- 10:2410:24, 28 December 2023 diff hist +435 m MySQL notes No edit summary
26 December 2023
- 11:4411:44, 26 December 2023 diff hist +1,900 N Asshat Created page with "=== Asshat list === I am just dropping this page here as a reminder to myself.. I run a lot of different servers on my domain, and I really should publish a list of '''AssHats''' who should be banned and why. If it is something that supports age-out and updates from remote servers I believe this would be very useful. I am thinking something along the lines of if it makes it to fail2ban, then it gets logged into a flat file with the IP address, and reason for ban with..." current