Here you can find answers to questions about how the board works. Use the links or search box below to find your way around.
If you are connected to the internet with your EverQuest computer using a directly connected dial up, DSL, or cable modem and have another NIC in your computer Microsoft Windows will not broadcast the packets out over the second NIC.
99.9% of the time those Residential Gateway/Routers made by LinkSys, Dlink, etc... with X number of ports are switches. This means you will have to plug all your computers into a real hub, then uplink that hub to your router/gateway.
Another recent "feature" of many current hubs is that in a most situations, they will behave as switches. This sucks, but can be worked around. Typically, the 10mbit and the 100mbit section of a 10/100 hub are switched. So if EQ is 100mbit and SEQ is 10mbit, they won't see each other's traffic. Also, if a 10mbit device is hooked to the 10/100 hub it will frequently become a REAL hub on the 100mbit section. So, if your router is 10mbit and your SEQ and EQ boxes are 100mbit all hooked to the same hub-switch, you should probably be able to sniff packets! This is true for most LinkSys hubs, and some Netgear and Bay Network hubs.
/usr/local/share/showeq/showeq.conf.dist
, What is wrong?filters_zonename.conf
file or global filters using the filters.conf
file.
conf/filters.conf.dist
off of the directory you downloaded the CVS into.
A regular expression is a way of describing patterns of letters, numbers, spaces, and other symbols. When this pattern is compared to a string, it is said to match if the special symbols in the pattern match the symbols and characters in the string. Think of it as algebra for words.
The most commonly used special symbols are as follows:
[ ] - matches one character inside the brackets
e.g. - [aA] would match either 'a' or 'A' but not 'b'
\w - matches any word character (letters, symbols, numbers, but not spaces)
\s - matches any space character (space or tab)
. - matches ANY character except return
Special symbol modifiers
+ - Matches 1 or more
* - Matches 0 or more
{ } - Matches X number
e.g. - \w+\s would mean at least one letter (or many more) followed by a space
Example Regex for EQ
Name: [gG]riff.*
Translation:
The exact characters N a m e : {space}
follow by either g or G
followed by exactly r i f f
followed by 0 or more anything
This would match:
Name: griffawn
Name: Griff The Wonder Basher
Name: griff
Name: griffon, a
and many more.
This would NOT match:
Name: Grimfeather Race: griffon
You can learn more about regular expression all over the web, or with 'man perlre'.
/usr/local/share/showeq
directory keeps getting bigger. Is it okay to delete this?