0

我正在开发一个服务器客户端应用程序。哪个服务器和客户端在同一台主机上运行。主机有两个网卡。服务器在其中一个网卡的 ip 上运行,客户端已绑定到另一个网卡的 ip。服务器和客户端各自的代码如下。

服务器代码:

namespace Server { class Program { static void Main(string[] args) { Console.WriteLine("服务器正在运行并等待.....");

        // Create Server Socket to recive
        try
        {
        IPAddress ipAddress = IPAddress.Parse("192.0.0.4");
        IPEndPoint ipLocalEndPoint = new IPEndPoint(ipAddress, 2700);
        TcpListener Ls = new TcpListener(ipLocalEndPoint);
         Ls.Start();
        while (true)
        {
            Socket soc = Ls.AcceptSocket();
            //soc.SetSocketOption(SocketOptionLevel.Socket,
            //        SocketOptionName.ReceiveTimeout,10000);
            try
            {
                Stream s = new NetworkStream(soc);
                StreamReader sr = new StreamReader(s);
                StreamWriter sw = new StreamWriter(s);
                sw.AutoFlush = true; // enable automatic flushing
                sw.WriteLine("{0} Number of employee",        ConfigurationManager.AppSettings.Count);
                while (true)
                {
                    string name = sr.ReadLine();
                    Console.WriteLine("name {0}",name);
                    sw.WriteLine("entered name {0}", name);
                    if (name == "" || name == null) break;
                    string job = ConfigurationManager.AppSettings[name];
                   if (job == null) job = "No such employee";
                    sw.WriteLine(job);
                }
                s.Close();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
            soc.Close();
        }

        }
        catch (Exception e)
        {
            Console.WriteLine(e.ToString());
           while (true)
               { }
        }

    }
}

}

客户代码

公共类 clnt {

public static void Main()
{
    try
    {
        IPAddress ipAddress = IPAddress.Parse("192.0.0.5");
        IPEndPoint ipLocalEndPoint = new IPEndPoint(ipAddress, 8000);
        TcpClient tcpclnt = new TcpClient(ipLocalEndPoint);
        Console.WriteLine("Connecting.....");
        tcpclnt.Connect("192.0.0.4", 2700);
        // use the ipaddress as in the server program

        Console.WriteLine("Connected");
        Console.Write("Enter the string to be transmitted : ");

        String str = Console.ReadLine();
        Stream stm = tcpclnt.GetStream();

        ASCIIEncoding asen = new ASCIIEncoding();
        byte[] ba = asen.GetBytes(str);
        Console.WriteLine("Transmitting.....");

        stm.Write(ba, 0, ba.Length);

        byte[] bb = new byte[100];
        int k = stm.Read(bb, 0, 100);

        for (int i = 0; i < k; i++)
            Console.Write(Convert.ToChar(bb[i]));

        tcpclnt.Close();
    }

    catch (SocketException e)
    {
        Console.WriteLine("Error..... " + e.ErrorCode);
    }
    while(true)
    {}
}

}

什么代码在做什么并不重要。只有连接部分是关注点。

当我使用没有任何参数的构造函数“TcpClient”时。我的意思是替换以下三行客户端 IPAddress ipAddress = IPAddress.Parse("192.0.0.5"); IPEndPoint ipLocalEndPoint = new IPEndPoint(ipAddress, 8000); TcpClient tcpclnt = new TcpClient(ipLocalEndPoint); 使用 TcpClient tcpclnt = new TcpClient(); 它工作正常。

或者

当客户端在不同的机器上运行时,它也可以正常工作。

4

1 回答 1

0

对于后代:使用 TcpClient()

允许底层服务提供者分配最合适的本地IP地址和端口号

(来源:https ://msdn.microsoft.com/en-us/library/zc1d0e0f%28v=vs.110%29.aspx ),这就是它起作用的原因。

通过调用重载来分配端点TcpClient(IPEndpoint)会强制将其分配给特定的 NIC、地址和端口。如果没有从该 IPEndpoint 到服务器端点的网络路由,则无法建立连接。除非涉及到组合,否则通常认为在同一网络上的同一台机器上有两个 NIC 是不好的做法;和是问题192.0.0.4192.0.0.5将 NIC 放在单独的网络上,它们之间有一条路由,无论是否指定客户端上的本地端点都可以。

于 2018-02-15T19:11:00.090 回答