Displaying 2 results from an estimated 2 matches for "insert_you_virtual_mac_here".
2020 Sep 07
3
Centos + VM + public ip
Hi,
I've got a dedicated server with OVH and I'd like to host a public VM. I'd
like Centos OS 7 or 8, I installed KVM already, I got the VM and bought the
IP and created a virtual mac id. I know I have to bridge it somehow but I
can't seem to find a proper tutorial. Do you know where to start?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2020 Sep 14
0
CentOS-virt Digest, Vol 156, Issue 3
...IP address to br0.
2a) When you would create VM add parameter --network=bridge:br0 to the virt-install in command line. Or smth similar if you create VM in another way.
2b) Or edit xml file for your VM and add or change config:
<interface type='bridge'>
<mac address='insert_you_virtual_mac_here'/>
<source bridge='br0'/>
<model type='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/>
</interface>
3) Inside the VM assign real/public IP to you Ethern...