
Enviado em 06/07/2020 - 16:34h
Eu tenho o seguinte problema:from pythonosc import dispatcher
from pythonosc import osc_server
if __name__ == "__main__":
ip = '192.168.0.11'
port = 5005
dispatcher = dispatcher.Dispatcher()
dispatcher.map("test", print)
server = osc_server.ThreadingOSCUDPServer((ip, port), dispatcher)
print("Serving on {}".format(server.server_address))
server.serve_forever()
import random
import time
from pythonosc import udp_client
My Ubuntu pc has UDP ports closed, how do I open it?
I already disabled the firewall and tried to open the ports with iptables but nothing has changed.
if __name__ == "__main__":
ip = '192.168.0.11'
port =5005
client = udp_client.SimpleUDPClient(ip, port)
for x in range(20):
client.send_message("/test", random.random())
time.sleep(1)
Gentoo binário em 2026: UEFI, LUKS, Btrfs e Systemd
Trabalhando Nativamente com Logs no Linux
Jogando Daikatana (Steam) com Patch 1.3 via Luxtorpeda no Linux
LazyDocker – Interface de Usuário em Tempo Real para o Docker
Usando dracut e dispensando genkernel no Gentoo + LUKS + Btrfs
Curso GRÁTIS: OCS Inventory NG - Do Deploy ao Hardening com foco em Segurança da Informação!
Instalando fontes via script no Nautilus Scripts no Gnome do Debian 13
O que houve com slackware ??? (1)
Instalar Linux em notebook Sony Vaio VPCEG13EB (7)
VirtualBox no Ubuntu 25.10 sem redimensionam... automatico. (2)









