logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

ip-ntable.8 (1788B)


  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 ntable
  12. .RI " { " COMMAND " | "
  13. .BR help " }"
  14. .sp
  15. .ti -8
  16. .BR "ip ntable change name"
  17. .IR NAME " [ "
  18. .B dev
  19. .IR DEV " ] ["
  20. .B thresh1
  21. .IR VAL " ] ["
  22. .B thresh2
  23. .IR VAL " ] ["
  24. .B thresh3
  25. .IR VAL " ] ["
  26. .B gc_int
  27. .IR MSEC " ] ["
  28. .B base_reachable
  29. .IR MSEC " ] ["
  30. .B retrans
  31. .IR MSEC " ] ["
  32. .B gc_stale
  33. .IR MSEC " ] ["
  34. .B delay_probe
  35. .IR MSEC " ] ["
  36. .B queue
  37. .IR LEN " ] ["
  38. .B app_probs
  39. .IR VAL " ] ["
  40. .B ucast_probes
  41. .IR VAL " ] ["
  42. .B mcast_probes
  43. .IR VAL " ] ["
  44. .B anycast_delay
  45. .IR MSEC " ] ["
  46. .B proxy_delay
  47. .IR MSEC " ] ["
  48. .B proxy_queue
  49. .IR LEN " ] ["
  50. .B locktime
  51. .IR MSEC " ]"
  52. .ti -8
  53. .BR "ip ntable show" " [ "
  54. .B dev
  55. .IR DEV " ] [ "
  56. .B name
  57. .IR NAME " ]"
  58. .SH DESCRIPTION
  59. .I ip ntable
  60. controls the parameters for the neighbour tables.
  61. .SS ip ntable show - list the ip neighbour tables
  62. This commands displays neighbour table parameters and statistics.
  63. .TP
  64. .BI dev " DEV"
  65. only list the table attached to this device.
  66. .TP
  67. .BI name " NAME"
  68. only lists the table with the given name.
  69. .SS ip ntable change - modify table parameter
  70. This command allows modifying table parameters such as timers and queue lengths.
  71. .TP
  72. .BI name " NAME"
  73. the name of the table to modify.
  74. .TP
  75. .BI dev " DEV"
  76. the name of the device to modify the table values.
  77. .SH EXAMPLES
  78. .PP
  79. ip ntable show dev eth0
  80. .RS 4
  81. Shows the neighbour table (IPv4 ARP and IPv6 ndisc) parameters on device eth0.
  82. .RE
  83. .PP
  84. ip ntable change name arp_cache queue 8 dev eth0
  85. .RS 4
  86. Changes the number of packets queued while address is being resolved from the
  87. default value (3) to 8 packets.
  88. .RE
  89. .SH SEE ALSO
  90. .br
  91. .BR ip (8)
  92. .SH AUTHOR
  93. Manpage by Stephen Hemminger