[Bug 204248] PF Does not work nat in FreeBSD 10.2

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Nov 6 09:54:15 UTC 2015


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204248

--- Comment #2 from ilya kulikov <kulikov51 at gmail.com> ---
Hi, I install new FreeBSD 10.2-RELEASE 
edited file /sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c

dell line

                 packet->vlan_tci & 0xfff;
         }

        if (0 == m_head->m_pkthdr.csum_flags) {
             goto pre_send;
         }


and add line 

                            packet->vlan_tci & 0xfff;
                }

                /* Ignore flags for checksum already calculated or valid */
                if (0 == (m_head->m_pkthdr.csum_flags & 0xffffff)) {
                        goto pre_send;
                }

Further rebuilt kernel with options PF, the situation has not changed, may be i
wrong to apply the patch.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-pf mailing list