Re: [Ethereal-users] Default Capture File Location

2003-12-30 Thread Ian Schorr
; directory in the shortcut. If you've already opened a file since Ethereal was started, it defaults to the directory that the most recent file was opened in. Or am I misunderstanding the question? Ian Ian Schorr wrote: Edit->Preferences->User Interface->"Always Start In Di

Re: [Ethereal-users] Default Capture File Location

2003-12-30 Thread Ian Schorr
Edit->Preferences->User Interface->"Always Start In Directory" There's actually a preference now. The default behavior is to have it "remember" which directory you last opened Note that changing the working directory in the shortcut before may have caused SNMP not to work properly. Keith Fre

Re: [Ethereal-users] Top talkers?

2003-12-24 Thread Ian Schorr
Sort of. You can generate a "Conversation List", which will let you sort by number of frames/bytes total or in a given direction. This isn't /exactly /top talkers - it allows you to see the most active conversations, not necessarily the most active hosts. So it depends on what kind of informa

Re: [Ethereal-users] error opening C:\Program Files\Ethereal-0.9.16\asn1/default.tt, No such file or directory

2003-12-15 Thread Ian Schorr
cularly Windows-friendly. The fact that the "error opening..." message getting displayed only has SOMEWHAT to do with whether the error occurred or not... And the fact that an asn1 subdir nor a "default.tt" are part of the Ethereal distribution, but the code seems to treat it that

Re: [Ethereal-users] error opening C:\Program Files\Ethereal-0.9.16\asn1/default.tt, No such file or directory

2003-12-15 Thread Ian Schorr
Mine does that too as long as I have the asn1 plugin installed. I'm not quite sure what file it's looking for, and it won't let me continue without a valid file. I'm guessing this is a relatively new change (with at least several bugs, several of which include not playing nicely with Windows) but

Re: [Ethereal-users] Auto Falgging]

