14 lines
198 B
Python
14 lines
198 B
Python
|
#!/usr/bin/python2
|
||
|
|
||
|
import socket
|
||
|
import time
|
||
|
|
||
|
target = "192.168.178.21"
|
||
|
port = 5005
|
||
|
|
||
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||
|
|
||
|
while 1:
|
||
|
s.sendto("test", (target, port))
|
||
|
time.sleep(1)
|