0
Running nmap on my linux box, I find the following open port :
8600/tcp open asterix
After searching online, I found almost no information about this service except a short description:
Port 8600
Transport Layer tcp
Keyword asterix
Description Surveillance Data
http://www.tcp-udp-ports.com/ports8600-8700.htm
More seraching leads me to: http://www.eurocontrol.int/services/asterix
ASTERIX stands for All Purpose STructured Eurocontrol SuRveillance Information EXchange.
It is an ATM Surveillance Data Binary Messaging Format which allows transmission of harmonised information between any surveillance and automation system.
ASTERIX defines the structure of the data to be exchanged over a communication medium, from the encoding of every bit of information up to the organisation of the data within a block of data - without any loss of information during the whole process.
Is there any more information out there? What could be the next step to deal witht this unknown open port? such as ignore it or format...
Try running
sudo netstat -lpn | grep :8600
to see what process is listening to that port. Port 8600 may be commonly used for asterix (which I'm not familiar with), but any other process could be configured to listen on that port. – Johnny – 2013-06-04T23:47:40.343