I have an ubuntu computer and I want it to act as a server. How do I need to configure the ubuntu computer to be accessible from other computers? Let's say I have this very simple python TCP
server:
from socket import socket
with socket() as server:
server.bind(("", 5555))
server.listen(5)
print("[+] Server Listening")
client, addr = server.accept()
print(f"client connected from address {addr}")
How can I make this server public to other computers to connect?