Hi,
I added a second proxmox server to my setup and created a cluster.
I made sure that i ran `apt update && apt ugrade` on both before doing that.
I seems to work fine, my Vm`s have access to the LAN and Internet without a problem, but the host does not.
Comparing the settings of the two proxmox servers I cant seem to find a difference
`/etc/network/interfaces` on the server that has internet access:
`ip route`
`/etc/resolv.conf`
`/etc/hosts`
and on the machine that does not have internet access:
`ip route`
`/etc/resolv.conf`
`/etc/hosts`
My router recognizes the seconds server fine and displays the right ip address.
`nslookup` works alsow fine and i get an ip from pihole but a ping fails
I hope someone can help me.
I added a second proxmox server to my setup and created a cluster.
I made sure that i ran `apt update && apt ugrade` on both before doing that.
I seems to work fine, my Vm`s have access to the LAN and Internet without a problem, but the host does not.
Comparing the settings of the two proxmox servers I cant seem to find a difference
`/etc/network/interfaces` on the server that has internet access:
Code:
auto lo
iface lo inet loopback
iface enp1s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.179.1/16
gateway 192.168.178.1
bridge-ports enp1s0
bridge-stp off
`ip route`
Code:
default via 192.168.178.1 dev vmbr0 proto kernel onlink
192.168.0.0/16 dev vmbr0 proto kernel scope link src 192.168.179.1
`/etc/resolv.conf`
Code:
search pi.hole
nameserver 192.168.179.2
nameserver 192.167.178.1
`/etc/hosts`
Code:
127.0.0.1 localhost.localdomain localhost
192.168.179.1 pve.fritz.box pve
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
and on the machine that does not have internet access:
Code:
auto lo
iface lo inet loopback
iface enp0s31f6 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.180.1/16
gateway 192.168.178.1
bridge-ports enp0s31f6
bridge-stp off
`ip route`
Code:
default via 192.168.178.1 dev vmbr0 proto kernel onlink
192.168.0.0/16 dev vmbr0 proto kernel scope link src 192.168.180.1
`/etc/resolv.conf`
Code:
search pi.hole
nameserver 192.168.179.2
nameserver 192.168.178.1
`/etc/hosts`
Code:
127.0.0.1 localhost.localdomain localhost
192.168.180.1 pve2.fritz.box pve2
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
My router recognizes the seconds server fine and displays the right ip address.
`nslookup` works alsow fine and i get an ip from pihole but a ping fails
Code:
root@pve2:~# nslookup google.com
Server: 192.168.179.2
Address: 192.168.179.2#53
Non-authoritative answer:
Name: google.com
Address: 142.251.36.174
Name: google.com
Address: 2a00:1450:4016:808::200e
root@pve2:~# ping google.com
PING google.com (142.251.36.174) 56(84) bytes of data.
From pve2.fritz.box (192.168.180.1) icmp_seq=1 Destination Host Unreachable
I hope someone can help me.