]> rtime.felk.cvut.cz Git - lisovros/iproute2_canprio.git/blob - man/man8/ip-ntable.8
Fix man page whatis entry errors
[lisovros/iproute2_canprio.git] / man / man8 / ip-ntable.8
1 .TH IP\-NTABLE 8 "20 Dec 2011" "iproute2" "Linux"
2 .SH "NAME"
3 ip-ntable - neighbour table configuration
4 .SH "SYNOPSIS"
5 .sp
6 .ad l
7 .in +8
8 .ti -8
9 .B ip
10 .RI "[ " OPTIONS " ]"
11 .B address
12 .RI " { " COMMAND " | "
13 .BR help " }"
14 .sp
15
16 .ti -8
17 .BR "ip ntable change name"
18 .IR NAME " [ "
19 .B dev
20 .IR DEV " ] " PARMS
21
22 .ti -8
23 .IR PARMS " := { "
24 .B thresh1
25 .IR VAL " | "
26 .B thresh2
27 .IR VAL " | "
28 .B thresh3
29 .IR VAL " | "
30 .B gc_int
31 .IR MSEC " | "
32 .B base_reachable
33 .IR MSEC " | "
34 .B retrans
35 .IR MSEC " | " "gc_stale MSEC " " | "
36 .B delay_probe
37 .IR MSEC " | " "queue LEN " " | "
38 .B app_probs
39 .IR VAL " | "
40 .B ucast_probes
41 .IR VAL " | " "mcast_probes VAL " " | "
42 .B anycast_delay
43 .IR MSEC " | "
44 .B proxy_delay
45 .IR MSEC " | " "proxy_queue LEN " " | "
46 .B locktime
47 .IR MSEC " }"
48
49 .ti -8
50 .BR "ip ntable show" " [ "
51 .B dev
52 .IR DEV " ] [ "
53 .B name
54 .IR NAME " ]"
55
56 .SH DESCRIPTION
57 .I ip ntable
58 controls the parameters for the neighbour tables. 
59
60 .SS ip ntable show - list the ip neighbour tables
61
62 This commands displays neighbour table parameters and statistics.
63
64 .TP
65 .BI dev " DEV"
66 only list the table attached to this device.
67
68 .TP
69 .BI name " NAME"
70 only lists the table with the given name.
71
72 .SS ip ntable change - modify table parameter
73
74 This command allows modifying table parameters such as timers and queue lengths.
75 .TP
76 .BI name " NAME"
77 the name of the table to modify.
78
79 .TP
80 .BI dev " DEV"
81 the name of the device to modify the table values.
82
83 .SH EXAMPLES
84 .PP
85 ip ntable show dev eth0
86 .RS 4
87 Shows the neighbour table (IPv4 ARP and IPv6 ndisc) parameters on device eth0.
88 .RE
89 .PP
90 ip ntable change name arp_cache queue 8 dev eth0
91 .RS 4
92 Changes the number of packets queued while address is being resolved from the
93 default value (3) to 8 packets.
94 .RE
95
96 .SH SEE ALSO
97 .br
98 .BR ip (8)
99
100 .SH AUTHOR
101 Manpage by Stephen Hemminger