blob: 8f0e72e029cef587de4787390fa3be7db7d9883c (
plain)
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
|
# $OpenBSD: Makefile,v 1.3 2013/09/13 14:51:50 florian Exp $
#
# template_v{9,10}
# ----------------
# * create pflow0 sending from 127.0.0.1 to 127.0.0.1:9996
# * wait for first template and compare it to known good template
# * destroy pflow0
#
# flow_{9,10}_{4,6}
# -----------------
# * create pflow0 sending from 127.0.0.1 to 127.0.0.1:9996
# * add 10.11.12.13 and 2001:db8::13 to lo0
# * load pf ruleset which skips on all interfaces except lo0 to not lose
# existing ssh sessions, e.g.:
# set skip on {em0 cas0 cas1 enc0}
# pass on lo0 no state
# pass on lo0 proto tcp from port 12345 to port 12346 keep state (pflow)
# * enable pf
# * generate IPv4 or IPv6 traffic
# * wait for flow and compare it with known good flow
# * destroy pflow0
# * delete 10.11.12.13 and 2001:db8::13 from lo0
#
# ifconfig
# --------
# Take up pflow0 and test various combinations of flowdst, flowsrc and proto.
# Destroy it in the end.
REGRESS_TARGETS=template_v9 template_v10 flow_9_4 flow_9_6 flow_10_4 flow_10_6
REGRESS_TARGETS+=ifconfig
PROG= gen_traffic
LDADD= -levent
template_v9:
perl -I ${.CURDIR} ${.CURDIR}/template.pl 9 \
| cmp -s ${.CURDIR}/template.v9 /dev/stdin
template_v10:
perl -I ${.CURDIR} ${.CURDIR}/template.pl 10 \
| cmp -s ${.CURDIR}/template.v10 /dev/stdin
flow_9_4: gen_traffic
perl -I ${.CURDIR} ${.CURDIR}/flow.pl 9 4 \
| cmp -s ${.CURDIR}/flow.9_4 /dev/stdin
flow_9_6: gen_traffic
perl -I ${.CURDIR} ${.CURDIR}/flow.pl 9 6 \
| cmp -s ${.CURDIR}/flow.9_6 /dev/stdin
flow_10_4: gen_traffic
perl -I ${.CURDIR} ${.CURDIR}/flow.pl 10 4 \
| cmp -s ${.CURDIR}/flow.10_4 /dev/stdin
flow_10_6: gen_traffic
perl -I ${.CURDIR} ${.CURDIR}/flow.pl 10 6 \
| cmp -s ${.CURDIR}/flow.10_6 /dev/stdin
ifconfig:
sh ${.CURDIR}/ifconfig.sh 2>&1 \
| cmp -s ${.CURDIR}/ifconfig.ok /dev/stdin
.PHONY: ${REGRESS_TARGETS}
.include <bsd.regress.mk>
|