58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
+
|
Create file **ifcfg-vm0** in the /etc/sysconfig/network-scripts with following content
TYPE=Brigde
ONBOOT=yes
DEVICE=vm0
IPADDR0=192.168.9.1
NETMASK0=255.255.255.0
NM_CONTROLLED=no
dnsmasq
=======
**dnsmasq** is a small dhcp and DNS server. If you would run it, it would act as caching DNS for your host machine and also provide IP Addresses for virtual machines and resolve their names.
You need to be sure that it servers DHCP only to your virtual bridge network, not to the physical network which connects you to internet, or it would conflict with dhcp server on your router and cause a mess.
|