المهارات network-engineer
🌐

network-engineer

آمن

Design and optimize cloud networks

Get expert guidance on designing secure, high-performance cloud network architectures across AWS, Azure, and GCP. This skill helps you implement zero-trust security, optimize load balancing, and troubleshoot complex networking issues.

يدعم: Claude Codex Code(CC)
🥉 74 برونزي
1

تنزيل ZIP المهارة

2

رفع في Claude

اذهب إلى Settings → Capabilities → Skills → Upload skill

3

فعّل وابدأ الاستخدام

اختبرها

استخدام "network-engineer". Design a secure multi-cloud network architecture with zero-trust connectivity

النتيجة المتوقعة:

Here is a comprehensive zero-trust multi-cloud network architecture:

## Core Principles
1. **Identity-based access** - All connections authenticated and authorized
2. **Micro-segmentation** - Fine-grained network isolation
3. **Continuous verification** - Real-time trust assessment

## Architecture Components

### AWS VPC Design
- Public subnets: NAT Gateways, ALBs
- Private subnets: Application tier (EC2, ECS)
- Database subnets: RDS with private endpoints
- Transit Gateway for VPC peering

### Azure VNet Design
- Hub-spoke topology with Azure Firewall
- Private endpoints for PaaS services
- VPN Gateway for hybrid connectivity

### GCP VPC Design
- Shared VPC for centralized networking
- Cloud NAT for private instance egress
- Cloud Load Balancing for global distribution

### Zero-Trust Connectivity
- mTLS for all service communication
- Network policies in Kubernetes
- Short-lived certificates with automated rotation

استخدام "network-engineer". Configure SSL/TLS termination with automated certificate management

النتيجة المتوقعة:

## SSL/TLS Termination Architecture

### Components
1. **Certificate Authority**: Let's Encrypt (automated)
2. **Certificate Manager**: cert-manager (Kubernetes)
3. **Load Balancer**: Nginx Ingress with TLS termination

### Implementation Steps

1. Install cert-manager:
```
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.13.0/cert-manager.yaml
```

2. Create ClusterIssuer for Let's Encrypt:
```yaml
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-prod
spec:
acme:
server: https://acme-v02.api.letsencrypt.org/directory
email: admin@example.com
privateKeySecretRef:
name: letsencrypt-prod
solvers:
- http01:
ingressClass: nginx
```

3. Annotate Ingress for automatic certs:
```yaml
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
```

### mTLS Setup for Service Mesh
- Use Istio mesh for automatic mTLS
- Configure peer authentication for strict mTLS
- Implement certificate rotation every 24 hours

التدقيق الأمني

آمن
v1 • 2/24/2026

This is a prompt-only skill with no executable code. The static analyzer scanned 0 files and detected 0 potential security issues. Risk score is 0/100. The skill provides network engineering expertise through text-based prompts only, with no scripts, network calls, filesystem access, or external command execution capabilities. No suspicious patterns or risk factors were detected.

0
الملفات التي تم فحصها
0
الأسطر التي تم تحليلها
0
النتائج
1
إجمالي عمليات التدقيق
لا توجد مشكلات أمنية
تم تدقيقه بواسطة: claude

درجة الجودة

38
الهندسة المعمارية
100
قابلية الصيانة
87
المحتوى
50
المجتمع
100
الأمان
91
الامتثال للمواصفات

ماذا يمكنك بناءه

Design secure multi-cloud architecture

Create a network architecture that connects AWS, Azure, and GCP with zero-trust security principles and redundant connectivity

Troubleshoot connectivity issues

Diagnose and resolve intermittent connectivity problems in Kubernetes service mesh or cloud VPC environments

Optimize application performance

Improve global application performance through CDN optimization, load balancing tuning, and network latency reduction

جرّب هذه الموجهات

Basic network design request
Design a secure VPC architecture for a three-tier application with public subnets, private subnets, and database subnets. Include NAT gateways and security group recommendations.
Load balancing configuration
Help me configure global load balancing with health checks and automatic failover for a multi-region deployment. I need both layer 4 and layer 7 support.
SSL/TLS implementation
Explain how to implement SSL/TLS termination with automated certificate renewal using Let's Encrypt. Include mTLS configuration for service-to-service communication.
Network troubleshooting
I am experiencing intermittent connectivity issues between my Kubernetes pods. The symptoms include high latency and occasional timeouts. Walk me through the troubleshooting steps.

أفضل الممارسات

  • Always design for failure - implement redundancy at every network layer
  • Use Infrastructure as Code (Terraform, CloudFormation) for reproducible network configurations
  • Apply zero-trust principles: never trust, always verify, least privilege access

تجنب

  • Do not expose databases directly to the internet - use private endpoints and VPNs
  • Avoid hardcoding credentials or API keys in network configurations
  • Do not skip network segmentation - always use VPCs, subnets, and security groups

الأسئلة المتكررة

What cloud providers does this skill support?
This skill provides expertise for AWS, Azure, and GCP. It covers VPC design, load balancing, DNS, and security configurations for all three major cloud providers.
Can this skill help with network troubleshooting?
Yes. It provides systematic troubleshooting methodologies using tools like tcpdump, Wireshark, and cloud-specific diagnostics. It guides you through diagnosing connectivity, latency, and performance issues.
Does this skill implement actual network changes?
No. This skill provides guidance, configurations, and best practices. It does not execute commands or modify live infrastructure. You must implement changes manually in your environment.
What is zero-trust networking?
Zero-trust is a security model that assumes no implicit trust. Every request is authenticated, authorized, and encrypted. It uses identity-based access, micro-segmentation, and continuous verification.
Can this skill help with Kubernetes networking?
Yes. It covers Kubernetes networking, CNI plugins (Calico, Cilium), service mesh (Istio, Linkerd), network policies, and ingress controllers.
Does this skill support compliance requirements?
Yes. It provides guidance for network compliance with regulations like GDPR, HIPAA, and PCI-DSS. It includes security architecture recommendations and auditing best practices.

تفاصيل المطور

المؤلف

sickn33

الترخيص

MIT

مرجع

main

بنية الملفات

📄 SKILL.md