mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 11:04:43 +02:00
fix(nftables): ouvrir port 25 SMTP pour pods k8s (10.42/16)
n8n tourne dans un pod k8s — le port 25 de postfix n'était ouvert que pour 192.168.10.0/24 (nœuds cluster), pas pour 10.42.0.0/16 (pods). Connexion ETIMEDOUT au nœud Send Email du workflow alertes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
8c94936467
commit
e644c1ae1b
1 changed files with 3 additions and 0 deletions
|
|
@ -47,6 +47,9 @@ table inet filter {
|
|||
# LiteLLM proxy (pods k8s 10.42/16 + nœuds cluster)
|
||||
tcp dport 4000 ip saddr { 192.168.10.0/24, 10.42.0.0/16 } accept
|
||||
|
||||
# Postfix relay SMTP (pods k8s 10.42/16 + nœuds cluster)
|
||||
tcp dport 25 ip saddr { 192.168.10.0/24, 10.42.0.0/16 } accept
|
||||
|
||||
log prefix "nft-drop: " drop
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue