Advertisement
Guest User

vmx.conf

a guest
Aug 19th, 2019
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 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 6 characters
  14. host-management-interface : vlan60
  15. routing-engine-image : "/home/vMX-19.1R1-S2/images/junos-vmx-x86-64-19.1R1-S2.2.qcow2"
  16. routing-engine-hdd : "/home/vMX-19.1R1-S2/images/vmxhdd.img"
  17. forwarding-engine-image : "/home/vMX-19.1R1-S2/images/vFPC-20190718.img"
  18.  
  19. ---
  20. #External bridge configuration
  21.  
  22. BRIDGES:
  23. - type : external
  24. name : br-ext # Max 10 characters
  25.  
  26. ---
  27. #vRE VM parameters
  28. CONTROL_PLANE:
  29. vcpus : 2
  30. memory-mb : 6192
  31. console_port: 8601
  32.  
  33. interfaces :
  34. - type : static
  35. ipaddr : 192.168.159.195
  36. macaddr : "02:50:59:34:fa:d6"
  37.  
  38. ---
  39. #vPFE VM parameters
  40. FORWARDING_PLANE:
  41. memory-mb : 49152
  42. vcpus : 11
  43. console_port: 8602
  44. device-type : sriov
  45. use_native_drivers : true
  46.  
  47. interfaces :
  48. - type : static
  49. ipaddr : 192.168.159.196
  50. macaddr : "02:50:59:35:fa:d6"
  51.  
  52. ---
  53. #Interfaces
  54. JUNOS_DEVICES:
  55. - interface : ge-0/0/0
  56. port-speed-mbps : 10000
  57. nic : p1p1
  58. mtu : 9400
  59. virtual-function : 0
  60. mac-address : "02:52:61:38:fa:d6"
  61. description : "ge-0/0/0 connects to p1p1"
  62.  
  63. - interface : ge-0/0/1
  64. port-speed-mbps : 10000
  65. nic : p1p2
  66. mtu : 9400
  67. virtual-function : 0
  68. mac-address : "02:56:14:38:fa:d6"
  69. description : "ge-0/0/2 connects to p2p1"
  70.  
  71. - interface : ge-0/0/3
  72. port-speed-mbps : 10000
  73. nic : p2p2
  74. mtu : 9400
  75. virtual-function : 0
  76. mac-address : "02:54:60:42:fa:d6"
  77. description : "ge-0/0/3 connects to p2p2"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement