hping: add French translation (#3366)

italian
Antoine Amara 2019-10-27 17:43:28 +01:00 committed by Starbeamrainbowlabs
parent ea894c8517
commit 5195e9c5c9
1 changed files with 25 additions and 0 deletions

25
pages.fr/common/hping.md Normal file
View File

@ -0,0 +1,25 @@
# hping
> Outil en ligne de commande permettant d'assembler ou analyser des paquets TCP/IP.
> Inspirer par la commande `ping`.
> Pour plus d'informations: <http://www.hping.org>.
- Ping localhost via TCP:
`hping3 {{localhost}}`
- Ping une adresse IP, via TCP, sur un port spécifique:
`hping3 -p {{80}} -S {{192.168.1.1}}`
- Ping une adresse IP, via UDP, sur le port 80:
`hping3 --udp -p {{80}} -S {{192.168.1.1}}`
- Scanner un ensemble de ports TCP, sur une adresse IP spécifique:
`hping3 --scan {{80,3000,9000}} -S {{192.168.1.1}}`
- Effectuer un test de montée en charge sur le port 80:
`hping3 --flood -p {{80}} -S {{192.168.1.1}}`