I have a python server running with the code,
import socket s = socket.socket() s.bind((\'192.168.1.11\', 5000)) s.listen(0) while True: client, addr