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:
parent
ea894c8517
commit
5195e9c5c9
1 changed files with 25 additions and 0 deletions
25
pages.fr/common/hping.md
Normal file
25
pages.fr/common/hping.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue