blob: 89da4c0deb6f977d274f2a07cb887ab77bbcd39e (
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
|
. $(atf_get_srcdir)/utils.subr
atf_test_case "hfsc" "cleanup"
hfsc_head()
{
atf_set descr 'Basic HFSC test'
atf_set require.user root
}
hfsc_body()
{
altq_init
is_altq_supported hfsc
epair=$(vnet_mkepair)
vnet_mkjail altq_hfsc ${epair}b
ifconfig ${epair}a 192.0.2.1/24 up
jexec altq_hfsc ifconfig ${epair}b 192.0.2.2/24 up
# Sanity check
atf_check -s exit:0 -o ignore ping -i .1 -c 3 -s 1200 192.0.2.2
jexec altq_hfsc pfctl -e
pft_set_rules altq_hfsc \
"altq on ${epair}b bandwidth 100b hfsc queue { default }" \
"queue default hfsc(default linkshare 80b)" \
"pass proto icmp "
# single ping succeeds just fine
atf_check -s exit:0 -o ignore ping -c 1 192.0.2.2
# "Saturate the link"
ping -i .1 -c 5 -s 1200 192.0.2.2
# We should now be hitting the limits and get this packet dropped.
atf_check -s exit:2 -o ignore ping -c 1 -s 1200 192.0.2.2
}
hfsc_cleanup()
{
altq_cleanup
}
atf_init_test_cases()
{
atf_add_test_case "hfsc"
}
|