Brandon Friedman wrote:
> Hi there Quick question: How do I know if the following ports
> are open on the E-smith box and how to I open/close them? Port
> numbers are 8800,8600,8300 & 8806
netstat -an | grep :8
will show you whether they are open (they're not). Opening them
would require running some form of daemon to listen on those ports.
Gordon