tdc_config.py 525 B

12345678910111213141516171819
  1. """
  2. tdc_config.py - tdc user-specified values
  3. Copyright (C) 2017 Lucas Bates <lucasb@mojatatu.com>
  4. """
  5. # Dictionary containing all values that can be substituted in executable
  6. # commands.
  7. NAMES = {
  8. # Substitute your own tc path here
  9. 'TC': '/sbin/tc',
  10. # Name of veth devices to be created for the namespace
  11. 'DEV0': 'v0p0',
  12. 'DEV1': 'v0p1',
  13. 'DEV2': '',
  14. 'BATCH_FILE': './batch.txt',
  15. # Name of the namespace to use
  16. 'NS': 'tcut'
  17. }