Difference between revisions of "Build VxRail 4.7"
From Notes_Wiki
| m | m | ||
| Line 91: | Line 91: | ||
| Refer: | Refer: | ||
| *  https://www.dell.com/support/article/in/en/inbsd1/qna44193/dell-vsan-ready-node-what-is-the-default-vmware-esxi-root-password-for-14g-servers?lang=en | *  https://www.dell.com/support/article/in/en/inbsd1/qna44193/dell-vsan-ready-node-what-is-the-default-vmware-esxi-root-password-for-14g-servers?lang=en | ||
| ==Enabling IPv6 and IGMP snooping== | |||
| ===Dell switch=== | |||
| <pre> | |||
| config t | |||
|     ip igmp snooping enable | |||
|     ipv6 mld snooping enable | |||
|     exit | |||
| show ipv6 mld snooping interface vlan 3939 | |||
| </pre> | |||
| ===Aruba or HP switch=== | |||
| <pre> | |||
| config t | |||
|    vlan 3939 | |||
|      ip igmp | |||
|      ipv6 enable | |||
|      ipv6 mld enable | |||
|      ip igmp snooping enable | |||
|      exit | |||
| show ip igmp snooping vlan 3939 | |||
| </pre> | |||
| Refer: | |||
| * https://www.arubanetworks.com/techdocs/AOS-CX/10.04/HTML/5200-7007/index.html#GUID-4D644E1D-48F2-4C41-9733-AC1ED5219331.html | |||
| * https://www.arubanetworks.com/techdocs/AOS-CX/10.04/HTML/5200-7007/index.html#GUID-F52A1AC1-09E6-4B28-9C3C-1AFDD61D54EF.html | |||
| ===Cisco switch=== | |||
| '''Below steps not tested on any Cisco switch so far''' | |||
| <pre> | |||
| config t | |||
|    ip igmp snooping | |||
|    vlan 3939 | |||
|        ip igmp snooping | |||
| </pre> | |||
Revision as of 13:29, 21 April 2022
Home > VMWare platform > VxRail > Build VxRail 4.7
VxRail initialization steps
To initialize or build a VxRail cluster use:
- In Linux use chrome to open wizard at https://192.168.10.200 and do the following
- 192.168.10.200 is the fixed IP for web interface for building VxRail in new VxRail nodes.
 
- DNS should resolve all the FQDN mentioned to the IPs mentioned.
- The 4G interfaces of below nodes should already be in trunk with mentioned VLANs eg 0 (Untagged - Could be physical VLAN 10), 11 (vSAN), 12 (vMotion), 13 (Server VMs), etc.
- Must allow VLAN 3939 between hosts for VxRail node disovery
 
- Let 4 nodes get detected and then proceed
- Choose option for step-by-step deployment
- Initial setup parameters are (Many values below are for example):
- System
- Globals
- NTP servers
- *Leave blank intentionally, even if you have one*
- NIC profile
- 4x10GbE
 
- Networks - Top Level Domain
- Domain
- <example.com>
 
 
- Globals
- ESXi Hosts
- Host names
- Prefix - esxi
- Separator - None
- Iterator - 0X
- Example - esxi01.example.com
 
 
- Host names
- Host IP address
- Starting IP address
- 10.100.10.21
- Ending IP address - 10.100.10.50
 
- vCenter Server
- vCenter Server Hostname
- vcenter
- vCenter Server IP address
- 10.100.10.10
 
- Platform Services Controller
- PSC Hostname ; psc
- PSC IP address
- 10.100.10.11
- PSC Site Name - EXAMPLE
 
- VxRail manager
- VxRail manager hostname
- vxrail
- VxRail manager IP address
- 10.100.10.12
 
- Networking
- Subnet mask
- 255.255.255.0
- Gateway
- 10.100.10.1
- Management network VLAN ID
- 0
- DNS - 10.100.1.2
 
- vSphere vMotion
- Start IP address
- 10.100.12.21
- End IP address
- 10.100.12.50
- Netmask
- 255.255.255.0
- VLAN ID - 12
 
- vSAN
- Start IP address
- 10.100.11.21
- End IP address
- 10.100.11.50
- Netmask
- 255.255.255.0
- VLAN ID
- 11
 
- VM Networks
- Name
- Server VMs - VLAN ID:13
 
- Solutions
- Logging
- Select logging
- vRealize log insight
- Hostname
- vrli
- IP address
- 10.100.10.13
 
 
- Logging
- Virtual appliance accounts
- vCenter Server management account username
- administrator
- vCenter Server management password
- <password1>
- VxRail service account username
- mystic
- VxRail service account password
- <password2>
- ESXi root password
- <password3>
- ESXi Management username
- administrator
- ESXi Management password
- <password4>
 
 
- System
 
- Validate
- Download JSON
- Configure laptop with main IP such that it can reach 10.100.0.0/16 networks which are mentioned in VxRail build configuration. Add additional IP in 192.168.10.0/24 to reach 192.168.10.200
- Ping 192.168.10.200
- Ping vxrail.example.com (It should resolve IP and not ping)
- Build VxRail
- https://<vxrail-ip>/data/configuration/log will have the logs. They might have some information in case build fails.
Refer:
- Dell VxRail appliance administration guide
Build troubleshooting
First build failed at step 16/75 with error "Peforming vCenter Server first boot configuration". As per https://www.dell.com/community/VxRail/E560F-VXRAIL-Installation-Step-17-Fail/td-p/7176001 tried to rebuild without giving any ntp address
VxRail troubleshooting information
Default account for VxRail ESXi root account
- Default ESXi account
- root:Passw0rd!
Refer:
Enabling IPv6 and IGMP snooping
Dell switch
config t
    ip igmp snooping enable
    ipv6 mld snooping enable
    exit
show ipv6 mld snooping interface vlan 3939
Aruba or HP switch
config t
   vlan 3939
     ip igmp
     ipv6 enable
     ipv6 mld enable
     ip igmp snooping enable
     exit
show ip igmp snooping vlan 3939
Refer:
- https://www.arubanetworks.com/techdocs/AOS-CX/10.04/HTML/5200-7007/index.html#GUID-4D644E1D-48F2-4C41-9733-AC1ED5219331.html
- https://www.arubanetworks.com/techdocs/AOS-CX/10.04/HTML/5200-7007/index.html#GUID-F52A1AC1-09E6-4B28-9C3C-1AFDD61D54EF.html
Cisco switch
Below steps not tested on any Cisco switch so far
config t
   ip igmp snooping
   vlan 3939
       ip igmp snooping

