Week 2 - VMware
The benefits of VMware Tools is that it greatly improves the experience on a virtual machine by eliminating some issues and adding some features.
A list of the changes created by (VMware. Inc, 2020):
- Low video resolution
- Inadequate colour depth
- Incorrect display of network speed
- Restricted movement of the mouse
- Inability to copy and paste and drag-and-drop files
- Missing sound
- Provides the ability to take quiesced snapshots of the guest OS
- Synchronises the time in the guest operating system with the time on the host
VMware Tools also includes these components:
- VMware Tools service
- VMware device drivers
- VMware user process
- VMware Tools control panel
| Class | Public Range | Private Range | Subnet Mask (bits) | # of Networks | # of Hosts Per Network |
|---|---|---|---|---|---|
| A | 1.0.0.0 - 127.0.0.0 | 10.0.0.0 - 10.255.255.255 | 255.0.0.0 (8) | 126 | 16,777,214 |
| B | 128.0.0.0 - 191.255.0.0 | 172.16.0.0 - 172.31.255.255 | 255.255.0.0 (16) | 16,382 | 65,534 |
| C | 192.0.0.0 - 223.255.255.0 | 192.168.0.0 - 192.168.255.255 | 255.255.255.0 (24) | 2,097,150 | 254 |
| D | 224.0.0.0 - 239.255.255.255 | N/A | N/A | N/A | Reserved |
| E | 240.0.0.0 - 255.255.255.255 | N/A | N/A | N/A | Reserved |
| Special IP Range |
|---|
| 172.0.0.1 - 127.255.255.255 |
A NAT Network is a network that is connected using Network Address Translation (NAT). This means that any machines behind connected to the NAT network will use a different subnet to the external subnet.
A Bridged Network means that the VM connects directly to the outside network using the host’s network card like a switch. This means that the VM is a unique device to the network.
Host only means that the VM can only communicate with the host and any other VMs that are connected to the host only network. This means that the VMs are isolated within the host machine, without any access to other networks.
A Custom Network is a network that can be configured in many different ways depending on the use case. A Custom Network can be connected to one or mor external networks, or it can run entirely on the host machine.
- Run
yum install quagga - Edit
/etc/quagga/ospf.conf - Edit
/etc/quagga/zebra.conf - Flush All IP tables using
iptables -f - Enable IP Forwarding using
/sbin/sysctl -w net.ipv4.ip_forward=1 - Test
- Start Zebra using
zebra -f /etc/quagga/zebra.conf - Start Ospfd using
ospfd -f /etc/quagga/ospfd.conf - Watch the routing table using
watch route -n - Test on clients
- Start Zebra using
- Restart the Zebra service using
systemctl restart zebra.service - Restart the Ospfd service using
systemctl restart ospfd.service - Enable the Zebra service to run at boot using
chkconfig zebra on - Enable the Ospfd service to run at boot using
chkconfig ospfd on - Test on Clients