Two types of HTTP Inspection filters can be imported:
Filter files are XML files. Imported filter files must conform to a defined standard
shown below.
Creating a filter to import:
-
Imported filter XML files can be created in several ways:
-
Exported from IWSVA
-
Created as a new file
-
If you are creating a new file, use the following sample format:
<?xml version="1.0" encoding="UTF-8"?>
<SDF>
<Filter Mode="Basic" Name="Browser type filter" ID="1">
<Note>Identifies requests sent from the FireFox browser according to the user-agent header</Note>
<Basic Type="REQ">
<Headers Enable="true">
<Header Value="Firefox" Op="M" Name="User-Agent"/>
</Headers>
</Basic>
</Filter>
<Filter Mode="Basic" Name="Large data upload filter" ID="3">
<Note>Identifies large file uploads according to the content-length header</Note>
<Basic Type="REQ">
<Headers Enable="true">
<Header Value="1048576" Op="GE" Name="Content-Length"/>
</Headers>
</Basic>
</Filter>
<Filter Mode="Basic" Name="Query keyword filter" ID="4">
<Note>Identifies query keyword for search engine website, etc.</Note>
<Basic Type="REQ">
<Query Enable="true">
<Value><![CDATA[[put query keywords here]]]></Value>
</Query>
</Basic>
</Filter>
</SDF>
To import a filter:
-
Go to HTTP > HTTP Inspection > Filters.
-
Click the Import link.
-
Click Browse and specify the path and filter to be imported.
-
Click Import.
-
View the name of the imported filters in the list of filter names.
See also