• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/52

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

52 Cards in this Set

  • Front
  • Back
How do you configure SNMP on vCenter Server using the GUI
Administration > vCenter Server Settings > SNMP

Enter IP address of the receiver

Enter the port number of the receiver

Enter the community string
How do you show current status of SNMP on an ESXi host via the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -s
How do you add a new community string to an ESXi host via the CLI?
vicfg-snmp -server <ESXihost> -username <username> -password <password> -t <targethostname>@<port>/<community>
How do you add modify the port used for SNMP from the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -p port
How do you configure the SNMP agent to capture hardware events provided by host manufacturer via the CIM using the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -y indications
How do you filter out an SNMP OID using the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -n OID
How do you clear all SNMP filters using the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -n reset
How do you enable SNMP from the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -E
How do you disable SNMP from the CLI
vicfg-snmp -server <ESXihost> -username <username> -password <password> -D
How do you send a test trap to verify the configuration
vicfg-snmp -server <ESXihost> -username <username> -password <password> -T
Describe the high level process of migrating from a vSphere Standard Switch to a vSphere Distributed Switch
Create a vDS > Add host(s) to vDS > Migrate VMkernel and VM networking
Describe how to migrate existing virtual adapters (VMkernel ports) using the GUI
Home > Inventory > Hosts and Clusters
Host > Configuration > Networking > vSphere Distributed Switch
Mange Virtual Adapters > Add
Migrate existing virtual adapters
Describe how to migrate virtual machines
Virtual Machine > Edit Settings
Hardware > Network Adapter > Network Connection
How do you list the current vSphere standard switches using the CLI
esxcli network vswitch standard list

OR

vicfg-vswitch -server <ESXihost> -username <username> -password <password> -list
How do you list current vSphere standard switches using PowerCLI
get-virtualswitch -standard
How do you create a new vSphere standard switch using the CLI
esxcli network vswitch standard add -v <vswitchname>

OR

vicfg-vswitch -server <ESXihost> -username <username> -password <password> --add vswitchname
How do you create a new vSphere standard switch using PowerCLI
new-virtualswitch -name <vswitchname>
How do you add an uplink to a vSwitch using the CLI
esxcli network vswitch standard uplink add -u <vmnic> -v <vswitchname>

OR

vicfg-vswitch -server <ESXihost> -username <username> -password <password> --link <vmnic> <vswitchname>
How do you add an uplink to a vSwitch using PowerCLI?
get-virtualswitch -name <vswitchname> | set-virtualswitch -nic <vmnic>
How do you remove an uplink to a vSwitch using the CLI
esxcli network vswitch standard uplink remove -u <vmnic> -v <vswitchname>

OR

vicfg-vswitch -server <ESXihost> -username <username> -password <password> --unlink <vmnic> <vswitchname>
How do you configure NIC teaming policy using the CLI?
esxcli network vswitch standard policy failover set -v <vswitchname> -a <vmnic> -s <vmnic>
How do you configure the Load Balancing Policy using the CLI?
esxcli network vswitch standard policy failover set -l <explicity|iphash|mac|portid> -v <vswitchname>
How do you configure Link Failure Detection using the CLI?
esxcli network vswitch standard policy failover set -f <beacon|link> -v <vswitchname>
How do you remove a vSwitch using the CLI
esxcli network vswitch standard remove -v <vswitchname>

OR

vicfg-vswitch -server <ESXihost> -username <username> -password <password> --delete <vswitchname>
How do you list vSphere Distributed Switches using the CLI
esxcli network vswitch dvs vmware list
How do you add an uplink to a vSphere Distributed Switch on a host using the CLI
vicfg-vswitch -server <ESXihost> -username <username> -password <password> --add-dvp-uplink <vmnic> -dvp <DVportid> <vDS>
How do you remove an uplink from a vSphere Distributed Switch on a host using the CLI
vicfg-vswitch -server <ESXihost> -username <username> -password <password> --del-dvp-uplink> <vmnic> -dvp <DVportid> <vDS>
How do you list portgroups using the CLI
esxcli network vswitch standard portgroup list
How do you add a portgroup to a vSphere switch using the CLI
esxcli network vswitch standard portgroup add -p <portgroupname> -v <vswitchname>
esxcli network vswitch standard portgroup set -p <portgroupname> -v <VLANID>
How do you remove a portgroup from a vSphere standard switch using the CLI?
esxcli network vswitch standard portgroup remove -p <portgroupname> -v <vswitchname>
How do you list VMkernel interfaces using the CLI
esxcli network ip interface list

OR

vicfg-vmknic -server <ESXihost> -username <username> -password <password> --list
What is the pre-requisite before creating a VMkernel interface on a vSphere Switch
The portgroup that the VMkernel interface will be added to must already have been created
How do you add a VMkernel interface using the CLI
esxcli network ip interface add -p <portgroupname>
esxcli network ip interface ipv4 set --ipv4 <ipaddress> --netmask <subnetmask> --interface-name <vmkX> --type static
How do you configure a VMKernel interface for vMotion using the CLI
vicfg-vmknic -server <ESXihost> -username <username> -password <password> --portgroup <portgroupname> --enable-vmotion
How do you configure a VMkernel interface for vMotion using PowerCLI
get-vmhostnetworkadapter -name <vmkX> | set-vmhostnetworkadapter -vmotionenabled $true
How do you remove a VMkernel interface using the CLI
esxcli network ip interface remove -i <vmkX>
How do you list current DNS servers using the CLI
esxcli network ip dns server list
How do you add a DNS server using the CLI
esxcli network ip dns server add -s <ipaddress>

OR

vicfg-dns -server <ESXihost> -username <username> -password <password> -dns <dnsserverlist>
How do you remove a DNS server using the CLI?
esxcli network ip dns server remove -s <ipaddress>
How do you list the DNS search domains
esxcli network ip dns search list
How do you add a domain to the DNS search list
esxcli network ip dns search add -d <dnsdomainname>
How do you remove a domain to the DNS search list
esxcli network ip dns search remove -d <dnsdomainname>
What is Netflow?
Netflow reports data to a Netflow collector as traffic records
Netflow is disabled by default
What does every Netflow traffic record contain
Source and destination IP address
Source and destination TCP or UDP ports
Type of service
Where can Netflow be configured?
Netflow can be configured at the uplink, distributed port group or port level
What are the pre-requisities for Netflow?
IP address of the Netflow server
Port used by the Netflow server
IP address of the source vSphere distributed switch
What are the high level steps required to configure Netflow on a vDS via the GUI?
Home > Inventory > Networking
vSphere Distributed Switch > Edit Settings
Netflow tab > Enter required details
How do you enable netflow on dstributed ports and port groups?
Home > Inventory > Networking
Distributed Port|Distributed Port Group > Edit Settings
Monitoring
Netflow Status > Enabled
What discovery protocols do the vSphere Distributed Switches support?
Link Layer Discovery Protocol (LLDP)
Cisco Discovery Protocol (CDP)
What operating modes can CDP or LLDP run in
Listen - ESXi listens but does not provide information
Advertise - ESXi provides information but does not listen
Both - ESXi both listens and advertises information
How do you set the CDP mode using the CLI
esxcli network vswitch standard set -c <both|listen|advertise> -v <vswitchname>
How do you set the discovery protocol and the operating mode using the GUI
Home > Inventory > Networking
vSphere Distributed Switch > Edit Settings
Advanced > Properties > Adjust Discovery protocol as required