• C#实现路由器断开连接,更改公网ip


    publicstaticvoid Disconnect()
    {
    string url ="断 线";
        
    string uri ="http://192.168.1.1/userRpm/StatusRpm.htm?Disconnect="+ System.Web.HttpUtility.UrlEncode(url, System.Text.Encoding.GetEncoding("gb2312")) +"&wan=1";
        
    string sUser ="admin";
        
    string sPwd ="admin";
        
    string sDomain ="";
        NetworkCredential oCredential;
        HttpWebRequest oRequest
    = (System.Net.HttpWebRequest)WebRequest.Create(uri);
        
    if (oRequest !=null)
        {
    oRequest.ProtocolVersion
    = HttpVersion.Version11;// send request
            oRequest.Method ="GET";
            oRequest.ContentType
    ="application/x-www-form-urlencoded";
            oRequest.UserAgent
    ="Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.4; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)";
            oRequest.Referer
    ="http://192.168.1.1";

            
    if (sUser != String.Empty)
            {
    oCredential
    =new NetworkCredential(sUser, sPwd, sDomain);
                 oRequest.Credentials
    = oCredential.GetCredential(new Uri(uri), String.Empty);
            }
            
    else
            {
                 oRequest.Credentials
    = CredentialCache.DefaultCredentials;
            }
            StreamReader sr
    =new StreamReader(oRequest.GetResponse().GetResponseStream(), System.Text.Encoding.Default);
            
    string line = sr.ReadToEnd();
            sr.Close();
            
    if (line.IndexOf("LAN口状态") >-1)//登录成功
            {
                 Console.WriteLine(
    "断开登录成功");
            }
            
    else
            {
                Console.WriteLine(
    "断开登录失败");
            }
        }
    }
  • 相关阅读:
    windy数
    微信授权网页登陆,oauth
    Win7/Win2008下IIS配置Asp网站启用父路径的设置方法(已解决)
    Html5学习笔记1 元素 标签 属性
    com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database 'user'
    POJ 3978(求素数)
    java内存模型(Java Memory Model)
    【Unity3D自学记录】Unity3D之自制小钟表
    HDU4126Genghis Khan the Conqueror(最小生成树+并查集)
    gcc学习(一)[第二版]
  • 原文地址:https://www.cnblogs.com/goody9807/p/3526153.html
Copyright © 2020-2023  润新知