Русфонд

понедельник, 16 мая 2011 г.

Состав редакций (тип лицензии) vSphere и бандлов vSphere Kits и их цены

vSphere: обеспечение катастрофоустойчивости


Understanding vSphere Disaster Recovery/Avoidance options – Part I
Understanding vSphere Disaster Recovery/Avoidance options – Part II (understanding EMC VPLEX partition and VM HA) "TODAY there’s no way for VPLEX (or VM HA for that matter) to differentiate a “failed inter-site communication link” (which happens disturbingly often) from “one site is a smoking hole” (which happens more rarely).   Other options for this sort of thing are 3rd party “voters” (which have some sort of “keepalive” signal to the two sites – though 3rd part voters can add as much complexity as they eliminate)."

Understanding vSphere Disaster Recovery/Avoidance options – Part III (areas of development)
KB Article: vMotion over Distance support with EMC VPLEX Metro
KB Article: Using VPLEX Metro with VMware HA
Презентация по "растянутым" кластерам

вторник, 10 мая 2011 г.

Конвертируем VHD в VMDK

Способ 1. С помощью VMware Converter путем нехитрых манипуляций получаем виртуальную машину http://www.esx.cx/2011/04/how-to-convert-ms-virtual-pc-vhd-disk.html.
Способ 2. С помощью StarWind V2V Image Converter из формата VHD поучаем VMDK.

    понедельник, 25 апреля 2011 г.

    ESX 4: password policy

    Password aging controls:
    #
    1. PASS_MAX_DAYS   Maximum number of days a password may be used.
    2. PASS_MIN_DAYS   Minimum number of days allowed between password changes.
    3. PASS_MIN_LEN    Minimum acceptable password length.
    4. PASS_WARN_AGE   Number of days warning given before a password expires.
    #
    PASS_MAX_DAYS   99999
    PASS_MIN_DAYS   0
    PASS_MIN_LEN    5
    PASS_WARN_AGE   7
    You can check this in your installation doing, in the service console, cat /etc/login.defs.

    пятница, 22 апреля 2011 г.

    Service Console - ESX Server Firewall Commands


    The firewall built into ESX server uses iptables, the very commonly used Linux firewall. However to create the rules another esxcfg tool is used, which is esxcfg-firewall.

    To list the services currently controlled by the firewall:
    esxcfg-firewall -s

    To list the firewall rules:
    esxcfg-firewall -q [servicename]
    esxcfg-firewall -q

    Enable a service:
    esxcfg-firewall -e [servicename]
    esxcfg-firewall -e sshClient

    Disable a service:
    esxcfg-firewall -d [servicename]
    esxcfg-firewall -d sshClient

    Open a port:
    esxcfg-firewall -o 465,tcp,out,out-smtps

    Close a port:
    esxcfg-firewall -c 465,tcp,out


    Command Options:
    /usr/sbin/esxcfg-firewall
    esxcfg-firewall 
    -q|--query                                      Lists current settings.
    -q|--query Lists setting for the
    specified service.
    -q|--query incoming|outgoing                    Lists setting for non-required
    incoming/outgoing ports.
    -s|--services                                   Lists known services.
    -l|--load                                       Loads current settings.
    -r|--resetDefaults                              Resets all options to defaults
    -e|--enableService Allows specified service
    through the firewall.
    -d|--disableService Blocks specified service
    -o|--openPort         Opens a port.
    -c|--closePort             Closes a port previously opened
    via --openPort.
    --blockIncoming                              Block all non-required incoming
    ports  (default value).
    --blockOutgoing                              Block all non-required outgoing
    ports (default value).
    --allowIncoming                              Allow all incoming ports.
    --allowOutgoing                              Allow all outgoing ports.
    -h|--help                                       Show this message.


    NOTE: For changes to show in VC/VI client restart mgmt-vmware.
    /etc/init.d/mgmt-vmware restart