Hi
im trying to acces to my RouterOs trough MSXML2.ServerXMLHTTP using this code:
<%
dim xmlhttp
str=“name=admin&password=polpo”
set xmlhttp = server.Createobject(“MSXML2.ServerXMLHTTP”)
xmlhttp.Open “GET”, “http://192.168.0.2/webfig/”, true
xmlhttp.send (str)
Response.Write xmlhttp.status &" - "
Response.Write xmlhttp.readyState
Response.Write xmlhttp.responsetext
Set xmlhttp = nothing
%>
the result of this code display me the login page of the router and the value 200 (Response.status) and 4 (Response.Readystate).
I think the connection is ok but i don’t know how pass command like login or password or view list of user ect.
Can you help me please?
Thank you
Pietro