bgpdump.scd 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. bgpdump(1)
  2. # NAME
  3. bgpdump - translate MRT format files into readable output
  4. # VERSION
  5. Version 1.4.99.15+hg127
  6. # SYNOPSIS
  7. Usage:
  8. ```
  9. bgpdump [-m|-M] [-t dump|-t change] [-O <output-file>] <input-file>
  10. ```
  11. # OPTIONS
  12. Output mode:
  13. *-H*
  14. multi-line, human-readable (the default)
  15. *-m*
  16. one-line per entry with unix timestamps
  17. *-M*
  18. one-line per entry with human readable timestamps in the form
  19. MM/DD/YY HH:MM:SS (there are other differences between -m and -M)
  20. Common options:
  21. *-O* file
  22. output to 'file' instead of STDOUT
  23. *-s*
  24. log to syslog (the default)
  25. *-v*
  26. log to STDERR
  27. Options for -m and -M modes:
  28. *-t* _dump_
  29. timestamps for RIB dumps reflect the time of the dump (the default)
  30. *-t* _change_
  31. timestamps for RIB dumps reflect the last route modification
  32. *-p*
  33. show packet index at second position
  34. Special options:
  35. *-T*
  36. run internal tests and exit
  37. # INPUT FORMATS
  38. - MRT routing table dump entries in TABLE_DUMP or TABLE_DUMP_V2 types
  39. - Zebra/Quagga BGP records:
  40. - BGP messages (OPEN, UPDATE, NOTIFY, KEEPALIVE)
  41. - BGP state changes
  42. - File may be gzipped or bzip2'd and/or passed in through stdin
  43. The file format is described in the Internet Draft grow-mrt-13:
  44. <https://tools.ietf.org/html/draft-ietf-grow-mrt-13>
  45. # BUGS
  46. If a single update message contains more than 8192 added or
  47. withdrawn prefixes, all those above that number are ignored.
  48. Files with a name longer than 999 characters cannot be processed.
  49. The bgpdump program is not y2038 compliant. This is inherited from
  50. the file format.
  51. # DEBIAN
  52. Besides bug fixes, the following changes were done in the packaging
  53. for the Debian distribution:
  54. - The maximum number of prefixes processed from a single update
  55. messages was raised from 2050 to 8192.
  56. # AUTHOR
  57. bgpdump was originally written by Dan Ardelean and the RIPE NCC
  58. took over maintenance in 2005.
  59. bgpdump is Copyright (C) 2007-2011 RIPE NCC
  60. This manpage is based on bgpdump's usage output, the bgpdump's
  61. homepage, and other sources. It was written for the Debian project
  62. by Christoph Biedl <debian.axhn@manchmal.in-ulm.de> but may be used
  63. by others.