tdc_config.py 464 B

1234567891011121314151617
  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. # Name of the namespace to use
  14. 'NS': 'tcut'
  15. }