Hi,
I'm looking source code for monitor port 80,443 and 22. This small system will put on linux. Now, we using from international system. But when international line got problem we receive a lot of false signal. So decide to develop for internal use only. Anyone knows where i can get?
Thanks.
Monitor using php
Moderator: General Moderators
Re: Monitor using php
If you want to write a server that only listens for connections, you can do that with PHP.
If you want to write an HTTP server for ports 80 and 443, and an SSH server for port 22, then you can do that with PHP but it's a really bad idea.
If you want to write something that sniffs traffic on those ports while another service actually uses them, you'll need a kernel driver and you cannot do that with PHP.
If you want to write an HTTP server for ports 80 and 443, and an SSH server for port 22, then you can do that with PHP but it's a really bad idea.
If you want to write something that sniffs traffic on those ports while another service actually uses them, you'll need a kernel driver and you cannot do that with PHP.