Hello,
I'm deploying Proxmox VE in Azure VMs under Debian 12. It works fine after facing several issues but finally it worked fine.
Right now I want to have one of IP address that I've connected to the host directcly to a VM.
I read a lot and I've seen it is possible using macvtap or ipvtap:
https://developers.redhat.com/blog/...on-to-linux-interfaces-for-virtual-networking
https://virt.kernelnewbies.org/MacVTap
https://gist.github.com/gdamjan/ed095763b8c322ee5bed17e11bbaed6d#file-readme-md
https://gist.github.com/gdamjan/ed095763b8c322ee5bed17e11bbaed6d
The problem I have is that I do not see a way to setup nic settings under proxmox while all documentation I found uses libvirt and you shloud modify VM XML file like this:
I know Proxmox VE doesn't use XML files so, how it can be done?
Thank you very much for your help.
I'm deploying Proxmox VE in Azure VMs under Debian 12. It works fine after facing several issues but finally it worked fine.
Right now I want to have one of IP address that I've connected to the host directcly to a VM.
I read a lot and I've seen it is possible using macvtap or ipvtap:
https://developers.redhat.com/blog/...on-to-linux-interfaces-for-virtual-networking
https://virt.kernelnewbies.org/MacVTap
https://gist.github.com/gdamjan/ed095763b8c322ee5bed17e11bbaed6d#file-readme-md
https://gist.github.com/gdamjan/ed095763b8c322ee5bed17e11bbaed6d
The problem I have is that I do not see a way to setup nic settings under proxmox while all documentation I found uses libvirt and you shloud modify VM XML file like this:
XML:
<interface type='direct' trustGuestRxFilters='yes'>
<source dev='eth0' mode='bridge'/>
<target dev='macvtap0'/>
<model type='virtio'/>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
</interface>
I know Proxmox VE doesn't use XML files so, how it can be done?
Thank you very much for your help.