blob: b6e9f0cbf4689090b07dd6e2c8b638a36a17fa7f (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright (c) 2017, Joyent, Inc.
# Copyright 2022 OmniOS Community Edition (OmniOSce) Association.
#
soe_arg0="$(basename $0)"
soe_overlay="soe_overlay$$"
soe_dummy_ip="169.254.0.0"
soe_port="2000"
soe_vnetid=20
soe_encap="vxlan"
soe_search="direct"
soe_etherstub="soe_teststub$$"
function fatal
{
typeset msg="$*"
[[ -z "$msg" ]] && msg="failed"
echo "TEST_FAIL: $vt_arg0: $msg" >&2
dladm delete-overlay $soe_overlay
dladm delete-etherstub $soe_etherstub
exit 1
}
function setup
{
dladm create-overlay -t -v $soe_vnetid -e $soe_encap -s $soe_search \
-p vxlan/listen_ip=$soe_dummy_ip -p direct/dest_ip=$soe_dummy_ip \
-p direct/dest_port=$soe_port $soe_overlay || \
fatal "failed to create overlay"
dladm create-etherstub $soe_etherstub || \
fatal "failed to create etherstub"
}
function cleanup
{
dladm delete-overlay $soe_overlay || \
fatal "failed to remove overlay"
dladm delete-etherstub $soe_etherstub || \
fatal "failed to remove etherstub"
}
function runtest
{
dladm show-overlay $* > /dev/null 2>&1
}
function epass
{
runtest $* || fatal "show-overlay=$* failed, expected success\n"
}
function efail
{
runtest $* && fatal "show-overlay=$* succeeded, expected failure\n"
}
setup
epass $soe_overlay
efail $soe_etherstub
efail $soe_etherstub $soe_overlay
efail $soe_overlay $soe_etherstub
cleanup
print "TEST PASS: $soe_arg0"
|