Recent content by papanito

  1. P

    No internet access for vmbr0

    Thanks @engin for looking at it. Didn't have so much time to pursue a solution, but so far still nothing...
  2. P

    No internet access for vmbr0

    Yes pinging from and to 10.10.10.2 / 10.10.10.73 works fine sudo iptables -t nat -S │ -P PREROUTING ACCEPT -P INPUT ACCEPT -P OUTPUT ACCEPT -P POSTROUTING ACCEPT -N DOCKER -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER -A OUTPUT ! -d 127.0.0.0/8 -m addrtype --dst-type LOCAL -j DOCKER -A...
  3. P

    No internet access for vmbr0

    Here you go bridge name bridge id STP enabled interfaces vmbr0 8000.4c72b9252895 no eth0 tap102i0 tap103i0 veth101i0 sudo route Kernel IP routing table Destination Gateway...
  4. P

    No internet access for vmbr0

    Thank @engin did the suggested changes and restarted services 'dnsmasq', 'networking' and the container. Still nothing though guest has require route set: default via 10.10.10.2 dev eth0 10.10.10.0/24 dev eth0 proto kernel scope link src 10.10.10.73 Now also when pinging google.com I do not...
  5. P

    No internet access for vmbr0

    There are plenty of thready regarding this topic, however I don't find the solution to the problem with my setup. I cannot access the internet form within a container nor a vm. I can trace the ping I issue form within the container/vm on my host machine which looks like this tcpdump: verbose...
  6. P

    [SOLVED] No noVNC with Proxy: exit code 4

    I actually found it easier to switch to nginx and use the configuration as explained here: https://pve.proxmox.com/wiki/Web_Interface_Via_Nginx_Proxy. Works like a charm now
  7. P

    [SOLVED] No noVNC with Proxy: exit code 4

    I have configured my proxmox environment to be accessed via a remot proxy so instead mydomain.com:8006 I can access it via proxmox.mydomain.com. Hoever, this does not work for noVNC. After updating the certificates according to...
  8. P

    [SOLVED] Installation problem on Debian Jessie

    Ok, problem solved. It seems the directory /etc/pve was not empty. See the following post for resolution https://forum.proxmox.com/threads/need-some-help-locked-out-by-firewall-disaster-recovery.24366/
  9. P

    [SOLVED] Installation problem on Debian Jessie

    Entries in /etc/hosts are fine. # IPv4 127.0.0.1 localhost.localdomain localhost x.x.x.177 proxmox.papanito.com proxmox dpkg-reconfigure all results in dpkg-reconfigure all dpkg-query: package 'all' is not installed and no information is available Use dpkg --info (= dpkg-deb --info) to...
  10. P

    [SOLVED] Installation problem on Debian Jessie

    Yes right, there were some typos. So far the package sources are correct root@proxmox ~ # cat /etc/apt/sources.list.d/proxmox.list # PVE packages provided by proxmox.com deb http://mirror.hetzner.de/debian/pve jessie pve-no-subscription deb http://download.proxmox.com/debian jessie...
  11. P

    [SOLVED] Installation problem on Debian Jessie

    I have installed proxmox according to https://wiki.hetzner.de/index.php/Proxmox_VE/en. 1. Update source list, add key and update package list echo "deb http://download.proxmox.com/debian jessie pve-no-subscription" >> /etc/apt/sources.list wget -O- "http://download.proxmox.com/debian/key.asc" |...