2003-12-04 Thread Ian Schorr
Easy to do in Ethereal provided that you can build a filter that will match the symptom or event that you're looking for. I do this all the time to find interesting events. To use your example, you'd do this to mark all TCP ACKs that took longer than 50ms to occur in a red text (bold or not-bo

Re: [Ethereal-users] Capture Filters

2003-12-04 Thread Ian Schorr
Hi Stephen, Have you looked at the Ethereal user guide, in the section about "Filtering while Capturing" (http://www.ethereal.com/docs/user-guide/ch03capfilt.html)? It gives a bit of detail. The TCPdump man page (http://www.tcpdump.org/tcpdump_man.html) also gives quite a bit of detail on ca

Re: [Ethereal-users] Throughput

2003-12-04 Thread Ian Schorr
Are you looking for something like this? Go to Tools->Statistics->IO->IOStat Change Frames/Tick to Bytes/Tick Change Tick Interval to the interval that you want. Ian Raghu Ram Jakkampudi wrote: Hi I was wondering if Ethereal can display the throughput statistics,like the number of bytes that a

Re: [Ethereal-users] new user

2003-12-04 Thread Ian Schorr
Adam, Ethereal is not developed by a single corporation or major organization, but is an Open Source Software project that, like many other OSS projects, is maintained mostly by individuals working in their spare time or by members of organizations with interests in improving/contributing spec

[Ethereal-users] Server Response times

2003-12-04 Thread Ian Schorr
Hi all, I find it exceedingly helpful when looking at SMB and ONC/RPC-based traffic to use the "smb.time" and "rpc.time" fields to look at server response times, and responsiveness of particular servers/applications in client/server interactions. I've been looking through other dissectors, lik

Re: [Ethereal-users] Question: Excluding Terminal Services or VNC on remote scanning

2003-12-04 Thread Ian Schorr
Since there are actually two fields matching tcp.port (source and destination address), your filter will only exclude traffic if BOTH ports are 3389. Instead, try !(tcp.port==3389), which will exclude traffic if EITHER port is set to 3389. Interesting little logic quirk. You also run into the sa

Re: [Ethereal-users] Filter Question(Like we've never seen one of these...)

2003-12-04 Thread Ian Schorr
Ron, Try: tethereal -R -r "origfile.cap" frame.number > 400 -w "newfile.cap" or tethereal -R -r "origfile.cap" frame.time_relative > 120 -w "newfile.cap" The first will write all packets from "origfile.cap" greater than 4,000,000 to "newfile.cap" The second will write all packets from "o

Re: [Ethereal-users] Capture scheduling

2003-12-04 Thread Ian Schorr
Cron would also be appropriate for most other *nixes besides Linux. Not sure of a graceful way to terminate a process based on a condition external to tethereal, but you could certainly set autostop conditions (stop capture after a certain amount of time or after a certain number of bytes had been

Re: [Ethereal-users] split cap file ?

2003-12-04 Thread Ian Schorr
Read recent messages. Have you tried tethereal? What you're looking for could probably be done with: tethereal -r -R -w Ian john g wrote: can ethereal split a cap file based on a filter ? i have a cap file (pretty huge) and i wanted to sort out relevant packets based on a filter and make

Re: [Ethereal-users] Questions on using ethereal / tethereal

2003-12-04 Thread Ian Schorr
I'll take a stab at answering some of these: Heilmaier, Alois wrote: Hello, I use following Version of tethereal: (tethereal -v tethereal 0.9.11, with GLib 1.3.2, with libpcap (version unknown), with libz 1.1.4, with Net-SNMP 5.0.6, running on Windows NT 4.0 Service Pack 5, build 1381) I have

Re: [Ethereal-users] Performance Report

2003-12-04 Thread Ian Schorr
Currently I don't believe that RTT (SRT, or "Service Response Time) is reported by the HTTP dissector, nor by the large majority of protocol dissectors. It definitely wasn't supported in 0.9.9. At some point I'd like to start walking back through some of the more "popular" dissectors (or bette

Re: [Ethereal-users] Throughput

2003-12-04 Thread Ian Schorr
age. If this isn't what you're looking for, can you provide more details on what you're trying to do? Ian Ian Schorr wrote: Are you looking for something like this? Go to Tools->Statistics->IO->IOStat Change Frames/Tick to Bytes/Tick Change Tick Interval to the interval

Re: [Ethereal-users] Filter documention

2003-12-04 Thread Ian Schorr
No such document exists that I'm aware of (though the man page covers a few topics that the User's Guide doesn't). As James Fields mentioned, you can use editcap to build a new file containing only s certain set of frames (records). However, you CAN build filters in Ethereal as well: Let's sa

Re: [Ethereal-users] Re: Looking for a new non-switched hub

2003-12-04 Thread Ian Schorr
I believe that libpcap on Linux has a limitation that doesn't allow promiscuous mode to be set when using the "all" interface, so it would be difficult to use if he's not monitoring traffic to/from his own machine, broadcasts, etc. Or am I mistaken? Ian Ronnie Sahlberg wrote: This presents 2

Re: [Ethereal-users] Installation problem

2003-12-04 Thread Ian Schorr
I had that error with the 0.9.11 reported when I had an instance of Ethereal running that was already installed in the destination directory. After exiting Ethereal (duh), it worked fine for me. Anything else that might have had wiretap.dll open may also have interfered with your installation

Re: [Ethereal-users] tcpdump vs ethereal

2003-12-04 Thread Ian Schorr
On Nov 19, 2003, at 3:58 PM, Martin Heroux wrote: 1- why does tcpdump don't get the same amount of packets as a regular sniffer (Dolch for instance) I am using one of the best gigabit card on the market I should get the same result. BTW the altheon card can be driven to wire speed, I saw it on a

[Ethereal-users] Terrible capture rates

2003-12-04 Thread Ian Schorr
Tuesday I performed some more performance testing with Ethereal. I finally got various NICs working on my Redhat Linux test machine (dual-booting Redhat 8 with kernel 2.4.18-14 and Redhat 7.3 with kernel 2.4.18-3), but I'm seeing capture performance much lower than I expect. Using a gigabit pac

[Ethereal-users] Text search/etc

2003-12-03 Thread Ian Schorr
Forgive me if these are stupid questions, but: Is it possible for me to build a filter/search on a particular string that may occur anywhere inside the packet view or tree view? I often use a feature of Sniffer that allows me to perform plaintext searches in this way - if I'm looking for a par

[Ethereal-users] Gigabit capture NIC

2003-12-03 Thread Ian Schorr
Is anyone on this list aware of a PCI-based, 1000BaseSX or 1000BaseT Ethernet NIC that supports generating timestamps onboard? I'm trying to build a PC for high-speed data capture (ideally up to gig rates, if I can get it to happen), and trying to ensure accuracy timestamps as much as possible.

Re: [Ethereal-users] Filtering for HTTP

2003-12-03 Thread Ian Schorr
I'm not sure about capture filters, but you can build the following display filters: http will display all packets where http is present. http.request will display all http requests from a client. http.response will display all http responses from a server. Unfortunately, that's just ab

[Ethereal-users] Ethereal developer for hire?

2003-12-03 Thread Ian Schorr
Just curious, Is anyone aware of an independent contractor or organization that performs Ethereal modifications for a fee? It would be interesting to find out if an organization that currently pays support and purchase costs might be able to pay someone to implement bug fixes, changes, and fe

Re: [Ethereal-users] No Interfaces in capture menu/Mac OSX 10.2.8

2003-12-03 Thread Ian Schorr
Are you superuser when you run Ethereal? Are you running "sudo ethereal"? Without proper access Ethereal can't capture from the interface. Ian On Thursday, September 25, 2003, at 08:20 AM, Robert Ruzitschka wrote: Hi! I installed Ethereal on my machine via Fink (should guarantee that all nec

Re: [Ethereal-users] streaming capture to multiple files

2003-12-03 Thread Ian Schorr
What you can't do currently, however, is instruct Ethereal to stop after it writes a certain number of files or bytes. You can tell it to stop after a certain number of frames, and after a certain number of seconds, but not tell it to record up to a certain number of bytes if saving to multipl

Re: [Ethereal-users] Windows XP Version

2003-12-03 Thread Ian Schorr
Hi Jerry, You should be able to just use the local Windows build of Ethereal, which includes an installer. Go to the main web page (www.ethereal.com), click on "Binary Distributions" under "Download", scroll down to "Microsoft: Windows" and click "local archive". The latest executable is "ethere

Re: [Ethereal-users] Ethereal 0.9.16 has been released.

2003-12-03 Thread Ian Schorr
http://www.ethereal.com/distribution/win32 Or, normally, you could go to http://www.ethereal.com -> Downloads -> Microsoft: Windows (local archive) I'd imagine you want the "ethereal-setup-0.9.16.exe" file in this directory. This is the installer for Win32 systems (Win95, WinXP, Win2k3 Server

[Ethereal-users] Find TCP events

2003-12-03 Thread Ian Schorr
Is there an easy way for me to get a list, or filtered version of frames in a trace with TCP events (retransmissions, etc) detected by the TCP sequence number analysis module? I'm assuming that I can do this with filters, but haven't been able to figure out how... If I can do it with a filter,

Re: [Ethereal-users] Throughput

2003-12-03 Thread Ian Schorr
quot;more significant" to place the network capture device at either end of the conversation, or at any one of multiple points along the path of the conversation, depending on what I'm looking for. -Original Message- From: Ian Schorr [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10

Re: [Ethereal-users] Cifs traffic

2003-12-03 Thread Ian Schorr
Hi Ferdinand, It is fairly easy to filter on CIFS traffic only - simply use a filter of "smb". This will filter on only packets which Ethereal has determined to be CIFS-related, including TCP ACK-only frames, etc. It WON'T filter on traffic that may related to CIFS but not CIFS itself, such a

Re: [Ethereal-users] help???????????

2003-12-03 Thread Ian Schorr
Are you just trying to take a screenshot of Ethereal so that you can paste it into a document of some kind? What platform are you running Ethereal/word processing on? What word processing program is it? Ian On Sep 12, 2003, at 2:07 PM, Ka K. Lor wrote: hi there anyone, I was writing a manual

Re: [Ethereal-users] Specs for monitoring full 100 Mb line

2003-12-03 Thread Ian Schorr
I have to admit that in the lab I've found that Ethereal/tethereal dropped between .01 and .3% of all frames for me at rates of greater than about 10MB/s (so 80mbit/s) - which, strangely, was consistent all the way up to 40 or so MB/s, for tests lasting up to 100gigabytes of data. However, all

Re: [Ethereal-users] QUESTIONS ABOUT ETHEREAL

2003-12-03 Thread Ian Schorr
Hi Georgina: See replies below: gina olivares wrote: */gina olivares <[EMAIL PROTECTED]>/* wrote: Hi, my name is Georgina, and i´m interested about software ETHEREAL I have some doubts about it. First, I´d like to know if I can use it on a TCP/IP network?? It depends on wha