Overview
This guide covers the most common networking issues encountered in Xloud Cloud Platform and provides step-by-step resolution procedures. Each scenario includes diagnostic commands and remediation steps that you can apply from the Dashboard or CLI.Prerequisites
- CLI configured with valid credentials
- Access to the Xloud Dashboard (
https://connect.<your-domain>) for instance console access
Diagnostic Quick Reference
Before working through individual scenarios, run these commands to gather a complete picture of your networking state:Check overall network resource status
Check instance network attachment
Common Issues
Instance has no network connectivity
Instance has no network connectivity
Cause: Missing router interface, DHCP failure, or security group blocking traffic.Resolution:
- Verify the instance received a DHCP-assigned IP:
Check instance IP assignments
- Confirm the subnet has a router interface:
List router interfaces
- Check the security group allows the expected traffic:
List ingress rules for security group
- Verify the DHCP agent is alive:
Check DHCP agent status
Floating IP is unreachable
Floating IP is unreachable
Cause: Missing association, router has no external gateway, or the security group
is missing an ingress rule for the required port.Resolution:
- Confirm the floating IP is associated:
TheShow floating IP status
port_idfield must be non-empty andstatusmust beACTIVE. - Verify the router has an external gateway:
Show router gateway
- Check the security group assigned to the instance allows the port you are
connecting on (e.g., TCP 22 for SSH, TCP 80 for HTTP):
List security group rules
- Ping the floating IP from outside to confirm basic reachability:
Test ICMP reachability
DHCP not assigning addresses
DHCP not assigning addresses
Cause: DHCP agent is down, DHCP is disabled on the subnet, or the allocation
pool is exhausted.Resolution:
- Confirm DHCP is enabled on the subnet:
Check subnet DHCP status
- Check the allocation pool is not exhausted:
Compare the count against your pool size (aList ports consuming addresses
/24provides 253 usable addresses). - Verify the DHCP agent is alive:
If the agent showsList DHCP agents
Alive: False, contact your administrator to restart the agent service. See the Network Agent Management guide.
MTU mismatch causing packet fragmentation
MTU mismatch causing packet fragmentation
Cause: VXLAN encapsulation adds a 50-byte overhead. If instances use the default
MTU of 1500, large packets are fragmented silently, degrading throughput and causing
application-level timeouts.Resolution:Update the network MTU to account for encapsulation overhead:Instances receive the updated MTU via DHCP option 26 on next renewal. For
immediate effect, set the MTU manually on the guest OS:
Set VXLAN-appropriate MTU on network
Set MTU on Linux guest
For VXLAN networks, Xloud recommends an MTU of
1450. For VLAN networks backed
by jumbo-frame-capable switches, you may use up to 9000.Security group rules not taking effect
Security group rules not taking effect
Cause: The security group is not assigned to the instance, or the rule was
added to the wrong group.Resolution:
- List security groups assigned to the instance:
Show instance security groups
- List rules in the expected group:
Show all rules in group
- If the group is not assigned, add it:
Assign security group to instance
Rules take effect immediately without a restart — re-test connectivity after adding the group.
Router not forwarding traffic after failover
Router not forwarding traffic after failover
Cause: HA router VRRP failover completed but the new master has not programmed
floating IP NAT rules correctly.Resolution:
- Check the router HA state:
Show router HA fields
- List L3 agents for the router and confirm exactly one is active:
List L3 agents handling the router
- Trigger rescheduling by toggling the router admin state:
Reschedule router
Useful Diagnostic Commands
Show all ports on a network
Show port details including fixed IP and security groups
List all floating IPs in the project
Show network agent heartbeat timestamps
Next Steps
Network Agent Management
Monitor and manage SDN agents when diagnostic commands show agent failures
Network Security Groups
Review and update firewall rules to resolve connectivity issues
Routers and Gateways
Verify and correct router configuration for floating IP and NAT issues
DHCP Configuration
Administer DHCP agents for IP assignment troubleshooting