Add Entity/Concept pages for memory system

This commit is contained in:
Dominik Schön
2026-04-28 21:40:25 +00:00
parent 29b3c41b87
commit 1581c35e8a
9 changed files with 374 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
---
title: E-Mail-Organisation
category: Communication
tags: [email, organization, invoices, amazon, himalaya]
created: "2026-04-28"
modified: "2026-04-28"
---
# E-Mail-Organisation
## Automatisierte Sortierung (Rechnungen-Organizer)
- **Cronjob:** Täglich 09:00 Uhr
- **Rechnungen:** Betrachft/Absender enthält "rechnung" → "Rechnungen_jjjj_mm"
- **Amazon-Bestellungen:** Betreff beginnt mit "Bestellt:" → "Rechnungen_jjjj_mm/Bestellungen_jjjj_mm"
- **Delivery:** Direkt an CEO-Chat
## Folder-Struktur
```
Inbox/
├── Rechnungen_2026_04/
│ ├── Rechnungen_2026_04/
│ └── Bestellungen_2026_04/
├── Rechnungen_2026_03/
└── ...
```
## Arbeitsweise
- Manuelles Versenden nur nach Freigabe
- Kein automatisches E-Mail-Versenden
- Alle E-Mails werden manuell geprüft und versendet
##himaya Konfiguration
- **Client:** himalaya v1.2.0
- **Config:** ~/.config/himalaya/config.toml
- **Primary:** dominik.schoen87@icloud.com
- **Domains:** 12 Custom Domains aktiv
- grafikerei.de
- famschoen.eu
- dominikschoen.de
- familie-schoen.com
- schoen.codes
- schoen.eu
- und 7 weitere
+48
View File
@@ -0,0 +1,48 @@
---
title: Monitoring-System
category: Infrastructure
tags: [monitoring, network-scans, security, cronjob]
created: "2026-04-28"
modified: "2026-04-28"
---
# Monitoring-System
## Netzwerk-Scans
- **Häufigkeit:** Wöchentlich
- **Cronjob:** SRE-Agent (infra-sre)
- **Scan-Bereiche:**
- 10.0.10.x/24 (Gateway)
- 10.0.20.x/24 (Hypervisoren)
- 10.0.30.x/24 (Container/VMs)
- 10.0.40.x/24 (Clients)
- 10.0.50.x/24 (Smart Home, 26 hosts)
- 10.0.60.x/24 (DMZ/Reverse Proxies)
## Smart Home Monitoring
- **Hosts:** 26 in 10.0.50.x
- **Scan-Methode:** SEGMENTS Dictionary
- **Ziel:** Geräte-Status und Verfügbarkeit
## Security-Checks
- **SSH-Versionen:** 9.2p1-10.0p2 (gemischt)
- **TLS-Zertifikate:** Keine CN, self-signed oder SAN-only
- **Ports:** 2222 (SSH), 3306 (MySQL)
## Wichtige Befehle
```bash
# Netzwerk-Scan durchführen
nmap -sn 10.0.20.0/24
# SSH-Version prüfen
ssh -V
# TLS-Zertifikat prüfen
openssl s_client -connect <host>:<port>
```
## Cronjobs
- **Netzwerk-Scan:** Wöchentlich
- **Smart Home Scan:** Täglich
- **Rechnungen-Organizer:** Täglich 09:00 Uhr
- **Memory-Sync:** Täglich 06:00, 12:00, 18:00 Uhr
+33
View File
@@ -0,0 +1,33 @@
---
title: Netzwerk-Architektur
category: Infrastructure
tags: [networking, ip-addressing, subnets, vlan]
created: "2026-04-28"
modified: "2026-04-28"
---
# Netzwerk-Architektur
## IP-Adressierung (10.0.X.Y)
Nicht-standard /8-Notation, aber mit klarem Schema:
- 10.0.10.x = Gateway
- 10.0.20.x = Hypervisoren (Proxmox Cluster)
- 10.0.30.x = Container/VMs
- 10.0.40.x = Clients
- 10.0.50.x = Smart Home (26 hosts)
- 10.0.60.x = DMZ/Reverse Proxies
## VLAN-Struktur
- Jedes Segment hat eigenes VLAN
- Proxmox Bridge-Konfiguration
- Inter-Segment-Kommunikation via Gateway
## TLS-Zertifikate
- Alle Zertifikate haben kein CN
- Self-signed oder SAN-only
- Keine reverse-DNS Einträge
## Wichtige Ports
- **MySQL:** 3306 (auf mehreren VMs in 30.x)
- **SSH:** 2222 (alle Server)
- **Embedding Model:** 8080 (10.0.30.92)
+41
View File
@@ -0,0 +1,41 @@
---
title: Proxmox Cluster
category: Infrastructure
tags: [proxmox, virtualization, containers, lxc]
created: "2026-04-28"
modified: "2026-04-28"
---
# Proxmox Cluster
## Cluster-Konfiguration
- **Hypervisoren:** In 10.0.20.x
- **Container:** In 10.0.30.x
- **VLAN-basiertes Netzwerk** mit Bridges
- **Shared Storage:** ZFS/ISCSI
## Wichtige Befehle
```bash
# Container-Status prüfen
pct status <vmid>
# Container starten/stoppen
pct start <vmid>
pct stop <vmid>
# Container konfigurieren
pct setcfg <vmid> <config>
# Cluster-Status
pvecm status
```
## VLAN-Konfiguration
- **Bridge:** vmbr0 für Netzwerk
- **VLAN Tagging:** Für Segmentierung
- **IP-Adressierung:** 10.0.X.Y (siehe Netzwerk-Architektur)
## Monitoring
- **Netzwerk-Scans:** Wöchentlich via cronjob
- **Smart Home:** 26 hosts in 10.0.50.x
- **SEGMENTS Dictionary:** Zentrale Konfiguration für Scan-Intervalle