Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 06 Nov 2015 09:54:15 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-pf@FreeBSD.org
Subject:   [Bug 204248] PF Does not work nat in FreeBSD 10.2
Message-ID:  <bug-204248-17777-ZCJCeJ7Ubn@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-204248-17777@https.bugs.freebsd.org/bugzilla/>
References:  <bug-204248-17777@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204248

--- Comment #2 from ilya kulikov <kulikov51@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-204248-17777-ZCJCeJ7Ubn>