• 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/72

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;

72 Cards in this Set

  • Front
  • Back
Networking Using vSphere Standard Switches:
Uplink adapter management
Uplink adapters represent the physical switches the ESXi host uses to connect to the network.

You can manage uplink adapters using the vCLI commands:

esxcli network nic
or
vicfg-nics
Networking Using vSphere Standard Switches: Standard switch management
Each uplink adapter is connected to a standard switch. You can manage a standard switch and associate it with uplink adapters using the vCLI commands:

esxcli network vswitch
or
vicfg-vswitch
Networking Using vSphere Standard Switches:
Port group management
Associated with the standard switch are port groups. Port group is a unique concept in the virtual environment. You can configure port groups to enforce policies that provide enhanced networking security, network segmentation, better performance, high availability, and traffic management.

You can use these vCLI commands to associate a standard switch with a port group:

esxcli network vswitch standard portgroup
or
vicfg-vswitch

You can use these vCLI commands to associate a port group with a VMkernel network interface:

esxcli network ip interface
or
vicfg-vmknic
Networking Using vSphere Standard Switches: VMkernel network interface management
The VMkernel TCP/IP networking stack supports iSCSI, NFS, and vMotion, and has an associated VMkernel network interface.

You configure VMkernel network interfaces with vCLI commands:

esxcli network ip interface
or
vicfg-vmknic

Separate VMkernel network interfaces are often used for separate tasks, for example, you might devote one VMkernel Network Interface card to vMotion only.

Virtual machines run their own systems' TCP/IP stacks and connect to the VMkernel at the Ethernet level through virtual switches.
Networking Using vSphere Distributed Switches: Managing a distributed switch
You create a distributed switch using the vSphere Client UI, but can manage some aspects of a distributed switch with: vicfg-vswitch

You can list distributed virtual switches with the command: esxcli network vswitch
Retrieving Basic Network Information: List VMkernel ports
esxcli <conn_options> network ip interface list
Retrieving Basic Network Information: Get IPv4 addresses
Return list of IPv4 addresses on VMkernel NICs:

esxcli <conn_options> network ip interface ipv4 get

Alternatively, to get an IPv4 address by a specific VMkernel adapter:

esxcli <conn_options> network ip interface ipv4 get -n vmk<X>
Retrieving Basic Network Information: Get IPv6 addresses
Return list of IPv6 addresses on VMkernel NICs:

esxcli <conn_options> network ip interface ipv6 address list

Return information on interface IPv6 status:

esxcli <conn_options> network ip interface ipv6 get

Alternatively, to get an IPv6 address by a specific VMkernel adapter:

esxcli <conn_options> network ip interface ipv6 get -n vmk<X>
Retrieving Basic Network Information: netstat equivalent
To return an output similar to the Linux netstat command, use the following ESXCLI command:

esxcli <conn_options> network ip connection list
Retrieving Information about Virtual Switches with ESXCLI: List virtual switches
List all virtual switches and associated port groups:

esxcli <conn_options> network vswitch standard list
Retrieving Information about Virtual Switches with ESXCLI: List the network policy settings
List the network policy settings (security policy, traffic shaping policy, and failover policy) for the virtual switch. The following commands are supported:

esxcli <conn_options> network vswitch standard policy failover get

esxcli <conn_options> network vswitch standard policy security get

esxcli <conn_options> network vswitch standard policy shaping get
Retrieving Information about Virtual Switches with vicfg: List virtual switches
List all virtual switches and associated port groups:

vicfg-vswitch <conn_options> -l
Retrieving Information about Virtual Switches with vicfg: Check whether a vSwitch exists
Check whether a vSwitch (vSwitch 1 in this example) exists:

vicfg-vswitch <conn_options> -c vSwitch1
Retrieving Information about Virtual Switches with vicfg: Retrieve the current CDP
Retrieve the current CDP (Cisco Discovery Protocol) setting for a virtual switch (vSwitch 1 in this example):

vicfg-vswitch <conn_options> --get-cdp vSwitch1
Adding and Deleting Virtual Switches with ESXCLI: Add a virtual switch
Add a virtual switch:

esxcli <conn_options> network vswitch standard add
--vswitch-name=<vswitch name>

You can also specify the number or ports while adding the virtual switch. If you do not specify a value, the default value is used. The system-wide port count cannot be greater than 4096:

esxcli <conn_options> network vswitch standard add
--vswitch-name=<vswitch name>
--ports=<port number>
Adding and Deleting Virtual Switches with ESXCLI: Delete a virtual switch
Delete a virtual switch:

esxcli <conn_options> network vswitch standard remove
--vswitch-name=<vswitch name>
Adding and Deleting Virtual Switches with vicfg: Add a virtual switch
Add a virtual switch:

vicfg-vswitch <conn_options> --add <vswitch name>
Adding and Deleting Virtual Switches with vicfg: Remove a virtual switch
Delete a virtual switch:

vicfg-vswitch <conn_options> --delete <vswitch name>
Setting Switch Attributes with ESXCLI:
Set the MTU for a vSwitch
Set the MTU for a vSwitch:

esxcli <conn_options> network vswitch standard set
--mtu=<mtu value> --vswitch-name=<vswitch name>
Setting Switch Attributes with ESXCLI:
Set the CDP value for a swtich
Set the CDP value for a vSwitch. You can set status to "down", "listen", "advertise" or "both":

esxcli <conn_options> network switch standard set
--cdp-status=<down | listen | advertise | both>
--vswitch-name=<vswitch name>
Setting Switch Attributes with vicfg:
Set the MTU for a vSwitch
Set the MTU for a vSwitch:

vicfg-vswitch <conn_options> -m
<mtu value> <vswitch name>
Setting Switch Attributes with vicfg:
Set the CDP value for a vSwitch
Set the CDP value for a vSwitch. You can set status to "down", "listen", "advertise" or "both":

vicfg-vswitch <conn_options> --set-cdp
<down | listen | advertise | both>
Managing Port Groups with ESXCLI:
List port groups
List port groups currently associated with a virtual switch:

esxcli <conn_options> network vswitch standard portgroup list
Managing Port Groups with ESXCLI:
Add a port group
Add a port group:

esxcli <conn_options> network vswitch standard portgroup add --portgroup-name=<pg name>
--vswitch-name=<vswitch name>
Managing Port Groups with ESXCLI:
Delete a port group
Delete one of the existing port groups:

esxcli <conn_options> network vswitch standard portgroup remove --portgroup-name=<pg name>
--vswitch-name=<vswitch name>
Managing Port Groups with vicfg:
Check port group
Check whether port groups are currently associated with a virtual switch:

vicfg-vswitch <conn_options> --check-pg <pg name <vswitch name>
Managing Port Groups with vicfg:
Add a port group
Add a port group:

vicfg-vswitch <conn_options> --add-pg <pg name> <vswitch name>
Managing Port Groups with vicfg:
Delete a port group
Delete one of the existing port groups:

vicfg-vswitch <conn_options> --del-pg <pg name> <vswitch name>
Managing Uplink Adapter and Port Groups with ESXCLI: Connect a port group with an uplink adapter
Connect a port group with an uplink adapter:

excli <conn_options> network vswitch standard portgroup policy failover set
--active-uplinks=<vmnicX, vmnicX, vmnicX>
Managing Uplink Adapter and Port Groups with ESXCLI: Change uplink adapters to standby
To make some of the adapters standby instead of active:

esxcli <conn_options> network vswitch standard portgroup policy failover set
--standby-uplinks=<vmnicX, vmnicX, vmnicX>
Managing Uplink Adapter and Port Groups with vicfg: Connect a port group with an uplink adapter
Connect a port group with an uplink adapter:

vicfg-vswitch <conn_options> --add-pg-uplink <adapter name> --pg <pg name> <vswitch name>
Managing Uplink Adapter and Port Groups with vicfg: Remove a port group from an uplink adapter
Remove a port group from an uplink adapter:

vicfg-vswitch <conn_options> --del-pg-uplink
<adapter name> --pg <pg name> <vswitch name>
Setting a Port Group VLAN ID with ESXCLI
Configure a VLAN on a port group:

esxcli <conn_options> network vswitch standard portgroup set -p <pg name> --vlan-id <vlan ID>

Note: you can set the VLAN to 4095 to allow a port group to reach port groups located on other VLANs, or set the VLAN to 0 to disable the VLAN for this port group:

esxcli <conn_options> network vswitch standard portgroup set -p <pg_name> --vlan-id 4095

esxcli <conn_options> network vswitch standard portgroup set -p <pg_name> --vlan-id 0
Setting a Port Group VLAN ID with vicfg
Configure a VLAN on a port group:

vicfg-vswitch <conn_options> --vlan <vlan ID> --pg <pg name>

Note: you can set the VLAN to 4095 to allow a port group to reach port groups located on other VLANs, or set the VLAN to 0 to disable the VLAN for this port group:

vicfg-vswitch <conn_options> --vlan 4095 --pg <pg name>

vicfg-vswitch <conn_options> --vlan 0 --pg <pg name>
Managing Uplink Adapters with ESXCLI: List all uplinks
List all uplinks and information about each device:

esxcli <conn_options> network nic list
Managing Uplink Adapters with ESXCLI:
Bring down an uplink adapter
Bring down one of the uplink adapters:

esxcli <conn_options> network nic down
--nic-name=<vmnic name>
Managing Uplink Adapters with ESXCLI:
Bring up an uplink adapter
Bring an uplink adapter up:

esxcli <conn_options> network nic up
--nic-name=<vmnic name>
Managing Uplink Adapters with ESXCLI:
Change uplink adapter settings
Change uplink adapter settings:

esxcli <conn_options> network nic set <options>
--nic-name=<vmnic name>
Managing Uplink Adapters with vicfg: List all uplinks
List all uplinks and information about each device:

vicfg-nics <conn_options> -l
Managing Uplink Adapters with vicfg:
Change uplink adapter settings
Change uplink adapter settings:

vicfg-nics <conn_options> <options> <vmnic name>
Linking and Unlinking Uplink Adapters with ESXCLI:
Add a new uplink adapter to a virtual switch
Add a new adapter to a virtual switch:

esxcli <conn_options> network vswitch standard uplink add --uplink-name=<vmnic name>
vswitch-name=<vswitch name>
Linking and Unlinking Uplink Adapters with ESXCLI:
Remove an uplink adapter from a virtual switch
Remove an uplink adapter from a virtual switch:

esxcli <conn_options> network vswitch standard uplink remove --uplink-name=<vmnic name>
vswitch-name=<vswitch name>
Linking and Unlinking Adapters with vicfg:
Add a new uplink adapter to a virtual switch
Add a new uplink adapter to a virtual switch:

vicfg-vswitch <conn_options> --link <vmnic name> <vswitch name>
Linking and Unlinking Adapters with vicfg:
Remove an uplink adapter from a virtual switch
Remove an uplink adapter from a virtual switch:

vicfg-vswitch <conn_options> --unlink <vmnic name> <vswitch name>
Managing VMkernel Network Interfaces with ESXCLI:
Add a new VMkernel network interface
Add a new VMkernel network interface:

esxcli <conn_options> network ip interface add
--interface-name=vmk<x>
--portgroup-name=<pg name>
Managing VMkernel Network Interfaces with ESXCLI:
Configure VMkernel network interface as an IPv4 interface
Configure the interface as an IPv4 interface:

esxcli <conn_options> network ip interface ipv4 set
--ip=<ipv4 address>
--netmask=<255.255.255.0>
--interface-name=vmk<x>
Managing VMkernel Network Interfaces with ESXCLI:
List information about all VMkernel network interfaces
List information about all VMkernel network interfaces on the system:

esxcli <conn_options> network ip interface list
Setting Up vSphere Networking with vSphere Distributed Switch: Add an uplink port
Add an uplink port:

vicfg-vswitch <conn_options> --add-dvp-uplink <adapter name> --dvp <DVPort ID> <dvswitch_name>
Setting Up vSphere Networking with vSphere Distributed Switch: Remove an uplink port
Remove an uplink port:

vicfg-vswitch <conn_options> --del-dvp-uplink <adapter name> --dvp <DVPort ID> <dvswitch name>
Setting the DNS configuration with ESXCLI:
Print a list of DNS servers
Print a list of DNS servers configured on the system in the order in which they will be used:

esxcli <conn_options> network ip dns server list

