FreeBSD PR: kern/54874
authorJeffrey Hsu <hsu@dragonflybsd.org>
Tue, 28 Dec 2004 22:20:53 +0000 (22:20 +0000)
committerJeffrey Hsu <hsu@dragonflybsd.org>
Tue, 28 Dec 2004 22:20:53 +0000 (22:20 +0000)
commitc59157058539ad974101d3c7d3ed56473691c86c
tree6724e80893631f7a62834a8a6d903de8a0e9d3d8
parent4493484db05161a8f45627d235dc8796140ebef2
FreeBSD PR:  kern/54874
  ip6fw does not recognize ESP packets correctly when the packets are specified
  as protocol 50 (or "ESP") by the ip6fw command.  For example, even if the
  following line is installed:

  add pass esp from any to any

  The kernel does not apply this rule to IPv6 ESP packets.  Instead, we need
  to specify like this:

  add pass all from any to any ipv6options esp

Submitted by:  Hiroki Sato <hrs@allbsd.org>
Obtained from:  FreeBSD rev 1.2.2.10 commit by ume@freebsd.org from
submisssion by JINMEI Tatuya <jinmei@shuttle.wide.toshiba.co.jp>
sys/net/ip6fw/ip6_fw.c