Was this page helpful?
Give FeedbackAfter deploying a virtual machine (VM) in your environment, it's crucial to understand its configuration and networking details. This document outlines the steps to access VM configuration, public and private IP addresses, and provides insights into the private and public networking parameters.
Your VM comprises several network interfaces designated to connect to specific networks or gateways. It's crucial to verify the operational status of these interfaces.
To check the status of your VM's network interfaces, use the command:
ip -br a
This command provides basic information about the VM's network interfaces. It displays the status of each interface: UP, DOWN, or UNKNOWN.
If any interface appears as DOWN, enable it using:
sudo ifup < your-vm-interface-name >
If all interfaces are UP, restart each one using the commands:
sudo ifdown < your-vm-interface-name > sudo ifup < your-vm-interface-name >
Use the --force flag if necessary:
sudo ifdown --force < your-vm-interface-name > sudo ifup < your-vm-interface-name >
After enabling all interfaces, check for connectivity issues by pinging external hosts. If issues persist, proceed to the next section.
Check Network Configuration File
Your VM's network configuration files contain interface details. Changes to these files might not persist after a reboot or could be incorrectly configured.
Before altering any network files, create a snapshot and backup of the current configuration.
Refer to your VM's operating system for troubleshooting instructions.
CentOS: The configuration files are stored in the /etc/sysconfig/network-scripts/ directory. Make a backup before editing any files:
cp /etc/sysconfig/network-scripts/< interface-file > /etc/sysconfig/network-scripts/< interface-file >.old
Review the network configuration:
vi /etc/sysconfig/network-scripts/< interface-file >
Compare these configurations to those listed in your VMX Control Panel under Networking.
Understanding the VM configuration and networking parameters is crucial for effective management and troubleshooting. By following the steps outlined in this document, you gain insights into the private and public networking details associated with your deployed VM.
Was this page helpful?
Give Feedback