summaryrefslogtreecommitdiff
path: root/wiretap/netscreen.c
AgeCommit message (Collapse)AuthorFilesLines
2007-11-15Added correct svn propset settings to wiretap/netscreen.[ch]Sake Blok1-0/+2
svn path=/trunk/; revision=23464
2007-09-29When reading NetScreen snoop output, only use WTAP_ENCAP_PER_PACKETSake Blok1-1/+23
if there are packets with different encapsulationtype in the file. Otherwise use the encapsulationtype of the packets in the file. This makes it possible to save the imported data as libpcap file (or any other format that does not support per-packet encapsulation). svn path=/trunk/; revision=23031
2007-09-28When reading NetScreen snoop output, allow the '.' in interface namesSake Blok1-1/+1
so that packets on subinterfaces are accepted too. svn path=/trunk/; revision=23012
2007-09-25Allow the output of NetScreen VSI interfaces to be parsed.Sake Blok1-1/+1
svn path=/trunk/; revision=22947
2007-09-01This patch solves two issue with the NetScreen wiretap routine:Sake Blok1-7/+7
- It accepts the "/" character in interface names - It accepts EOF as delimiter for the last packet (when there is no more emptyline) svn path=/trunk/; revision=22765
2007-08-17(http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1717)Sake Blok1-0/+437
This patch adds support for the Juniper NetScreen snoop output format. It takes a text-dump op the captured packets and parses the headers and hex-data. Since the snoop files on a Junpiper NetScreen can be saved to a tftp-server, this patch makes it quite easy to use the snoop function of the Juniper NetScreen firewalls. /* XXX TODO: * * o Create a wiki-page with instruction on how to make tracefiles * on Juniper NetScreen devices. Also put a few examples up * on the wiki (Done: wiki-page added 2007-08-03) * * o Use the interface names to properly detect the encapsulation * type (ie adsl packets are now not properly dissected) * (Done: adsl packets are now correctly seen as PPP, 2007-08-03) * * o Pass the interface names and the traffic direction to either * the frame-structure, a pseudo-header or use PPI. This needs * to be discussed on the dev-list first * (Posted a message to wireshark-dev abou this 2007-08-03) * */ svn path=/trunk/; revision=22533