DO - Networking

Reading time: 2 minutes

tip

AWS 해킹 배우기 및 연습하기:HackTricks Training AWS Red Team Expert (ARTE)
GCP 해킹 배우기 및 연습하기: HackTricks Training GCP Red Team Expert (GRTE) Azure 해킹 배우기 및 연습하기: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks 지원하기

도메인

bash
doctl compute domain list
doctl compute domain records list <domain>
# You can also create records

예약된 IPs

bash
doctl compute reserved-ip list
doctl compute reserved-ip-action unassign <ip>

로드 밸런서

bash
doctl compute load-balancer list
doctl compute load-balancer remove-droplets <id> --droplet-ids 12,33
doctl compute load-balancer add-forwarding-rules <id> --forwarding-rules entry_protocol:tcp,entry_port:3306,...

VPC

doctl vpcs list

방화벽

caution

기본적으로 드롭렛은 방화벽 없이 생성됩니다 (AWS나 GCP와 같은 다른 클라우드와는 다르게). 따라서 DO가 드롭렛(VM)의 포트를 보호하도록 하려면 방화벽을 생성하고 연결해야 합니다.

bash
doctl compute firewall list
doctl compute firewall list-by-droplet <droplet-id>
doctl compute firewall remove-droplets <fw-id> --droplet-ids <droplet-id>

tip

AWS 해킹 배우기 및 연습하기:HackTricks Training AWS Red Team Expert (ARTE)
GCP 해킹 배우기 및 연습하기: HackTricks Training GCP Red Team Expert (GRTE) Azure 해킹 배우기 및 연습하기: HackTricks Training Azure Red Team Expert (AzRTE)

HackTricks 지원하기