forked from openconfig/featureprofiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatedut.binding
58 lines (49 loc) · 1.58 KB
/
atedut.binding
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
# proto-file: github.com/openconfig/featureprofiles/blob/main/topologies/proto/binding.proto
# proto-message: openconfig.testing.Binding
# This is an example static binding that demonstrates how to specify
# options to be used in conjunction with the atedut_*.testbed
# testbeds.
# These options are inherited throughout the entire binding for both the
# DUT and the ATE, unless overridden by a specific device or protocol.
options {
username: "username"
password: "password"
}
duts {
id: "dut"
name: "dut-hostname" # Change this to the device hostname.
# Options inherited by all protocols on this device unless
# overridden by individual protocols. Remove if not needed.
options {
insecure: true
}
# Options specific to gNMI. Remove if not needed.
gnmi {
target: "dut-proxy-hostname:6030"
}
# Before this binding can be used with a topology, add ports mapping
# from its topology ID to the actual port name on the device.
#
# ports {
# id: "port1"
# name: "Ethernet1/1" # Change this to the actual port name.
# }
}
ates {
id: "ate"
name: "ate-hostname" # Change this to the Ixia chassis name.
# Options specific to the IxNetwork API. Remove if not needed.
ixnetwork {
# Change this to the Web UI hostname, if it differs from the Ixia
# chassis name.
target: "ixia-hostname"
skip_verify: true
}
# Before this binding can be used with a topology, add ports mapping
# from its topology ID to the actual port name on the device.
#
# ports {
# id: "port1"
# name: "1/1" # Change this to the actual port name.
# }
}