I recently purchased Scale range of dedicated server with OVH, and am on my second day trying to start networking correctly. Originally I followed guide https://support.us.ovhcloud.com/hc/en-us/articles/4408052730387 fully, but to no avail.
Host static IP: H.H.H.H
Host Gateway: G.G.G.G
Bought IP range R.R.R.128/29
I am Using Proxmox 8 with following setup:
Host /etc/network/interfaces
VM /etc/network/interfaces:
I haven't configured anything aside these two files. VM is Debian 12.
I cant ping from VM anywhere. Do you spot any deadly bug?
Host static IP: H.H.H.H
Host Gateway: G.G.G.G
Bought IP range R.R.R.128/29
I am Using Proxmox 8 with following setup:
Host /etc/network/interfaces
Code:
auto lo
iface lo inet loopback
# public interface 1
auto ens3f0np0
iface ens3f0np0 inet manual
bond-master bond0
# public interface 2
auto ens3f1np1
iface ens3f1np1 inet manual
bond-master bond0
# private interface 1
auto enp129s0f0np0
iface enp129s0f1np0 inet manual
# private interface 2
auto enp129s0f1np1
iface enp129s0f1np1 inet manual
auto bond0
iface bond0 inet static
address H.H.H.H/32
gateway G.G.G.G
bond-slaves ens3f0np0 ens3f1np1
bond-miimon 100
bond-mode 802.3ad
post-up echo 1 > /proc/sys/net/ipv4/conf/bond0/proxy_arp
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
#WAN IP (not FO IP)
auto vmbr0
iface vmbr0 inet static
address 192.168.0.1/32
bridge-ports none
bridge-stp off
bridge-fd 0
post-up ip route add R.R.R.128/29 dev vmbr0
#bridge for FO IP subnet
VM /etc/network/interfaces:
Code:
auto lo ens18
iface lo inet loopback
# The primary network interface
iface ens18 inet static
address R.R.R.130/32
gateway 192.168.0.1
netmask 255.255.255.255
I haven't configured anything aside these two files. VM is Debian 12.
I cant ping from VM anywhere. Do you spot any deadly bug?