Skip to content Skip to sidebar Skip to footer

Establishing Tcp Socket Connection Between 2 Vms Using Python

I am running 2 Virtual Machines as Client-Server. One VM is a Windows[Client] and the other VM is a CentOS[Server]. I have written a program[python] to create TCP connections betwe

Solution 1:

The following worked. Thanks for your inputs. I followed https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-using-firewalld-on-centos-7

sudo firewall-cmd --zone=public --permanent --add-port=5000/tcp

Post a Comment for "Establishing Tcp Socket Connection Between 2 Vms Using Python"