Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

linux - Python socket.error: [Errno 13] Permission denied

Using Linux and Python, I want to send some data with broadcast:

d = b'109u433279423423423'    

import socket

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

s.sendto(d, 0, ('192.168.0.255', 9))

I launch this script under root and get this error:

s.sendto(d, 0, ('192.168.0.255', 9)) socket.error: [Errno 13]
Permission denied

What is wrong?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are trying to send to a broadcast address. It is not allowed, see manpage for sendto(2):

EACCES (For UDP sockets) An attempt was made to send to a network/broadcast address as though it was a unicast address.

Set the SO_BROADCAST option, if you actually mean to send to a broadcast address:

s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...