Forum Discussion

sukhjit_hayre_3's avatar
sukhjit_hayre_3
Icon for Nimbostratus rankNimbostratus
Sep 01, 2017
Solved

forwarding virtual server not forwarding traffic for one traffic-group

Hi, I have some virtual LTMs running as active/active in a HA setup (lab scenario).   I've setup FVS with a wildcard profile per below     now for traffic-group-1 traffic comes in on th...
  • sukhjit_hayre_3's avatar
    Sep 07, 2017
    ltm snat snat-outbound-traffic {
        description snat-outbound-traffic
        mirror enabled
        origins {
            10.109.0.0/25 { }
        }
        translation /Common/10.109.16.1
        vlans {
            traffic-group1-vlan100
        }
        vlans-enabled
    }
    ltm snat-translation 10.109.16.1 {
        address 10.109.16.1
        inherited-traffic-group true
        traffic-group traffic-group-1
    }
    ltm virtual forwarding-virtual-server {
        description forwarding-virtual-server
        destination 0.0.0.0:any
        ip-forward
        mask any
        profiles {
            fastL4 { }
        }
        source 0.0.0.0/0
        translate-address disabled
        translate-port disabled
        vs-index 8
    

    Ok fixed, issue was a global snat rule which i didn't know existed, once deleted the FVS started to forward for TG1.

    thanks for the assistance, there's always a reason why!!