1

我正在尝试Ericsson MD110 alex通过 c# 应用程序登录。md110返回值要求用户名登录应用程序,但是一旦我通过以下代码传递用户名和密码:

public static void Main(string[] args)
    {
        try
        {
            byte[] data = new byte[1024];
            string stringData;
            //TcpClient tcpclnt = new TcpClient();
            //Console.WriteLine("Connecting.....");
            string ipaddress = "192.168.1.30";
            int port=23;
            IPAddress ipadd = IPAddress.Parse(ipaddress);
            IPEndPoint ipend = new IPEndPoint(ipadd, port);

            Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            sock.NoDelay = false;

            sock.Connect(ipend);

            //recive data

            int recv = sock.Receive(data);
            stringData = Encoding.ASCII.GetString(data, 0, recv);

            //textBox4.AppendText(stringData + "\r\n");
            Console.Write(stringData);
            //while (true)
            //{

                Byte[] bBuf;
                string buf;


                //Application.DoEvents();
                //buf = String.Format("{0}\r\n{1}\r\n", "MDUSER", "HELP");

                buf = String.Format("ALREI;");
                //buf = string.Format("ENTER USER NAME<.MDUSER;MDUSER;ENTER PASSWORD<.HELP;");
                bBuf = Encoding.ASCII.GetBytes(buf);

                sock.Send(bBuf);     


                data = new byte[1024];
                recv = sock.Receive(data);
                stringData = Encoding.ASCII.GetString(data, 0, recv);
                //textBox4.AppendText(stringData + "\r\n");
                string df = "";
                Console.Write(stringData);
                Console.ReadLine();
            //}

        }

        catch (Exception e)      

          {
            Console.WriteLine("Error..... " + e.StackTrace);
            Console.ReadKey();
          }
    }

此外,我检查了wireshark,但md110没有返回任何值。只有确认数据包才会收到。我需要一些建议。

命令行输出图像

4

0 回答 0