[project] [user] Alibaba Cloud private network connectivity diagnosis tool. Use when ECS ping/telnet fails, same-VPC access fails, cross-VPC access fails, VPN or Express Connect is unreachable, NAT Gateway DNAT/SNAT behaves asymmetrically, or the user suspects security group, network ACL, route table, CEN/TR, VPC Peering, VPN Gateway, VBR, or NAT Gateway blocking. Not for classic network, public internet access, DNS resolution, CDN, SLB, or WAF issues.
Data & analysis
Alibabacloud Ecs Vpc Publicnetwork Troubleshoot
Try itDiagnose Alibaba Cloud ECS public network access problems and VPC cloud service public network access problems. Covers ECS public network access, ECS public...
What it does
Diagnose Alibaba Cloud ECS public network access problems and VPC cloud service public network access problems. Covers ECS public network access, ECS public IP reachability, and ECS security group blocking (automatically handling the NAT-gateway egress path for instances without a public IP); and VPC cloud service public network access with NAT gateway, SNAT, route and EIP checks for DataWorks, SAE, ACK and other services. Use this when troubleshooting public network connectivity failures for ECS instances or VPC cloud services.
The skill document
ECS/VPC Public Network Connectivity Troubleshooting
Automated diagnosis of public network connectivity for Alibaba Cloud ECS instances and VPC cloud services. Two core capabilities only:
- ECS public network diagnosis — full-chain check for an ECS instance covering public IP reachability and security-group blocking; the NAT-gateway egress path for instances without a public IP is handled automatically as a sub-path (the script picks Branch A / Branch B by itself).
- VPC cloud service public network diagnosis — public egress check for a cloud service (DataWorks / SAE / ACK, etc.) behind a VSwitch (NAT gateway / SNAT / route / EIP).
Execution Principle (script-only, no fallback)
All diagnostic operations MUST be performed by invoking the bundled Python scripts under scripts/. There are exactly three:
| Allowed invocation | Purpose |
|---|---|
python3 scripts/sts_create.py | Obtain/validate credentials (runs first) |
python3 scripts/ecs_public_troubleshoot.py | ECS public network diagnosis |
python3 scripts/vpc_service_public_troubleshoot.py | VPC cloud service diagnosis |
Forbidden — do NOT reproduce the diagnostic logic by any other means (each is a structural violation, even if the output looks correct):
- running
aliyun ecs .../aliyun vpc .../aliyun natgateway .../aliyun antiddos-public .../aliyun cloudfw .../aliyun bssopenapi ...or any otheraliyunCLI command for diagnosis; - running
aliyun configure getor any command to fetch credentials manually; - writing numbered/ad-hoc helper scripts (
01_describe_ecs.sh, ...) or inline SDK/curl/HTTP code.
If a script fails (non-zero exit, no JSON, credential/authorization error), stop and report the error — never fall back to any of the above.
Credentials (do not handle manually)
sts_create.py runs first and writes credentials to the local cache scripts/.sts_cache.json. The two main scripts (ecs_public_troubleshoot.py, vpc_service_public_troubleshoot.py) read that cache automatically. The agent MUST NOT:
- export
ALIBABA_CLOUD_*variables manually, pass--access-key-id/--access-key-secret/--sts-token(the scripts do not accept them), or runaliyun configure get; - echo plaintext AK/SK/token on the command line.
If sts_create.py fails, abort immediately and report the credential/authorization error.
User Confirmation (required before any API call)
This skill makes read-only Alibaba Cloud API calls only (Describe* / GetCallerIdentity queries); it never creates, modifies, deletes, restarts, or otherwise changes any resource. Before invoking any script:
- Restate the diagnostic scope to the user — the target resource (
instance_id/vswitch_id), theregion_id, and that only read-only diagnostic APIs will be called against that single resource. - Obtain confirmation to proceed. An explicit diagnostic request that already names the target resource is sufficient authorization: restate the scope and proceed. If the target or scope is ambiguous, or the user has not clearly authorized the check, ask the user and wait for confirmation before making any API call.
- Never call any API before this confirmation, and never expand scope beyond the confirmed resource.
Trigger Conditions
- ECS cannot access / be accessed from the public network; public IP reachability issues
- ECS ping / connectivity timeout to the public network; NAT gateway / SNAT outbound issues
- Security group blocking public access to an ECS instance
- VPC cloud service (DataWorks / SAE / ACK) cannot access the public network
Input Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
| region_id | string | Yes | Alibaba Cloud region ID | cn-hangzhou |
| test_scenario | string | Yes | ecs_public / vpc_service_public (inferred from identifiers) | ecs_public |
| instance_id | string | ECS scenario | ECS instance ID | i-bp116m5pkhsle6xm5pl8 |
| vswitch_id | string | VPC scenario | VSwitch ID | vsw-bp1xat3xsvck79y8zo8yo |
| uid | string | No | Account UID (auto-obtained from credentials if omitted) | 1552974654746705 |
| service_type | string | No | Cloud service type (VPC scenario): dataworks / sae / ack / others | dataworks |
| output_format | string | No | table / json / markdown | table |
Mandatory-parameter gate: region_id plus the scenario identifier (instance_id for ECS, vswitch_id for VPC) are required. Extract everything already present in the user's prompt first. If a mandatory field is still missing, ask the user once; if it is still not provided, abort with:
Missing required parameters: []. Aborting diagnostic workflow.
Do NOT fabricate/guess mandatory values or read external metadata to infer them.
Module Index
| Module | Purpose | File |
|---|---|---|
| Preparation | Credential acquisition and CLI call templates | references/module1_preparation.md |
| RAM Policies | Minimum read-only privilege list | references/ram-policies.md |
| Scenario 1: ECS Public Network | ECS script invocation, JSON output, status logic | references/module2_ecs_public.md |
| Scenario 2: VPC Service Public | VPC script invocation, JSON output, status logic | references/module3_vpc_service.md |
| Output & Judgment | Info-table format and status column logic | references/module4_output.md |
| Solutions | Remediation advice for abnormal items | references/module5_solution.md |
Load on demand: read only the reference relevant to the current task.
Orchestration
Input Parsing (extract region_id + identifiers)
└─▶ Credentials: python3 scripts/sts_create.py (abort on credential/authorization error)
└─▶ Scenario Detection: instance_id → ECS scenario; vswitch_id → VPC scenario
└─▶ Main Script: ecs_public_troubleshoot.py / vpc_service_public_troubleshoot.py
│ (parallel sub-checks: ECS/SG, VPC/Route/NAT/SNAT/EIP, DDoS, CFW, account status)
└─▶ Result Rendering (module4_output.md): Branch A (direct public) or Branch B (NAT)
└─▶ Solution Output for abnormal items (module5_solution.md)
Principles: strict order (abort on any step failure, never skip or fall back); the main script decides Branch A vs Branch B by whether the ECS has a public IP/EIP.
Execution Flow
- Scope confirmation (before any API call): restate the target resource,
region_id, and read-only scope to the user and confirm to proceed, per "User Confirmation" above. Do NOT invoke any script or API before this step. - Credential pre-check: run
python3 scripts/sts_create.py; onSDK.InvalidCredential/InvalidAccessKeyId/SignatureDoesNotMatch/Forbidden/ any auth error / non-zero exit, abort and report. - Scenario detection:
instance_id→ ECS scenario;vswitch_id→ VPC scenario. - Main script invocation (queries all sub-items in parallel).
- Script failure circuit breaker: on non-zero exit / no JSON / unhandled exception, print stderr and abort — do NOT retry with ad-hoc CLI or inline code.
- Result rendering: parse JSON, render info table per module4_output.md (Branch A or Branch B). For ECS, the security-group check is part of the full chain; when the security group is abnormal, state which direction/port is blocked in the report.
- Solution output: for any abnormal item, output remediation per module5_solution.md; skip if all normal.
Scenario 1 (ECS) Invocation
python3 scripts/ecs_public_troubleshoot.py \
--region-id \
--instance-id \
[--uid ]
Scenario 2 (VPC cloud service) Invocation
python3 scripts/vpc_service_public_troubleshoot.py \
--region-id \
--vswitch-id \
[--uid ]
Credentials are read from
sts_create.py's local cache (scripts/.sts_cache.json); scripts do not accept credential parameters. Never export plaintext credentials on the command line.
Observability
All OpenAPI calls carry a unified User-Agent AlibabaCloud-Agent-Skills/alibabacloud-ecs-vpc-publicnetwork-troubleshoot/{session-id} for call-chain traceability; the session ID is generated once at skill start and shared across scripts via the SKILL_SESSION_ID environment variable.
Important Notes
- Credential security: never hardcode AK/SK; rely on the cache written by
sts_create.py/ SDK default chain. - No fallback: if any scripted step fails, abort and report; do NOT fall back to raw
aliyunCLI, ad-hoc/numbered shell scripts, inline SDK code, or evaluation-metadata guessing. - Permissions: requires read-only access for ECS, VPC, Cloud Firewall, DDoS, BSS. See references/ram-policies.md.
- Network constraints: VPC has no public egress by default (needs NAT Gateway / IPv4 Gateway / EIP); inbound public access to ECS needs security-group ingress rules.
- ICMP default: if the security group does not explicitly allow ICMP, it is judged "ICMP blocked"; state this in the report.
- Branch decision: accurately determine whether the ECS has a public IP/EIP to select the correct info table.
- No scope creep: diagnose only the requested instance/vswitch; do not proactively probe other resources.
- Dependencies: aliyun-cli (DDoS/CFW/EIP supplementary queries invoked inside the scripts) and Python SDK (
pip install -r scripts/requirements.txt).
Example Scenarios
Example 1: ECS with public IP (Branch A)
Input: "Check the public connectivity of instance i-bp116m5pkhsle6xm5pl8 in cn-hangzhou."
- Parse: region_id=cn-hangzhou, instance_id=i-bp116m5pkhsle6xm5pl8, scenario=ecs_public
- Run
sts_create.pyfor credentials - Run
python3 scripts/ecs_public_troubleshoot.py --region-id cn-hangzhou --instance-id i-bp116m5pkhsle6xm5pl8 - Script outputs JSON with
branch="A"→ render Direct Public info table (instance / security group / DDoS / CFW) - Output remediation for any abnormal item
Example 2: ECS security group blocking public access
Input: "Public access to TCP 80 of i-bp116m5pkhsle6xm5pl8 in cn-hangzhou is blocked — is the security group blocking it?"
- Parse: region_id=cn-hangzhou, instance_id=i-bp116m5pkhsle6xm5pl8, scenario=ecs_public
- Run
sts_create.py - Run the ECS script (same command); the full-chain check includes the security group
- Render the info table; if the security group is abnormal, state which ingress rule blocks the port
- Output remediation for the abnormal security-group item
Example 3: DataWorks in VPC cannot access public network
Input: "DataWorks cannot access the public network, VSwitch vsw-bp1xat3xsvck79y8zo8yo in cn-hangzhou."
- Parse: region_id=cn-hangzhou, vswitch_id=vsw-bp1xat3xsvck79y8zo8yo, service_type=dataworks, scenario=vpc_service_public
- Run
sts_create.py - Run
python3 scripts/vpc_service_public_troubleshoot.py --region-id cn-hangzhou --vswitch-id vsw-bp1xat3xsvck79y8zo8yo - Script outputs JSON (VSwitch / NAT / route / SNAT / EIP / DDoS / CFW checked) → render VPC cloud service info table
- Output remediation for any abnormal item
Related skills
Troubleshoot an Alibaba Cloud ECS Linux OS. Use when a user needs to diagnose a specified ECS Linux instance, such as instance stuck in Starting, boot stuck, SSH/VNC/Workbench login failure, network issues, disk/FS issues, performance anomalies, suspected mining or hidden processes, crash/hang, clock drift, or configuration not taking effect.
Read-only diagnostics for the public internet egress capability of Alibaba Cloud cloud-native products: cloud-native gateway (MSE), cloud-native API gateway, AI gateway, Serverless App Engine (SAE), and Function Compute (FC). Use when the user asks whether such an instance can access the public internet, reports outbound connectivity failure, or wants to check a fixed public egress IP. Resolves the VPC/vSwitch bound to the instance, then verifies NAT gateway SNAT egress for that vSwitch; produces a diagnosis report. Read-only: never creates, modifies, or deletes any resource. Triggers: "cloud-native gateway public internet", "MSE gateway outbound", "APIG outbound connectivity", "AI gateway public network", "SAE public internet", "SAE outbound connectivity", "FC fixed public IP", "FC function outbound", "cloud-native internet diagnostics", "vSwitch NAT SNAT egress".
Systematic two-level diagnostics for Alibaba Cloud ECS instances covering connectivity, performance, disk, and status issues.
Comprehensive health inspection tool for Alibaba Cloud network products (EIP, CBWP, NAT Gateway, CEN, Transit Router, Physical Connection, VBR, Global Accele...
Troubleshoot and repair Alibaba Cloud ECS Windows instances from inside the GuestOS or remotely via Cloud Assistant. Use whenever the user reports any Windows symptom or asks for a health check on an ECS Windows instance, even vague ones like "check this machine": boot failures (BSOD, black screen, boot loop, stuck at logo), crashes and hangs, RDP/VNC login failures, network problems (internet access, ping, DNS, DHCP, firewall, SMB), a port unreachable from outside while the service is running (8080, 3389), inbound firewall port blocking, disk and storage, Windows activation, Windows Update, time synchronization, user accounts and permissions, BitLocker, drivers, application crashes, certificates and TLS, scheduled tasks, slow performance, configuration not taking effect, Cloud Assistant and management channel issues. Supports online diagnosis (running system) and offline diagnosis (faulty system disk mounted as a data disk) via a direct in-GuestOS channel or remote aliyun ecs run-comm