If DNS is not set up for the target server, the command returns an empty string.
Setting the DNS configuration with ESXCLI:
Add a DNS server to an ESXi host
Add a DNS server:

esxcli <conn_options> network ip dns server add
--server=<ipv4 address>

Run the command multiple times to specify multiple DNS hosts.
Setting the DNS configuration with ESXCLI:
Configure the DNS host name for an ESXi host
Configure the DNS host name for an ESXi host:

esxcli <conn_options> system hostname set
--host=<host name>
Setting the DNS configuration with ESXCLI:
Configure the DNS domain name for an ESXi host
Configure the DNS domain name for an ESXi host :

esxcli <conn_options> system hostname
--domain=<domain name>
Setting the DNS configuration with vicfg:
Print a list of DNS servers
Display DNS properties for the specified server:

vicfg-dns <conn_options>
Setting the DNS configuration with vicfg:
Add a DNS server to an ESXi host
Add a DNS server to an ESXi host:

vicfg-dns <conn_options> --dns <dns server 1>

To add multiple DNS servers to a host, use a comma-separated list of hosts, in order of preference:

vicfg-dns <conn_options> --dns <dns server 1, dns server 2>
Setting the DNS configuration with vicfg:
Configure the DNS host name for an ESXi host
Configure the DNS host name for an ESXi host:

vicfg-dns <conn_options> -n <dns host name>
Setting the DNS configuration with vicfg:
Configure the DNS domain name for an ESXi host
Configure the DNS domain name for an ESXi host:

vicfg-dns <conn_options> -d <domain name>
Adding and Starting an NTP Server: Add an NTP server to an ESXi host
Add an NTP server to an ESXi host:

vicfg-ntp <conn_options> --add
<ip address/host name of NTP server>
Adding and Starting an NTP Server: Start the NTP service
Start the NTP service:

vicfg-ntp <conn_options> --start
Adding and Starting an NTP Server: List the NTP service
List the NTP service:

vicfg-ntp <conn_options> --list
Adding and Starting an NTP Server: Stop the NTP service
Stop the NTP service:

vicfg-ntp <conn_options> --stop
Adding and Starting an NTP Server: Remove the NTP server from an ESXi host
Remove the specified NTP server from an ESXi host:

vicfg-ntp <conn_options> --delete
<ip address/host name of NTP server>
Managing the IP Gateway: Add a route entry
Add a route entry to the VMkernel:

vicfg-route <conn_options> --add <network ip> <netmask ip> <gateway ip>
Managing the IP Gateway: List route entries
List route entries (run command without options):

vicfg-route <conn_options>
Managing the IP Gateway: Set the default gateway
Set the default gateway:

vicfg-route <conn_options> -a default <gateway ip>
Managing the IP Gateway: Delete a route
Delete a route:

vicfg-route <conn_options> --delete <network ip> <netmask ip> <gateway ip>
ESXi Firewall Management with ESXCLI:
Check firewall status
Check firewall status:

esxcli <conn_options> network firewall get
ESXi Firewall Management with ESXCLI:
Check ruleset status
Check sshServer ruleset status (example: sshServer):

esxcli <conn_options> network firewall ruleset list
--ruleset-id sshServer
ESXi Firewall Management with ESXCLI:
Enable ruleset
Enable sshServer ruleset (example: sshServer):

esxcli <conn_options> network firewall ruleset set
--ruleset-id sshServer --enabled true
ESXi Firewall Management with ESXCLI:
Display the list of allowed IPs for ruleset
Display the list of allowed IP addresses for a ruleset (example: sshServer):

esxcli <conn_options> network firewall ruleset allowedip list --ruleset-id sshServer
ESXi Firewall Management with ESXCLI:
Change the status of allowedAll flag
Set the status of the allowedAll flag to false on a ruleset (example: sshServer):

esxcli <conn_options> network firewall ruleset set
--ruleset-id sshServer --allowed-all false
ESXi Firewall Management with ESXCLI:
Add a list of allowed IP addresses for a ruleset
Add a list of allowed IP addresses for a ruleset:

esxcli <conn_options> network firewall ruleset allowedip add --ruleset-id sshServer
--ip-address <single ip address, or subnet>