A-A+
FW300R路由器自动断线换IP的方法
下面是针对300M的迅捷(fast)fw300r无线路由器,要想让他断线自动更换ip地址,命令行操作方法如下:
- /// <summary>
- /// FW300R路由器自动断线换IP
- /// </summary>
- public static void Disconnect()
- {
- //断线请求
- string uri = "http://192.168.1.1/userRpm/PPPoECfgRpm.htm?wan=0&wantype=2&acc=07720090868&psw=Hello123World&confirm=Hello123World&specialDial=100&SecType=0&sta_ip=0.0.0.0&sta_mask=0.0.0.0&linktype=2&Disconnect=%B6%CF+%CF%DF";
- string sUser = "admin";
- string sPwd = "admin";
- string sDomain = "";
- NetworkCredential oCredential;
- HttpWebRequest oRequest = (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/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36";
- oRequest.Referer = "http://192.168.1.1";
- oRequest.Headers.Add("Authorization", "Basic YWRtaW46NDY2NjYyNzc=");
- oRequest.KeepAlive = true;
- oRequest.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8";
- 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("WAN口设置") > -1)//登录成功
- {
- Console.WriteLine("断开登录成功");
- }
- else
- {
- Console.WriteLine("断开登录失败");
- }
- }
- }
总结,迅捷是国内性价比不错的一个路由品牌,通常价格比tplink或者dlink、网件、贝尔金之类的品牌要便宜不少,值得大家选购。