netsniff-ng: tpacketv3: 'fix' packet accounting output
[netsniff-ng.git] / astraceroute.zsh
blobc15e2c84e90c3ab0ce9cb4f3740e3a9d87a75ff7
1 #compdef astraceroute
3 # astraceroute.zsh -- zsh completion function for astraceroute
5 # Copyright (C) 2013 Hideo Hattori <hhatto.jp@gmail.com>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License version 2 as
9 # published by the Free Software Foundation.
11 typeset -A opt_args
13 _interfaces () {
14 _wanted interfaces expl 'network interface' \
15 _net_interfaces
16 _values "Pseudo-device that captures on all interfaces" "any"
19 _arguments -s -S \
20 "(-H --host)"{-H,--host}"[Host/IPv4/IPv6 to lookup AS route to]:host:_hosts" \
21 "(-p --port)"{-p,--port}"[Hosts port to lookup AS route to]:port:_gnu_generic" \
22 "(-i -d --dev)"{-i,-d,--dev}"[Networking device i.e., eth0]:device:_interfaces" \
23 "(-4 --ipv4)"{-4,--ipv4}"[Use IPv4 requests (default)]" \
24 "(-6 --ipv6)"{-6,--ipv6}"[Use IPv6 requests]" \
25 "(-n --numeric)"{-n,--nemeric}"[Do not do reverse DNS lookup for hops]" \
26 "(-u --update)"{-u,--update}"[Update GeoIP databases]" \
27 "(-L --latitude)"{-L,--latitude}"[Show latitude and longtitude]" \
28 "(-N --dns)"{-N,--dns}"[Do a reverse DNS lookup for hops]" \
29 "(-f --init-ttl)"{-f,--init-ttl}"[Set initial TTL]:ttl:_gnu_generic" \
30 "(-m --max-ttl)"{-m,--max--ttl}"[Set maximum TTL]:ttl:_gnu_generic" \
31 "(-q --num-probes)"{-q,--num-probes}"[Set maximum TTL (default: 30)]:ttl:_gnu_generic" \
32 "(-q --num-probes)"{-q,--num-probes}"[Number of max probes for each hop (default: 3)]:num:_gnu_generic" \
33 "(-x --timeout)"{-x,--timeout}"[Probe response timeout in sec (default: 3)]:timeout:_gnu_generic" \
34 "(-S --syn)"{-S,--syn}"[Set TCP SYN flag in packets]" \
35 "(-A --ack)"{-A,--ack}"[Set TCP ACK flag in packets]" \
36 "(-F --fin)"{-F,--fin}"[Set TCP FIN flag in packets]" \
37 "(-P --psh)"{-P,--psh}"[Set TCP PSH flag in packets]" \
38 "(-U --urg)"{-U,--urg}"[Set TCP URG flag in packets]" \
39 "(-R --rst)"{-R,--rst}"[Set TCP RST flag in packets]" \
40 "(-E --ecn-syn)"{-E,--ecn-syn}"[Send ECN SYN packets (RFC3168)]" \
41 "(-t --tos)"{-t,--tos}"[Set the IP TOS field]:tos:_gnu_generic" \
42 "(-G --nofrag)"{-G,--nofrag}"[Set do not fragment bit]" \
43 "(-X --payload)"{-X,--payload}"[Specify a payload string to test DPIs]:string:_gnu_generic" \
44 "(-Z --show-packet)"{-Z,--show-packet}"[Show returned packet on each hop]" \
45 "(-l --totlen)"{-l,--totlen}"[Specify total packet len]:lengths:_gnu_generic" \
46 {-v,--version}"[Print version]:" \
47 {-h,--help}"[Print this help]:" \
48 "*::args:_gnu_generic"