#network

6 commande(s) avec le tag #network

Commandes partagées par la communauté CodeBox, copiables en un clic.

Flutter Ajouter http

Ajoute le package http officiel Dart.

bash
flutter pub add http

Affiche les ports sur lesquels Apache2 écoute activement.

bash
ss -tnlp | grep apache2

Affiche les VPCs du compte avec leur CIDR et nom.

bash
aws ec2 describe-vpcs --query "Vpcs[].[VpcId,CidrBlock,Tags[?Key=='Name'].Value|[0]]" --output table

Ajoute Dio comme client HTTP avancé.

bash
flutter pub add dio

Expose le serveur sur le réseau local.

bash
ng serve --host 0.0.0.0

Affiche tous les Security Groups du compte.

bash
aws ec2 describe-security-groups --query "SecurityGroups[].[GroupId,GroupName,Description]" --output table