Hi there,
I installed a new Proxmox 7.4 node on my new Hetzner server with a main IP and two additional IP addresses and connected my node to my cluster.
I configured a new bridge network vmbr0 and added an IP to my new CT.
but i can't ping or run commands like apt update because of network access.
I am almost sure of my configuration and i executed ifreload -a after configuration.
Here is my host configuration:
and this is vm-routes file in /etc/network/interfaces.d directory:
and here is my CT /etc/network/interfaces:
My main IP address is:
ip address: 65.109.99.230
Gateway: 65.109.99.193
Netmask: 255.255.255.192
Broadcast: 65.109.99.255
and my two additional Ips are:
65.109.99.213 and 65.109.99.214
with same Gateway and Netmask
I installed a new Proxmox 7.4 node on my new Hetzner server with a main IP and two additional IP addresses and connected my node to my cluster.
I configured a new bridge network vmbr0 and added an IP to my new CT.
but i can't ping or run commands like apt update because of network access.
I am almost sure of my configuration and i executed ifreload -a after configuration.
Here is my host configuration:
Code:
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto enp7s0
iface enp7s0 inet static
address 65.109.99.230/26
gateway 65.109.99.193
up route add -net 65.109.99.192 netmask 255.255.255.192 gw 65.109.99.193 dev enp7s0
# route 65.109.99.192/26 via 65.109.99.193
iface enp7s0 inet6 static
address 2a01:4f9:3080:24d9::2/64
gateway fe80::1
auto vmbr0
iface vmbr0 inet static
address 65.109.99.230/26
bridge-ports none
bridge-stp off
bridge-fd 0
and this is vm-routes file in /etc/network/interfaces.d directory:
Code:
iface vmbr0 inet static
up ip route add 65.109.99.213/32 dev vmbr0
and here is my CT /etc/network/interfaces:
Code:
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto eth0
iface eth0 inet static
address 65.109.99.213/32
# --- BEGIN PVE ---
post-up ip route add 65.109.99.230 dev eth0
post-up ip route add default via 65.109.99.230 dev eth0
pre-down ip route del default via 65.109.99.230 dev eth0
pre-down ip route del 65.109.99.230 dev eth0
# --- END PVE ---
My main IP address is:
ip address: 65.109.99.230
Gateway: 65.109.99.193
Netmask: 255.255.255.192
Broadcast: 65.109.99.255
and my two additional Ips are:
65.109.99.213 and 65.109.99.214
with same Gateway and Netmask
Last edited: