Clear Filters
Clear Filters

TCP server in local network stays busy forever

7 views (last 30 days)
I'm trying to build a TCP connection between two PCs in my local network. The code for the server looks like this:
tcp_server = tcpip('192.168.xxx.yyy', 30000, 'NetworkRole', 'server');
tcp_server.BytesAvailableFcnMode = 'terminator';
tcp_server.Terminator = 19;
fopen(tcp_server);
The code for my client looks like this:
tcp_client = tcpip('192.168.xxx.yyy', 30000, 'NetworkRole', 'client');
fopen(tcp_client);
fwrite(tcp_client,'hello world');
When I start the code on localhost (using 127.0.0.1 as IP adress) it has no problem working. The instance of MATLAB that's running stays busy until the client connects and then I can begin sending packages back and forth.
When using this same code on the local network between different machines though, the MATLAB instance running the server just stays busy, even after the client has connected. It's like it just freezes up.
I know for sure that the TCP over the network works, because I can connect two PC via TCP using the same network adresses using some C# code that I wrote. So the problem defenetly lies in MATLAB. Also connecting my C# server on one computer to a MATLAB client on another works flawlessly. It's just MATLAB server getting stuck in "Busy" when trying to connect via Network.

Answers (3)

sen sun
sen sun on 22 Oct 2018
i am faced with similar problem,have you solved you problem? i will appreciate that you can give me some idea or advice.
  4 Comments
sen sun
sen sun on 25 Oct 2018
maybe firewall is the keypoint.close firewall when using tcp/ip.
Sami Al-Khayat
Sami Al-Khayat on 26 Oct 2018
I've tried this before with no sucess, on different machines and different networks as well.
You mentioned that your problem is similar. What problem do you have, maybe we can come up with a solution that works for us both if we're stuck on a similar problem.

Sign in to comment.


sen sun
sen sun on 26 Oct 2018
firewall(status:open) lead to communication failure.when i close firewall,they run successfully,can send and receive date correctly. i copy your code,and run on my computer.they run successfully
tcp_s = tcpip('0.0.0.0', 30000, 'NetworkRole', 'server');
tcp_s.BytesAvailableFcnMode = 'terminator';
tcp_s.Terminator = 19;
fopen(tcp_s);
tcp_c = tcpip('localhost', 30000, 'NetworkRole', 'client');
fopen(tcp_c);
fwrite(tcp_c,'hello world');

sen sun
sen sun on 26 Oct 2018
even using two computers,each one run server or client code,they can communicate successfully. tcp_s = tcpip('0.0.0.0', 30000, 'NetworkRole', 'server'); tcp_s.BytesAvailableFcnMode = 'terminator'; tcp_s.Terminator = 19; fopen(tcp_s); tcp_c = tcpip('IPV4 address',30000,'NetworkRole','client'); fopen(tcp_c); fwrite(tcp_c,'hello world');
  1 Comment
Sami Al-Khayat
Sami Al-Khayat on 26 Oct 2018
I just tried that again. I closed firewall on both machines and tried connecting my C# client to my MATLAB server, both running basically the code above. No sucess, MATLAB stays busy forever, eventhough my C# client seems to be connected to the server. And as before when I create a C# server and connect a MALAB Client it works perfectly fine.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!