# DO - Networking {{#include ../../../banners/hacktricks-training.md}} ### Domains ```bash doctl compute domain list doctl compute domain records list # You can also create records ``` ### Reservierte IPs ```bash doctl compute reserved-ip list doctl compute reserved-ip-action unassign ``` ### Load Balancer ```bash doctl compute load-balancer list doctl compute load-balancer remove-droplets --droplet-ids 12,33 doctl compute load-balancer add-forwarding-rules --forwarding-rules entry_protocol:tcp,entry_port:3306,... ``` ### VPC ``` doctl vpcs list ``` ### Firewall > [!CAUTION] > Standardmäßig werden **Droplets OHNE FIREWALL** erstellt (nicht wie in anderen Clouds wie AWS oder GCP). Wenn Sie also möchten, dass DO die Ports des Droplets (VM) schützt, müssen Sie **es erstellen und anhängen**. ```bash doctl compute firewall list doctl compute firewall list-by-droplet doctl compute firewall remove-droplets --droplet-ids ``` {{#include ../../../banners/hacktricks-training.md}}