I installed proxmox ve6.2-1 and at first could access either the webui or the internet, I switched the default config
to
as per the network config page of the wiki , I can access the webui from https://192.168.1.69:8006 and open a shell from here but I can't even run
I also tried changing the dns from 127.0.0.1 to cloudflare's 1.1.1.1 but doing so results in me being still able to access the webui but not able to open a shell.
It's my first attempt at doing anything with proxmox but the same pc worked fine with ubuntu server and can connect to the internet with it using enp1s0, the default vmbr0 didn't allow me to connect to the webui and the device didn't appear on either the router webui or using an ipscanner
auto lo
iface lo inet loopback
iface wlp2s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.1.69
netmask 255.255.255.0
gateway 192.168.1.1
bridge_ports wlp2s0
bridge_stp off
bridge_fd 0
to
auto lo
iface lo inet loopback
auto enp1s0
iface enp1s0 inet static
address 192.168.1.69
netmask 255.255.255.0
gateway 192.168.1.1
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up echo 1 > /proc/sys/net/ipv4/conf/eno1/proxy_arp
auto vmbr0
iface vmbr0 inet static
address 203.0.113.17
netmask 255.255.255.248
bridge_ports none
bridge_stp off
bridge_fd 0
as per the network config page of the wiki , I can access the webui from https://192.168.1.69:8006 and open a shell from here but I can't even run
apt update
as it gives me an error that suggests there is no connectivityroot@pve:~# apt update
Err:1 http://ftp.it.debian.org/debian buster InRelease
Temporary failure resolving 'ftp.it.debian.org'
Err:2 http://ftp.it.debian.org/debian buster-updates InRelease
Temporary failure resolving 'ftp.it.debian.org'
Err:3 http://download.proxmox.com/debian/pve buster InRelease
Temporary failure resolving 'download.proxmox.com'
Err:4 http://security.debian.org buster/updates InRelease
Temporary failure resolving 'security.debian.org'
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
W: Failed to fetch http://ftp.it.debian.org/debian/dists/buster/InRelease Temporary failure resolving 'ftp.it.debian.org'
W: Failed to fetch http://ftp.it.debian.org/debian/dists/buster-updates/InRelease Temporary failure resolving 'ftp.it.debian.org'
W: Failed to fetch http://download.proxmox.com/debian/pve/dists/buster/InRelease Temporary failure resolving 'download.proxmox.com'
W: Failed to fetch http://security.debian.org/dists/buster/updates/InRelease Temporary failure resolving 'security.debian.org'
W: Some index files failed to download. They have been ignored, or old ones used instead.
I also tried changing the dns from 127.0.0.1 to cloudflare's 1.1.1.1 but doing so results in me being still able to access the webui but not able to open a shell.
It's my first attempt at doing anything with proxmox but the same pc worked fine with ubuntu server and can connect to the internet with it using enp1s0, the default vmbr0 didn't allow me to connect to the webui and the device didn't appear on either the router webui or using an ipscanner
cat /etc/hosts
gives127.0.0.1 localhost.localdomain localhost
192.168.1.69 pve.test.invalid 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