Recent content by Asg.Systems

  1. A

    Pass trunk to VM

    if you want to see it on GUI comment the feature request: https://bugzilla.proxmox.com/show_bug.cgi?id=2764
  2. A

    Forcing proxmox to live update VM network configuration for trunk vlan

    if you want comment the feature request on bugzilla to see it in the GUI: https://bugzilla.proxmox.com/show_bug.cgi?id=2764
  3. A

    Proxmox vlan on trunk switch interface

    if you want to pass a subset of vlans you can use the "trunks=" option in configuration file: https://forum.proxmox.com/threads/forcing-proxmox-to-live-update-vm-network-configuration-for-trunk-vlan.111599/ if you want add a comment to the feature request in the GUI...
  4. A

    Linux Bridge reassemble fragmented packets

    That's really nice, we've opened another one on netfilter since the issue seems to be netfilter https://bugzilla.netfilter.org/show_bug.cgi?id=1644
  5. A

    Linux Bridge reassemble fragmented packets

    nothing to do, also with connection tracking enable the ICMP and UDP messages are reassembled by the PVE netfilter
  6. A

    Linux Bridge reassemble fragmented packets

    Just to add a clarification after the proxmox case, the reassemblation of the packets is caused by the Netfilter only if the FIrewall is enabled on the cluster I found also this, now I try if enabling conntrack (is disabled in our environment for other problem that was caused)...
  7. A

    High latency after Checkpoint migration from VSX to VSEC

    Hi, after migration of a Checkpoint VSX to VSEC Appliance on Proxmox infrastructure, seems that traffic passing through this firewall present an high latency and packet loss. Here an example: 2021-09-20 08:58:34 --- 100 packets transmitted, 98 received, 2% packet loss, time 99027ms --- rtt...
  8. A

    Linux Bridge reassemble fragmented packets

    Hi, the MTU on the linux bridge and the phisycal interfaces is 9000, the MTU on guest virtual machine is 1500
  9. A

    Linux Bridge reassemble fragmented packets

    Yesterday we've tried to reboot the system disabling the firewall, but nothing changed, on this specific VLAN (ID 2249) we're experiencing the issue. Unfortunately we use the Jumbo MTU for some services on the VM. The strange things is the following: VM ---->...
  10. A

    Linux Bridge reassemble fragmented packets

    Hi spirit, thanks for your feedback. There is fragmentation because the mtu is 1500 on the firewall appliance And even by setting it at 9000 there would be MPLS network with mtu 1500, so i have to change this behavior without any workaround There is fragmentation because packets of RADIUS...
  11. A

    Linux Bridge reassemble fragmented packets

    Hi to all, we're experiencing a problem with firewall on a proxmox cluster and after few tests it seems it'a a linux bridge problem The packet capture show that fragmented packets passing through the bridge are reassembled and sent out. This is causing us some problems, even if proxmox cluster...
  12. A

    firewall enabled in datacenter prevent bridge VM comunication on the same node

    I think SOLVED this issue: simply enable nf_conntrack_allow_invalid: 1 in /etc/pve/nodes/<nodename>/host.fw
  13. A

    [SOLVED] PVE 6.3-3 Firewall: block traffic between VMs on same node

    Solved, to avoid this without disabling the feature on the ASA or the Firewall on Proxmox it's possible to enable this feature: nf_conntrack_allow_invalid: 1 in /etc/pve/nodes/<nodename>/host.fw
  14. A

    [SOLVED] PVE 6.3-3 Firewall: block traffic between VMs on same node

    I have some news, I reduced the focus on the ASA, and to be more specific on the ASA TCP sequence randomization function. Disabling it in this way https://www.cisco.com/c/en/us/td/docs/security/asa/asa95/configuration/firewall/asa-95-firewall-config/conns-connlimits.html#ID-2068-000003ec all...
  15. A

    [SOLVED] PVE 6.3-3 Firewall: block traffic between VMs on same node

    Dears, We have the following scenario: A Proxmox Cluster with version 6.3-3, kernel version 5.4.78-2 with 2 nodes: On network side we're using linux bridge with vlan awareness and configuration of one node is the following: auto lo iface lo inet loopback auto eno5 iface eno5 inet manual...