I am trying to build a php interface to some hp and cisco switches. i have some code to connect via telnet and then parse results. But i'm just wondering if anyone know if there is a way to somehow access the web pages that are built into the swtiches. lets say for example for an HP 5406 or 3500? it would be useful to see their code to see if there's a cleaner way to interpret results from switch commands... thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
you can fopen() switches' management interface url. With the help of Live HTTP Headers or some browser plugins similar, you can grab the GET or POST request and parse the response web page, and try to emulate human behavior and try to get some similar result. If the web interface uses flash or java applet, it'll be harder to implement, depending on its data used to communicate with the switch. The cleaner way? Hard to implement. Emulating POST and GET request is the most clean way I think. |
|||
|
|