I have installed Proxmox inside of a virtual machine with a provider and want to create multiple small virtual machines out of it (nesting).
I have come across issues trying to get the network working inside of these virtual machines. This is due to the provider using "MAC filtering"
107.189.30.xxx/24 is the main VPS IP and I am trying to get 104.244.74.xxx/32 working inside of that. 104.244.74.xxx/32 would need to use 104.244.74.1 normally as the gateway.
I have read I can "MAC address NAT" but not too sure how to do that.
I have come across issues trying to get the network working inside of these virtual machines. This is due to the provider using "MAC filtering"
Code:
auto lo
iface lo inet loopback
iface ens3 inet manual
auto vmbr0
iface vmbr0 inet static
address 107.189.30.xxx/24
gateway 107.189.30.1
bridge_ports ens3
bridge_stp off
bridge_fd 0
up ip route add 104.244.74.xxx/32 dev vmbr0 #additional IP 1
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up echo 1 > /proc/sys/net/ipv4/conf/ens3/proxy_arp
107.189.30.xxx/24 is the main VPS IP and I am trying to get 104.244.74.xxx/32 working inside of that. 104.244.74.xxx/32 would need to use 104.244.74.1 normally as the gateway.
I have read I can "MAC address NAT" but not too sure how to do that.