-
Notifications
You must be signed in to change notification settings - Fork 6
/
mcast.py
executable file
·125 lines (106 loc) · 3.52 KB
/
mcast.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env python
#
# Send/receive UDP multicast packets.
# Requires that your OS kernel supports IP multicast.
#
# Usage:
# mcast -s (sender, IPv4)
# mcast -s -6 (sender, IPv6)
# mcast (receivers, IPv4)
# mcast -6 (receivers, IPv6)
#
# Modify to add interface
# Usage: -i <interface name>
# mcast -s -i eth0 (sender, IPv4, eth0)
# mcast -i eth0 (receivers, IPv4, eth0)
MYPORT = 8123
MYGROUP_4 = '225.0.0.250'
MYGROUP_6 = 'ff15:7079:7468:6f6e:6465:6d6f:6d63:6173'
MYTTL = 1 # Increase to reach other networks
import time
import struct
import socket
import sys, getopt
import fcntl
def main(argv):
group = MYGROUP_4
port = MYPORT
action = 0
interface = None
try:
opts, args = getopt.getopt(argv,"s6i:",["inf="])
except getopt.GetoptError:
print 'wrong input'
sys.exit(2)
for opt, arg in opts:
if opt == '-s':
action = 1
elif opt == '-6':
group = MYGROUP_6
elif opt in ("-i", "--inf"):
interface = arg
if action == 0:
# multicast receiver
receiver(group, interface)
else:
# multicast sender
sender(group, interface)
def sender(group, interface):
addrinfo = socket.getaddrinfo(group, None)[0]
s = socket.socket(addrinfo[0], socket.SOCK_DGRAM)
# Set Time-to-live (optional)
ttl_bin = struct.pack('@i', MYTTL)
if addrinfo[0] == socket.AF_INET: # IPv4
s.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, ttl_bin)
else:
s.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_MULTICAST_HOPS, ttl_bin)
if interface != None:
s.setsockopt(socket.SOL_SOCKET, 25, interface)
while True:
data = repr(time.time())
s.sendto(data + '\0', (addrinfo[4][0], MYPORT))
time.sleep(1)
def receiver(group, interface):
# Look up multicast group address in name server and find out IP version
addrinfo = socket.getaddrinfo(group, None)[0]
# Create a socket
s = socket.socket(addrinfo[0], socket.SOCK_DGRAM)
# Allow multiple copies of this program on one machine
# (not strictly needed)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
# Bind it to the port
s.bind(('', MYPORT))
group_bin = socket.inet_pton(addrinfo[0], addrinfo[4][0])
# Join group
mreq = group_bin;
if addrinfo[0] == socket.AF_INET: # IPv4
if interface == None:
mreq = group_bin + struct.pack('=I', socket.INADDR_ANY)
else:
ip_addr = get_ip_address(interface)
ip_addr_n = socket.inet_aton(ip_addr)
mreq = group_bin + struct.pack("=4s", ip_addr_n)
s.setsockopt(socket.IPPROTO_IP, socket.IP_ADD_MEMBERSHIP, mreq)
else:
if interface == None:
mreq = group_bin + struct.pack('@I', 0)
else:
#TODO: need fully test
ip_addr = get_ip_address(interface)
ip_addr_n = socket.inet_aton(ip_addr)
mreq = group_bin + struct.pack("=4s", ip_addr_n)
s.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_JOIN_GROUP, mreq)
# Loop, printing any data we receive
while True:
data, sender = s.recvfrom(1500)
while data[-1:] == '\0': data = data[:-1] # Strip trailing \0's
print (str(sender) + ' ' + repr(data))
def get_ip_address(ifname):
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
return socket.inet_ntoa(fcntl.ioctl(
s.fileno(),
0x8915, # SIOCGIFADDR
struct.pack('256s', ifname[:15])
)[20:24])
if __name__ == '__main__':
main(sys.argv[1:])