Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 01 May 2020 22:11:04 +0000
From:      bugzilla-noreply@freebsd.org
To:        testing@freebsd.org
Subject:   [Bug 245832] sys.netipsec.tunnel.empty.v{4,6} fail after r359374
Message-ID:  <bug-245832-32464-9cx0hpQK2m@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-245832-32464@https.bugs.freebsd.org/bugzilla/>
References:  <bug-245832-32464@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=3D245832

--- Comment #6 from John Baldwin <jhb@FreeBSD.org> ---
I just retested null on stock HEAD and it worked for me.  I used the follow=
ing
setkey configurations:

host with 172.16.0.1 interface:

flush;
spdflush;
# Host to host ESP
# Security Associations
add 172.16.0.1 172.16.0.2 esp 0x10000 -E null 0xffff;
add 172.16.0.2 172.16.0.1 esp 0x10001 -E null 0xffff;
# Security Policies
spdadd 172.16.0.1 172.16.0.2 any -P out ipsec
esp/tunnel/172.16.0.1-172.16.0.2/require;
spdadd 172.16.0.2 172.16.0.1 any -P in ipsec
esp/tunnel/172.16.0.2-172.16.0.1/require;

Host with 172.16.0.2 interface:

flush;
spdflush;
# Host to host ESP
# Security Associations
add 172.16.0.1 172.16.0.2 esp 0x10000 -E null 0xffff;
add 172.16.0.2 172.16.0.1 esp 0x10001 -E null 0xffff;
# Security Policies
spdadd 172.16.0.1 172.16.0.2 any -P in ipsec
esp/tunnel/172.16.0.1-172.16.0.2/require;
spdadd 172.16.0.2 172.16.0.1 any -P out ipsec
esp/tunnel/172.16.0.2-172.16.0.1/require;

I'll look to see what kind of setkey config files the test creates, but I
didn't change any of the parsing for setkey in the OCF rework changes, and I
would expect setkey to report an error to stderr (which it didn't from what=
 I
can tell) if it had a parse error or got an error back when trying to setup=
 the
SA.

--=20
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-245832-32464-9cx0hpQK2m>