]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/blame - tools/testing/selftests/tc-testing/tdc_config.py
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-disco-kernel.git] / tools / testing / selftests / tc-testing / tdc_config.py
CommitLineData
76b903ee 1"""
b2441318 2# SPDX-License-Identifier: GPL-2.0
76b903ee
LB
3tdc_config.py - tdc user-specified values
4
5Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
6"""
7
8# Dictionary containing all values that can be substituted in executable
9# commands.
10NAMES = {
11 # Substitute your own tc path here
12 'TC': '/sbin/tc',
13 # Name of veth devices to be created for the namespace
14 'DEV0': 'v0p0',
15 'DEV1': 'v0p1',
16 # Name of the namespace to use
17 'NS': 'tcut'
18 }