|
Objective 2.5 - Administer Advanced Service Console Networking Configurations |
|
|
|
Written by Matthijs van den Berg
|
|
Tuesday, 03 February 2009 15:49 |
KNOWLEDGE
SKILLS AND ABILITIES
- Inspect Service Console network configuration
The service console is used for accessing the ESX server remotely via the CLI or the Virtual Center Server / Client. If the service console is not redundant and the network configuration is corrupt you need to trouble shoot from the command line. To do so the following commands can be used:
- Lookup the IP address of the Service Console
esxcfg-vswif –l
- Lookup the default gateway for the service console:
esxcfg-route –l
Or echo the network config file
cat /etc/sysconfig/network
The file could look like:
NETWORKING=yes HOSTNAME=esx001.domain.local GATEWAY=10.10.10.101 GATEWAYDEV=vswif0
- Lookup the vSwitch of the service console including MTU size, VLAN id and Uplink ports:
esxcfg-vswitch –l
Example output:
Switch Name Num Ports Used Ports Configured Ports MTU Uplinks vSwitch0 64 5 64 1500 vmnic1,vmnic0
PortGroup Name VLAN ID Used Ports Uplinks Service Console 0 1 vmnic0,vmnic1
TOOLS
- CLI
- esxcfg-vswif
- dig
- netstat
- route
- nslookup
- hostname
- vmknic
- esxcfg-route
- VI client
|