Hello proxmox nerds!
In the last few months I decided to use PVE more in my private projects, which is why I installed it again on a private desktop computer with an AM4-base (read: consumer hardware).
After I created a few VMs and gave one of them a GPU I now have the following issue. I never get it configured correctly so that both my VMs have access to the Internet with IPv4 at the same time as the host/PVE.
I tried to use the standard config but nothing I changed worked.
Please let me know which outputs and information you require in order to help me.
This is what
yields right now:
My
:
I am sure it's obvious stuff, but I seem to be blind here.
Greetings and thanks for trying to help
goldsteal
In the last few months I decided to use PVE more in my private projects, which is why I installed it again on a private desktop computer with an AM4-base (read: consumer hardware).
After I created a few VMs and gave one of them a GPU I now have the following issue. I never get it configured correctly so that both my VMs have access to the Internet with IPv4 at the same time as the host/PVE.
I tried to use the standard config but nothing I changed worked.
Please let me know which outputs and information you require in order to help me.
This is what
Code:
ip a
Bash:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: enp5s0: <BROADCAST,MULTICAST,DYNAMIC,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
link/ether 70:85:c2:c1:bb:59 brd ff:ff:ff:ff:ff:ff
inet 169.254.140.52/16 brd 169.254.255.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet6 fe80::7285:c2ff:fec1:bb59/64 scope link
valid_lft forever preferred_lft forever
3: bridge1: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
link/ether ea:7e:8e:ba:f8:05 brd ff:ff:ff:ff:ff:ff
4: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 70:85:c2:c1:bb:59 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.66/24 scope global vmbr0
valid_lft forever preferred_lft forever
My
Code:
/etc/network/interfaces
Bash:
# 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!
auto lo
iface lo inet loopback
iface enp5s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.66/24
gateway 192.168.1.1
bridge-ports enp5s0
bridge-stp off
bridge-fd 0
I am sure it's obvious stuff, but I seem to be blind here.
Greetings and thanks for trying to help
goldsteal