Search results

  1. S

    Create a local virtual switch without using a physical port

    What ip addresses do the two vm’s have on the vmbr1 ? I suppose you gave them static addresses because on vmbr1 there is no active dhcp server present.
  2. S

    Simple two server redundancy/failover with proxmox?

    Officially you need at least 3 pve nodes to setup a cluster. Or you can use a simple third device (raspberry pi) that gives the vote. See: https://blog.jenningsga.com/proxmox-keeping-quorum-with-qdevices/
  3. S

    Unable to Reach VM Web GUIs

    1. Are you 100% sure that ALL firewall services are OFF in the win2022 server? 2. And have you checked if Blueiris is Allowed through the Windows Firewall with an exeption/rule? If unsure about nr 1., then check nr 2 for that rule.
  4. S

    Create a local virtual switch without using a physical port

    Is there a firewall blocking ping traffic? In my homelab the above example works, they can indeed "ping each other".
  5. S

    [SOLVED] LXC can't access internet and I can only SSH to it one time

    I was wondering why you did not create a fresh new Ubuntu container earlier. Is this "faulty" container so important for you? Does it run special software? - Perhaps your existing Ubuntu lxc template has an error in it. Delete this template and download a new fresh copy and re-deploy it.
  6. S

    [SOLVED] LXC can't access internet and I can only SSH to it one time

    Have you created a new Ubuntu container (on pve3, same Ubuntu version) to see if this has the same problem(s) ? Can pve3 host itself ping 1.1.1.1 without issues?
  7. S

    can't access proxmox ssh or panel web

    "try to change the ip address, before it was 10.73.42.18:8006 now it is 10.73.42.99:8006" - What was the reason you changed the IP address? - I think you locked yourself out because datacenters have firewall rules based on what they give you (10.73.42.18) - Unclear how you made the screenshots...
  8. S

    can't access proxmox ssh or panel web

    - is this a home lab setup, or are you running Proxmox at an ISP/datacenter? - To change the IP address you can simply edit and save the file # /etc/network/interfaces Reboot the server afterwards, or do a # sudo systemctl restart networking
  9. S

    can't access proxmox ssh or panel web

    - what is the purpose of the "iptables" line at the bottom of /etc/network/interfaces? You have a private ip network, not a public ip. - in the last screenshot your vmbr0 bridge is empty. There should be an ip address to access the PVE webgui.
  10. S

    Proxmox VE 8 - DHCP not working on Containers

    - Can the two containers ping the DHCP server? - are you using DHCP reservation, in that case check if the MAC addresses are correct
  11. S

    Proxmox networking and layer 3 routing

    What if you virtualise a router like pfSense/OPNsense and run it as a vm on your Proxmox host? Is that a few bottlenecks less in the networking chain for you?
  12. S

    Proxmox networking and layer 3 routing

    Not sure configuring multiple gateways on Proxmox host is THE way to go. (I always hear people saying in this forum that only 1 gateway is allowed). You now have configured Proxmox as a "router" with net.ipv4.ip_forward=1 That solution is what you asked for in your startpost, so you solved your...
  13. S

    Proxmox networking and layer 3 routing

    I think the website wrote that you can delete the original vmbr0 Linux Bridge and create the new OVS Bridge. My personal PVE host #1 (I have 3) has an OVS Bridge with several VLANs (IntPorts). You can set the IP address for management on the OVS Bridge, or....... you can give an IntPort (VLAN)...
  14. S

    Proxmox networking and layer 3 routing

    https://www.networkshinobi.com/proxmox-ve-with-open-vswitch/ This website helped me a lot with OVS.
  15. S

    Proxmox + Hetzner | VMs without public IP can't access internet

    Did you do a "systemctl restart networking" ? Or via the webgui "Apply Configuration" ?
  16. S

    Proxmox + Hetzner | VMs without public IP can't access internet

    Remove the quotes '10.10.0.0/24' Should be 10.10.0.0/24
  17. S

    ssh: Could not resolve hostname after setup vmbr0

    Maybe clear the ARP cache in the FritzBox. DNS name with old MAC address is probably still in his table.
  18. S

    Proxmox + Hetzner | VMs without public IP can't access internet

    Makes sense because only vmbr0 has a Gateway. I think you need to install a virtual router, like pfSense/OPNsense/IPFire on your PVE host. Sorry, I totally missed the last two NAT rules....
  19. S

    Network connected but can't ping gateway / external ips or domains

    Again, remove the line dns-nameservers in /etc/network/interfaces. Your /etc/resolv.conf can look something like this (max 3 DNS servers): search whateverdomainyouhave nameserver 192.168.1.99 nameserver 192.168.1.101 nameserver 9.9.9.9
  20. S

    Network connected but can't ping gateway / external ips or domains

    I would remove "dns-nameservers" in your /etc/network/interfaces file. And add a valid DNS server in "/etc/resolv.conf". I notice two DNS servers in your screenshots, 192.168.1.99 and 192.168.1.101. Is that correct?