summaryrefslogtreecommitdiffstats
path: root/regress/sys/netinet/arp/arp_multicast.py
blob: 1ca4e802575d5f71aed7e11a928861aef5ec2bcc (plain) (blame)
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
#!/usr/local/bin/python3
# send Address Resolution Protocol Request with ethernet multicast sender
# expect Address Resolution Protocol response and check all fields
# RFC 826  An Ethernet Address Resolution Protocol
# Packet Generation

import os
from addr import *
from scapy.all import *

arp=ARP(op='who-has', hwsrc="33:33:33:33:33:33", psrc=LOCAL_ADDR,
    hwdst="ff:ff:ff:ff:ff:ff", pdst=REMOTE_ADDR)
eth=Ether(src=LOCAL_MAC, dst="ff:ff:ff:ff:ff:ff")/arp

e=srp1(eth, iface=LOCAL_IF, promisc=1, timeout=2)

if e and e.type == ETH_P_ARP:
	a=e.payload
	if a.hwtype != ARPHDR_ETHER:
		print("HWTYPE=%#0.4x != ARPHDR_ETHER" % (a.hwtype))
		exit(1)
	if a.ptype != ETH_P_IP:
		print("PTYPE=%#0.4x != ETH_P_IP" % (a.ptype))
		exit(1)
	if a.hwlen != 6:
		print("HWLEN=%d != 6" % (a.hwlen))
		exit(1)
	if a.plen != 4:
		print("PLEN=%d != 4" % (a.plen))
		exit(1)
	if a.op != 2:
		print("OP=%s != is-at" % (a.op))
		exit(1)
	if a.hwsrc != REMOTE_MAC:
		print("HWLOCAL=%s != REMOTE_MAC" % (a.hwsrc))
		exit(1)
	if a.psrc != REMOTE_ADDR:
		print("PLOCAL=%s != REMOTE_ADDR" % (a.psrc))
		exit(1)
	if a.hwdst != "33:33:33:33:33:33":
		print("HWREMOTE=%s != 33:33:33:33:33:33" % (a.hwdst))
		exit(1)
	if a.pdst != LOCAL_ADDR:
		print("PREMOTE=%s != LOCAL_ADDR" % (a.pdst))
		exit(1)
	print("arp reply")
	exit(0)

print("NO ARP REPLY")
exit(2)