Saltstack Official Linux Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

network_extended.sls 791B

1234567891011121314151617181920212223242526272829303132333435
  1. linux:
  2. system:
  3. enabled: true
  4. domain: ci.local
  5. name: linux
  6. network:
  7. enabled: true
  8. hostname: linux
  9. fqdn: linux.ci.local
  10. network_manager: false
  11. tap_custom_txqueuelen: 10000
  12. interface:
  13. eth0:
  14. enabled: true
  15. type: eth
  16. address: 192.168.0.102
  17. netmask: 255.255.255.0
  18. gateway: 192.168.0.1
  19. name_servers:
  20. - 8.8.8.8
  21. - 8.8.4.4
  22. mtu: 1500
  23. route:
  24. kubernetes_internal:
  25. address: 10.254.0.0
  26. netmask: 255.255.0.0
  27. some_other:
  28. address: 10.111.0.0
  29. netmask: 255.255.0.0
  30. gateway: 1.1.1.1
  31. vlan69:
  32. enabled: true
  33. type: vlan
  34. use_interfaces:
  35. - interface: ${linux:interface:eth0}