Advertisement
anzhari

VMX Conf

Feb 18th, 2016
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. ##############################################################
  2. #
  3. # vmx.conf
  4. # Config file for vmx on the hypervisor.
  5. # Uses YAML syntax.
  6. # Leave a space after ":" to specify the parameter value.
  7. #
  8. ##############################################################
  9.  
  10. ---
  11. #Configuration on the host side - management interface, VM images etc.
  12. HOST:
  13. identifier : vmx1 # Maximum 4 characters
  14. host-management-interface : eth0
  15. # routing-engine-image : "/home/vmx/vmxlite/images/jinstall64-vmx.img"
  16. # routing-engine-hdd : "/home/vmx/vmxlite/images/vmxhdd.img"
  17. # forwarding-engine-image : "/home/vmx/vmxlite/images/vPFE.img"
  18. routing-engine-image : "/var/opt/vmx-15.1F4-3/images/jinstall64-vmx-15.1F4.15-domestic.img"
  19. routing-engine-hdd : "/var/opt/vmx-15.1F4-3/images/vmxhdd.img"
  20. forwarding-engine-image : "/var/opt/vmx-15.1F4-3/images/vFPC-20151203.img"
  21.  
  22. ---
  23. #External bridge configuration
  24. BRIDGES:
  25. - type : external
  26. name : br-ext # Max 10 characters
  27.  
  28. ---
  29. #vRE VM parameters
  30. CONTROL_PLANE:
  31. vcpus : 1
  32. memory-mb : 1024
  33. console_port: 8601
  34.  
  35. interfaces :
  36. - type : static
  37. ipaddr : 10.102.144.94
  38. macaddr : "0A:00:DD:C0:DE:0E"
  39.  
  40. ---
  41. #vPFE VM parameters
  42. FORWARDING_PLANE:
  43. memory-mb : 6144
  44. vcpus : 3
  45. console_port: 8602
  46. device-type : virtio
  47.  
  48. interfaces :
  49. - type : static
  50. ipaddr : 10.102.144.98
  51. macaddr : "0A:00:DD:C0:DE:10"
  52.  
  53. ---
  54. #Interfaces
  55. JUNOS_DEVICES:
  56. - interface : ge-0/0/0
  57. mac-address : "02:06:0A:0E:FF:F0"
  58. description : "ge-0/0/0 interface"
  59.  
  60. - interface : ge-0/0/1
  61. mac-address : "02:06:0A:0E:FF:F1"
  62. description : "ge-0/0/0 interface"
  63.  
  64. - interface : ge-0/0/2
  65. mac-address : "02:06:0A:0E:FF:F2"
  66. description : "ge-0/0/0 interface"
  67.  
  68. - interface : ge-0/0/3
  69. mac-address : "02:06:0A:0E:FF:F3"
  70. description : "ge-0/0/0 interface"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement