Search results

  1. J

    No internet after creating vm

    well, this additional IP is routed ;-) you should follow the guide, I posted above... the main IP should be assigned to the host and the second should be assigned to your VM
  2. J

    Route VM network through pfsense

    Hello, why are you using PCI passthrough? just assign vmbr1 und vmbr2 to your pfsense VM, thats it...
  3. J

    No internet after creating vm

    Hello, it looks like you are using the same ip on the bridge and inside your vm !? Is the additional IP routed to the main IP or did you order an IP for an additional MAC Address? maybe this guide can help you ;-) https://dominicpratt.de/hetzner-proxmox-network-configuration/
  4. J

    Anfänger - Setup so möglich?

    kommt darauf an, was du mit "beziehen" meinst, wenn du DHCP meinst, dann würde ich sehr davon abraten, wenn du eine statische IP aus dem Bereich der pfsense vergeben willst, klappt das natürlich problemlos... hast du dir schon mal OPNSense angeschaut? ich persönlich würde dir eher dazu raten...
  5. J

    Ability to use vLAN tag on other bridge than already configured bridge

    the only option, I know is to use a second physical connection and build the vlans on top of this connection... another possibility is to use ifupdown2 and remove the vlans of eno2 and after that directly assign the new bridge to the vms. Dosing so you have a Downtime, yes but only very short...
  6. J

    Ability to use vLAN tag on other bridge than already configured bridge

    for example if you have configured your bridges the following iface eno2 inet manual iface eno2.243 inet manual auto vmbr4 iface vmbr4 inet manual bridge_ports eno2 .... auto vmbr243 iface vmbr243 inet manual bridge_ports eno2.243 ..... you can not assign vmbr4 to a VM...
  7. J

    Ability to use vLAN tag on other bridge than already configured bridge

    this is not working, you can not assign a vlan through a bridge when the bridged interface (eno2) already has a vlan that is bridged (eno2.243) you can add an additional physical link with a new bridge and then change the settings of the NICs of your vms maybe you can post the content of...
  8. J

    inter-VM traffic on same node

    which interface type did you use for your VMs? E1000? or VirtIO?
  9. J

    PVE Diskwechsel

    Also ich würde dringend davon abraten erst debian und dann PVE nach zu installieren! Du solltest das ISO verwenden (du kannst die Partitionsgrößen bei der Installation anpassen) und was spricht gegen LVM? LVM thin, was default ist sollte eigentlich in deiner Anwendung sauber funktionieren....
  10. J

    webmin vs openmediavault für erstellen von shares und rechte/user Verwaltung

    Servus, wenn dann würde ich Openmediavault nehmen, ich persönlich setzte das immer direkt, ohne das alles auf...
  11. J

    Use full subnet in one LXC

    Hello, you can try it like described here https://dominicpratt.de/hetzner-proxmox-network-configuration/ this also works with a subnet instead of single IPs.. in the LXC Container just configure it like this auto eth0 iface eth0 inet static address 138.201.203.49 netmask...
  12. J

    "Simple" script to disconnect/reconnect VM's Network Interface?

    Why not using the API to disconnect the virtual network adapter? https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/qemu/{vmid}/config
  13. J

    [SOLVED] [NETWORK] Routing with MASQUERADE from vm lans to wan interface not receiving traffic

    Hello, did you try this ? if it is not working, please post the output of # iptables -S # iptables -t nat -S # iptables -t raw -S # cat /proc/sys/net/ipv4/ip_forward
  14. J

    VLAN trunk to guest

    Be aware that your network card supports that amount of vlans, for example mellanox connectx 3 cards only supports a few vlans...
  15. J

    [SOLVED] [NETWORK] Routing with MASQUERADE from vm lans to wan interface not receiving traffic

    did you follow this guide? https://pve.proxmox.com/pve-docs/pve-admin-guide.html#_masquerading_nat_with_span_class_monospaced_iptables_span
  16. J

    Networking on a Cloud Server

    Hello, Cloud Providers such as Hetzner Online or 1&1 are routing the IPv6 Block to the link local address of your machine, which depends on the mac address... Because of this you can not use the bridge method. You have to route between your VMs and the network of your provider. Your...
  17. J

    [SOLVED] [NETWORK] Routing with MASQUERADE from vm lans to wan interface not receiving traffic

    Hello, please remove the gateway in vmbr1 ( gateway 192.168.33.1 ) this one is definitely wrong here... Please try again and report...