|
NAMEraddump - decipher captured RADIUS packetsSYNOPSISraddump [-?vsn] < pktfileDESCRIPTIONraddump(1) interprets captured RADIUS packets to print details about them, including a timestamp, packet lengths, RADIUS packet type, source and destination hosts and ports, and included attribute names and values. It is primarily useful in conjunction with packet capture programs such as tcpdump(1) or snoop(1M), and can be used either on a saved file or in a pipeline to monitor ongoing communications.raddump(1) currently understands packet traces that are RFC 1761-compliant (e.g. those produced by snoop v2) as well as those that are stored in the libpcap format (e.g. those produced by tcpdump). raddump(1) is able to distinguish these file formats on the fly, so it is not necessary to indicate which type of trace you are feeding it. OPTIONS
EXAMPLESWith a saved packet trace:$ raddump < pktfile For real-time monitoring with snoop: $ mkfifo ./snoopfifo $ snoop -q -s 1500 -o ./snoopfifo udp port 1812 & $ raddump < snoopfifo For real-time monitoring with tcpdump: $ tcpdump -s 1500 -w - udp port 1812 | raddump SEE ALSOtcpdump(1), snoop(1M), pcap(3), RFC 1761AUTHORSThe original author of raddump(1) was Jon Moore.BUGSPlease send bug reports, enhancements, or questions to:jonm@isc.upenn.edu Visit the GSP FreeBSD Man Page Interface. |