Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Filter logs?

Status
Not open for further replies.

wardo

Technical User
May 25, 2001
106
0
0
US
Is there a way to filter my own IP from the IIS logs.I preview a Dreamweaver site in IE a lot and want to exclude this IP from the log.

Thanks
 
There is no way to filter particular IP addresses from being *written* to the log file, but you can, of course, filter them out when the log file is processed.
 
You could upload it into an Access database and then do:
Code:
  SELECT WHERE IP NOT IN('xxx.xxx.xxx.xxx', 'yyy.yyy.yyy.yyy');
which will give you the ability to filter out more than one IP (in case you're testing with a couple of machines).

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top