Bug 208091 - net.inet.ipsec.dfbit=2 not working
Summary: net.inet.ipsec.dfbit=2 not working
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 10.2-RELEASE
Hardware: Any Any
: --- Affects Many People
Assignee: Andrey V. Elsukov
URL:
Keywords: easy, patch
Depends on:
Blocks:
 
Reported: 2016-03-17 15:46 UTC by aigars
Modified: 2019-05-20 23:36 UTC (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description aigars 2016-03-17 15:46:47 UTC
sys/netipsec/ipsec_output.c line 483:

setdf = ntohs(ip->ip_off & IP_DF);

Should be:
setdf = ntohs(ip->ip_off) & IP_DF;
Comment 1 Andrey V. Elsukov freebsd_committer freebsd_triage 2019-05-20 10:44:52 UTC
The problem was fixed in 11.x+ releases. But 10.x has reached EOL.
Comment 2 Kubilay Kocak freebsd_committer freebsd_triage 2019-05-20 23:36:39 UTC
Correct resolution (FIXED: resolved by a change: commit)

Fixed in base r297014 (head at the time, became stable/11)