1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 12:05:59 +02:00

hping: add French translation (#3366)

This commit is contained in:
Antoine Amara 2019-10-27 17:43:28 +01:00 committed by Starbeamrainbowlabs
parent ea894c8517
commit 5195e9c5c9

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}}`