azure-networking
3
总安装量
3
周安装量
#56219
全站排名
安装命令
npx skills add https://github.com/tyler-r-kendrick/agent-skills --skill azure-networking
Agent 安装分布
amp
3
gemini-cli
3
github-copilot
3
codex
3
kimi-cli
3
opencode
3
Skill 文档
Azure Networking Services
Services
| Service | Use When | MCP Tools | CLI |
|---|---|---|---|
| Virtual Network | Private networking, subnets | – | az network vnet |
| Private Endpoints | Private PaaS access | – | az network private-endpoint |
| Load Balancer | Layer 4 load balancing | – | az network lb |
| Application Gateway | Layer 7 load balancing, WAF | – | az network application-gateway |
| Front Door | Global load balancing, CDN | – | az afd |
| DNS | Domain name resolution | – | az network dns |
Common Patterns
Hub-Spoke Topology
Hub VNet
âââ Azure Firewall
âââ VPN/ExpressRoute Gateway
âââ Bastion Host
âââ Central services
Spoke VNets (peered to hub)
âââ Application Spoke
âââ Data Spoke
âââ Management Spoke
Private Endpoint Pattern
Connect to PaaS services privately:
- Create private endpoint in your VNet
- Disable public access on PaaS resource
- Configure private DNS zone
- Access service via private IP
CLI Reference
# Virtual Networks
az network vnet list --output table
az network vnet create -g RG -n VNET --address-prefix 10.0.0.0/16
# Subnets
az network vnet subnet list --vnet-name VNET -g RG --output table
# Private Endpoints
az network private-endpoint list --output table
# NSGs
az network nsg list --output table
az network nsg rule list --nsg-name NSG -g RG --output table
# Load Balancers
az network lb list --output table
Security Layers
| Layer | Service | Purpose |
|---|---|---|
| 4 | NSG | IP/port filtering |
| 7 | Azure Firewall | Application rules, threat intel |
| 7 | WAF | Web application protection |
| Edge | DDoS Protection | Attack mitigation |
Service Details
For deep documentation on specific services:
- VNet design and peering -> Virtual Network documentation
- Private endpoints setup -> Private Link documentation
- Load balancing options -> Load balancing options overview