Zentraler DSGVO-konformer KI-Proxy für Kliniknetze
| Zeit | Typ | Original | Platzhalter | Quelle |
|---|
| Typ | Original | Platzhalter |
|---|
Das Gateway läuft zentral im Netzwerk. Alle KI-Anfragen werden über das Gateway geleitet.
Die Sophos Firewall blockiert direkte Verbindungen zu KI-APIs — nur das Gateway darf weiterleiten.
http://localhost:8600/v1/messages
http://localhost:8600/v1/chat/completions
1. HTTPS-Domains blocken (Web Filtering → URL Groups):
api.anthropic.com, api.openai.com, chat.openai.com,
claude.ai, chatgpt.com, gemini.google.com,
bard.google.com, copilot.microsoft.com
2. Ausnahme für Gateway-Server (Firewall Rules):
Source: Gateway-Server-IP → Destination: api.anthropic.com, api.openai.com → ALLOW
3. Interner Zugriff erlauben:
Source: LAN → Destination: Gateway-Server:8600 → ALLOW
Python (Anthropic SDK):
import anthropic
client = anthropic.Anthropic(
base_url="http://ki-gateway:8600/v1",
api_key="sk-ant-..."
)
Python (OpenAI SDK):
from openai import OpenAI
client = OpenAI(
base_url="http://ki-gateway:8600/v1",
api_key="sk-..."
)
curl:
curl http://ki-gateway:8600/v1/messages \
-H "x-api-key: sk-ant-..." \
-H "anthropic-version: 2023-06-01" \
-d '{"model":"claude-sonnet-4-20250514","max_tokens":1024,"messages":[{"role":"user","content":"..."}]}'