<div dir="ltr">Hello,<br><br>I encounter kernel panic when I make compression ON (compress=yes) for a simple net-to-net connection.<br><br>Environment:<br>openswan-2.4.12 (with KLIPS)<br>linux-2.6.16<br><br>subnet-X -- openswan-X --- router --- openswan-Y -- subnet-Y<br>
<br>I encountered kernel panic on openswan-Y during a Telnet session from subnet-Y to openswan-X&#39;s private interface.<br>With compression disabled (compress=no), it works fine.<br><br>This behavior is not there in openswan-2.4.8.<br>
I replaced three macro calls<br>&nbsp;- skb_set_transport_header,<br>&nbsp;- skb_set_network_header,<br>&nbsp;- skb_set_mac_header<br>defined to get aligned with new sk_buff structure,<br>with their 2.4.8 counterparts.<br><br>It saves me from kernel panic. But I don&#39;t know its effects as I am not much familiar with the code.<br>
<br>--- net/ipsec/ipcomp.c.2.4.12&nbsp;&nbsp; Tue Aug 12 19:01:20 2008<br>+++ net/ipsec/ipcomp.c&nbsp; Thu Aug 14 12:43:28 2008<br>@@ -631,13 +631,15 @@ struct sk_buff *skb_copy_ipcomp(struct s<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;sk=NULL;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;dev=skb-&gt;dev;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (skb_transport_header(skb))<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; skb_set_transport_header(n, offset);<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;h.raw=skb-&gt;h.raw+offset;<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;h.raw=NULL;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;protocol=skb-&gt;protocol;<br>
&nbsp;#ifdef NET_21<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;csum = 0;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;priority=skb-&gt;priority;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;dst=dst_clone(skb-&gt;dst);<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; skb_set_network_header(n, offset);<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;nh.raw=skb-&gt;nh.raw+offset;<br>
&nbsp;#ifndef NETDEV_23<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;is_clone=0;<br>&nbsp;#endif /* NETDEV_23 */<br>@@ -669,7 +671,9 @@ struct sk_buff *skb_copy_ipcomp(struct s<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; memcpy(n-&gt;proto_priv, skb-&gt;proto_priv, sizeof(skb-&gt;proto_priv));<br>
&nbsp;#endif /* NET_21 */<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (skb_mac_header(skb))<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; skb_set_mac_header(n, offset);<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;mac.raw=skb-&gt;mac.raw+offset;<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;mac.raw=NULL;<br>
&nbsp;#ifndef NETDEV_23<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n-&gt;used=skb-&gt;used;<br>&nbsp;#endif /* !NETDEV_23 */<br><br>Attaching klips debug and pluto debug logs.<br><br>Thanks for your time.<br><br>-hiren<br><br>-----------------------/var/log/messages-----------------<br>
<br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_x_debug_process: set <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_msg_interp: parsing message type 16(x-debug) with msg_parser 0pd0b90340. <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_x_msg_debug_parse: . <br>
Aug 13 20:07:59 1218638279 kernel: klips_debug:ipsec_sa_wipe: removing SA=unk0:0@&lt;invalid&gt;(0pcb6f9000), SAref=26, table=0(0pd09d6000), entry=26 from the refTable. <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:ipsec_sa_put: ipsec_sa SA:unk0:0@&lt;invalid&gt;, ref:-1 reference count decremented. <br>
Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_release: sock=0pcd9a5380 sk=0pcf6dc000 <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_destroy_socket: 0pcf6dc000 <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_remove_socket: 0pcf6dc000 <br>
Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_destroy_socket: pfkey_remove_socket called, sk=0pcf6dc000 <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_destroy_socket: sk(0pcf6dc000)-&gt;(&amp;0pcf6dc054)receive_queue.{next=0pcf6dc054,prev=0pcf6dc054}. <br>
Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_destroy_socket: destroyed. <br>Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_list_remove_socket: removing sock=0pcd9a5380 <br>Aug 13 20:07:59 1218638279 last message repeated 12 times<br>
Aug 13 20:07:59 1218638279 kernel: klips_debug:pfkey_release: succeeded. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_sendmsg: allocating 88 bytes for downward message. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=3, errno=0, satype=9(IPIP), len=11, res=0, seq=20, pid=18847. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=27, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=27, table=0, entry=27 of 65536. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01c00 ref=27. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01c00. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_interp: satype 9 lookups to proto=4. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=9(IPIP), len=11, res=0, seq=20, pid=18847. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 3(add). <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: remain=9 <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0pca2a38d0 with parser pfkey_sa_parse. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001003 replay=0 state=1 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0pca2a38e8 with parser pfkey_address_parse. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0pca2a3900 with parser pfkey_address_parse. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:12 1218638292 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pca2a38d0 with processor 0pd0b91530. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pca2a38e8 with processor 0pd0b918a0. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pca2a3900 with processor 0pd0b918a0. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: parsing message type 3(add) with msg_parser 0pd0b8cdf0. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_add_parse: . <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=173 of <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a> requested. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:ipsec_sa_getbyid: no entries in ipsec_sa table for hash=173 of <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_add_parse: existing ipsec_sa not found (this is good) for <a href="mailto:SAtun.1003@172.16.2.2">SAtun.1003@172.16.2.2</a>, in-bound, allocating. <br>Aug 13 20:08:13 1218638293 kernel: ipsec_sa_init: (pfkey defined) called for <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a> <br>
Aug 13 20:08:13 1218638293 kernel: ipsec_sa_init: calling init routine of IPIP <br>Aug 13 20:08:13 1218638293 kernel: ipsec_sa_init: (pfkey defined) IPIP ipsec_sa set for 172.16.1.2-&gt;<a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0pcf887760. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sa_build: spi=00001003 replay=0 sa_state=1 auth=0 encrypt=0 flags=1 <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc61dbd40 allocated 88 bytes, &amp;(extensions[0])=0pce6c5c30 <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_build: extensions permitted=78001c7b, seen=00000063, required=00000063. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_upmsg: allocating 88 bytes... <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pcf599080. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_add_parse: sending up add reply message for satype=9(IPIP) to socket=0pc902a500 succeeded. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_add_parse: successful for SA: <a href="mailto:tun.1003@172.16.2.2">tun.1003@172.16.2.2</a> <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sendmsg: allocating 88 bytes for downward message. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=3, errno=0, satype=10(COMP), len=11, res=0, seq=21, pid=18847. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=28, cont=256, tail=255, listsize=256. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=28, table=0, entry=28 of 65536. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcb6f9000 ref=28. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcb6f9000. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: satype 10 lookups to proto=108. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=10(COMP), len=11, res=0, seq=21, pid=18847. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 3(add). <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: remain=9 <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0pc61dbd50 with parser pfkey_sa_parse. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000209e replay=0 state=1 auth=0 encrypt=2 flags=0 ref=-1. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0pc61dbd68 with parser pfkey_address_parse. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0pc61dbd80 with parser pfkey_address_parse. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pc61dbd50 with processor 0pd0b91530. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pc61dbd68 with processor 0pd0b918a0. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pc61dbd80 with processor 0pd0b918a0. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:13 1218638293 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: parsing message type 3(add) with msg_parser 0pd0b8cdf0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_add_parse: . <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=138 of <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a> requested. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_sa_getbyid: no entries in ipsec_sa table for hash=138 of <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a>. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_add_parse: existing ipsec_sa not found (this is good) for <a href="mailto:SAcomp.209e@172.16.2.2">SAcomp.209e@172.16.2.2</a>, in-bound, allocating. <br>Aug 13 20:08:14 1218638294 kernel: ipsec_sa_init: (pfkey defined) called for <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a> <br>
Aug 13 20:08:14 1218638294 kernel: ipsec_sa_init: calling init routine of COMP_DEFLATE <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0pc32ae9e0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sa_build: spi=0000209e replay=0 sa_state=1 auth=0 encrypt=2 flags=1 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pca2a36c0 allocated 88 bytes, &amp;(extensions[0])=0pce6c5c30 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_build: extensions permitted=78001c7b, seen=00000063, required=00000063. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_upmsg: allocating 88 bytes... <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pc9174a80. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_add_parse: sending up add reply message for satype=10(COMP) to socket=0pc902a500 succeeded. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_add_parse: successful for SA: <a href="mailto:comp.209e@172.16.2.2">comp.209e@172.16.2.2</a> <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sendmsg: allocating 144 bytes for downward message. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=3, errno=0, satype=3(ESP), len=18, res=0, seq=22, pid=18847. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=29, cont=256, tail=255, listsize=256. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=29, table=0, entry=29 of 65536. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pc0cf8000 ref=29. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pc0cf8000. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: satype 3 lookups to proto=50. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=3(ESP), len=18, res=0, seq=22, pid=18847. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: satype 3(ESP) conversion to proto gives 50 for msg_type 3(add). <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: remain=16 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=16. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: remain=16 ext_type=1(security-association) ext_len=3 parsing ext 0pcd1e3590 with parser pfkey_sa_parse. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=9ce44778 replay=64 state=1 auth=2 encrypt=3 flags=0 ref=-1. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=13. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: remain=13 ext_type=5(source-address) ext_len=3 parsing ext 0pcd1e35a8 with parser pfkey_address_parse. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0pcd1e35c0 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: parsing ext type=8(authentication-key) remain=7. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: remain=7 ext_type=8(authentication-key) ext_len=3 parsing ext 0pcd1e35d8 with parser pfkey_key_parse. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_parse: success, found len=3 exttype=8(authentication-key) bits=128 reserved=0. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: Extension 8(authentication-key) parsed. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: parsing ext type=9(cipher-key) remain=4. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: remain=4 ext_type=9(cipher-key) ext_len=4 parsing ext 0pcd1e35f0 with parser pfkey_key_parse. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_parse: success, found len=4 exttype=9(cipher-key) bits=192 reserved=0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: Extension 9(cipher-key) parsed. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000363, required=00000063. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pcd1e3590 with processor 0pd0b91530. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:14 1218638294 kernel: klips_debug: ipsec_alg_sa_init() :entering for encalg=3, authalg=2 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug: ipsec_alg_sa_init() :found ipsec_alg (ixt_e=d0bc4984) for encalg=3 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pcd1e35a8 with processor 0pd0b918a0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pcd1e35c0 with processor 0pd0b918a0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: processing ext 8 0pcd1e35d8 with processor 0pd0b91e40. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_process: . <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_process: allocating 16 bytes for authkey. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_process: success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: processing ext 9 0pcd1e35f0 with processor 0pd0b91e40. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_process: . <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_process: allocating 24 bytes for enckey. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_key_process: success. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_interp: parsing message type 3(add) with msg_parser 0pd0b8cdf0. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_add_parse: . <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=85 of <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a> requested. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_sa_getbyid: no entries in ipsec_sa table for hash=85 of <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a>. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_add_parse: existing ipsec_sa not found (this is good) for <a href="mailto:SAesp.9ce44778@172.16.2.2">SAesp.9ce44778@172.16.2.2</a>, in-bound, allocating. <br>
Aug 13 20:08:14 1218638294 kernel: ipsec_sa_init: (pfkey defined) called for <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a> <br>Aug 13 20:08:14 1218638294 kernel: ipsec_sa_init: calling init routine of ESP_3DES_HMAC_MD5 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug: ipsec_alg_sa_init() :entering for encalg=3, authalg=2 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug: ipsec_alg_sa_init() :found ipsec_alg (ixt_e=d0bc4984) for encalg=3 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:ipsec_alg_enc_key_create: entering with encalg=3 ixt_e=d0bc4984 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0pccca8f40. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_sa_build: spi=9ce44778 replay=64 sa_state=1 auth=2 encrypt=3 flags=1 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:14 1218638294 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc61db240 allocated 88 bytes, &amp;(extensions[0])=0pce6c5c30 <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_build: extensions permitted=78001c7b, seen=00000063, required=00000063. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_upmsg: allocating 88 bytes... <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pc9174c80. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_add_parse: sending up add reply message for satype=3(ESP) to socket=0pc902a500 succeeded. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_add_parse: successful for SA: <a href="mailto:esp.9ce44778@172.16.2.2">esp.9ce44778@172.16.2.2</a> <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sendmsg: allocating 184 bytes for downward message. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=14, errno=0, satype=9(IPIP), len=23, res=0, seq=23, pid=18847. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=30, cont=256, tail=255, listsize=256. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=30, table=0, entry=30 of 65536. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01800 ref=30. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01800. <br>Aug 13 20:08:15 1218638295 kernel: klsful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 23(X-source-mask) parsed. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing ext type=24(X-dest-mask) remain=3. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=24(X-dest-mask) ext_len=3 parsing ext 0pcd1e3620 with parser pfkey_address_parse. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: found exttype=24(X-dest-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 24(X-dest-mask) parsed. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: extensions permitted=05e00c63, seen=01e00063, required=01e00043. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pcd1e3590 with processor 0pd0b91530. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pcd1e35a8 with processor 0pd0b918a0. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pcd1e35c0 with processor 0pd0b918a0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 21 0pcd1e35d8 with processor 0pd0b918a0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://192.168.1.0">192.168.1.0</a>. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found src flow address. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_alloc_eroute: allocating 192 bytes for an eroute at 0pcd7ba1c0 <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.1.0/0:0-">192.168.1.0/0:0-</a>&gt;<a href="http://0.0.0.0/0:0">0.0.0.0/0:0</a> <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 22 0pcd1e35f0 with processor 0pd0b918a0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://192.168.2.0">192.168.2.0</a>. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found dst flow address. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_alloc_eroute: eroute struct already allocated <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.1.0/0:0-">192.168.1.0/0:0-</a>&gt;<a href="http://192.168.2.0/0:0">192.168.2.0/0:0</a> <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 23 0pcd1e3608 with processor 0pd0b918a0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://255.255.255.0">255.255.255.0</a>. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found src mask address. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_alloc_eroute: eroute struct already allocated <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.1.0/24:0-">192.168.1.0/24:0-</a>&gt;<a href="http://192.168.2.0/0:0">192.168.2.0/0:0</a> <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 24 0pcd1e3620 with processor 0pd0b918a0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://255.255.255.0">255.255.255.0</a>. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found dst mask address. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_alloc_eroute: eroute struct already allocated <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.1.0/24:0-">192.168.1.0/24:0-</a>&gt;<a href="http://192.168.2.0/24:0">192.168.2.0/24:0</a> <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: parsing message type 14(x-addflow(eroute)) with msg_parser 0pd0b8f230. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_x_addflow_parse: . <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_x_addflow_parse: calling breakeroute and/or makeroute for <a href="http://192.168.1.0/24-">192.168.1.0/24-</a>&gt;<a href="http://192.168.2.0/24">192.168.2.0/24</a> <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=173 of <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a> requested. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a>, ref:27 reference count decremented. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_x_addflow_parse: inbound eroute, setting incoming policy information in IPIP ipsec_sa for SA: t_SAref_alloc: allocating SAref=31, table=0, entry=31 of 65536. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01800 ref=31. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01800. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: satype 9 lookups to proto=4. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=9(IPIP), len=15, res=0, seq=24, pid=18847. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 13(x-groupsa). <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=13 <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0pc61db450 with parser pfkey_sa_parse. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001003 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0pc61db468 with parser pfkey_address_parse. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0pc61db480 with parser pfkey_x_satype_parse. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_x_satype_parse: enter <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=10(COMP) res=0,0,0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0pc61db488 with parser pfkey_sa_parse. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=0000209e replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0pc61db4a0 with parser pfkey_address_parse. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pc61db450 with processor 0pd0b91530. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pc61db468 with processor 0pd0b918a0. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_msg_interp: processing ext 18 0pc61db480 with processor 0pd0b922e0. <br>Aug 13 20:08:15 1218638295 kernel: klips_debug:pfkey_x_satype_process: . <br>
Aug 13 20:08:15 1218638295 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=32, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=32, table=0, entry=32 of 65536. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01400 ref=32. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_satype_process: protocol==108 decoded from satype==10(COMP). <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: processing ext 19 0pc61db488 with processor 0pd0b91530. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: processing ext 20 0pc61db4a0 with processor 0pd0b918a0. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: found 2nd dst address. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: parsing message type 13(x-groupsa) with msg_parser 0pd0b8eb10. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_grpsa_parse: . <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=173 of <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a> requested. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=138 of <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a> requested. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_grpsa_parse: linking ipsec_sa SA: <a href="mailto:tun.1003@172.16.2.2">tun.1003@172.16.2.2</a> with <a href="mailto:comp.209e@172.16.2.2">comp.209e@172.16.2.2</a>. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5b8c pfkey_ext=0pce6c5ca0 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5b8c pfkey_ext=0pce6c5ca0 *pfkey_ext=0pcfc2a640. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sa_build: spi=00001003 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_satype_build: <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sa_build: spi=0000209e replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc1db43c0 allocated 120 bytes, &amp;(extensions[0])=0pce6c5ca0 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_upmsg: allocating 120 bytes... <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pca3a1c80. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_grpsa_parse: sending up x_grpsa reply message for satype=9(IPIP) to socket=0pc902a500 succeeded. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_grpsa_parse: succeeded in sending x_grpsa reply message. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:tun.1003@172.16.2.2">tun.1003@172.16.2.2</a>(0pcdd01800), SAref=31, table=0(0pd09d6000), entry=31 from the refTable. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Atun.1003@172.16.2.2">SA:tun.1003@172.16.2.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:comp.209e@172.16.2.2">comp.209e@172.16.2.2</a>(0pcdd01400), SAref=32, table=0(0pd09d6000), entry=32 from the refTable. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sendmsg: . <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sendmsg: allocating 120 bytes for downward message. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=13, errno=0, satype=10(COMP), len=15, res=0, seq=25, pid=18847. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=33, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=33, table=0, entry=33 of 65536. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01400 ref=33. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01400. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: satype 10 lookups to proto=108. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=10(COMP), len=15, res=0, seq=25, pid=18847. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 13(x-groupsa). <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: remain=13 <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0pca2a31d0 with parser pfkey_sa_parse. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000209e replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0pca2a31e8 with parser pfkey_address_parse. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0pca2a3200 with parser pfkey_x_satype_parse. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_satype_parse: enter <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=3(ESP) res=0,0,0. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0pca2a3208 with parser pfkey_sa_parse. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=9ce44778 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0pca2a3220 with parser pfkey_address_parse. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pca2a31d0 with processor 0pd0b91530. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pca2a31e8 with processor 0pd0b918a0. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_msg_interp: processing ext 18 0pca2a3200 with processor 0pd0b922e0. <br>Aug 13 20:08:16 1218638296 kernel: klips_debug:pfkey_x_satype_process: . <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=34, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=34, table=0, entry=34 of 65536. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01800 ref=34. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_x_satype_process: protocol==50 decoded from satype==3(ESP). <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: processing ext 19 0pca2a3208 with processor 0pd0b91530. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:17 1218638297 kernel: klips_debug: ipsec_alg_sa_init() :entering for encalg=0, authalg=0 <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: processing ext 20 0pca2a3220 with processor 0pd0b918a0. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_process: found 2nd dst address. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: parsing message type 13(x-groupsa) with msg_parser 0pd0b8eb10. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_x_grpsa_parse: . <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=138 of <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a> requested. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=85 of <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a> requested. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_x_grpsa_parse: linking ipsec_sa SA: <a href="mailto:comp.209e@172.16.2.2">comp.209e@172.16.2.2</a> with <a href="mailto:esp.9ce44778@172.16.2.2">esp.9ce44778@172.16.2.2</a>. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5b8c pfkey_ext=0pce6c5ca0 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5b8c pfkey_ext=0pce6c5ca0 *pfkey_ext=0pc9869fe0. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sa_build: spi=0000209e replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_x_satype_build: <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sa_build: spi=9ce44778 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc61db8c0 allocated 120 bytes, &amp;(extensions[0])=0pce6c5ca0 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_upmsg: allocating 120 bytes... <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pca3a1880. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_x_grpsa_parse: sending up x_grpsa reply message for satype=10(COMP) to socket=0pc902a500 succeeded. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_x_grpsa_parse: succeeded in sending x_grpsa reply message. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:comp.209e@172.16.2.2">comp.209e@172.16.2.2</a>(0pcdd01400), SAref=33, table=0(0pd09d6000), entry=33 from the refTable. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Acomp.209e@172.16.2.2">SA:comp.209e@172.16.2.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:esp.9ce44778@172.16.2.2">esp.9ce44778@172.16.2.2</a>(0pcdd01800), SAref=34, table=0(0pd09d6000), entry=34 from the refTable. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sendmsg: . <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sendmsg: allocating 88 bytes for downward message. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=3, errno=0, satype=9(IPIP), len=11, res=0, seq=26, pid=18847. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=35, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=35, table=0, entry=35 of 65536. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01800 ref=35. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01800. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: satype 9 lookups to proto=4. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=9(IPIP), len=11, res=0, seq=26, pid=18847. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 3(add). <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: remain=9 <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0pc1db4750 with parser pfkey_sa_parse. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001004 replay=0 state=1 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0pc1db4768 with parser pfkey_address_parse. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0pc1db4780 with parser pfkey_address_parse. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pc1db4750 with processor 0pd0b91530. <br>Aug 13 20:08:17 1218638297 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pc1db4768 with processor 0pd0b918a0. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pc1db4780 with processor 0pd0b918a0. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_interp: parsing message type 3(add) with msg_parser 0pd0b8cdf0. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_add_parse: . <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=171 of <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> requested. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:ipsec_sa_getbyid: no entries in ipsec_sa table for hash=171 of <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a>. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_add_parse: existing ipsec_sa not found (this is good) for <a href="mailto:SAtun.1004@172.16.1.2">SAtun.1004@172.16.1.2</a>, out-bound, allocating. <br>Aug 13 20:08:18 1218638298 kernel: ipsec_sa_init: (pfkey defined) called for <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> <br>
Aug 13 20:08:18 1218638298 kernel: ipsec_sa_init: calling init routine of IPIP <br>Aug 13 20:08:18 1218638298 kernel: ipsec_sa_init: (pfkey defined) IPIP ipsec_sa set for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0pcfc2a640. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_sa_build: spi=00001004 replay=0 sa_state=1 auth=0 encrypt=0 flags=0 <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc61db8c0 allocated 88 bytes, &amp;(extensions[0])=0pce6c5c30 <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_build: extensions permitted=78001c7b, seen=00000063, required=00000063. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_upmsg: allocating 88 bytes... <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pca3a1880. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_add_parse: sending up add reply message for satype=9(IPIP) to socket=0pc902a500 succeeded. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_add_parse: successful for SA: <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a> <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_sendmsg: allocating 88 bytes for downward message. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=3, errno=0, satype=10(COMP), len=11, res=0, seq=27, pid=18847. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=36, cont=256, tail=255, listsize=256. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=36, table=0, entry=36 of 65536. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01400 ref=36. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01400. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_interp: satype 10 lookups to proto=108. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=10(COMP), len=11, res=0, seq=27, pid=18847. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 3(add). <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: remain=9 <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0pc61db450 with parser pfkey_sa_parse. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000627f replay=0 state=1 auth=0 encrypt=2 flags=0 ref=-1. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0pc61db468 with parser pfkey_address_parse. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0pc61db480 with parser pfkey_address_parse. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:18 1218638298 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pc61db450 with processor 0pd0b91530. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pc61db468 with processor 0pd0b918a0. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pc61db480 with processor 0pd0b918a0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: parsing message type 3(add) with msg_parser 0pd0b8cdf0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_add_parse: . <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=234 of <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> requested. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_sa_getbyid: no entries in ipsec_sa table for hash=234 of <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_add_parse: existing ipsec_sa not found (this is good) for <a href="mailto:SAcomp.627f@172.16.1.2">SAcomp.627f@172.16.1.2</a>, out-bound, allocating. <br>Aug 13 20:08:19 1218638299 kernel: ipsec_sa_init: (pfkey defined) called for <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>
Aug 13 20:08:19 1218638299 kernel: ipsec_sa_init: calling init routine of COMP_DEFLATE <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0pc32ae8a0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sa_build: spi=0000627f replay=0 sa_state=1 auth=0 encrypt=2 flags=0 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc61db8c0 allocated 88 bytes, &amp;(extensions[0])=0pce6c5c30 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_build: extensions permitted=78001c7b, seen=00000063, required=00000063. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_upmsg: allocating 88 bytes... <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pca3a1180. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_add_parse: sending up add reply message for satype=10(COMP) to socket=0pc902a500 succeeded. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_add_parse: successful for SA: <a href="mailto:comp.627f@172.16.1.2">comp.627f@172.16.1.2</a> <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sendmsg: allocating 144 bytes for downward message. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=3, errno=0, satype=3(ESP), len=18, res=0, seq=28, pid=18847. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=37, cont=256, tail=255, listsize=256. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=37, table=0, entry=37 of 65536. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pcdd01000 ref=37. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pcdd01000. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: satype 3 lookups to proto=50. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=3(ESP), len=18, res=0, seq=28, pid=18847. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: satype 3(ESP) conversion to proto gives 50 for msg_type 3(add). <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: remain=16 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=16. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: remain=16 ext_type=1(security-association) ext_len=3 parsing ext 0pcd1e3590 with parser pfkey_sa_parse. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=2a8ab1c4 replay=64 state=1 auth=2 encrypt=3 flags=0 ref=-1. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=13. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: remain=13 ext_type=5(source-address) ext_len=3 parsing ext 0pcd1e35a8 with parser pfkey_address_parse. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0pcd1e35c0 with parser pfkey_address_parse. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: parsing ext type=8(authentication-key) remain=7. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: remain=7 ext_type=8(authentication-key) ext_len=3 parsing ext 0pcd1e35d8 with parser pfkey_key_parse. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_parse: success, found len=3 exttype=8(authentication-key) bits=128 reserved=0. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: Extension 8(authentication-key) parsed. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: parsing ext type=9(cipher-key) remain=4. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: remain=4 ext_type=9(cipher-key) ext_len=4 parsing ext 0pcd1e35f0 with parser pfkey_key_parse. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_parse: success, found len=4 exttype=9(cipher-key) bits=192 reserved=0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: Extension 9(cipher-key) parsed. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000363, required=00000063. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pcd1e3590 with processor 0pd0b91530. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:19 1218638299 kernel: klips_debug: ipsec_alg_sa_init() :entering for encalg=3, authalg=2 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug: ipsec_alg_sa_init() :found ipsec_alg (ixt_e=d0bc4984) for encalg=3 <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pcd1e35a8 with processor 0pd0b918a0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pcd1e35c0 with processor 0pd0b918a0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 8 0pcd1e35d8 with processor 0pd0b91e40. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_process: . <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_process: allocating 16 bytes for authkey. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_process: success. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: processing ext 9 0pcd1e35f0 with processor 0pd0b91e40. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_process: . <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_process: allocating 24 bytes for enckey. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_key_process: success. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_interp: parsing message type 3(add) with msg_parser 0pd0b8cdf0. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_add_parse: . <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=90 of <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> requested. <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_sa_getbyid: no entries in ipsec_sa table for hash=90 of <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a>. <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_add_parse: existing ipsec_sa not found (this is good) for <a href="mailto:SAesp.2a8ab1c4@172.16.1.2">SAesp.2a8ab1c4@172.16.1.2</a>, out-bound, allocating. <br>
Aug 13 20:08:19 1218638299 kernel: ipsec_sa_init: (pfkey defined) called for <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> <br>Aug 13 20:08:19 1218638299 kernel: ipsec_sa_init: calling init routine of ESP_3DES_HMAC_MD5 <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug: ipsec_alg_sa_init() :entering for encalg=3, authalg=2 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug: ipsec_alg_sa_init() :found ipsec_alg (ixt_e=d0bc4984) for encalg=3 <br>
Aug 13 20:08:19 1218638299 kernel: klips_debug:ipsec_alg_enc_key_create: entering with encalg=3 ixt_e=d0bc4984 <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:19 1218638299 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5bf8 pfkey_ext=0pce6c5c30 *pfkey_ext=0pcfc2a640. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_build: spi=2a8ab1c4 replay=64 sa_state=1 auth=2 encrypt=3 flags=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc1db43c0 allocated 88 bytes, &amp;(extensions[0])=0pce6c5c30 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_build: extensions permitted=78001c7b, seen=00000063, required=00000063. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_upmsg: allocating 88 bytes... <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pcf7c9380. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_add_parse: sending up add reply message for satype=3(ESP) to socket=0pc902a500 succeeded. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_add_parse: successful for SA: <a href="mailto:esp.2a8ab1c4@172.16.1.2">esp.2a8ab1c4@172.16.1.2</a> <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sendmsg: . <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sendmsg: allocating 120 bytes for downward message. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=13, errno=0, satype=9(IPIP), len=15, res=0, seq=29, pid=18847. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=38, cont=256, tail=255, listsize=256. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=38, table=0, entry=38 of 65536. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pc932cc00 ref=38. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pc932cc00. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: satype 9 lookups to proto=4. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=9(IPIP), len=15, res=0, seq=29, pid=18847. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 13(x-groupsa). <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: remain=13 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0pc1db4750 with parser pfkey_sa_parse. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001004 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0pc1db4768 with parser pfkey_address_parse. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0pc1db4780 with parser pfkey_x_satype_parse. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_satype_parse: enter <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=10(COMP) res=0,0,0. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0pc1db4788 with parser pfkey_sa_parse. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=0000627f replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0pc1db47a0 with parser pfkey_address_parse. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pc1db4750 with processor 0pd0b91530. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pc1db4768 with processor 0pd0b918a0. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 18 0pc1db4780 with processor 0pd0b922e0. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_satype_process: . <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=39, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=39, table=0, entry=39 of 65536. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pc932c800 ref=39. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_satype_process: protocol==108 decoded from satype==10(COMP). <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 19 0pc1db4788 with processor 0pd0b91530. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 20 0pc1db47a0 with processor 0pd0b918a0. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: found 2nd dst address. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:20 1218638300 kernel: e_process: protocol==50 decoded from satype==3(ESP). <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 19 0pc1db4788 with processor 0pd0b91530. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:20 1218638300 kernel: klips_debug: ipsec_alg_sa_init() :entering for encalg=0, authalg=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: processing ext 20 0pc1db47a0 with processor 0pd0b918a0. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: found 2nd dst address. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_interp: parsing message type 13(x-groupsa) with msg_parser 0pd0b8eb10. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_grpsa_parse: . <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=234 of <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> requested. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=90 of <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> requested. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_grpsa_parse: linking ipsec_sa SA: <a href="mailto:comp.627f@172.16.1.2">comp.627f@172.16.1.2</a> with <a href="mailto:esp.2a8ab1c4@172.16.1.2">esp.2a8ab1c4@172.16.1.2</a>. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5b8c pfkey_ext=0pce6c5ca0 *pfkey_ext=0p00000000. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5b8c pfkey_ext=0pce6c5ca0 *pfkey_ext=0pc9869e40. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_build: spi=0000627f replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_x_satype_build: <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_sa_build: spi=2a8ab1c4 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:20 1218638300 kernel: klips_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pc1db40c0 allocated 120 bytes, &amp;(extensions[0])=0pce6c5ca0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_upmsg: allocating 120 bytes... <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pcf599080. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_grpsa_parse: sending up x_grpsa reply message for satype=10(COMP) to socket=0pc902a500 succeeded. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_grpsa_parse: succeeded in sending x_grpsa reply message. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:comp.627f@172.16.1.2">comp.627f@172.16.1.2</a>(0pc932c800), SAref=40, table=0(0pd09d6000), entry=40 from the refTable. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:esp.2a8ab1c4@172.16.1.2">esp.2a8ab1c4@172.16.1.2</a>(0pc932cc00), SAref=41, table=0(0pd09d6000), entry=41 from the refTable. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_sendmsg: . <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_sendmsg: allocating 184 bytes for downward message. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_sendmsg: msg sent for parsing. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: parsing message ver=2, type=14, errno=0, satype=9(IPIP), len=23, res=0, seq=31, pid=18847. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_SAref_alloc: SAref requested... head=42, cont=256, tail=255, listsize=256. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_SAref_alloc: allocating SAref=42, table=0, entry=42 of 65536. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_sa_alloc: allocated 532 bytes for ipsec_sa struct=0pc932cc00 ref=42. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: allocated extr-&gt;ips=0pc932cc00. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: satype 9 lookups to proto=4. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing message ver=2, type=14(x-addflow(eroute)), errno=0, satype=9(IPIP), len=23, res=0, seq=31, pid=18847. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 14(x-addflow(eroute)). <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=21 <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: extensions permitted=05e00c63, required=01e00043. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=21. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=21 ext_type=1(security-association) ext_len=3 parsing ext 0pcd1e3590 with parser pfkey_sa_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001004 replay=0 state=0 auth=0 encrypt=0 flags=2 ref=-1. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=18. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=18 ext_type=5(source-address) ext_len=3 parsing ext 0pcd1e35a8 with parser pfkey_address_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=15. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=15 ext_type=6(destination-address) ext_len=3 parsing ext 0pcd1e35c0 with parser pfkey_address_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=21(X-source-flow-address) remain=12. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=12 ext_type=21(X-source-flow-address) ext_len=3 parsing ext 0pcd1e35d8 with parser pfkey_address_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: found exttype=21(X-source-flow-address) family=2(AF_INET) address=<a href="http://192.168.2.0">192.168.2.0</a> proto=0 port=0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 21(X-source-flow-address) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=22(X-dest-flow-address) remain=9. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=9 ext_type=22(X-dest-flow-address) ext_len=3 parsing ext 0pcd1e35f0 with parser pfkey_address_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: found exttype=22(X-dest-flow-address) family=2(AF_INET) address=<a href="http://192.168.1.0">192.168.1.0</a> proto=0 port=0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 22(X-dest-flow-address) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=23(X-source-mask) remain=6. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=6 ext_type=23(X-source-mask) ext_len=3 parsing ext 0pcd1e3608 with parser pfkey_address_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: found exttype=23(X-source-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 23(X-source-mask) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: parsing ext type=24(X-dest-mask) remain=3. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: remain=3 ext_type=24(X-dest-mask) ext_len=3 parsing ext 0pcd1e3620 with parser pfkey_address_parse. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: found exttype=24(X-dest-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: Extension 24(X-dest-mask) parsed. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_parse: extensions permitted=05e00c63, seen=01e00063, required=01e00043. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 1 0pcd1e3590 with processor 0pd0b91530. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_sa_process: . <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 5 0pcd1e35a8 with processor 0pd0b918a0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.2.2">172.16.2.2</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found src address. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: successful. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 6 0pcd1e35c0 with processor 0pd0b918a0. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found dst address. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: allocating 16 bytes for saddr. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: ips_said.dst set to <a href="http://172.16.1.2">172.16.1.2</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 21 0pcd1e35d8 with processor 0pd0b918a0. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://192.168.2.0">192.168.2.0</a>. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found src flow address. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_alloc_eroute: allocating 192 bytes for an eroute at 0pccc245c0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.2.0/0:0-">192.168.2.0/0:0-</a>&gt;<a href="http://0.0.0.0/0:0">0.0.0.0/0:0</a> <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 22 0pcd1e35f0 with processor 0pd0b918a0. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://192.168.1.0">192.168.1.0</a>. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found dst flow address. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_alloc_eroute: eroute struct already allocated <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.2.0/0:0-">192.168.2.0/0:0-</a>&gt;<a href="http://192.168.1.0/0:0">192.168.1.0/0:0</a> <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 23 0pcd1e3608 with processor 0pd0b918a0. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://255.255.255.0">255.255.255.0</a>. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found src mask address. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_alloc_eroute: eroute struct already allocated <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.2.0/24:0-">192.168.2.0/24:0-</a>&gt;<a href="http://192.168.1.0/0:0">192.168.1.0/0:0</a> <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: processing ext 24 0pcd1e3620 with processor 0pd0b918a0. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found address family=2, AF_INET, <a href="http://255.255.255.0">255.255.255.0</a>. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: found dst mask address. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_alloc_eroute: eroute struct already allocated <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_parse: extr-&gt;eroute set to <a href="http://192.168.2.0/24:0-">192.168.2.0/24:0-</a>&gt;<a href="http://192.168.1.0/24:0">192.168.1.0/24:0</a> <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_process: successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_interp: parsing message type 14(x-addflow(eroute)) with msg_parser 0pd0b8f230. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_addflow_parse: . <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_addflow_parse: calling breakeroute and/or makeroute for <a href="http://192.168.2.0/24-">192.168.2.0/24-</a>&gt;<a href="http://192.168.1.0/24">192.168.1.0/24</a> <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_addflow_parse: REPLACEFLOW flag set, calling breakeroute. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_breakroute: attempting to delete eroute for <a href="http://192.168.2.0/24:0-">192.168.2.0/24:0-</a>&gt;<a href="http://192.168.1.0/24:0">192.168.1.0/24:0</a> 0 <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_breakroute: deleted eroute=0pcd7ba0c0, ident=0p00000000-&gt;0p00000000, first=0p00000000, last=0p00000000 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_addflow_parse: calling makeroute. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_makeroute: attempting to allocate 192 bytes to insert eroute for <a href="http://192.168.2.0/24-">192.168.2.0/24-</a>&gt;<a href="http://192.168.1.0/24">192.168.1.0/24</a>, SA: <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a>, PID:18847, skb=0p00000000, ident:NULL-&gt;NULL <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_makeroute: 141a1000c0a80200c0a801000000000000000000 / 141aff00ffffff00ffffff000000000000000000&nbsp; <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_makeroute: calling rj_addroute now <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_makeroute: pid=18847 count=&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0 lasttime=&nbsp;&nbsp;&nbsp;&nbsp; 0 <a href="http://192.168.2.0/24">192.168.2.0/24</a>&nbsp;&nbsp;&nbsp;&nbsp; -&gt; <a href="http://192.168.1.0/24">192.168.1.0/24</a>&nbsp;&nbsp;&nbsp;&nbsp; =&gt; <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a> <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:ipsec_makeroute: succeeded. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_x_addflow_parse: makeroute call successful. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_hdr_build: <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0pce6c5ae0 pfkey_ext=0pce6c5c20 *pfkey_ext=0p00000000. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0pce6c5ae0 pfkey_ext=0pce6c5c20 *pfkey_ext=0pc32ae8a0. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_sa_build: spi=00001004 replay=0 sa_state=0 auth=0 encrypt=0 flags=2 <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: exttype=21 proto=0 prefixlen=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address=<a href="http://192.168.2.0:0">192.168.2.0:0</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: exttype=22 proto=0 prefixlen=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address=<a href="http://192.168.1.0:0">192.168.1.0:0</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: exttype=23 proto=0 prefixlen=0 <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: found address=<a href="http://255.255.255.0:0">255.255.255.0:0</a>. <br>
Aug 13 20:08:21 1218638301 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_address_build: exttype=24 proto=0 prefixlen=0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_address_build: found address=<a href="http://255.255.255.0:0">255.255.255.0:0</a>. <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_safe_build: error=0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_safe_build:success. <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: pfkey_msg=0pccc249c0 allocated 184 bytes, &amp;(extensions[0])=0pce6c5c20 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[21] (type=21) <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[22] (type=22) <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[23] (type=23) <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: copying 24 bytes from extensions[24] (type=24) <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_msg_build: extensions permitted=05e00063, seen=01e00063, required=01e00043. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_upmsg: allocating 184 bytes... <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_upmsg: ...allocated at 0pca3a1880. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_x_addflow_parse: sending up x_addflow reply message for satype=9(IPIP) (proto=4) to socket=0pc902a500 succeeded. <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:pfkey_x_addflow_parse: extr-&gt;ips cleaned up and freed. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_sa_wipe: removing SA=<a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a>(0pc932cc00), SAref=42, table=0(0pd09d6000), entry=42 from the refTable. <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_sa_put: ipsec_sa <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a>, ref:-1 reference count decremented. <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:@@ flags = 6 @key=0pcf3b2200 key = 00000000-&gt;00000000 @mask=0p00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:@@ flags = 4 @key=0pcd7ba128 key = c0a80200-&gt;c0a80100 @mask=0pc61db7f0 mask = ffffff00-&gt;ffffff00 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:* off = 0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:@ flags = 6 @key=0pcf3b2214 key = ffffffff-&gt;ffffffff @mask=0p00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug: off = 0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_eroute_get_info: buffer=0pc4731000, *start=0p00000000, offset=0, length=1024 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: for: rn=0pca2e2768 rj_b=-3 rj_flags=6 leaf key = 00000000-&gt;00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: processing leaves, rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: while: base=0p00000000 rn=0pca2e2768 rj_b=-3 rj_flags=6 leaf key = 00000000-&gt;00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: for: rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: processing leaves, rn=0pca2e2798 rj_b=-3 rj_flags=6 leaf key = ffffffff-&gt;ffffffff <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: while: base=0p00000000 rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_rj_walker_procprint: rn=0pcd7ba0c0, w0=0pce6c5ef8 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:@@ flags = 6 @key=0pcf3b2200 key = 00000000-&gt;00000000 @mask=0p00000000 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:@@ flags = 4 @key=0pcd7ba128 key = c0a80200-&gt;c0a80100 @mask=0pc61db7f0 mask = ffffff00-&gt;ffffff00 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:* off = 0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:@ flags = 6 @key=0pcf3b2214 key = ffffffff-&gt;ffffffff @mask=0p00000000 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug: off = 0 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_eroute_get_info: buffer=0pc4731000, *start=0p00000000, offset=76, length=948 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: for: rn=0pca2e2768 rj_b=-3 rj_flags=6 leaf key = 00000000-&gt;00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: processing leaves, rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: while: base=0p00000000 rn=0pca2e2768 rj_b=-3 rj_flags=6 leaf key = 00000000-&gt;00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: for: rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: processing leaves, rn=0pca2e2798 rj_b=-3 rj_flags=6 leaf key = ffffffff-&gt;ffffffff <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: while: base=0p00000000 rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_rj_walker_procprint: rn=0pcd7ba0c0, w0=0pce6c5ef8 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:@@ flags = 6 @key=0pcf3b2200 key = 00000000-&gt;00000000 @mask=0p00000000 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:@@ flags = 4 @key=0pcd7ba128 key = c0a80200-&gt;c0a80100 @mask=0pc61db7f0 mask = ffffff00-&gt;ffffff00 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:* off = 0 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:@ flags = 6 @key=0pcf3b2214 key = ffffffff-&gt;ffffffff @mask=0p00000000 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug: off = 0 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_eroute_get_info: buffer=0pc4731000, *start=0p00000000, offset=76, length=1024 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: for: rn=0pca2e2768 rj_b=-3 rj_flags=6 leaf key = 00000000-&gt;00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: processing leaves, rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: while: base=0p00000000 rn=0pca2e2768 rj_b=-3 rj_flags=6 leaf key = 00000000-&gt;00000000 <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: for: rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: processing leaves, rn=0pca2e2798 rj_b=-3 rj_flags=6 leaf key = ffffffff-&gt;ffffffff <br>
Aug 13 20:08:22 1218638302 kernel: klips_debug:rj_walktree: while: base=0p00000000 rn=0pcd7ba0c0 rj_b=-1 rj_flags=4 leaf key = c0a80200-&gt;c0a80100 <br>Aug 13 20:08:22 1218638302 kernel: klips_debug:ipsec_rj_walker_procprint: rn=0pcd7ba0c0, w0=0pce6c5ef8 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_tunnel_neigh_setup: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_tunnel_hard_header: skb-&gt;dev=ipsec0 dev=ipsec0. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_tunnel_hard_header: Revectored 0p00000000-&gt;0pcd27daa4 len=60 type=2048 dev=ipsec0-&gt;eth1 dev_addr=00:0c:29:ca:31:cc ip=c0a80202-&gt;c0a80101 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_strip_hard_header: &gt;&gt;&gt; skb-&gt;len=74 hard_header_len:14 00:0c:29:ca:31:cc:00:0c:29:ca:31:cc:08:00&nbsp; <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:60 id:19246 DF frag_off:0 ttl:63 proto:6 (TCP) chk:27690 saddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> daddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_strip_hard_header: Original head,tailroom: 18,36 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_findroute: 192.168.2.2:2061-&gt;<a href="http://192.168.1.1:23">192.168.1.1:23</a> 6 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: * See if we match exactly as a host destination <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ** try to match a leaf, t=0pcd7ba0c0 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_SAlookup: checking for local udp/500 IKE packet saddr=c0a80202, er=0pcd7ba0c0, daddr=c0a80101, er_dst=ac100102, proto=6 sport=2061 dport=23 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=171 of <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> requested. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: found ipsec_sa -- SA:&lt;IPIP&gt; <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: calling room for &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: Required head,tailroom: 20,0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: calling room for &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: Required head,tailroom: 0,0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: calling room for &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: Required head,tailroom: 16,16 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: existing head,tailroom: 18,36 before applying xforms with head,tailroom: 36,16 . <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: mtu:1500 physmtu:1500 tothr:36 tottr:16 mtudiff:52 ippkttotlen:60 <br>
Aug 13 20:09:49 1218638389 kernel: klips_info:ipsec_xmit_encap_bundle: dev ipsec0 mtu of 1500 decreased by 57 to 1443 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: allocating 14 bytes for hardheader. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: head,tailroom: 32,36 after hard_header stripped. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:60 id:19246 DF frag_off:0 ttl:63 proto:6 (TCP) chk:27690 saddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> daddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_bundle: head,tailroom: 68,128 after allocation <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:60 id:19246 DF frag_off:0 ttl:63 proto:6 (TCP) chk:27690 saddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> daddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: pushing 20 bytes, putting 0, proto 4. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 48,128 before xform. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a>: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:80 id:33247 frag_off:0 ttl:64 proto:4 chk:40358 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:80 id:33247 frag_off:0 ttl:64 proto:4 chk:40358 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: pushing 0 bytes, putting 0, proto 108. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 48,128 before xform. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:skb_compress: . <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:skb_compress: skipping compression of tiny packet, len=60. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: packet did not compress (flags = 1). <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a>: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:80 id:33247 frag_off:0 ttl:64 proto:4 chk:40358 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:80 id:33247 frag_off:0 ttl:64 proto:4 chk:40358 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: pushing 16 bytes, putting 16, proto 50. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: hbf 1d 1a 70 6c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 1b 58 f4 9e 20 ce e1 ac 1b 37 a5 72 96 a2 29 71 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 53 17 96 10 64 2f d1 a6 13 8c 13 90 6b 36 b3 2d <br>
Aug 13 20:09:49 1218638389 kernel: klips_dmp: at ictx, len=88: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 09 7d 6d 59 e5 f4 7a 01 ba 26 67 04 82 0d 90 5d <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 00 02 00 00 00 00 00 00 a8 bc ab 02 1f 5e 7e d3 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 47 eb 8a 8b ba 67 1e 89 36 36 36 36 36 36 36 36 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 36 36 36 36 36 36 36 36 <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at ictx+dat, len=88: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 83 60 04 1e d7 bb cc 12 2b 5d 80 42 04 81 1f 10 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 00 04 00 00 00 00 00 00 2a 8a b1 c4 00 00 00 0a <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: cd 7d 7f d9 b9 77 ef 9f 87 2f 4c df 68 ec 35 2c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 18 71 66 bf 1d 1a 70 6c 1b 58 f4 9e 20 ce e1 ac <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 1b 37 a5 72 96 a2 29 71 53 17 96 10 64 2f d1 a6 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 13 8c 13 90 6b 36 b3 2d <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at ictx hash, len=20: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: ff cc 40 3e 51 dc dd 9f c6 e2 2f 12 14 fc ee c5 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 01 00 00 00 <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at octx, len=88: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: c8 63 3b 44 74 c5 35 f1 50 c3 d4 db cb 6b df f9 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 00 02 00 00 00 00 00 00 c2 d6 c1 68 75 34 14 b9 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 2d 81 e0 e1 d0 0d 74 e3 5c 5c 5c 5c 5c 5c 5c 5c <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 5c 5c 5c 5c 5c 5c 5c 5c <br>
Aug 13 20:09:49 1218638389 kernel: klips_dmp: at octx+hash, len=88: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: c8 63 3b 44 74 c5 35 f1 50 c3 d4 db cb 6b df f9 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 80 02 00 00 00 00 00 00 ff cc 40 3e 51 dc dd 9f <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: c6 e2 2f 12 14 fc ee c5 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at octx hash, len=20: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: d6 0c 90 b9 2b 36 08 cb 75 ad e7 fb 13 a8 fe 99 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 01 00 00 00 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a>: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:96 id:33256 frag_off:0 ttl:64 proto:50 (ESP) chk:40287 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:96 id:33256 frag_off:0 ttl:64 proto:50 (ESP) chk:40287 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_error:ipsec_sa_put: null pointer passed in! <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_findroute: 172.16.2.2:0-&gt;<a href="http://172.16.1.2:0">172.16.1.2:0</a> 50 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: * See if we match exactly as a host destination <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ** try to match a leaf, t=0pcd7ba0c0 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: *** start searching up the tree, t=0pcd7ba0c0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: **** t=0pcd7ba0d8 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: **** t=0pca2e2780 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ***** cp2=0pcf3b2228 cp3=0pc61db7f0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ***** not found. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_restore_hard_header: After recursive xforms -- head,tailroom: 32,0 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_restore_hard_header: With hard_header, final head,tailroom: 18,0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_send: ...done, calling ip_send() on device:eth1 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:96 id:33256 frag_off:0 ttl:64 proto:50 (ESP) chk:40287 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: &lt;&lt;&lt; Info -- skb-&gt;dev=eth1 dev=eth1&nbsp; <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: assigning packet ownership to virtual device ipsec0 from physical device eth1. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:136 id:59428 frag_off:0 ttl:63 proto:50 (ESP) chk:14331 saddr:<a href="http://172.16.1.2">172.16.1.2</a> daddr:<a href="http://172.16.2.2">172.16.2.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv_decap_once: decap (50) from <a href="http://172.16.1.2">172.16.1.2</a> -&gt; <a href="http://172.16.2.2">172.16.2.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=85 of <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a> requested. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a>, src=<a href="http://172.16.1.2">172.16.1.2</a> of pkt agrees with expected SA source address poliec_xmit_encap_once: after &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a>: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:63 id:33257 frag_off:0 ttl:64 proto:4 chk:40365 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:63 id:33257 frag_off:0 ttl:64 proto:4 chk:40365 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: pushing 0 bytes, putting 0, proto 108. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 48,17 before xform. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:skb_compress: . <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:skb_compress: skipping compression of tiny packet, len=43. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: packet did not compress (flags = 1). <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a>: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:63 id:33257 frag_off:0 ttl:64 proto:4 chk:40365 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:63 id:33257 frag_off:0 ttl:64 proto:4 chk:40365 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: pushing 16 bytes, putting 17, proto 50. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 32,0 before xform. <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at pre-encrypt, len=96: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 45 00 00 60 81 e9 00 00 40 32 9d ad ac 10 02 02 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: ac 10 01 02 2a 8a b1 c4 00 00 00 0b ac 10 02 02 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: ac 10 01 02 45 10 00 2b 4b 38 40 00 3f 06 6c 31 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: c0 a8 02 02 c0 a8 01 01 08 0d 00 17 ac 20 39 92 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 87 2c 65 c9 50 18 16 d0 38 db 00 00 ff fd 01 01 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 02 03 03 04 75 47 21 62 cd 14 06 bc b6 5d ca 72 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_alg_esp_encrypt: entering with encalg=3, ixt_e=d0bc4984 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_alg_esp_encrypt: calling cbc_encrypt encalg=3 ips_key_e=c2d40200 idat=ca22bc44 ilen=48 iv=ca22bc3c, encrypt=1 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_alg_esp_encrypt: returned ret=48 <br>
Aug 13 20:09:49 1218638389 kernel: klips_dmp: at espp, len=64: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 2a 8a b1 c4 00 00 00 0b eb ec ef 7f 0e dd 29 1b <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: a3 41 bc dd 8b 38 15 d4 8c 3a 99 55 dd 4b fa 22 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 06 6a d7 46 90 f3 91 fd 81 71 a2 63 9b a5 b2 0e <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 4d f4 da f2 70 1f df 43 de 85 9e 79 fb cd fa 16 <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at ictx, len=88: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 09 7d 6d 59 e5 f4 7a 01 ba 26 67 04 82 0d 90 5d <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 00 02 00 00 00 00 00 00 a8 bc ab 02 1f 5e 7e d3 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 47 eb 8a 8b ba 67 1e 89 36 36 36 36 36 36 36 36 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 36 36 36 36 36 36 36 36 <br>
Aug 13 20:09:49 1218638389 kernel: klips_dmp: at ictx+dat, len=88: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 78 c5 bc b2 f6 ec c2 a8 d0 31 63 75 d2 34 38 05 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 00 04 00 00 00 00 00 00 2a 8a b1 c4 00 00 00 0b <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: eb ec ef 7f 0e dd 29 1b a3 41 bc dd 8b 38 15 d4 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 8c 3a 99 55 dd 4b fa 22 06 6a d7 46 90 f3 91 fd <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 81 71 a2 63 9b a5 b2 0e 4d f4 da f2 70 1f df 43 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: de 85 9e 79 fb cd fa 16 <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at ictx hash, len=20: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 67 5d 65 ae 8a ba 75 3b 61 e7 ca 1d 52 c8 03 ff <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 01 00 00 00 <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at octx, len=88: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: c8 63 3b 44 74 c5 35 f1 50 c3 d4 db cb 6b df f9 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 00 02 00 00 00 00 00 00 c2 d6 c1 68 75 34 14 b9 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 2d 81 e0 e1 d0 0d 74 e3 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_dmp: at octx+hash, len=88: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: c8 63 3b 44 74 c5 35 f1 50 c3 d4 db cb 6b df f9 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 80 02 00 00 00 00 00 00 67 5d 65 ae 8a ba 75 3b <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @020: 61 e7 ca 1d 52 c8 03 ff 5c 5c 5c 5c 5c 5c 5c 5c <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @030: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @040: 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c 5c <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @050: 5c 5c 5c 5c 5c 5c 5c 5c <br>
Aug 13 20:09:49 1218638389 kernel: klips_dmp: at octx hash, len=20: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @000: 1d 6e f2 a9 6f 90 7d 44 8b 2d 2b 44 d6 a2 1a c4 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; @010: 01 00 00 00 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a>: <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:96 id:33257 frag_off:0 ttl:64 proto:50 (ESP) chk:40286 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:96 id:33257 frag_off:0 ttl:64 proto:50 (ESP) chk:40286 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_error:ipsec_sa_put: null pointer passed in! <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_findroute: 172.16.2.2:0-&gt;<a href="http://172.16.1.2:0">172.16.1.2:0</a> 50 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: * See if we match exactly as a host destination <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ** try to match a leaf, t=0pcd7ba0c0 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: *** start searching up the tree, t=0pcd7ba0c0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: **** t=0pcd7ba0d8 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: **** t=0pca2e2780 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ***** cp2=0pcf3b2228 cp3=0pc61db7f0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:rj_match: ***** not found. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_restore_hard_header: After recursive xforms -- head,tailroom: 32,0 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_restore_hard_header: With hard_header, final head,tailroom: 18,0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_xmit_send: ...done, calling ip_send() on device:eth1 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:96 id:33257 frag_off:0 ttl:64 proto:50 (ESP) chk:40286 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: &lt;&lt;&lt; Info -- skb-&gt;dev=eth1 dev=eth1&nbsp; <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: assigning packet ownership to virtual device ipsec0 from physical device eth1. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:104 id:59429 frag_off:0 ttl:63 proto:50 (ESP) chk:14362 saddr:<a href="http://172.16.1.2">172.16.1.2</a> daddr:<a href="http://172.16.2.2">172.16.2.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv_decap_once: decap (50) from <a href="http://172.16.1.2">172.16.1.2</a> -&gt; <a href="http://172.16.2.2">172.16.2.2</a> <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=85 of <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a> requested. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a>, src=<a href="http://172.16.1.2">172.16.1.2</a> of pkt agrees with expected SA source address policy. <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a> First SA in group. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: natt_type=0 tdbp-&gt;ips_natt_type=0 : ok <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: packet from <a href="http://172.16.1.2">172.16.1.2</a> received with seq=11 (iv)=0xaaacf53821967bae iplen=84 esplen=72 sa=<a href="mailto:esp.9ce44778@172.16.2.2">esp.9ce44778@172.16.2.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: encalg = 3, authalg = 2. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: authentication successful. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: encalg=3 esphlen=16 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_alg_esp_encrypt: entering with encalg=3, ixt_e=d0bc4984 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_alg_esp_encrypt: calling cbc_encrypt encalg=3 ips_key_e=c231a800 idat=ca22b044 ilen=56 iv=ca22b03c, encrypt=0 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_alg_esp_encrypt: returned ret=56 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: padlen=4, contents: 0x&lt;offset&gt;: 0x&lt;value&gt; 0x&lt;value&gt; ... <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 00: 01 02 03 04 <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: packet decrypted from <a href="http://172.16.1.2">172.16.1.2</a>: next_header = 4, padding = 4 <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: trimming to 50. <br>Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: after &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a>: <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:70 id:59429 frag_off:0 ttl:63 proto:4 chk:14442 saddr:<a href="http://172.16.1.2">172.16.1.2</a> daddr:<a href="http://172.16.2.2">172.16.2.2</a> <br>
Aug 13 20:09:49 1218638389 kernel: klips_debug:ipsec_rcv: <a href="mailto:SA%3Aesp.9ce44778@172.16.2.2">SA:esp.9ce44778@172.16.2.2</a>, Another IPSEC header to process. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_rcv: ESP SA sets skb-&gt;nfmark=0x1d0000. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_rcv: IPIP tunnel stripped. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:50 id:48992 DF frag_off:0 ttl:64 proto:6 (TCP) chk:63233 saddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> daddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_rcv: IPIP SA sets skb-&gt;nfmark=0x1f0000. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_rcv: netif_rx() called. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_tunnel_hard_header: skb-&gt;dev=ipsec0 dev=ipsec0. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_tunnel_hard_header: Revectored 0p00000000-&gt;0pcd27daa4 len=40 type=2048 dev=ipsec0-&gt;eth1 dev_addr=00:0c:29:ca:31:cc ip=c0a80202-&gt;c0a80101 <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_strip_hard_header: &gt;&gt;&gt; skb-&gt;len=54 hard_header_len:14 00:0c:29:ca:31:cc:00:0c:29:ca:31:cc:08:00&nbsp; <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:40 id:19257 DF frag_off:0 ttl:63 proto:6 (TCP) chk:27699 saddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> daddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_strip_hard_header: Original head,tailroom: 18,56 <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_findroute: 192.168.2.2:2061-&gt;<a href="http://192.168.1.1:23">192.168.1.1:23</a> 6 <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:rj_match: * See if we match exactly as a host destination <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:rj_match: ** try to match a leaf, t=0pcd7ba0c0 <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_SAlookup: checking for local udp/500 IKE packet saddr=c0a80202, er=0pcd7ba0c0, daddr=c0a80101, er_dst=ac100102, proto=6 sport=2061 dport=23 <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_sa_getbyid: linked entry in ipsec_sa table for hash=171 of <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> requested. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: found ipsec_sa -- SA:&lt;IPIP&gt; <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: calling room for &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: Required head,tailroom: 20,0 <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: calling room for &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: Required head,tailroom: 0,0 <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: calling room for &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: Required head,tailroom: 16,20 <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: existing head,tailroom: 18,56 before applying xforms with head,tailroom: 36,20 . <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: mtu:1500 physmtu:1500 tothr:36 tottr:20 mtudiff:56 ippkttotlen:40 <br>
Aug 13 20:09:50 1218638390 kernel: klips_info:ipsec_xmit_encap_bundle: dev ipsec0 mtu of 1500 decreased by 57 to 1443 <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: allocating 14 bytes for hardheader. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: head,tailroom: 32,56 after hard_header stripped. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:40 id:19257 DF frag_off:0 ttl:63 proto:6 (TCP) chk:27699 saddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> daddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_bundle: head,tailroom: 68,20 after allocation <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:16 tlen:40 id:19257 DF frag_off:0 ttl:63 proto:6 (TCP) chk:27699 saddr:<a href="http://192.168.2.2:2061">192.168.2.2:2061</a> daddr:<a href="http://192.168.1.1:23">192.168.1.1:23</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: pushing 20 bytes, putting 0, proto 4. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 48,20 before xform. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a>: <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33258 frag_off:0 ttl:64 proto:4 chk:40367 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33258 frag_off:0 ttl:64 proto:4 chk:40367 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: pushing 0 bytes, putting 0, proto 108. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 48,20 before xform. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:skb_compress: . <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:skb_compress: skipping compression of tiny packet, len=40. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: packet did not compress (flags = 1). <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a>: <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33258 frag_off:0 ttl:64 proto:4 chk:40367 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33258 frag_off:0 ttl:64 proto:4 chk:40367 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;ESP_3DES_HMAC_MD5&gt;, <a href="mailto:SA%3Aesp.2a8ab1c4@172.16.1.2">SA:esp.2a8ab1c4@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: pushing 16 bytes, putting 20, proto 50. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 32,0 before xform. <br>Aug 13 20:09:50 1218638390 kernel: klips_dmp: at pre-encrypt, len=96: <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; @000: 45 00 00 60 81 ea 00 00 40 32 9d af ac 10 02 02 <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; @010: ac 10 01 02 2a 8a b1 c4 00 00 00 0c ac 10 02 02 <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; @020: ac 10 01 02 45 10 00 28 4b 39 40 00 3f 06 6c 33 <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp; ec_xmit_encap_once: after &lt;IPIP&gt;, <a href="mailto:SA%3Atun.1004@172.16.1.2">SA:tun.1004@172.16.1.2</a>: <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33261 frag_off:0 ttl:64 proto:4 chk:40364 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33261 frag_off:0 ttl:64 proto:4 chk:40364 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: calling output for &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a> <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: pushing 0 bytes, putting 0, proto 108. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: head,tailroom: 48,20 before xform. <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:skb_compress: . <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:skb_compress: skipping compression of tiny packet, len=40. <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: packet did not compress (flags = 1). <br>Aug 13 20:09:50 1218638390 kernel: klips_debug:ipsec_xmit_encap_once: after &lt;COMP_DEFLATE&gt;, <a href="mailto:SA%3Acomp.627f@172.16.1.2">SA:comp.627f@172.16.1.2</a>: <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33261 frag_off:0 ttl:64 proto:4 chk:40364 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 13 20:09:50 1218638390 kernel: klips_debug:&nbsp;&nbsp; IP: ihl:20 ver:4 tos:0 tlen:60 id:33261 frag_off:0 ttl:64 proto:4 chk:40364 saddr:<a href="http://172.16.2.2">172.16.2.2</a> daddr:<a href="http://172.16.1.2">172.16.1.2</a> <br>
Aug 14 12:36:36 1218697596 syslogd 1.3-3: restart.<br><br><br><br><br><br><br><br>-----------------------/var/log/secure-----------------<br><br>Aug 13 20:07:51 1218638271 pluto[18847]: &quot;nton-1&quot; #1: received and ignored informational message<br>
Aug 13 20:07:51 1218638271 pluto[18847]: &quot;nton-1&quot; #1: received Delete SA payload: deleting ISAKMP State #1<br>Aug 13 20:07:51 1218638271 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received and ignored informational message<br>
Aug 13 20:08:03 1218638283 pluto[18847]: | base debugging = raw+crypt+parsing+emitting+control+lifecycle+klips+dns+oppo+controlmore+pfkey+nattraversal+x509<br>Aug 13 20:08:03 1218638283 pluto[18847]: | next event EVENT_SHUNT_SCAN in 16 seconds<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp; <br>Aug 13 20:08:07 1218638287 pluto[18847]: | *received 216 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 01 10 02 00&nbsp; 00 00 00 00&nbsp; 00 00 00 d8&nbsp; 0d 00 00 34<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 00 00 00 01&nbsp; 00 00 00 01&nbsp; 00 00 00 28&nbsp; 00 01 00 01<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 00 00 00 20&nbsp; 00 01 00 00&nbsp; 80 0b 00 01&nbsp; 80 0c 0e 10<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 80 01 00 05&nbsp; 80 02 00 01&nbsp; 80 03 00 01&nbsp; 80 04 00 02<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 0d 00 00 10&nbsp; 4f 45 5d 62&nbsp; 57 58 60 51&nbsp; 42 72 75 4c<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 0d 00 00 14&nbsp; af ca d7 13&nbsp; 68 a1 f1 c9&nbsp; 6b 86 96 fc<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 77 57 01 00&nbsp; 0d 00 00 14&nbsp; 4a 13 1c 81&nbsp; 07 03 58 45<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 5c 57 28 f2&nbsp; 0e 95 45 2f&nbsp; 0d 00 00 14&nbsp; 7d 94 19 a6<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 53 10 ca 6f&nbsp; 2c 17 9d 92&nbsp; 15 52 9d 56&nbsp; 0d 00 00 14<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; cd 60 46 43&nbsp; 35 df 21 f8&nbsp; 7c fd b2 fc&nbsp; 68 b6 a4 48<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 0d 00 00 14&nbsp; 90 cb 80 91&nbsp; 3e bb 69 6e&nbsp; 08 63 81 b5<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; ec 42 7b 1f&nbsp; 00 00 00 14&nbsp; 44 85 15 2d&nbsp; 18 b6 bb cd<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 0b e8 a8 46&nbsp; 95 79 dd cc<br>Aug 13 20:08:07 1218638287 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_SA<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_IDPROT<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: none<br>
Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 00 00 00 00<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 216<br>Aug 13 20:08:07 1218638287 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_IDPROT (2)<br>
Aug 13 20:08:07 1218638287 pluto[18847]: | np=1 and sd=0x80e4dcc <br>Aug 13 20:08:07 1218638287 pluto[18847]: | ***parse ISAKMP Security Association Payload:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 52<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 16<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=13 and sd=0x80e5378 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Vendor ID Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: ignoring unknown Vendor ID payload [4f455d62575860514272754c]<br>
Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received Vendor ID payload [Dead Peer Detection]<br>Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received Vendor ID payload [RFC 3947] method set to=109 <br>
Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received Vendor ID payload [draft-ietf-ipsec-nat-t-ike-03] meth=108, but already using method 109<br>Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received Vendor ID payload [draft-ietf-ipsec-nat-t-ike-02] meth=107, but already using method 109<br>
Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received Vendor ID payload [draft-ietf-ipsec-nat-t-ike-02_n] meth=106, but already using method 109<br>Aug 13 20:08:08 1218638288 pluto[18847]: packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a>: received Vendor ID payload [draft-ietf-ipsec-nat-t-ike-00]<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | nat-t detected, sending nat-t VID<br>Aug 13 20:08:08 1218638288 pluto[18847]: | find_host_connection called from main_inI1_outR1<br>Aug 13 20:08:08 1218638288 pluto[18847]: | find_host_pair: comparing to <a href="http://172.16.2.2:500">172.16.2.2:500</a> <a href="http://172.16.1.2:500">172.16.1.2:500</a> <br>
Aug 13 20:08:08 1218638288 pluto[18847]: | find_host_pair_conn (find_host_connection2): <a href="http://172.16.2.2:500">172.16.2.2:500</a> <a href="http://172.16.1.2:500">172.16.1.2:500</a> -&gt; hp:nton-1 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | creating state object #3 at 0x8109228<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:08 1218638288 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>Aug 13 20:08:08 1218638288 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:08 1218638288 pluto[18847]: | inserting event EVENT_SO_DISCARD, timeout in 0 seconds for #3<br>
Aug 13 20:08:08 1218638288 pluto[18847]: &quot;nton-1&quot; #3: responding to Main Mode<br>Aug 13 20:08:08 1218638288 pluto[18847]: | **emit ISAKMP Message:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_SA<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_IDPROT<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: none<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 00 00 00 00<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***emit ISAKMP Security Association Payload:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ****parse IPsec DOI SIT:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; IPsec DOI SIT: SIT_IDENTITY_ONLY<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | ****parse ISAKMP Proposal Payload:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 40<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_ISAKMP<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 1<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | *****parse ISAKMP Transform Payload (ISAKMP):<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 32<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: KEY_IKE<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ******parse ISAKMP Oakley attribute:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: OAKLEY_LIFE_TYPE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is OAKLEY_LIFE_SECONDS]<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ******parse ISAKMP Oakley attribute:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: OAKLEY_LIFE_DURATION<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ******parse ISAKMP Oakley attribute:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: OAKLEY_ENCRYPTION_ALGORITHM<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 5<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; [5 is OAKLEY_3DES_CBC]<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | ike_alg_enc_ok(ealg=5,key_len=0): blocksize=8, keyminlen=192, keydeflen=192, keymaxlen=192, ret=1<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ******parse ISAKMP Oakley attribute:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: OAKLEY_HASH_ALGORITHM<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is OAKLEY_MD5]<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ******parse ISAKMP Oakley attribute:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: OAKLEY_AUTHENTICATION_METHOD<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is OAKLEY_PRESHARED_KEY]<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | started looking for secret for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a> of kind PPK_PSK<br>Aug 13 20:08:08 1218638288 pluto[18847]: | actually looking for secret for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a> of kind PPK_PSK<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | 1: compared PSK <a href="http://172.16.1.2">172.16.1.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 2<br>Aug 13 20:08:08 1218638288 pluto[18847]: | 2: compared PSK <a href="http://172.16.2.2">172.16.2.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 6<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | best_match 0&gt;6 best=0x8108710 (line=7)<br>Aug 13 20:08:08 1218638288 pluto[18847]: | 1: compared PSK <a href="http://0.0.0.0">0.0.0.0</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 0<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | 2: compared PSK <a href="http://172.16.2.2">172.16.2.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 4<br>Aug 13 20:08:08 1218638288 pluto[18847]: | concluding with best_match=6 best=0x8108710 (lineno=7)<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | ******parse ISAKMP Oakley attribute:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: OAKLEY_GROUP_DESCRIPTION<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:08 1218638288 pluto[18847]: | Oakley Transform 0 accepted<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ****emit IPsec DOI SIT:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; IPsec DOI SIT: SIT_IDENTITY_ONLY<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ****emit ISAKMP Proposal Payload:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_ISAKMP<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 1<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | *****emit ISAKMP Transform Payload (ISAKMP):<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: KEY_IKE<br>Aug 13 20:08:08 1218638288 pluto[18847]: | emitting 24 raw bytes of attributes into ISAKMP Transform Payload (ISAKMP)<br>Aug 13 20:08:08 1218638288 pluto[18847]: | attributes&nbsp; 80 0b 00 01&nbsp; 80 0c 0e 10&nbsp; 80 01 00 05&nbsp; 80 02 00 01<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 80 03 00 01&nbsp; 80 04 00 02<br>Aug 13 20:08:08 1218638288 pluto[18847]: | emitting length of ISAKMP Transform Payload (ISAKMP): 32<br>Aug 13 20:08:08 1218638288 pluto[18847]: | emitting length of ISAKMP Proposal Payload: 40<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | emitting length of ISAKMP Security Association Payload: 52<br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***emit ISAKMP Vendor ID Payload:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_VID<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | emitting 16 raw bytes of DPP Vendor ID into ISAKMP Vendor ID Payload<br>Aug 13 20:08:08 1218638288 pluto[18847]: | DPP Vendor ID&nbsp; af ca d7 13&nbsp; 68 a1 f1 c9&nbsp; 6b 86 96 fc&nbsp; 77 57 01 00<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | emitting length of ISAKMP Vendor ID Payload: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | sender checking NAT-t: 1 and 109<br>Aug 13 20:08:08 1218638288 pluto[18847]: | out_vendorid(): sending [RFC 3947]<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | ***emit ISAKMP Vendor ID Payload:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:08 1218638288 pluto[18847]: | emitting 16 raw bytes of V_ID into ISAKMP Vendor ID Payload<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | V_ID&nbsp; 4a 13 1c 81&nbsp; 07 03 58 45&nbsp; 5c 57 28 f2&nbsp; 0e 95 45 2f<br>Aug 13 20:08:08 1218638288 pluto[18847]: | emitting length of ISAKMP Vendor ID Payload: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | emitting length of ISAKMP Message: 120<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | complete state transition with STF_OK<br>Aug 13 20:08:08 1218638288 pluto[18847]: &quot;nton-1&quot; #3: transition from state STATE_MAIN_R0 to state STATE_MAIN_R1<br>Aug 13 20:08:08 1218638288 pluto[18847]: | sending reply packet to <a href="http://172.16.1.2:500">172.16.1.2:500</a> (from port=500)<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | sending 120 bytes for STATE_MAIN_R0 through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 01 10 02 00&nbsp; 00 00 00 00&nbsp; 00 00 00 78&nbsp; 0d 00 00 34<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 00 00 00 01&nbsp; 00 00 00 01&nbsp; 00 00 00 28&nbsp; 00 01 00 01<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 00 00 00 20&nbsp; 00 01 00 00&nbsp; 80 0b 00 01&nbsp; 80 0c 0e 10<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 80 01 00 05&nbsp; 80 02 00 01&nbsp; 80 03 00 01&nbsp; 80 04 00 02<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 0d 00 00 14&nbsp; af ca d7 13&nbsp; 68 a1 f1 c9&nbsp; 6b 86 96 fc<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 77 57 01 00&nbsp; 00 00 00 14&nbsp; 4a 13 1c 81&nbsp; 07 03 58 45<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 5c 57 28 f2&nbsp; 0e 95 45 2f<br>Aug 13 20:08:08 1218638288 pluto[18847]: | inserting event EVENT_RETRANSMIT, timeout in 10 seconds for #3<br>Aug 13 20:08:08 1218638288 pluto[18847]: &quot;nton-1&quot; #3: STATE_MAIN_R1: sent MR1, expecting MI2<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | modecfg pull: noquirk policy:push not-client<br>Aug 13 20:08:08 1218638288 pluto[18847]: | phase 1 is done, looking for phase 1 to unpend<br>Aug 13 20:08:08 1218638288 pluto[18847]: | next event EVENT_RETRANSMIT in 10 seconds for #3<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp; <br>Aug 13 20:08:08 1218638288 pluto[18847]: | *received 220 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 04 10 02 00&nbsp; 00 00 00 00&nbsp; 00 00 00 dc&nbsp; 0a 00 00 84<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ea ce b8 24&nbsp; 56 80 ee 50&nbsp; 31 27 eb 37&nbsp; 69 a2 c1 86<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 55 cc ee 56&nbsp; 81 a3 fa fe&nbsp; 45 b7 6e df&nbsp; 7c 39 e7 3b<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; f9 be 4f 84&nbsp; dc 22 2a a2&nbsp; a4 ae 10 ca&nbsp; 40 71 bf 53<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce f1 fc 5c&nbsp; 60 f1 b7 bf&nbsp; c8 48 e3 2c&nbsp; 2c 26 e8 71<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 71 c2 ec 4e&nbsp; fa 34 2f 94&nbsp; 7e 73 1d 64&nbsp; 54 c1 d2 61<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 41 5d 0e 52&nbsp; e8 dc da b0&nbsp; 2c 6a a5 dd&nbsp; 70 d6 79 e6<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; e0 19 99 9b&nbsp; e5 dd dd 6a&nbsp; dd c2 e4 7c&nbsp; 1d 3f c1 eb<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ca ca 69 29&nbsp; 6f 1c 03 70&nbsp; 17 d8 7d bb&nbsp; 43 05 2f 7d<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 14 00 00 14&nbsp; 05 81 4b f9&nbsp; b3 30 f7 da&nbsp; 75 39 cf d9<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 92 13 9c 33&nbsp; 14 00 00 14&nbsp; 92 81 af b3&nbsp; a0 3c 04 da<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01&nbsp; 00 00 00 14&nbsp; db 81 74 0e<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>Aug 13 20:08:08 1218638288 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_KE<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_IDPROT<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: none<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 00 00 00 00<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 220<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_IDPROT (2)<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:08 1218638288 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:08 1218638288 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:08 1218638288 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000<br>Aug 13 20:08:08 1218638288 pluto[18847]: | state object #3 found, in STATE_MAIN_R1<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=4 and sd=0x80e5080 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Key Exchange Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONCE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 132<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=10 and sd=0x80e5254 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP Nonce Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NAT-D<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=20 and sd=0x80e5400 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP NAT-D Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NAT-D<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | np=20 and sd=0x80e5400 <br>Aug 13 20:08:08 1218638288 pluto[18847]: | ***parse ISAKMP NAT-D Payload:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:08 1218638288 pluto[18847]: | **emit ISAKMP Message:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_KE<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_IDPROT<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: none<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 00 00 00 00<br>Aug 13 20:08:08 1218638288 pluto[18847]: | DH public value received:<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ea ce b8 24&nbsp; 56 80 ee 50&nbsp; 31 27 eb 37&nbsp; 69 a2 c1 86<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 55 cc ee 56&nbsp; 81 a3 fa fe&nbsp; 45 b7 6e df&nbsp; 7c 39 e7 3b<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; f9 be 4f 84&nbsp; dc 22 2a a2&nbsp; a4 ae 10 ca&nbsp; 40 71 bf 53<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce f1 fc 5c&nbsp; 60 f1 b7 bf&nbsp; c8 48 e3 2c&nbsp; 2c 26 e8 71<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 71 c2 ec 4e&nbsp; fa 34 2f 94&nbsp; 7e 73 1d 64&nbsp; 54 c1 d2 61<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 41 5d 0e 52&nbsp; e8 dc da b0&nbsp; 2c 6a a5 dd&nbsp; 70 d6 79 e6<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; e0 19 99 9b&nbsp; e5 dd dd 6a&nbsp; dd c2 e4 7c&nbsp; 1d 3f c1 eb<br>
Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ca ca 69 29&nbsp; 6f 1c 03 70&nbsp; 17 d8 7d bb&nbsp; 43 05 2f 7d<br>Aug 13 20:08:08 1218638288 pluto[18847]: | inI2: checking NAT-t: 1 and 32<br>Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: hasher=0x80eab00(16)<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: icookie=<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: rcookie=<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: ip=&nbsp; ac 10 02 02<br>Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: port=500<br>Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: hash=&nbsp; 92 81 af b3&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>
Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: hasher=0x80eab00(16)<br>Aug 13 20:08:08 1218638288 pluto[18847]: | _natd_hash: icookie=<br>Aug 13 20:08:08 1218638288 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: rcookie=<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: ip=&nbsp; ac 10 01 02<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: port=500<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: hash=&nbsp; db 81 74 0e&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | NAT_TRAVERSAL hash=0 (me:0) (him:0)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | expected NAT-D(me):&nbsp; 92 81 af b3&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>Aug 13 20:08:09 1218638289 pluto[18847]: | expected NAT-D(him):<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; db 81 74 0e&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>Aug 13 20:08:09 1218638289 pluto[18847]: | received NAT-D:&nbsp; 92 81 af b3&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>Aug 13 20:08:09 1218638289 pluto[18847]: | NAT_TRAVERSAL hash=1 (me:1) (him:0)<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | expected NAT-D(me):&nbsp; 92 81 af b3&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>Aug 13 20:08:09 1218638289 pluto[18847]: | expected NAT-D(him):<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; db 81 74 0e&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | received NAT-D:&nbsp; db 81 74 0e&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>Aug 13 20:08:09 1218638289 pluto[18847]: | NAT_TRAVERSAL hash=2 (me:1) (him:1)<br>Aug 13 20:08:09 1218638289 pluto[18847]: &quot;nton-1&quot; #3: NAT-Traversal: Result using RFC 3947 (NAT-Traversal): no NAT detected<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | inserting event EVENT_NAT_T_KEEPALIVE, timeout in 20 seconds<br>Aug 13 20:08:09 1218638289 pluto[18847]: | helper -1 doing build_kenonce op id: 0<br>Aug 13 20:08:09 1218638289 pluto[18847]: | Local DH secret:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 6d d0 73 f7&nbsp; dd 3b 5f 2b&nbsp; a1 6a 48 57&nbsp; 70 b3 21 7a<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 99 2c 40 1c&nbsp; 1d fc d9 b9&nbsp; ac 71 e7 5f&nbsp; 7a f9 3e ea<br>Aug 13 20:08:09 1218638289 pluto[18847]: | Public DH value sent:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 34 a9 8e 8a&nbsp; e8 8a 0e 66&nbsp; 03 10 70 f9&nbsp; 91 c0 81 0e<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 5a 24 3e 26&nbsp; d2 c5 56 48&nbsp; 43 7f 2d c5&nbsp; 20 69 20 a4<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ac a4 00 0d&nbsp; ad ed 0f 2f&nbsp; 7f 11 cb 1c&nbsp; 1d d4 07 d9<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 4d 82 77 27&nbsp; de 25 48 74&nbsp; aa a9 3d 65&nbsp; a8 8e b9 20<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; bd 0e 71 65&nbsp; 05 64 58 50&nbsp; d4 a1 ae 7c&nbsp; b8 a9 12 db<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7c cd 42 84&nbsp; 5a 47 3f 26&nbsp; 05 a7 87 73&nbsp; 93 5a c8 2f<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 2e 33 2e 92&nbsp; 32 14 4f 6e&nbsp; 16 18 10 90&nbsp; 9d d0 8f e9<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; aa 73 aa 2b&nbsp; b6 cb c6 9b&nbsp; f0 32 95 91&nbsp; e0 90 97 15<br>Aug 13 20:08:09 1218638289 pluto[18847]: | Generated nonce:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 42 93 03 5c&nbsp; f3 a8 68 aa&nbsp; 51 6b 50 d2&nbsp; 9d aa f0 1c<br>Aug 13 20:08:09 1218638289 pluto[18847]: | main inI2_outR2: calculated ke+nonce, sending R2<br>Aug 13 20:08:09 1218638289 pluto[18847]: | processing connection nton-1<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | ***emit ISAKMP Key Exchange Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONCE<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting 128 raw bytes of keyex value into ISAKMP Key Exchange Payload<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | keyex value&nbsp; 34 a9 8e 8a&nbsp; e8 8a 0e 66&nbsp; 03 10 70 f9&nbsp; 91 c0 81 0e<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 5a 24 3e 26&nbsp; d2 c5 56 48&nbsp; 43 7f 2d c5&nbsp; 20 69 20 a4<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ac a4 00 0d&nbsp; ad ed 0f 2f&nbsp; 7f 11 cb 1c&nbsp; 1d d4 07 d9<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 4d 82 77 27&nbsp; de 25 48 74&nbsp; aa a9 3d 65&nbsp; a8 8e b9 20<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; bd 0e 71 65&nbsp; 05 64 58 50&nbsp; d4 a1 ae 7c&nbsp; b8 a9 12 db<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7c cd 42 84&nbsp; 5a 47 3f 26&nbsp; 05 a7 87 73&nbsp; 93 5a c8 2f<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 2e 33 2e 92&nbsp; 32 14 4f 6e&nbsp; 16 18 10 90&nbsp; 9d d0 8f e9<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; aa 73 aa 2b&nbsp; b6 cb c6 9b&nbsp; f0 32 95 91&nbsp; e0 90 97 15<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP Key Exchange Payload: 132<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | ***emit ISAKMP Nonce Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting 16 raw bytes of Nr into ISAKMP Nonce Payload<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | Nr&nbsp; 42 93 03 5c&nbsp; f3 a8 68 aa&nbsp; 51 6b 50 d2&nbsp; 9d aa f0 1c<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP Nonce Payload: 20<br>Aug 13 20:08:09 1218638289 pluto[18847]: | sending NATD payloads<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: hasher=0x80eab00(16)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: icookie=<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: rcookie=<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: ip=&nbsp; ac 10 01 02<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: port=500<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: hash=&nbsp; db 81 74 0e&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | ***emit ISAKMP NAT-D Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NAT-D<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting 16 raw bytes of NAT-D into ISAKMP NAT-D Payload<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | NAT-D&nbsp; db 81 74 0e&nbsp; 13 67 3f 77&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP NAT-D Payload: 20<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: hasher=0x80eab00(16)<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: icookie=<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: rcookie=<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: ip=&nbsp; ac 10 02 02<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: port=500<br>Aug 13 20:08:09 1218638289 pluto[18847]: | _natd_hash: hash=&nbsp; 92 81 af b3&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | ***emit ISAKMP NAT-D Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting 16 raw bytes of NAT-D into ISAKMP NAT-D Payload<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | NAT-D&nbsp; 92 81 af b3&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP NAT-D Payload: 20<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP Message: 220<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | started looking for secret for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a> of kind PPK_PSK<br>Aug 13 20:08:09 1218638289 pluto[18847]: | actually looking for secret for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a> of kind PPK_PSK<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | 1: compared PSK <a href="http://172.16.1.2">172.16.1.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 2<br>Aug 13 20:08:09 1218638289 pluto[18847]: | 2: compared PSK <a href="http://172.16.2.2">172.16.2.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 6<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | best_match 0&gt;6 best=0x8108710 (line=7)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | 1: compared PSK <a href="http://0.0.0.0">0.0.0.0</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | 2: compared PSK <a href="http://172.16.2.2">172.16.2.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 4<br>Aug 13 20:08:09 1218638289 pluto[18847]: | concluding with best_match=6 best=0x8108710 (lineno=7)<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | calc_dh_shared(): time elapsed (OAKLEY_GROUP_MODP1024): 3941 usec<br>Aug 13 20:08:09 1218638289 pluto[18847]: | DH shared secret:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 71 a3 7f ac&nbsp; 7a 4d 4b 92&nbsp; 81 62 7f 46&nbsp; 1f ab e3 4b<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 4f 54 71 ba&nbsp; c6 d8 5d 23&nbsp; 4d 78 01 7b&nbsp; 61 f6 e4 61<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 96 34 44 26&nbsp; 60 ab 8b 9a&nbsp; 06 a6 6e 13&nbsp; 78 4d 06 f0<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7b 57 dd fc&nbsp; 15 99 92 65&nbsp; a9 70 29 77&nbsp; 34 a8 b2 2d<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; f1 cb c9 88&nbsp; 10 53 d7 77&nbsp; cc 4d 55 ab&nbsp; 2a 02 10 10<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; cc de aa 0b&nbsp; 9b dd 07 c3&nbsp; 4b 22 2c e6&nbsp; ef d2 ea f6<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 21 d6 ce bb&nbsp; 83 8b ec 87&nbsp; f7 23 8d 0d&nbsp; d7 64 cd 56<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7f 7a 9c a0&nbsp; 3b 8f 93 f1&nbsp; 21 42 5a b8&nbsp; 3c ce 42 40<br>Aug 13 20:08:09 1218638289 pluto[18847]: | Skey inputs (PSK+NI+NR)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | ni:&nbsp;&nbsp; 05 81 4b f9&nbsp; b3 30 f7 da&nbsp; 75 39 cf d9&nbsp; 92 13 9c 33<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | nr:&nbsp;&nbsp; 42 93 03 5c&nbsp; f3 a8 68 aa&nbsp; 51 6b 50 d2&nbsp; 9d aa f0 1c<br>Aug 13 20:08:09 1218638289 pluto[18847]: | keyid:&nbsp;&nbsp; c6 29 ba 13&nbsp; 8a e9 b4 b5&nbsp; 24 63 c8 d8&nbsp; 05 4a 4e 90<br>Aug 13 20:08:09 1218638289 pluto[18847]: | DH_i:&nbsp; ea ce b8 24&nbsp; 56 80 ee 50&nbsp; 31 27 eb 37&nbsp; 69 a2 c1 86<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 55 cc ee 56&nbsp; 81 a3 fa fe&nbsp; 45 b7 6e df&nbsp; 7c 39 e7 3b<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; f9 be 4f 84&nbsp; dc 22 2a a2&nbsp; a4 ae 10 ca&nbsp; 40 71 bf 53<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce f1 fc 5c&nbsp; 60 f1 b7 bf&nbsp; c8 48 e3 2c&nbsp; 2c 26 e8 71<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 71 c2 ec 4e&nbsp; fa 34 2f 94&nbsp; 7e 73 1d 64&nbsp; 54 c1 d2 61<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 41 5d 0e 52&nbsp; e8 dc da b0&nbsp; 2c 6a a5 dd&nbsp; 70 d6 79 e6<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; e0 19 99 9b&nbsp; e5 dd dd 6a&nbsp; dd c2 e4 7c&nbsp; 1d 3f c1 eb<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ca ca 69 29&nbsp; 6f 1c 03 70&nbsp; 17 d8 7d bb&nbsp; 43 05 2f 7d<br>Aug 13 20:08:09 1218638289 pluto[18847]: | DH_r:&nbsp; 34 a9 8e 8a&nbsp; e8 8a 0e 66&nbsp; 03 10 70 f9&nbsp; 91 c0 81 0e<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 5a 24 3e 26&nbsp; d2 c5 56 48&nbsp; 43 7f 2d c5&nbsp; 20 69 20 a4<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ac a4 00 0d&nbsp; ad ed 0f 2f&nbsp; 7f 11 cb 1c&nbsp; 1d d4 07 d9<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 4d 82 77 27&nbsp; de 25 48 74&nbsp; aa a9 3d 65&nbsp; a8 8e b9 20<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; bd 0e 71 65&nbsp; 05 64 58 50&nbsp; d4 a1 ae 7c&nbsp; b8 a9 12 db<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7c cd 42 84&nbsp; 5a 47 3f 26&nbsp; 05 a7 87 73&nbsp; 93 5a c8 2f<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 2e 33 2e 92&nbsp; 32 14 4f 6e&nbsp; 16 18 10 90&nbsp; 9d d0 8f e9<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; aa 73 aa 2b&nbsp; b6 cb c6 9b&nbsp; f0 32 95 91&nbsp; e0 90 97 15<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | Skeyid:&nbsp;&nbsp;&nbsp; c6 29 ba 13&nbsp; 8a e9 b4 b5&nbsp; 24 63 c8 d8&nbsp; 05 4a 4e 90<br>Aug 13 20:08:09 1218638289 pluto[18847]: | Skeyid_d:&nbsp; 68 7e fb e4&nbsp; df 05 88 b5&nbsp; f5 7f ab 1a&nbsp; 8f 4b 7d ea<br>Aug 13 20:08:09 1218638289 pluto[18847]: | Skeyid_a:&nbsp; b4 26 e9 91&nbsp; df 30 b1 ca&nbsp; 9f e2 85 51&nbsp; 99 32 bc 8e<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | Skeyid_e:&nbsp; 1e d4 bc 8a&nbsp; 01 05 0a a7&nbsp; e2 60 67 3c&nbsp; 18 5e 59 4d<br>Aug 13 20:08:09 1218638289 pluto[18847]: | enc key:&nbsp; d0 f4 9a 55&nbsp; 6a 3c 8c c4&nbsp; 66 49 e6 77&nbsp; f1 04 70 f5<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 76 6b 38 dd&nbsp; b9 60 4e 07<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | IV:&nbsp; cc be 92 46&nbsp; c1 05 41 3f&nbsp; 98 3c bc 3d&nbsp; cf 50 c7 22<br>Aug 13 20:08:09 1218638289 pluto[18847]: | complete state transition with STF_OK<br>Aug 13 20:08:09 1218638289 pluto[18847]: &quot;nton-1&quot; #3: transition from state STATE_MAIN_R1 to state STATE_MAIN_R2<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | sending reply packet to <a href="http://172.16.1.2:500">172.16.1.2:500</a> (from port=500)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | sending 220 bytes for STATE_MAIN_R1 through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 04 10 02 00&nbsp; 00 00 00 00&nbsp; 00 00 00 dc&nbsp; 0a 00 00 84<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 34 a9 8e 8a&nbsp; e8 8a 0e 66&nbsp; 03 10 70 f9&nbsp; 91 c0 81 0e<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 5a 24 3e 26&nbsp; d2 c5 56 48&nbsp; 43 7f 2d c5&nbsp; 20 69 20 a4<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ac a4 00 0d&nbsp; ad ed 0f 2f&nbsp; 7f 11 cb 1c&nbsp; 1d d4 07 d9<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 4d 82 77 27&nbsp; de 25 48 74&nbsp; aa a9 3d 65&nbsp; a8 8e b9 20<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; bd 0e 71 65&nbsp; 05 64 58 50&nbsp; d4 a1 ae 7c&nbsp; b8 a9 12 db<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7c cd 42 84&nbsp; 5a 47 3f 26&nbsp; 05 a7 87 73&nbsp; 93 5a c8 2f<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 2e 33 2e 92&nbsp; 32 14 4f 6e&nbsp; 16 18 10 90&nbsp; 9d d0 8f e9<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; aa 73 aa 2b&nbsp; b6 cb c6 9b&nbsp; f0 32 95 91&nbsp; e0 90 97 15<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 14 00 00 14&nbsp; 42 93 03 5c&nbsp; f3 a8 68 aa&nbsp; 51 6b 50 d2<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 9d aa f0 1c&nbsp; 14 00 00 14&nbsp; db 81 74 0e&nbsp; 13 67 3f 77<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; e1 66 2a 0a&nbsp; e5 41 5c 4c&nbsp; 00 00 00 14&nbsp; 92 81 af b3<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; a0 3c 04 da&nbsp; 80 9a 27 5c&nbsp; ee d4 db 01<br>Aug 13 20:08:09 1218638289 pluto[18847]: | inserting event EVENT_RETRANSMIT, timeout in 10 seconds for #3<br>
Aug 13 20:08:09 1218638289 pluto[18847]: &quot;nton-1&quot; #3: STATE_MAIN_R2: sent MR2, expecting MI3<br>Aug 13 20:08:09 1218638289 pluto[18847]: | modecfg pull: noquirk policy:push not-client<br>Aug 13 20:08:09 1218638289 pluto[18847]: | phase 1 is done, looking for phase 1 to unpend<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | complete state transition with STF_INLINE<br>Aug 13 20:08:09 1218638289 pluto[18847]: | next event EVENT_RETRANSMIT in 10 seconds for #3<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp; <br>
Aug 13 20:08:09 1218638289 pluto[18847]: | *received 60 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 05 10 02 01&nbsp; 00 00 00 00&nbsp; 00 00 00 3c&nbsp; db 91 34 55<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 80 c5 48 26&nbsp; f0 31 e8 ae&nbsp; 91 51 2b 0b&nbsp; 8f 8a 68 98<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; f2 4a 78 6c&nbsp; 98 d0 80 b7&nbsp; c1 c7 5c 4a<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_ID<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_IDPROT<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 00 00 00 00<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 60<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_IDPROT (2)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:09 1218638289 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>Aug 13 20:08:09 1218638289 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:09 1218638289 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | state object #3 found, in STATE_MAIN_R2<br>Aug 13 20:08:09 1218638289 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:09 1218638289 pluto[18847]: | received encrypted packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a><br>
Aug 13 20:08:09 1218638289 pluto[18847]: | decrypting 32 bytes using algorithm OAKLEY_3DES_CBC<br>Aug 13 20:08:09 1218638289 pluto[18847]: | decrypted:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 08 00 00 0c&nbsp; 01 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 14<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 35 7d 0f 0d&nbsp; 0d 9a df bc&nbsp; b8 30 6d 4c&nbsp; fc c6 6a 64<br>Aug 13 20:08:09 1218638289 pluto[18847]: | next IV:&nbsp; 98 d0 80 b7&nbsp; c1 c7 5c 4a<br>Aug 13 20:08:09 1218638289 pluto[18847]: | np=5 and sd=(nil) <br>
Aug 13 20:08:09 1218638289 pluto[18847]: | ***parse ISAKMP Identification Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 12<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; ID type: ID_IPV4_ADDR<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI specific A: 0<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI specific B: 0<br>Aug 13 20:08:09 1218638289 pluto[18847]: | np=8 and sd=0x80e523c <br>
Aug 13 20:08:09 1218638289 pluto[18847]: | ***parse ISAKMP Hash Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>
Aug 13 20:08:09 1218638289 pluto[18847]: &quot;nton-1&quot; #3: Main mode peer ID is ID_IPV4_ADDR: &#39;<a href="http://172.16.1.2">172.16.1.2</a>&#39;<br>Aug 13 20:08:09 1218638289 pluto[18847]: | refine_connection: starting with nton-1<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; trusted_ca called with a=(empty) b=(empty)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | refine_connection: happy with starting point: nton-1<br>Aug 13 20:08:09 1218638289 pluto[18847]: | offered CA: &#39;%none&#39;<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | hashing 48 bytes of SA<br>Aug 13 20:08:09 1218638289 pluto[18847]: | authentication succeeded<br>Aug 13 20:08:09 1218638289 pluto[18847]: | thinking about whether to send my certificate:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; I have RSA key: OAKLEY_PRESHARED_KEY cert.type: CERT_NONE <br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; sendcert: CERT_ALWAYSSEND and I did not get a certificate request <br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; so do not send cert.<br>Aug 13 20:08:09 1218638289 pluto[18847]: &quot;nton-1&quot; #3: I did not send a certificate because I do not have one.<br>Aug 13 20:08:09 1218638289 pluto[18847]: | **emit ISAKMP Message:<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_ID<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_IDPROT<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 00 00 00 00<br>Aug 13 20:08:09 1218638289 pluto[18847]: | ***emit ISAKMP Identification Payload (IPsec DOI):<br>
Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; ID type: ID_IPV4_ADDR<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; Protocol ID: 0<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; port: 0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | emitting 4 raw bytes of my identity into ISAKMP Identification Payload (IPsec DOI)<br>Aug 13 20:08:09 1218638289 pluto[18847]: | my identity&nbsp; ac 10 02 02<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP Identification Payload (IPsec DOI): 12<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | hashing 48 bytes of SA<br>Aug 13 20:08:09 1218638289 pluto[18847]: | ***emit ISAKMP Hash Payload:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | emitting 16 raw bytes of HASH_R into ISAKMP Hash Payload<br>Aug 13 20:08:09 1218638289 pluto[18847]: | HASH_R&nbsp; 54 6f 9c 89&nbsp; e1 1b c9 f5&nbsp; 19 bb c9 26&nbsp; 97 e7 8b 93<br>Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP Hash Payload: 20<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | encrypting:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 08 00 00 0c&nbsp; 01 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 14<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 54 6f 9c 89&nbsp; e1 1b c9 f5&nbsp; 19 bb c9 26&nbsp; 97 e7 8b 93<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | IV:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 98 d0 80 b7&nbsp; c1 c7 5c 4a<br>Aug 13 20:08:09 1218638289 pluto[18847]: | encrypting using OAKLEY_3DES_CBC<br>Aug 13 20:08:09 1218638289 pluto[18847]: | next IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | emitting length of ISAKMP Message: 60<br>Aug 13 20:08:09 1218638289 pluto[18847]: | last encrypted block of Phase 1:<br>Aug 13 20:08:09 1218638289 pluto[18847]: |&nbsp;&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | complete state transition with STF_OK<br>Aug 13 20:08:09 1218638289 pluto[18847]: &quot;nton-1&quot; #3: transition from state STATE_MAIN_R2 to state STATE_MAIN_R3<br>Aug 13 20:08:09 1218638289 pluto[18847]: | sending reply packet to <a href="http://172.16.1.2:500">172.16.1.2:500</a> (from port=500)<br>
Aug 13 20:08:09 1218638289 pluto[18847]: | sending 60 bytes for STATE_MAIN_R2 through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 05 10 02 01&nbsp; 00 00 00 00&nbsp; 00 00 00 3c&nbsp; 4b 18 f7 43<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; c5 db e7 1b&nbsp; df 7e 7f 52&nbsp; 93 0a 93 36&nbsp; 69 23 41 71<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; a6 7f 4c e5&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | inserting event EVENT_SA_EXPIRE, timeout in 3600 seconds for #3<br>Aug 13 20:08:10 1218638290 pluto[18847]: &quot;nton-1&quot; #3: STATE_MAIN_R3: sent MR3, ISAKMP SA established {auth=OAKLEY_PRESHARED_KEY cipher=oakley_3des_cbc_192 prf=oakley_md5 group=modp1024}<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:10 1218638290 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000<br>Aug 13 20:08:10 1218638290 pluto[18847]: | state object #3 found, in STATE_MAIN_R3<br>
Aug 13 20:08:10 1218638290 pluto[18847]: &quot;nton-1&quot; #3: Dead Peer Detection (RFC 3706): enabled<br>Aug 13 20:08:10 1218638290 pluto[18847]: | state: 3 requesting event none to be deleted by dpd.c:160<br>Aug 13 20:08:10 1218638290 pluto[18847]: | inserting event EVENT_DPD, timeout in 30 seconds for #3<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | modecfg pull: noquirk policy:push not-client<br>Aug 13 20:08:10 1218638290 pluto[18847]: | phase 1 is done, looking for phase 1 to unpend<br>Aug 13 20:08:10 1218638290 pluto[18847]: | next event EVENT_SHUNT_SCAN in 9 seconds<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp; <br>Aug 13 20:08:10 1218638290 pluto[18847]: | *received 404 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 08 10 20 01&nbsp; 0e 72 3b 1e&nbsp; 00 00 01 94&nbsp; f5 bc c4 ea<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; a9 85 a2 54&nbsp; a3 46 e8 66&nbsp; 7a 4b 94 ad&nbsp; 63 fa 9b e9<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; c2 fd 89 b1&nbsp; 28 1e d5 05&nbsp; e9 a2 64 19&nbsp; 9b 92 fb 10<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 56 40 7a a3&nbsp; be 6b e5 46&nbsp; 48 e2 bd a8&nbsp; 2d d9 c9 68<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; a4 63 1f 69&nbsp; 26 14 96 04&nbsp; c3 b3 06 96&nbsp; bd fd 93 c8<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; a7 d2 63 42&nbsp; 99 c7 f7 f0&nbsp; 3a 3a bb b3&nbsp; 0e 59 2e 09<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 48 fd fa e6&nbsp; d2 f7 8f 80&nbsp; db 2a ca b0&nbsp; a0 98 10 73<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 44 5b e4 72&nbsp; c5 d2 6e a5&nbsp; 1a 3d 32 fc&nbsp; 32 66 ee cb<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; f4 17 80 03&nbsp; 94 56 a3 ee&nbsp; bd 57 47 b0&nbsp; aa b2 06 8d<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 32 2b 81 a2&nbsp; 55 27 b8 b6&nbsp; dc e8 3d 82&nbsp; b3 1d da 54<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 94 72 b7 d4&nbsp; 00 d9 22 ee&nbsp; 92 7d a1 cf&nbsp; b9 27 78 9b<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 57 aa 7c 9c&nbsp; 6f 41 ac 7f&nbsp; a6 5c 56 ce&nbsp; 7d c2 2b 2b<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 1a e6 a7 bb&nbsp; fc e8 8d 8d&nbsp; 60 bd a2 f1&nbsp; b1 6d cf 31<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; bf 9c 69 54&nbsp; f3 4f 29 e4&nbsp; c2 52 ff 73&nbsp; 8b 84 ea 00<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 36 43 c3 73&nbsp; 9a a0 1e 3f&nbsp; 2e 90 99 a9&nbsp; 02 7a 20 03<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; c2 5a 09 40&nbsp; d7 fb 83 bf&nbsp; 35 4c 76 06&nbsp; 7c 76 e0 cd<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 9f f8 b8 7d&nbsp; f8 99 bf 7a&nbsp; bc 1c 26 45&nbsp; 88 75 81 cd<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 9e 5d 65 6c&nbsp; eb 53 7b f3&nbsp; 86 b9 9d 96&nbsp; b0 e0 dd 9c<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 02 6f 66 71&nbsp; f6 9e f5 15&nbsp; 18 27 a7 e6&nbsp; 08 9c 12 e5<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 81 14 95 5f&nbsp; e5 9b 42 8f&nbsp; f1 45 dd f4&nbsp; 23 b1 69 cb<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; ee d7 2e d0&nbsp; ef d5 79 ce&nbsp; af 17 19 08&nbsp; 35 a1 6d e0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 3c ef 12 d8&nbsp; 32 cd cc 24&nbsp; 99 d2 65 50&nbsp; 8b 05 d2 d8<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 03 3d c0 45&nbsp; d4 af 9e c4&nbsp; 3a 82 56 55&nbsp; 4d e2 70 97<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; e2 2b d8 87&nbsp; 45 c2 84 f5&nbsp; 7c 0e 6c ba&nbsp; 76 30 0e 98<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 0f 67 50 3e<br>Aug 13 20:08:10 1218638290 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_QUICK<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 0e 72 3b 1e<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 404<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_QUICK (32)<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:10 1218638290 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer and cookies match on #3, provided msgid 0e723b1e vs 00000000<br>Aug 13 20:08:10 1218638290 pluto[18847]: | state object not found<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:10 1218638290 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000<br>Aug 13 20:08:10 1218638290 pluto[18847]: | state object #3 found, in STATE_MAIN_R3<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:10 1218638290 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | computed Phase 2 IV:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; a6 3a 8b 73&nbsp; 12 01 1a 23&nbsp; 1f 72 3e 44&nbsp; f0 ae bd 32<br>Aug 13 20:08:10 1218638290 pluto[18847]: | received encrypted packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a><br>
Aug 13 20:08:10 1218638290 pluto[18847]: | decrypting 376 bytes using algorithm OAKLEY_3DES_CBC<br>Aug 13 20:08:10 1218638290 pluto[18847]: | decrypted:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 01 00 00 14&nbsp; c8 08 9b 98&nbsp; 0e 48 d4 5c&nbsp; 22 e1 9d 31<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; fa ff f7 4a&nbsp; 0a 00 00 a6&nbsp; 00 00 00 01&nbsp; 00 00 00 01<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 02 00 00 7c&nbsp; 00 03 04 04&nbsp; 2a 8a b1 c4&nbsp; 03 00 00 1c<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 00 0c 00 00&nbsp; 80 03 00 02&nbsp; 80 04 00 01&nbsp; 80 01 00 01<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 80 02 0e 10&nbsp; 80 05 00 02&nbsp; 03 00 00 1c&nbsp; 01 0c 00 00<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 80 03 00 02&nbsp; 80 04 00 01&nbsp; 80 01 00 01&nbsp; 80 02 0e 10<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 80 05 00 01&nbsp; 03 00 00 1c&nbsp; 02 03 00 00&nbsp; 80 03 00 02<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 80 04 00 01&nbsp; 80 01 00 01&nbsp; 80 02 0e 10&nbsp; 80 05 00 02<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 00 00 00 1c&nbsp; 03 03 00 00&nbsp; 80 03 00 02&nbsp; 80 04 00 01<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 80 01 00 01&nbsp; 80 02 0e 10&nbsp; 80 05 00 01&nbsp; 00 00 00 1e<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 00 04 02 01&nbsp; 62 7f 00 00&nbsp; 00 14 00 02&nbsp; 00 00 80 04<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 00 01 80 01&nbsp; 00 01 80 02&nbsp; 0e 10 04 00&nbsp; 00 14 c9 15<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; f0 08 fc 4b&nbsp; a9 ad 9d 96&nbsp; 7d 7b 7d a2&nbsp; 10 3b 05 00<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 00 84 fb 26&nbsp; 8a 73 5b ea&nbsp; 9f 99 22 cc&nbsp; c7 1b 81 b0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; e6 e2 50 63&nbsp; 2a 27 4e 02&nbsp; d4 fc 03 18&nbsp; 3a 8f 65 16<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; db de 3c 2b&nbsp; e6 e0 1b 91&nbsp; 11 bd 2f 5f&nbsp; 9c 55 f1 8f<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 22 00 fe 70&nbsp; 34 13 3b 99&nbsp; 1d 99 e8 82&nbsp; 9e 5f 53 87<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 5e 6a d2 21&nbsp; d7 44 d1 b2&nbsp; 08 ec 69 ed&nbsp; 73 90 b5 53<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 11 f9 51 8e&nbsp; a8 db ba 03&nbsp; 6a 08 5a 04&nbsp; 96 b7 30 42<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 83 89 f4 c9&nbsp; 61 30 5e 96&nbsp; c2 bd 7f 2f&nbsp; ad e0 c8 75<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; cf ab 08 cf&nbsp; f5 48 79 fe&nbsp; 81 a3 04 21&nbsp; 15 d8 41 17<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; 27 c2 05 00&nbsp; 00 10 04 00&nbsp; 00 00 c0 a8&nbsp; 01 00 ff ff<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; ff 00 00 00&nbsp; 00 10 04 00&nbsp; 00 00 c0 a8&nbsp; 02 00 ff ff<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; ff 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:10 1218638290 pluto[18847]: | next IV:&nbsp; 76 30 0e 98&nbsp; 0f 67 50 3e<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | np=8 and sd=0x80e523c <br>Aug 13 20:08:10 1218638290 pluto[18847]: | ***parse ISAKMP Hash Payload:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_SA<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:10 1218638290 pluto[18847]: | np=1 and sd=0x80e4dcc <br>Aug 13 20:08:10 1218638290 pluto[18847]: | ***parse ISAKMP Security Association Payload:<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONCE<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 166<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:08:10 1218638290 pluto[18847]: | np=10 and sd=0x80e5254 <br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ***parse ISAKMP Nonce Payload:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_KE<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:10 1218638290 pluto[18847]: | np=4 and sd=0x80e5080 <br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ***parse ISAKMP Key Exchange Payload:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_ID<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 132<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | np=5 and sd=(nil) <br>Aug 13 20:08:10 1218638290 pluto[18847]: | ***parse ISAKMP Identification Payload (IPsec DOI):<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_ID<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 16<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; ID type: ID_IPV4_ADDR_SUBNET<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; Protocol ID: 0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; port: 0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | np=5 and sd=(nil) <br>Aug 13 20:08:10 1218638290 pluto[18847]: | ***parse ISAKMP Identification Payload (IPsec DOI):<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 16<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; ID type: ID_IPV4_ADDR_SUBNET<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; Protocol ID: 0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; port: 0<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | removing 6 bytes of padding<br>Aug 13 20:08:10 1218638290 pluto[18847]: | HASH(1) computed:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; c8 08 9b 98&nbsp; 0e 48 d4 5c&nbsp; 22 e1 9d 31&nbsp; fa ff f7 4a<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | peer client is subnet <a href="http://192.168.1.0/24">192.168.1.0/24</a><br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer client protocol/port is 0/0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | our client is subnet <a href="http://192.168.2.0/24">192.168.2.0/24</a><br>
Aug 13 20:08:10 1218638290 pluto[18847]: | our client protocol/port is 0/0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | find_client_connection starting with nton-1<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; looking for <a href="http://192.168.2.0/24:0/0">192.168.2.0/24:0/0</a> -&gt; <a href="http://192.168.1.0/24:0/0">192.168.1.0/24:0/0</a><br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp; concrete checking against sr#0 <a href="http://192.168.2.0/24">192.168.2.0/24</a> -&gt; <a href="http://192.168.1.0/24">192.168.1.0/24</a><br>Aug 13 20:08:10 1218638290 pluto[18847]: | duplicating state object #3<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | creating state object #4 at 0x8109b60<br>Aug 13 20:08:10 1218638290 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:10 1218638290 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>Aug 13 20:08:10 1218638290 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:10 1218638290 pluto[18847]: | inserting event EVENT_SO_DISCARD, timeout in 0 seconds for #4<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ****parse IPsec DOI SIT:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; IPsec DOI SIT: SIT_IDENTITY_ONLY<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ****parse ISAKMP Proposal Payload:<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_P<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 124<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_IPSEC_ESP<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 4<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 4<br>Aug 13 20:08:10 1218638290 pluto[18847]: | parsing 4 raw bytes of ISAKMP Proposal Payload into SPI<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | SPI&nbsp; 2a 8a b1 c4<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ****parse ISAKMP Proposal Payload:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 30<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_IPCOMP<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 2<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 1<br>Aug 13 20:08:10 1218638290 pluto[18847]: | parsing 2 raw bytes of ISAKMP Proposal Payload into CPI<br>Aug 13 20:08:10 1218638290 pluto[18847]: | CPI&nbsp; 62 7f<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_T<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_AES<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is AUTH_ALGORITHM_HMAC_SHA1]<br>Aug 13 20:08:10 1218638290 pluto[18847]: | kernel_alg_esp_enc_ok(12,0): alg_id=12, alg_ivlen=128, alg_minbits=128, alg_maxbits=256, res=0, ret=1<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=12, keylen=16<br>Aug 13 20:08:10 1218638290 pluto[18847]: &quot;nton-1&quot; #4: IPsec Transform [ESP_AES (128), AUTH_ALGORITHM_HMAC_SHA1] refused due to strict flag<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_T<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 1<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_AES<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:10 1218638290 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:10 1218638290 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is AUTH_ALGORITHM_HMAC_MD5]<br>Aug 13 20:08:10 1218638290 pluto[18847]: | kernel_alg_esp_enc_ok(12,0): alg_id=12, alg_ivlen=128, alg_minbits=128, alg_maxbits=256, res=0, ret=1<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=12, keylen=16<br>Aug 13 20:08:10 1218638290 pluto[18847]: &quot;nton-1&quot; #4: IPsec Transform [ESP_AES (128), AUTH_ALGORITHM_HMAC_MD5] refused due to strict flag<br>
Aug 13 20:08:10 1218638290 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_T<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_3DES<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is AUTH_ALGORITHM_HMAC_SHA1]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_ok(3,0): alg_id=3, alg_ivlen=64, alg_minbits=192, alg_maxbits=192, res=0, ret=1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=3, keylen=24<br>Aug 13 20:08:11 1218638291 pluto[18847]: &quot;nton-1&quot; #4: IPsec Transform [ESP_3DES (192), AUTH_ALGORITHM_HMAC_SHA1] refused due to strict flag<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 3<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_3DES<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is AUTH_ALGORITHM_HMAC_MD5]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_ok(3,0): alg_id=3, alg_ivlen=64, alg_minbits=192, alg_maxbits=192, res=0, ret=1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=3, keylen=24<br>Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (COMP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: IPCOMP_DEFLAT<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | DH public value received:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; fb 26 8a 73&nbsp; 5b ea 9f 99&nbsp; 22 cc c7 1b&nbsp; 81 b0 e6 e2<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 50 63 2a 27&nbsp; 4e 02 d4 fc&nbsp; 03 18 3a 8f&nbsp; 65 16 db de<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 3c 2b e6 e0&nbsp; 1b 91 11 bd&nbsp; 2f 5f 9c 55&nbsp; f1 8f 22 00<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; fe 70 34 13&nbsp; 3b 99 1d 99&nbsp; e8 82 9e 5f&nbsp; 53 87 5e 6a<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; d2 21 d7 44&nbsp; d1 b2 08 ec&nbsp; 69 ed 73 90&nbsp; b5 53 11 f9<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 51 8e a8 db&nbsp; ba 03 6a 08&nbsp; 5a 04 96 b7&nbsp; 30 42 83 89<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; f4 c9 61 30&nbsp; 5e 96 c2 bd&nbsp; 7f 2f ad e0&nbsp; c8 75 cf ab<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 08 cf f5 48&nbsp; 79 fe 81 a3&nbsp; 04 21 15 d8&nbsp; 41 17 27 c2<br>Aug 13 20:08:11 1218638291 pluto[18847]: | helper -1 doing build_kenonce op id: 0<br>Aug 13 20:08:11 1218638291 pluto[18847]: | Local DH secret:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; aa 13 b9 17&nbsp; 20 2d 6a 8a&nbsp; 0b 72 f1 72&nbsp; 23 fe 61 2c<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 9b 0b b6 a2&nbsp; 12 ce c1 9d&nbsp; 9d f3 69 42&nbsp; 8c 73 d6 c0<br>Aug 13 20:08:11 1218638291 pluto[18847]: | Public DH value sent:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; a1 05 7b 96&nbsp; 9a 03 ee ee&nbsp; 62 76 f7 aa&nbsp; 9c ca 81 95<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 1f e9 d7 a7&nbsp; 3a a8 ad f4&nbsp; 30 05 65 df&nbsp; 58 6d de 67<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 43 cd dd e3&nbsp; 8f a6 3d 6b&nbsp; 8e 8e 93 44&nbsp; 3c df f6 97<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; f9 f0 58 25&nbsp; f4 85 ff d9&nbsp; 93 5f 43 04&nbsp; 05 e9 2e f9<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 57 d7 ad 3a&nbsp; fd ce ca 78&nbsp; ef 28 dd 6a&nbsp; ea ae 62 bb<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 58 33 21 1c&nbsp; e7 f7 6b bd&nbsp; 42 eb 20 d0&nbsp; 11 94 55 dc<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; f5 2e 52 d8&nbsp; 8b 76 4a 1e&nbsp; 15 e6 71 66&nbsp; 78 47 4c 5f<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; de c9 07 9b&nbsp; a1 ed 55 72&nbsp; 3f 3e 12 76&nbsp; c6 d4 69 36<br>Aug 13 20:08:11 1218638291 pluto[18847]: | Generated nonce:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; b8 7b 62 b9&nbsp; 80 93 fc 1c&nbsp; 63 f4 4a 62&nbsp; e1 83 eb 75<br>Aug 13 20:08:11 1218638291 pluto[18847]: | quick inI1_outR1: calculated ke+nonce, sending R1<br>Aug 13 20:08:11 1218638291 pluto[18847]: | processing connection nton-1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | **emit ISAKMP Message:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_QUICK<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 0e 72 3b 1e<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ***emit ISAKMP Hash Payload:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_SA<br>Aug 13 20:08:11 1218638291 pluto[18847]: | emitting 16 zero bytes of HASH into ISAKMP Hash Payload<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | emitting length of ISAKMP Hash Payload: 20<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ***emit ISAKMP Security Association Payload:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONCE<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ****parse IPsec DOI SIT:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; IPsec DOI SIT: SIT_IDENTITY_ONLY<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ****parse ISAKMP Proposal Payload:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_P<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 124<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_IPSEC_ESP<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 4<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 4<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | parsing 4 raw bytes of ISAKMP Proposal Payload into SPI<br>Aug 13 20:08:11 1218638291 pluto[18847]: | SPI&nbsp; 2a 8a b1 c4<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ****parse ISAKMP Proposal Payload:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 30<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_IPCOMP<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: | parsing 2 raw bytes of ISAKMP Proposal Payload into CPI<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | CPI&nbsp; 62 7f<br>Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_T<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_AES<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is AUTH_ALGORITHM_HMAC_SHA1]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_ok(12,0): alg_id=12, alg_ivlen=128, alg_minbits=128, alg_maxbits=256, res=0, ret=1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=12, keylen=16<br>Aug 13 20:08:11 1218638291 pluto[18847]: &quot;nton-1&quot; #4: IPsec Transform [ESP_AES (128), AUTH_ALGORITHM_HMAC_SHA1] refused due to strict flag<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_T<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_AES<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is AUTH_ALGORITHM_HMAC_MD5]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_ok(12,0): alg_id=12, alg_ivlen=128, alg_minbits=128, alg_maxbits=256, res=0, ret=1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=12, keylen=16<br>Aug 13 20:08:11 1218638291 pluto[18847]: &quot;nton-1&quot; #4: IPsec Transform [ESP_AES (128), AUTH_ALGORITHM_HMAC_MD5] refused due to strict flag<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_T<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_3DES<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is AUTH_ALGORITHM_HMAC_SHA1]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_ok(3,0): alg_id=3, alg_ivlen=64, alg_minbits=192, alg_maxbits=192, res=0, ret=1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=3, keylen=24<br>Aug 13 20:08:11 1218638291 pluto[18847]: &quot;nton-1&quot; #4: IPsec Transform [ESP_3DES (192), AUTH_ALGORITHM_HMAC_SHA1] refused due to strict flag<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 28<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 3<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_3DES<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: GROUP_DESCRIPTION<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 2<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [2 is OAKLEY_GROUP_MODP1024]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: AUTH_ALGORITHM<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is AUTH_ALGORITHM_HMAC_MD5]<br>Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_ok(3,0): alg_id=3, alg_ivlen=64, alg_minbits=192, alg_maxbits=192, res=0, ret=1<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | kernel_alg_esp_enc_keylen():alg_id=3, keylen=24<br>Aug 13 20:08:11 1218638291 pluto[18847]: | *****parse ISAKMP Transform Payload (COMP):<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: IPCOMP_DEFLAT<br>Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>
Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: ENCAPSULATION_MODE<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is ENCAPSULATION_MODE_TUNNEL]<br>
Aug 13 20:08:11 1218638291 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:11 1218638291 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_TYPE<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 1<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; [1 is SA_LIFE_TYPE_SECONDS]<br>Aug 13 20:08:12 1218638292 pluto[18847]: | ******parse ISAKMP IPsec DOI attribute:<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; af+type: SA_LIFE_DURATION<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; length/value: 3600<br>Aug 13 20:08:12 1218638292 pluto[18847]: | ****emit IPsec DOI SIT:<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; IPsec DOI SIT: SIT_IDENTITY_ONLY<br>Aug 13 20:08:12 1218638292 pluto[18847]: | ****emit ISAKMP Proposal Payload:<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_P<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_IPSEC_ESP<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 4<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 1<br>Aug 13 20:08:12 1218638292 pluto[18847]: | generate SPI:&nbsp; 9c e4 47 78<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 4 raw bytes of SPI into ISAKMP Proposal Payload<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | SPI&nbsp; 9c e4 47 78<br>Aug 13 20:08:12 1218638292 pluto[18847]: | *****emit ISAKMP Transform Payload (ESP):<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 3<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: ESP_3DES<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 20 raw bytes of attributes into ISAKMP Transform Payload (ESP)<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | attributes&nbsp; 80 03 00 02&nbsp; 80 04 00 01&nbsp; 80 01 00 01&nbsp; 80 02 0e 10<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 80 05 00 01<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Transform Payload (ESP): 28<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Proposal Payload: 40<br>Aug 13 20:08:12 1218638292 pluto[18847]: | ****emit ISAKMP Proposal Payload:<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; proposal number: 0<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: PROTO_IPCOMP<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 2<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; number of transforms: 1<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 2 raw bytes of CPI into ISAKMP Proposal Payload<br>Aug 13 20:08:12 1218638292 pluto[18847]: | CPI&nbsp; 20 9e<br>Aug 13 20:08:12 1218638292 pluto[18847]: | *****emit ISAKMP Transform Payload (COMP):<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform number: 0<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; transform ID: IPCOMP_DEFLAT<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 12 raw bytes of attributes into ISAKMP Transform Payload (COMP)<br>Aug 13 20:08:12 1218638292 pluto[18847]: | attributes&nbsp; 80 04 00 01&nbsp; 80 01 00 01&nbsp; 80 02 0e 10<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Transform Payload (COMP): 20<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Proposal Payload: 30<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Security Association Payload: 82<br>Aug 13 20:08:12 1218638292 pluto[18847]: &quot;nton-1&quot; #4: responding to Quick Mode {msgid:1e3b720e}<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | ***emit ISAKMP Nonce Payload:<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_KE<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 16 raw bytes of Nr into ISAKMP Nonce Payload<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | Nr&nbsp; b8 7b 62 b9&nbsp; 80 93 fc 1c&nbsp; 63 f4 4a 62&nbsp; e1 83 eb 75<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Nonce Payload: 20<br>Aug 13 20:08:12 1218638292 pluto[18847]: | ***emit ISAKMP Key Exchange Payload:<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_ID<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 128 raw bytes of keyex value into ISAKMP Key Exchange Payload<br>Aug 13 20:08:12 1218638292 pluto[18847]: | keyex value&nbsp; a1 05 7b 96&nbsp; 9a 03 ee ee&nbsp; 62 76 f7 aa&nbsp; 9c ca 81 95<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 1f e9 d7 a7&nbsp; 3a a8 ad f4&nbsp; 30 05 65 df&nbsp; 58 6d de 67<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 43 cd dd e3&nbsp; 8f a6 3d 6b&nbsp; 8e 8e 93 44&nbsp; 3c df f6 97<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; f9 f0 58 25&nbsp; f4 85 ff d9&nbsp; 93 5f 43 04&nbsp; 05 e9 2e f9<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 57 d7 ad 3a&nbsp; fd ce ca 78&nbsp; ef 28 dd 6a&nbsp; ea ae 62 bb<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 58 33 21 1c&nbsp; e7 f7 6b bd&nbsp; 42 eb 20 d0&nbsp; 11 94 55 dc<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; f5 2e 52 d8&nbsp; 8b 76 4a 1e&nbsp; 15 e6 71 66&nbsp; 78 47 4c 5f<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; de c9 07 9b&nbsp; a1 ed 55 72&nbsp; 3f 3e 12 76&nbsp; c6 d4 69 36<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting length of ISAKMP Key Exchange Payload: 132<br>Aug 13 20:08:12 1218638292 pluto[18847]: | started looking for secret for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a> of kind PPK_PSK<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | actually looking for secret for 172.16.2.2-&gt;<a href="http://172.16.1.2">172.16.1.2</a> of kind PPK_PSK<br>Aug 13 20:08:12 1218638292 pluto[18847]: | 1: compared PSK <a href="http://172.16.1.2">172.16.1.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 2<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | 2: compared PSK <a href="http://172.16.2.2">172.16.2.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 6<br>Aug 13 20:08:12 1218638292 pluto[18847]: | best_match 0&gt;6 best=0x8108710 (line=7)<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | 1: compared PSK <a href="http://0.0.0.0">0.0.0.0</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 0<br>Aug 13 20:08:12 1218638292 pluto[18847]: | 2: compared PSK <a href="http://172.16.2.2">172.16.2.2</a> to <a href="http://172.16.2.2">172.16.2.2</a> / <a href="http://172.16.1.2">172.16.1.2</a> -&gt; 4<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | concluding with best_match=6 best=0x8108710 (lineno=7)<br>Aug 13 20:08:12 1218638292 pluto[18847]: | calc_dh_shared(): time elapsed (OAKLEY_GROUP_MODP1024): 3667 usec<br>Aug 13 20:08:12 1218638292 pluto[18847]: | DH shared secret:<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 2e b1 29 91&nbsp; 07 49 31 e0&nbsp; 39 dd 29 fb&nbsp; 8c db 75 ac<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; c3 a4 8e ee&nbsp; af 46 e8 c9&nbsp; 4a e7 1e 3b&nbsp; 49 d0 d1 a5<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 6c 9f ee 0a&nbsp; 91 2d c3 ce&nbsp; 71 37 ff ef&nbsp; 9f d9 48 f6<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 27 78 bb 60&nbsp; 57 1b 49 dd&nbsp; 53 78 a0 e1&nbsp; 7e b6 cd 27<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; cc 7e 75 58&nbsp; d8 5f cc d8&nbsp; 59 78 b5 91&nbsp; dc 52 f8 28<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 2a 96 44 f2&nbsp; 1a 5f 32 d5&nbsp; 3f e5 ac bc&nbsp; fb a1 c6 5f<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; a7 ec 19 5c&nbsp; 26 5a a8 e0&nbsp; 8c 7b 32 90&nbsp; 59 5c c0 d2<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 88 71 4d 4a&nbsp; 20 25 89 9a&nbsp; d9 f5 64 24&nbsp; 52 c0 3f 77<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 16 raw bytes of IDci into ISAKMP Message<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | IDci&nbsp; 05 00 00 10&nbsp; 04 00 00 00&nbsp; c0 a8 01 00&nbsp; ff ff ff 00<br>Aug 13 20:08:12 1218638292 pluto[18847]: | emitting 16 raw bytes of IDcr into ISAKMP Message<br>Aug 13 20:08:12 1218638292 pluto[18847]: | IDcr&nbsp; 00 00 00 10&nbsp; 04 00 00 00&nbsp; c0 a8 02 00&nbsp; ff ff ff 00<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | HASH(2) computed:<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; bb 53 7e a2&nbsp; 84 ed 38 18&nbsp; df 02 86 3c&nbsp; 37 d6 8d 4a<br>Aug 13 20:08:12 1218638292 pluto[18847]: | compute_proto_keymat:needed_len (after ESP enc)=24<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | compute_proto_keymat:needed_len (after ESP auth)=40<br>Aug 13 20:08:12 1218638292 pluto[18847]: | KEYMAT computed:<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; d1 9c 0b 1b&nbsp; 75 85 8f 4b&nbsp; 76 61 f2 23&nbsp; 53 94 ee 0a<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; e6 b8 83 54&nbsp; 4d 99 19 67&nbsp; 65 9e 58 f5&nbsp; 6f c6 5d ac<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 9e 12 82 88&nbsp; a1 9e 9d 97<br>Aug 13 20:08:12 1218638292 pluto[18847]: | Peer KEYMAT computed:<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 8d e9 43 04&nbsp; 6b 45 f9 d2&nbsp; 0c 9a f6 db&nbsp; 5a ac 0e 8e<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 9b 63 e9 c8&nbsp; ac 90 75 6e&nbsp; 9e 8a 9d 34&nbsp; 29 68 48 e5<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 71 dd bc bd&nbsp; 8c 51 28 bf<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | route owner of &quot;nton-1&quot; fail erouted: self<br>Aug 13 20:08:12 1218638292 pluto[18847]: | install_inbound_ipsec_sa() checking if we can route<br>Aug 13 20:08:12 1218638292 pluto[18847]: | route owner of &quot;nton-1&quot; fail erouted: self; eroute owner: self<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | could_route called for nton-1 (kind=CK_PERMANENT)<br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfdda700 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfdda700 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=00001003 replay=0 sa_state=1 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x810a108 allocated 88 bytes, &amp;(extensions[0])=0p0xbfdda8b0 <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=9(IPIP), len=11, res=0, seq=20, pid=18847. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 3(add). <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0p0x810a118 with parser pfkey_sa_parse. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001003 replay=0 state=1 auth=0 encrypt=0 flags=0 ref=-1. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0p0x810a130 with parser pfkey_address_parse. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x810a148 with parser pfkey_address_parse. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | finish_pfkey_msg: SADB_ADD message 20 for Add SA <a href="mailto:tun.1003@172.16.1.2">tun.1003@172.16.1.2</a><br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 02 03 00 09&nbsp; 0b 00 00 00&nbsp; 14 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 10 03&nbsp; 00 01 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 02 02<br>Aug 13 20:08:12 1218638292 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_get: SADB_ADD message 20<br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfdda700 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfdda700 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=0000209e replay=0 sa_state=1 auth=0 encrypt=2 flags=0 <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x810a108 allocated 88 bytes, &amp;(extensions[0])=0p0xbfdda8b0 <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=10(COMP), len=11, res=0, seq=21, pid=18847. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 3(add). <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0p0x810a118 with parser pfkey_sa_parse. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000209e replay=0 state=1 auth=0 encrypt=2 flags=0 ref=-1. <br>
Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:12 1218638292 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0p0x810a130 with parser pfkey_address_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x810a148 with parser pfkey_address_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | finish_pfkey_msg: SADB_ADD message 21 for Add SA <a href="mailto:comp.209e@172.16.2.2">comp.209e@172.16.2.2</a><br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 02 03 00 0a&nbsp; 0b 00 00 00&nbsp; 15 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 20 9e&nbsp; 00 01 00 02&nbsp; 00 00 00 00<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 02 02<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_get: SADB_ADD message 21<br>
Aug 13 20:08:13 1218638293 pluto[18847]: | looking for alg with transid: 3 keylen: 0 auth: 1 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 11 keylen: 0 auth: 1 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 11 keylen: 0 auth: 2 <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 2 keylen: 8 auth: 0 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 2 keylen: 8 auth: 1 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 2 keylen: 8 auth: 2 <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 3 keylen: 24 auth: 0 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | checking transid: 3 keylen: 24 auth: 1 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfdda700 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p(nil). <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfdda700 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p0x8109710. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=9ce44778 replay=64 sa_state=1 auth=2 encrypt=3 flags=0 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_key_build: <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_key_build: <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x810a150 allocated 144 bytes, &amp;(extensions[0])=0p0xbfdda8b0 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[8] (type=8) <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 32 bytes from extensions[9] (type=9) <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=78001ffb, seen=00000363, required=00000063. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=3(ESP), len=18, res=0, seq=22, pid=18847. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 3(ESP) conversion to proto gives 50 for msg_type 3(add). <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=16 <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=16. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=16 ext_type=1(security-association) ext_len=3 parsing ext 0p0x810a160 with parser pfkey_sa_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=9ce44778 replay=64 state=1 auth=2 encrypt=3 flags=0 ref=-1. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=13. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 ext_type=5(source-address) ext_len=3 parsing ext 0p0x810a178 with parser pfkey_address_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x810a190 with parser pfkey_address_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=8(authentication-key) remain=7. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=7 ext_type=8(authentication-key) ext_len=3 parsing ext 0p0x810a1a8 with parser pfkey_key_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_key_parse: success, found len=3 exttype=8(authentication-key) bits=128 reserved=0. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 8(authentication-key) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=9(cipher-key) remain=4. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=4 ext_type=9(cipher-key) ext_len=4 parsing ext 0p0x810a1c0 with parser pfkey_key_parse. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_key_parse: success, found len=4 exttype=9(cipher-key) bits=192 reserved=0. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 9(cipher-key) parsed. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000363, required=00000063. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | finish_pfkey_msg: SADB_ADD message 22 for Add SA <a href="mailto:esp.9ce44778@172.16.2.2">esp.9ce44778@172.16.2.2</a><br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 02 03 00 03&nbsp; 12 00 00 00&nbsp; 16 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 9c e4 47 78&nbsp; 40 01 02 03&nbsp; 00 00 00 00<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 02 02<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; 03 00 08 00&nbsp; 80 00 00 00<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 65 9e 58 f5&nbsp; 6f c6 5d ac&nbsp; 9e 12 82 88&nbsp; a1 9e 9d 97<br>
Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 04 00 09 00&nbsp; c0 00 00 00&nbsp; d1 9c 0b 1b&nbsp; 75 85 8f 4b<br>Aug 13 20:08:13 1218638293 pluto[18847]: |&nbsp;&nbsp; 76 61 f2 23&nbsp; 53 94 ee 0a&nbsp; e6 b8 83 54&nbsp; 4d 99 19 67<br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_get: SADB_ADD message 22<br>
Aug 13 20:08:13 1218638293 pluto[18847]: | add inbound eroute <a href="http://192.168.1.0/24:0">192.168.1.0/24:0</a> --0-&gt; <a href="http://192.168.2.0/24:0">192.168.2.0/24:0</a> =&gt; <a href="mailto:tun.1003@172.16.2.2">tun.1003@172.16.2.2</a> (raw_eroute)<br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfdda5a0 pfkey_ext=0p0xbfdda890 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfdda5a0 pfkey_ext=0p0xbfdda890 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=00001003 replay=0 sa_state=0 auth=0 encrypt=0 flags=8 <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:13 1218638293 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=21 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://192.168.1.0:0">192.168.1.0:0</a>. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=22 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://192.168.2.0:0">192.168.2.0:0</a>. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=23 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://255.255.255.0:0">255.255.255.0:0</a>. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=24 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://255.255.255.0:0">255.255.255.0:0</a>. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x810a188 allocated 184 bytes, &amp;(extensions[0])=0p0xbfdda890 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[21] (type=21) <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[22] (type=22) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[23] (type=23) <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[24] (type=24) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=05e00c63, seen=01e00063, required=01e00043. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=14(x-addflow(eroute)), errno=0, satype=9(IPIP), len=23, res=0, seq=23, pid=18847. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 14(x-addflow(eroute)). <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=21 <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=05e00c63, required=01e00043. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=21. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=21 ext_type=1(security-association) ext_len=3 parsing ext 0p0x810a198 with parser pfkey_sa_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001003 replay=0 state=0 auth=0 encrypt=0 flags=8 ref=-1. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=18. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=18 ext_type=5(source-address) ext_len=3 parsing ext 0p0x810a1b0 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=15. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=15 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x810a1c8 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=21(X-source-flow-address) remain=12. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=12 ext_type=21(X-source-flow-address) ext_len=3 parsing ext 0p0x810a1e0 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=21(X-source-flow-address) family=2(AF_INET) address=<a href="http://192.168.1.0">192.168.1.0</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 21(X-source-flow-address) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=22(X-dest-flow-address) remain=9. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 ext_type=22(X-dest-flow-address) ext_len=3 parsing ext 0p0x810a1f8 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=22(X-dest-flow-address) family=2(AF_INET) address=<a href="http://192.168.2.0">192.168.2.0</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 22(X-dest-flow-address) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=23(X-source-mask) remain=6. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=23(X-source-mask) ext_len=3 parsing ext 0p0x810a210 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=23(X-source-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 23(X-source-mask) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=24(X-dest-mask) remain=3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=24(X-dest-mask) ext_len=3 parsing ext 0p0x810a228 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=24(X-dest-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 24(X-dest-mask) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=05e00c63, seen=01e00063, required=01e00043. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | finish_pfkey_msg: SADB_X_ADDFLOW message 23 for flow <a href="mailto:tun.1003@172.16.2.2">tun.1003@172.16.2.2</a><br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 02 0e 00 09&nbsp; 17 00 00 00&nbsp; 17 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 10 03&nbsp; 00 00 00 00&nbsp; 08 00 00 00<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 02 02<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; 03 00 15 00&nbsp; 00 00 00 00<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; c0 a8 01 00&nbsp; 28 6e df bf&nbsp; aa b9 f7 b7<br>
Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 03 00 16 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; c0 a8 02 00<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 28 6e df bf&nbsp; aa b9 f7 b7&nbsp; 03 00 17 00&nbsp; 00 00 00 00<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ff ff ff 00&nbsp; 03 31 36 30&nbsp; aa a8 dd bf<br>
Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 03 00 18 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ff ff ff 00<br>Aug 13 20:08:14 1218638294 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 2d a8 dd bf<br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_get: SADB_X_ADDFLOW message 23<br>
Aug 13 20:08:14 1218638294 pluto[18847]: | grouping <a href="mailto:unk0.209e@172.16.2.2">unk0.209e@172.16.2.2</a> and <a href="mailto:unk0.1003@172.16.2.2">unk0.1003@172.16.2.2</a><br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfdda780 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p(nil). <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfdda780 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p0x8109710. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=00001003 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_build: <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=0000209e replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x810a128 allocated 120 bytes, &amp;(extensions[0])=0p0xbfdda8b0 <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=9(IPIP), len=15, res=0, seq=24, pid=18847. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 13(x-groupsa). <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0p0x810a138 with parser pfkey_sa_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001003 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x810a150 with parser pfkey_address_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0p0x810a168 with parser pfkey_x_satype_parse. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: enter <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=10(COMP) res=0,0,0. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0p0x810a170 with parser pfkey_sa_parse. <br>
Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=0000209e replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:14 1218638294 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0p0x810a188 with parser pfkey_address_parse. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | finish_pfkey_msg: SADB_X_GRPSA message 24 for group <a href="mailto:unk0.1003@172.16.2.2">unk0.1003@172.16.2.2</a><br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 02 0d 00 09&nbsp; 0f 00 00 00&nbsp; 18 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 10 03&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 06 00&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 01 00 12 00&nbsp; 0a 00 00 00&nbsp; 03 00 13 00&nbsp; 00 00 20 9e<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; ff ff ff ff&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 03 00 14 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 02 02<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_get: SADB_X_GRPSA message 24<br>Aug 13 20:08:15 1218638295 pluto[18847]: | grouping <a href="mailto:unk0.9ce44778@172.16.2.2">unk0.9ce44778@172.16.2.2</a> and <a href="mailto:unk0.209e@172.16.2.2">unk0.209e@172.16.2.2</a><br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfdda780 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfdda780 pfkey_ext=0p0xbfdda8b0 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=0000209e replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_build: <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=9ce44778 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x810a128 allocated 120 bytes, &amp;(extensions[0])=0p0xbfdda8b0 <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=10(COMP), len=15, res=0, seq=25, pid=18847. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 13(x-groupsa). <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0p0x810a138 with parser pfkey_sa_parse. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000209e replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x810a150 with parser pfkey_address_parse. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0p0x810a168 with parser pfkey_x_satype_parse. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: enter <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=3(ESP) res=0,0,0. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0p0x810a170 with parser pfkey_sa_parse. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=9ce44778 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0p0x810a188 with parser pfkey_address_parse. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:15 1218638295 pluto[18847]: | finish_pfkey_msg: SADB_X_GRPSA message 25 for group <a href="mailto:unk0.209e@172.16.2.2">unk0.209e@172.16.2.2</a><br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 02 0d 00 0a&nbsp; 0f 00 00 00&nbsp; 19 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 20 9e&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 06 00&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 01 00 12 00&nbsp; 03 00 00 00&nbsp; 03 00 13 00&nbsp; 9c e4 47 78<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; ff ff ff ff&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 03 00 14 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 02 02<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: | pfkey_get: SADB_X_GRPSA message 25<br>Aug 13 20:08:15 1218638295 pluto[18847]: | encrypting:<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 01 00 00 14&nbsp; bb 53 7e a2&nbsp; 84 ed 38 18&nbsp; df 02 86 3c<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 37 d6 8d 4a&nbsp; 0a 00 00 52&nbsp; 00 00 00 01&nbsp; 00 00 00 01<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 02 00 00 28&nbsp; 00 03 04 01&nbsp; 9c e4 47 78&nbsp; 00 00 00 1c<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 03 03 00 00&nbsp; 80 03 00 02&nbsp; 80 04 00 01&nbsp; 80 01 00 01<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 80 02 0e 10&nbsp; 80 05 00 01&nbsp; 00 00 00 1e&nbsp; 00 04 02 01<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 20 9e 00 00&nbsp; 00 14 00 02&nbsp; 00 00 80 04&nbsp; 00 01 80 01<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 01 80 02&nbsp; 0e 10 04 00&nbsp; 00 14 b8 7b&nbsp; 62 b9 80 93<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; fc 1c 63 f4&nbsp; 4a 62 e1 83&nbsp; eb 75 05 00&nbsp; 00 84 a1 05<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 7b 96 9a 03&nbsp; ee ee 62 76&nbsp; f7 aa 9c ca&nbsp; 81 95 1f e9<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; d7 a7 3a a8&nbsp; ad f4 30 05&nbsp; 65 df 58 6d&nbsp; de 67 43 cd<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; dd e3 8f a6&nbsp; 3d 6b 8e 8e&nbsp; 93 44 3c df&nbsp; f6 97 f9 f0<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 58 25 f4 85&nbsp; ff d9 93 5f&nbsp; 43 04 05 e9&nbsp; 2e f9 57 d7<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; ad 3a fd ce&nbsp; ca 78 ef 28&nbsp; dd 6a ea ae&nbsp; 62 bb 58 33<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 21 1c e7 f7&nbsp; 6b bd 42 eb&nbsp; 20 d0 11 94&nbsp; 55 dc f5 2e<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 52 d8 8b 76&nbsp; 4a 1e 15 e6&nbsp; 71 66 78 47&nbsp; 4c 5f de c9<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 07 9b a1 ed&nbsp; 55 72 3f 3e&nbsp; 12 76 c6 d4&nbsp; 69 36 05 00<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 10 04 00&nbsp; 00 00 c0 a8&nbsp; 01 00 ff ff&nbsp; ff 00 00 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 00 10 04 00&nbsp; 00 00 c0 a8&nbsp; 02 00 ff ff&nbsp; ff 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: | IV:<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 76 30 0e 98&nbsp; 0f 67 50 3e<br>Aug 13 20:08:15 1218638295 pluto[18847]: | emitting 2 zero bytes of encryption padding into ISAKMP Message<br>Aug 13 20:08:15 1218638295 pluto[18847]: | encrypting using OAKLEY_3DES_CBC<br>
Aug 13 20:08:15 1218638295 pluto[18847]: | next IV:&nbsp; 64 18 76 8d&nbsp; 66 3e 6a b7<br>Aug 13 20:08:15 1218638295 pluto[18847]: | emitting length of ISAKMP Message: 316<br>Aug 13 20:08:15 1218638295 pluto[18847]: | finished processing quick inI1<br>
Aug 13 20:08:15 1218638295 pluto[18847]: | complete state transition with STF_OK<br>Aug 13 20:08:15 1218638295 pluto[18847]: &quot;nton-1&quot; #4: transition from state STATE_QUICK_R0 to state STATE_QUICK_R1<br>Aug 13 20:08:15 1218638295 pluto[18847]: | sending reply packet to <a href="http://172.16.1.2:500">172.16.1.2:500</a> (from port=500)<br>
Aug 13 20:08:15 1218638295 pluto[18847]: | sending 316 bytes for STATE_QUICK_R0 through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 08 10 20 01&nbsp; 0e 72 3b 1e&nbsp; 00 00 01 3c&nbsp; 32 cf 55 20<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; b1 c6 3b 0b&nbsp; 9a 60 e1 51&nbsp; 6c 6b e3 8a&nbsp; 1c 08 39 dc<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 89 81 f0 56&nbsp; 18 d2 90 bd&nbsp; 02 d1 95 30&nbsp; cb 55 6c 92<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 28 3c d1 7a&nbsp; 80 6a cd e5&nbsp; f9 b6 56 74&nbsp; a7 e8 92 35<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 4b 60 f9 6f&nbsp; 58 10 a5 98&nbsp; 05 29 1e 10&nbsp; d3 a8 2d a2<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 8c 23 df 1e&nbsp; 6c 05 93 0f&nbsp; ab 81 c1 1f&nbsp; 9d 65 6e 9a<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 7f 1c 68 64&nbsp; 6d a1 8a 6e&nbsp; 31 dd ce 7f&nbsp; 19 30 4f 00<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 2f e2 28 d9&nbsp; 4b 35 53 b6&nbsp; fa f6 ce e2&nbsp; e7 ee c7 a9<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 72 08 0e ee&nbsp; 4d 1a 56 bb&nbsp; ba eb 52 ba&nbsp; cd 97 13 26<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; 3f 9f 56 6d&nbsp; 1d 34 29 75&nbsp; 2d 1f a6 8e&nbsp; 74 fc 6e a4<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; f3 90 10 2a&nbsp; 85 d9 d9 2f&nbsp; da 33 41 2b&nbsp; 77 de 8b 84<br>Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; f2 eb 26 76&nbsp; cc 8a 82 f1&nbsp; 67 b7 fb cf&nbsp; f7 e5 fb c0<br>
Aug 13 20:08:15 1218638295 pluto[18847]: |&nbsp;&nbsp; f6 c4 35 7e&nbsp; 15 ce dc fd&nbsp; 39 78 3d f1&nbsp; 76 a0 3c 61<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; d6 3b d8 d3&nbsp; 2c 34 34 a2&nbsp; 62 56 50 ce&nbsp; 25 0e 8d d7<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; a3 47 3c 0b&nbsp; 7c bf cf 35&nbsp; e0 c4 2a 9b&nbsp; 23 d9 91 10<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; d2 f2 b8 18&nbsp; 51 43 75 8b&nbsp; 8b ae ea 7c&nbsp; f9 2b c0 3d<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 0c 0a be bf&nbsp; fd bb 10 c9&nbsp; f1 90 67 d6&nbsp; ac 24 38 fd<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; f2 a1 e5 f5&nbsp; 98 9f cc 41&nbsp; 9c 23 6f 9b&nbsp; d8 f9 78 08<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; e8 2d a6 d6&nbsp; 64 18 76 8d&nbsp; 66 3e 6a b7<br>Aug 13 20:08:16 1218638296 pluto[18847]: | inserting event EVENT_RETRANSMIT, timeout in 10 seconds for #4<br>Aug 13 20:08:16 1218638296 pluto[18847]: &quot;nton-1&quot; #4: STATE_QUICK_R1: sent QR1, inbound IPsec SA installed, expecting QI2<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | modecfg pull: noquirk policy:push not-client<br>Aug 13 20:08:16 1218638296 pluto[18847]: | phase 1 is done, looking for phase 1 to unpend<br>Aug 13 20:08:16 1218638296 pluto[18847]: | complete state transition with STF_INLINE<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | next event EVENT_SHUNT_SCAN in 3 seconds<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp; <br>Aug 13 20:08:16 1218638296 pluto[18847]: | *received 52 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 08 10 20 01&nbsp; 0e 72 3b 1e&nbsp; 00 00 00 34&nbsp; 4c d3 20 ac<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 91 23 3e e9&nbsp; e3 d3 18 dd&nbsp; e5 84 22 64&nbsp; 3c da a3 bf<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 86 69 79 a5<br>Aug 13 20:08:16 1218638296 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_QUICK<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 0e 72 3b 1e<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 52<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_QUICK (32)<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:16 1218638296 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:16 1218638296 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:16 1218638296 pluto[18847]: | peer and cookies match on #4, provided msgid 0e723b1e vs 0e723b1e<br>Aug 13 20:08:16 1218638296 pluto[18847]: | state object #4 found, in STATE_QUICK_R1<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:16 1218638296 pluto[18847]: | received encrypted packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a><br>Aug 13 20:08:16 1218638296 pluto[18847]: | decrypting 24 bytes using algorithm OAKLEY_3DES_CBC<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | decrypted:<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 00 00 00 14&nbsp; 65 3f 9d f2&nbsp; 24 df 13 14&nbsp; 60 bb 16 13<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp; 1b fc f6 92&nbsp; 00 00 00 00<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | next IV:&nbsp; 3c da a3 bf&nbsp; 86 69 79 a5<br>Aug 13 20:08:16 1218638296 pluto[18847]: | np=8 and sd=0x80e523c <br>Aug 13 20:08:16 1218638296 pluto[18847]: | ***parse ISAKMP Hash Payload:<br>
Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:16 1218638296 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:16 1218638296 pluto[18847]: | removing 4 bytes of padding<br>Aug 13 20:08:16 1218638296 pluto[18847]: | HASH(3) computed:&nbsp; 65 3f 9d f2&nbsp; 24 df 13 14&nbsp; 60 bb 16 13&nbsp; 1b fc f6 92<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | install_ipsec_sa() for #4: outbound only<br>Aug 13 20:08:16 1218638296 pluto[18847]: | route owner of &quot;nton-1&quot; fail erouted: self; eroute owner: self<br>Aug 13 20:08:16 1218638296 pluto[18847]: | could_route called for nton-1 (kind=CK_PERMANENT)<br>
Aug 13 20:08:16 1218638296 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfddb4f0 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfddb4f0 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=00001004 replay=0 sa_state=1 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x8109830 allocated 88 bytes, &amp;(extensions[0])=0p0xbfddb6a0 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=9(IPIP), len=11, res=0, seq=26, pid=18847. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 3(add). <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0p0x8109840 with parser pfkey_sa_parse. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001004 replay=0 state=1 auth=0 encrypt=0 flags=0 ref=-1. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0p0x8109858 with parser pfkey_address_parse. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x8109870 with parser pfkey_address_parse. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | finish_pfkey_msg: SADB_ADD message 26 for Add SA <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a><br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 02 03 00 09&nbsp; 0b 00 00 00&nbsp; 1a 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 10 04&nbsp; 00 01 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 01 02<br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_get: SADB_ADD message 26<br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfddb4f0 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfddb4f0 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=0000627f replay=0 sa_state=1 auth=0 encrypt=2 flags=0 <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x8109830 allocated 88 bytes, &amp;(extensions[0])=0p0xbfddb6a0 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=10(COMP), len=11, res=0, seq=27, pid=18847. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 3(add). <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=9. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 ext_type=1(security-association) ext_len=3 parsing ext 0p0x8109840 with parser pfkey_sa_parse. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000627f replay=0 state=1 auth=0 encrypt=2 flags=0 ref=-1. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=6. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=5(source-address) ext_len=3 parsing ext 0p0x8109858 with parser pfkey_address_parse. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=3. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x8109870 with parser pfkey_address_parse. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000063, required=00000063. <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | finish_pfkey_msg: SADB_ADD message 27 for Add SA <a href="mailto:comp.627f@172.16.1.2">comp.627f@172.16.1.2</a><br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 02 03 00 0a&nbsp; 0b 00 00 00&nbsp; 1b 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 62 7f&nbsp; 00 01 00 02&nbsp; 00 00 00 00<br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 01 02<br>Aug 13 20:08:17 1218638297 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:17 1218638297 pluto[18847]: | pfkey_get: SADB_ADD message 27<br>
Aug 13 20:08:17 1218638297 pluto[18847]: | looking for alg with transid: 3 keylen: 0 auth: 1 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | checking transid: 11 keylen: 0 auth: 1 <br>Aug 13 20:08:17 1218638297 pluto[18847]: | checking transid: 11 keylen: 0 auth: 2 <br>
Aug 13 20:08:17 1218638297 pluto[18847]: | checking transid: 2 keylen: 8 auth: 0 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | checking transid: 2 keylen: 8 auth: 1 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | checking transid: 2 keylen: 8 auth: 2 <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | checking transid: 3 keylen: 24 auth: 0 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | checking transid: 3 keylen: 24 auth: 1 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfddb4f0 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p(nil). <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfddb4f0 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p0x8109710. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=2a8ab1c4 replay=64 sa_state=1 auth=2 encrypt=3 flags=0 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_key_build: <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_key_build: <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x8109858 allocated 144 bytes, &amp;(extensions[0])=0p0xbfddb6a0 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[8] (type=8) <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 32 bytes from extensions[9] (type=9) <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=78001ffb, seen=00000363, required=00000063. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=3(add), errno=0, satype=3(ESP), len=18, res=0, seq=28, pid=18847. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 3(ESP) conversion to proto gives 50 for msg_type 3(add). <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=16 <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, required=00000063. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=16. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=16 ext_type=1(security-association) ext_len=3 parsing ext 0p0x8109868 with parser pfkey_sa_parse. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=2a8ab1c4 replay=64 state=1 auth=2 encrypt=3 flags=0 ref=-1. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=13. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 ext_type=5(source-address) ext_len=3 parsing ext 0p0x8109880 with parser pfkey_address_parse. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x8109898 with parser pfkey_address_parse. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=8(authentication-key) remain=7. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=7 ext_type=8(authentication-key) ext_len=3 parsing ext 0p0x81098b0 with parser pfkey_key_parse. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_key_parse: success, found len=3 exttype=8(authentication-key) bits=128 reserved=0. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 8(authentication-key) parsed. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=9(cipher-key) remain=4. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=4 ext_type=9(cipher-key) ext_len=4 parsing ext 0p0x81098c8 with parser pfkey_key_parse. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_key_parse: success, found len=4 exttype=9(cipher-key) bits=192 reserved=0. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 9(cipher-key) parsed. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=78001ffb, seen=00000363, required=00000063. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | finish_pfkey_msg: SADB_ADD message 28 for Add SA <a href="mailto:esp.2a8ab1c4@172.16.1.2">esp.2a8ab1c4@172.16.1.2</a><br>Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 02 03 00 03&nbsp; 12 00 00 00&nbsp; 1c 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 2a 8a b1 c4&nbsp; 40 01 02 03&nbsp; 00 00 00 00<br>Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 01 02<br>Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; 03 00 08 00&nbsp; 80 00 00 00<br>Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 9e 8a 9d 34&nbsp; 29 68 48 e5&nbsp; 71 dd bc bd&nbsp; 8c 51 28 bf<br>
Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 04 00 09 00&nbsp; c0 00 00 00&nbsp; 8d e9 43 04&nbsp; 6b 45 f9 d2<br>Aug 13 20:08:18 1218638298 pluto[18847]: |&nbsp;&nbsp; 0c 9a f6 db&nbsp; 5a ac 0e 8e&nbsp; 9b 63 e9 c8&nbsp; ac 90 75 6e<br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_get: SADB_ADD message 28<br>
Aug 13 20:08:18 1218638298 pluto[18847]: | grouping <a href="mailto:unk0.627f@172.16.1.2">unk0.627f@172.16.1.2</a> and <a href="mailto:unk0.1004@172.16.1.2">unk0.1004@172.16.1.2</a><br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfddb570 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p(nil). <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfddb570 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p0x8109710. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=00001004 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_build: <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=0000627f replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:18 1218638298 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x8109830 allocated 120 bytes, &amp;(extensions[0])=0p0xbfddb6a0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=9(IPIP), len=15, res=0, seq=29, pid=18847. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 13(x-groupsa). <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0p0x8109840 with parser pfkey_sa_parse. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001004 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x8109858 with parser pfkey_address_parse. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0p0x8109870 with parser pfkey_x_satype_parse. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: enter <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=10(COMP) res=0,0,0. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0p0x8109878 with parser pfkey_sa_parse. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=0000627f replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0p0x8109890 with parser pfkey_address_parse. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | finish_pfkey_msg: SADB_X_GRPSA message 29 for group <a href="mailto:unk0.1004@172.16.1.2">unk0.1004@172.16.1.2</a><br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 02 0d 00 09&nbsp; 0f 00 00 00&nbsp; 1d 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 10 04&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 06 00&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 01 00 12 00&nbsp; 0a 00 00 00&nbsp; 03 00 13 00&nbsp; 00 00 62 7f<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; ff ff ff ff&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 03 00 14 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 01 02<br>
Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_get: SADB_X_GRPSA message 29<br>Aug 13 20:08:19 1218638299 pluto[18847]: | grouping <a href="mailto:unk0.2a8ab1c4@172.16.1.2">unk0.2a8ab1c4@172.16.1.2</a> and <a href="mailto:unk0.627f@172.16.1.2">unk0.627f@172.16.1.2</a><br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfddb570 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfddb570 pfkey_ext=0p0xbfddb6a0 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=0000627f replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_build: <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=2a8ab1c4 replay=0 sa_state=0 auth=0 encrypt=0 flags=0 <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=20 proto=0 prefixlen=0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x8109830 allocated 120 bytes, &amp;(extensions[0])=0p0xbfddb6a0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 8 bytes from extensions[18] (type=18) <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[19] (type=19) <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[20] (type=20) <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=13(x-groupsa), errno=0, satype=10(COMP), len=15, res=0, seq=30, pid=18847. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 10(COMP) conversion to proto gives 108 for msg_type 13(x-groupsa). <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, required=00000043. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=13. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=13 ext_type=1(security-association) ext_len=3 parsing ext 0p0x8109840 with parser pfkey_sa_parse. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=0000627f replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=10. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=10 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x8109858 with parser pfkey_address_parse. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=18(X-satype2) remain=7. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=7 ext_type=18(X-satype2) ext_len=1 parsing ext 0p0x8109870 with parser pfkey_x_satype_parse. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: enter <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_x_satype_parse: len=1 ext=18(X-satype2) satype=3(ESP) res=0,0,0. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 18(X-satype2) parsed. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=19(X-security-association) remain=6. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=19(X-security-association) ext_len=3 parsing ext 0p0x8109878 with parser pfkey_sa_parse. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=19(X-security-association) spi=2a8ab1c4 replay=0 state=0 auth=0 encrypt=0 flags=0 ref=-1. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 19(X-security-association) parsed. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=20(X-destination-address2) remain=3. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=20(X-destination-address2) ext_len=3 parsing ext 0p0x8109890 with parser pfkey_address_parse. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=20(X-destination-address2) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 20(X-destination-address2) parsed. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=001c0043, seen=001c0043, required=00000043. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | finish_pfkey_msg: SADB_X_GRPSA message 30 for group <a href="mailto:unk0.627f@172.16.1.2">unk0.627f@172.16.1.2</a><br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 02 0d 00 0a&nbsp; 0f 00 00 00&nbsp; 1e 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 62 7f&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 06 00&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 01 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 01 00 12 00&nbsp; 03 00 00 00&nbsp; 03 00 13 00&nbsp; 2a 8a b1 c4<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; ff ff ff ff&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 03 00 14 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 01 02<br>
Aug 13 20:08:19 1218638299 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_get: SADB_X_GRPSA message 30<br>Aug 13 20:08:19 1218638299 pluto[18847]: | sr for #4: fail erouted<br>
Aug 13 20:08:19 1218638299 pluto[18847]: | route owner of &quot;nton-1&quot; fail erouted: self; eroute owner: self<br>Aug 13 20:08:19 1218638299 pluto[18847]: | route_and_eroute with c: nton-1 (next: none) ero:nton-1 esr:{(nil)} ro:nton-1 rosr:{(nil)} and state: 4<br>
Aug 13 20:08:19 1218638299 pluto[18847]: | eroute_connection replace eroute <a href="http://192.168.2.0/24:0">192.168.2.0/24:0</a> --0-&gt; <a href="http://192.168.1.0/24:0">192.168.1.0/24:0</a> =&gt; <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a> (raw_eroute)<br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_entry &amp;pfkey_ext=0p0xbfddb440 pfkey_ext=0p0xbfddb730 *pfkey_ext=0p(nil). <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_msg_hdr_build: on_exit &amp;pfkey_ext=0p0xbfddb440 pfkey_ext=0p0xbfddb730 *pfkey_ext=0p0x8109710. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_sa_build: spi=00001004 replay=0 sa_state=0 auth=0 encrypt=0 flags=2 <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=5 proto=0 prefixlen=0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.2.2:0">172.16.2.2:0</a>. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=6 proto=0 prefixlen=0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://172.16.1.2:0">172.16.1.2:0</a>. <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=21 proto=0 prefixlen=0 <br>Aug 13 20:08:19 1218638299 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://192.168.2.0:0">192.168.2.0:0</a>. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=22 proto=0 prefixlen=0 <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://192.168.1.0:0">192.168.1.0:0</a>. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=23 proto=0 prefixlen=0 <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://255.255.255.0:0">255.255.255.0:0</a>. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: exttype=24 proto=0 prefixlen=0 <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address family AF_INET. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: found address=<a href="http://255.255.255.0:0">255.255.255.0:0</a>. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_build: successful created len: 3. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: pfkey_msg=0p0x8109890 allocated 184 bytes, &amp;(extensions[0])=0p0xbfddb730 <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[1] (type=1) <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[5] (type=5) <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[6] (type=6) <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[21] (type=21) <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[22] (type=22) <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[23] (type=23) <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: copying 24 bytes from extensions[24] (type=24) <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_build: extensions permitted=05e00c63, seen=01e00063, required=01e00043. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing message ver=2, type=14(x-addflow(eroute)), errno=0, satype=9(IPIP), len=23, res=0, seq=31, pid=18847. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: satype 9(IPIP) conversion to proto gives 4 for msg_type 14(x-addflow(eroute)). <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=21 <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=05e00c63, required=01e00043. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=1(security-association) remain=21. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=21 ext_type=1(security-association) ext_len=3 parsing ext 0p0x81098a0 with parser pfkey_sa_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_sa_parse: successfully found len=3 exttype=1(security-association) spi=00001004 replay=0 state=0 auth=0 encrypt=0 flags=2 ref=-1. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 1(security-association) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=5(source-address) remain=18. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=18 ext_type=5(source-address) ext_len=3 parsing ext 0p0x81098b8 with parser pfkey_address_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=5(source-address) family=2(AF_INET) address=<a href="http://172.16.2.2">172.16.2.2</a> proto=0 port=0. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 5(source-address) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=6(destination-address) remain=15. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=15 ext_type=6(destination-address) ext_len=3 parsing ext 0p0x81098d0 with parser pfkey_address_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=6(destination-address) family=2(AF_INET) address=<a href="http://172.16.1.2">172.16.1.2</a> proto=0 port=0. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 6(destination-address) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=21(X-source-flow-address) remain=12. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=12 ext_type=21(X-source-flow-address) ext_len=3 parsing ext 0p0x81098e8 with parser pfkey_address_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=21(X-source-flow-address) family=2(AF_INET) address=<a href="http://192.168.2.0">192.168.2.0</a> proto=0 port=0. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 21(X-source-flow-address) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=22(X-dest-flow-address) remain=9. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=9 ext_type=22(X-dest-flow-address) ext_len=3 parsing ext 0p0x8109900 with parser pfkey_address_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=22(X-dest-flow-address) family=2(AF_INET) address=<a href="http://192.168.1.0">192.168.1.0</a> proto=0 port=0. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 22(X-dest-flow-address) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=23(X-source-mask) remain=6. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=6 ext_type=23(X-source-mask) ext_len=3 parsing ext 0p0x8109918 with parser pfkey_address_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=23(X-source-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 23(X-source-mask) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: parsing ext type=24(X-dest-mask) remain=3. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: remain=3 ext_type=24(X-dest-mask) ext_len=3 parsing ext 0p0x8109930 with parser pfkey_address_parse. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: found exttype=24(X-dest-mask) family=2(AF_INET) address=<a href="http://255.255.255.0">255.255.255.0</a> proto=0 port=0. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_address_parse: successful. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: Extension 24(X-dest-mask) parsed. <br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_lib_debug:pfkey_msg_parse: extensions permitted=05e00c63, seen=01e00063, required=01e00043. <br>
Aug 13 20:08:20 1218638300 pluto[18847]: | finish_pfkey_msg: SADB_X_ADDFLOW message 31 for flow <a href="mailto:tun.1004@172.16.1.2">tun.1004@172.16.1.2</a><br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 02 0e 00 09&nbsp; 17 00 00 00&nbsp; 1f 00 00 00&nbsp; 9f 49 00 00<br>
Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 03 00 01 00&nbsp; 00 00 10 04&nbsp; 00 00 00 00&nbsp; 02 00 00 00<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; ff ff ff ff&nbsp; 00 00 00 00&nbsp; 03 00 05 00&nbsp; 00 00 00 00<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ac 10 02 02&nbsp; 00 00 00 00&nbsp; 00 00 00 00<br>
Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 03 00 06 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ac 10 01 02<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 00 00 00 00&nbsp; 00 00 00 00&nbsp; 03 00 15 00&nbsp; 00 00 00 00<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; c0 a8 02 00&nbsp; 28 6e df bf&nbsp; aa b9 f7 b7<br>
Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 03 00 16 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; c0 a8 01 00<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 28 6e df bf&nbsp; aa b9 f7 b7&nbsp; 03 00 17 00&nbsp; 00 00 00 00<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 02 00 00 00&nbsp; ff ff ff 00&nbsp; e0 31 36 30&nbsp; 4a b7 dd bf<br>
Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; 03 00 18 00&nbsp; 00 00 00 00&nbsp; 02 00 00 00&nbsp; ff ff ff 00<br>Aug 13 20:08:20 1218638300 pluto[18847]: |&nbsp;&nbsp; c8 b7 dd bf&nbsp; cd b6 dd bf<br>Aug 13 20:08:20 1218638300 pluto[18847]: | pfkey_get: SADB_X_ADDFLOW message 31<br>
Aug 13 20:08:20 1218638300 pluto[18847]: | command executing up-client<br>Aug 13 20:08:20 1218638300 pluto[18847]: | executing up-client: 2&gt;&amp;1 PLUTO_VERSION=&#39;1.1&#39; PLUTO_VERB=&#39;up-client&#39; PLUTO_CONNECTION=&#39;nton-1&#39; PLUTO_NEXT_HOP=&#39;<a href="http://172.16.2.1">172.16.2.1</a>&#39; PLUTO_INTERFACE=&#39;ipsec0&#39; PLUTO_ME=&#39;<a href="http://172.16.2.2">172.16.2.2</a>&#39; PLUTO_MY_ID=&#39;<a href="http://172.16.2.2">172.16.2.2</a>&#39; PLUTO_MY_CLIENT=&#39;<a href="http://192.168.2.0/24">192.168.2.0/24</a>&#39; PLUTO_MY_CLIENT_NET=&#39;<a href="http://192.168.2.0">192.168.2.0</a>&#39; PLUTO_MY_CLIENT_MASK=&#39;<a href="http://255.255.255.0">255.255.255.0</a>&#39; PLUTO_MY_PORT=&#39;0&#39; PLUTO_MY_PROTOCOL=&#39;0&#39; PLUTO_PEER=&#39;<a href="http://172.16.1.2">172.16.1.2</a>&#39; PLUTO_PEER_ID=&#39;<a href="http://172.16.1.2">172.16.1.2</a>&#39; PLUTO_PEER_CLIENT=&#39;<a href="http://192.168.1.0/24">192.168.1.0/24</a>&#39; PLUTO_PEER_CLIENT_NET=&#39;<a href="http://192.168.1.0">192.168.1.0</a>&#39; PLUTO_PEER_CLIENT_MASK=&#39;<a href="http://255.255.255.0">255.255.255.0</a>&#39; PLUTO_PEER_PORT=&#39;0&#39; PLUTO_PEER_PROTOCOL=&#39;0&#39; PLUTO_PEER_CA=&#39;&#39; PLUTO_CONN_POLICY=&#39;PSK+ENCRYPT+COMPRESS+TUNNEL+PFS+DONTREKEY+failureDROP&#39;&nbsp;&nbsp; /usr/lib/ipsec/_updown<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | route_and_eroute: firewall_notified: true<br>Aug 13 20:08:21 1218638301 pluto[18847]: | route_and_eroute: instance &quot;nton-1&quot;, setting eroute_owner {spd=0x8103d2c,sr=0x8103d2c} to #4 (was #0) (newest_ipsec_sa=#0)<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | inI2: instance nton-1[0], setting newest_ipsec_sa to #4 (was #0) (spd.eroute=#4)<br>Aug 13 20:08:21 1218638301 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:21 1218638301 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>Aug 13 20:08:21 1218638301 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:21 1218638301 pluto[18847]: | peer and cookies match on #4, provided msgid 00000000 vs 0e723b1e<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000<br>Aug 13 20:08:21 1218638301 pluto[18847]: | state object #3 found, in STATE_MAIN_R3<br>Aug 13 20:08:21 1218638301 pluto[18847]: &quot;nton-1&quot; #4: Dead Peer Detection (RFC 3706): enabled<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | state: 4 requesting event none to be deleted by dpd.c:160<br>Aug 13 20:08:21 1218638301 pluto[18847]: | inserting event EVENT_DPD, timeout in 30 seconds for #4<br>Aug 13 20:08:21 1218638301 pluto[18847]: | state: 3 requesting event EVENT_DPD to be deleted by dpd.c:172<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | complete state transition with STF_OK<br>Aug 13 20:08:21 1218638301 pluto[18847]: &quot;nton-1&quot; #4: transition from state STATE_QUICK_R1 to state STATE_QUICK_R2<br>Aug 13 20:08:21 1218638301 pluto[18847]: | inserting event EVENT_SA_EXPIRE, timeout in 3600 seconds for #4<br>
Aug 13 20:08:21 1218638301 pluto[18847]: &quot;nton-1&quot; #4: STATE_QUICK_R2: IPsec SA established {ESP=&gt;0x2a8ab1c4 &lt;0x9ce44778 xfrm=3DES_0-HMAC_MD5 IPCOMP=&gt;0x0000627f &lt;0x0000209e NATD=none DPD=enabled}<br>Aug 13 20:08:21 1218638301 pluto[18847]: | modecfg pull: noquirk policy:push not-client<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | phase 1 is done, looking for phase 1 to unpend<br>Aug 13 20:08:21 1218638301 pluto[18847]: | next event EVENT_SHUNT_SCAN in -2 seconds<br>Aug 13 20:08:21 1218638301 pluto[18847]: |&nbsp; <br>
Aug 13 20:08:21 1218638301 pluto[18847]: | *time to handle event<br>Aug 13 20:08:21 1218638301 pluto[18847]: | handling event EVENT_SHUNT_SCAN<br>Aug 13 20:08:21 1218638301 pluto[18847]: | event after this is EVENT_PENDING_PHASE2 in -2 seconds<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | inserting event EVENT_SHUNT_SCAN, timeout in 120 seconds<br>Aug 13 20:08:21 1218638301 pluto[18847]: | scanning for shunt eroutes<br>Aug 13 20:08:21 1218638301 pluto[18847]: | next event EVENT_PENDING_PHASE2 in -2 seconds<br>
Aug 13 20:08:21 1218638301 pluto[18847]: |&nbsp; <br>Aug 13 20:08:21 1218638301 pluto[18847]: | *time to handle event<br>Aug 13 20:08:21 1218638301 pluto[18847]: | handling event EVENT_PENDING_PHASE2<br>Aug 13 20:08:21 1218638301 pluto[18847]: | event after this is EVENT_NAT_T_KEEPALIVE in 8 seconds<br>
Aug 13 20:08:21 1218638301 pluto[18847]: | inserting event EVENT_PENDING_PHASE2, timeout in 120 seconds<br>Aug 13 20:08:21 1218638301 pluto[18847]: | pending review: connection &quot;nton-1&quot; was not up, skipped<br>Aug 13 20:08:21 1218638301 pluto[18847]: | next event EVENT_NAT_T_KEEPALIVE in 8 seconds<br>
Aug 13 20:08:29 1218638309 pluto[18847]: |&nbsp; <br>Aug 13 20:08:29 1218638309 pluto[18847]: | *time to handle event<br>Aug 13 20:08:29 1218638309 pluto[18847]: | handling event EVENT_NAT_T_KEEPALIVE<br>Aug 13 20:08:29 1218638309 pluto[18847]: | event after this is EVENT_DPD in 22 seconds<br>
Aug 13 20:08:29 1218638309 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:29 1218638309 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:29 1218638309 pluto[18847]: | next event EVENT_DPD in 22 seconds for #4<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp; <br>Aug 13 20:08:46 1218638326 pluto[18847]: | *received 84 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 08 10 05 01&nbsp; d9 dc f5 de&nbsp; 00 00 00 54&nbsp; 81 94 f7 fc<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; a0 b0 5c 33&nbsp; c5 07 14 1e&nbsp; c6 01 8e 0d&nbsp; b9 9e 6a a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 44 52 b3 ab&nbsp; 12 d2 92 d6&nbsp; 43 4f 26 da&nbsp; fa b0 76 ce<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; a7 36 56 88&nbsp; 7c 04 e4 0a&nbsp; ee 22 d5 6c&nbsp; b8 0a 03 3c<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 5c 2b 6d 0c<br>Aug 13 20:08:46 1218638326 pluto[18847]: | **parse ISAKMP Message:<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_INFO<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; d9 dc f5 de<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 84<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_INFO (5)<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:46 1218638326 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | state hash entry 28<br>Aug 13 20:08:46 1218638326 pluto[18847]: | peer and cookies match on #4, provided msgid 00000000 vs 0e723b1e/00000000<br>Aug 13 20:08:46 1218638326 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000/00000000<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | p15 state object #3 found, in STATE_MAIN_R3<br>Aug 13 20:08:46 1218638326 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:46 1218638326 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: | computed Phase 2 IV:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 82 dc 1b dc&nbsp; 9a 03 82 70&nbsp; dc 7f 97 b7&nbsp; 88 9f be 5f<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | received encrypted packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a><br>Aug 13 20:08:46 1218638326 pluto[18847]: | decrypting 56 bytes using algorithm OAKLEY_3DES_CBC<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | decrypted:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 0b 00 00 14&nbsp; 08 1f 6d 82&nbsp; 43 6f bb 04&nbsp; 38 96 cc 76<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 37 63 1d 81&nbsp; 00 00 00 20&nbsp; 00 00 00 01&nbsp; 01 10 8d 28<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 00 00 70 95&nbsp; 00 00 00 00<br>Aug 13 20:08:46 1218638326 pluto[18847]: | next IV:&nbsp; b8 0a 03 3c&nbsp; 5c 2b 6d 0c<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | np=8 and sd=0x80e523c <br>Aug 13 20:08:46 1218638326 pluto[18847]: | ***parse ISAKMP Hash Payload:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_N<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:08:46 1218638326 pluto[18847]: | np=11 and sd=0x80e52e0 <br>Aug 13 20:08:46 1218638326 pluto[18847]: | ***parse ISAKMP Notification Payload:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 32<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: 1<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 16<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; Notify Message Type: R_U_THERE<br>Aug 13 20:08:46 1218638326 pluto[18847]: | removing 4 bytes of padding<br>Aug 13 20:08:46 1218638326 pluto[18847]: | info:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 00 00 70 95<br>Aug 13 20:08:46 1218638326 pluto[18847]: | processing informational R_U_THERE (36136)<br>Aug 13 20:08:46 1218638326 pluto[18847]: | **emit ISAKMP Message:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_INFO<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; be fb 87 11<br>Aug 13 20:08:46 1218638326 pluto[18847]: | ***emit ISAKMP Hash Payload:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_N<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | emitting 16 zero bytes of HASH into ISAKMP Hash Payload<br>Aug 13 20:08:46 1218638326 pluto[18847]: | emitting length of ISAKMP Hash Payload: 20<br>Aug 13 20:08:46 1218638326 pluto[18847]: | ***emit ISAKMP Notification Payload:<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: 1<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 16<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp;&nbsp; Notify Message Type: R_U_THERE_ACK<br>Aug 13 20:08:46 1218638326 pluto[18847]: | emitting 8 raw bytes of notify icookie into ISAKMP Notification Payload<br>Aug 13 20:08:46 1218638326 pluto[18847]: | notify icookie&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | emitting 8 raw bytes of notify rcookie into ISAKMP Notification Payload<br>Aug 13 20:08:46 1218638326 pluto[18847]: | notify rcookie&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: | emitting 4 raw bytes of notify data into ISAKMP Notification Payload<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | notify data&nbsp; 00 00 70 95<br>Aug 13 20:08:46 1218638326 pluto[18847]: | emitting length of ISAKMP Notification Payload: 32<br>Aug 13 20:08:46 1218638326 pluto[18847]: | HASH computed:<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 53 8e ae 43&nbsp; 8a 9a b5 3b&nbsp; dd 4e d3 85&nbsp; 4a 81 a4 86<br>Aug 13 20:08:46 1218638326 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:08:46 1218638326 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | computed Phase 2 IV:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 18 cd 32 0a&nbsp; 33 ed 1b c2&nbsp; 99 c8 39 13&nbsp; e2 44 a3 3e<br>Aug 13 20:08:46 1218638326 pluto[18847]: | encrypting:<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 0b 00 00 14&nbsp; 53 8e ae 43&nbsp; 8a 9a b5 3b&nbsp; dd 4e d3 85<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 4a 81 a4 86&nbsp; 00 00 00 20&nbsp; 00 00 00 01&nbsp; 01 10 8d 29<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 00 00 70 95<br>Aug 13 20:08:46 1218638326 pluto[18847]: | IV:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 18 cd 32 0a&nbsp; 33 ed 1b c2&nbsp; 99 c8 39 13&nbsp; e2 44 a3 3e<br>Aug 13 20:08:46 1218638326 pluto[18847]: | emitting 4 zero bytes of encryption padding into ISAKMP Message<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | encrypting using OAKLEY_3DES_CBC<br>Aug 13 20:08:46 1218638326 pluto[18847]: | next IV:&nbsp; 45 4f 19 6e&nbsp; b4 50 46 69<br>Aug 13 20:08:46 1218638326 pluto[18847]: | emitting length of ISAKMP Message: 84<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | sending 84 bytes for ISAKMP notify through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 08 10 05 01&nbsp; be fb 87 11&nbsp; 00 00 00 54&nbsp; f3 b7 b7 1b<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 1d fb de 00&nbsp; 60 cc 4f ca&nbsp; 17 ab 0f 55&nbsp; 32 50 45 46<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; bb 1f b6 4e&nbsp; f9 6e f2 69&nbsp; b6 14 5e a7&nbsp; cd 79 10 4b<br>
Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; 66 cc 1c 5b&nbsp; 81 7b 37 a4&nbsp; 53 82 a7 0e&nbsp; 45 4f 19 6e<br>Aug 13 20:08:46 1218638326 pluto[18847]: |&nbsp;&nbsp; b4 50 46 69<br>Aug 13 20:08:46 1218638326 pluto[18847]: | complete state transition with STF_IGNORE<br>
Aug 13 20:08:46 1218638326 pluto[18847]: | next event EVENT_DPD in 5 seconds for #4<br>Aug 13 20:08:51 1218638331 pluto[18847]: |&nbsp; <br>Aug 13 20:08:51 1218638331 pluto[18847]: | *time to handle event<br>Aug 13 20:08:51 1218638331 pluto[18847]: | handling event EVENT_DPD<br>
Aug 13 20:08:51 1218638331 pluto[18847]: | event after this is EVENT_PENDING_PHASE2 in 90 seconds<br>Aug 13 20:08:51 1218638331 pluto[18847]: | processing connection nton-1<br>Aug 13 20:08:51 1218638331 pluto[18847]: | inserting event EVENT_DPD, timeout in 25 seconds for #4<br>
Aug 13 20:08:51 1218638331 pluto[18847]: | next event EVENT_DPD in 25 seconds for #4<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp; <br>Aug 13 20:09:16 1218638356 pluto[18847]: | *received 84 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>
Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; 08 10 05 01&nbsp; f1 4d 7b a4&nbsp; 00 00 00 54&nbsp; e4 31 f2 c2<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; 92 9f 81 9d&nbsp; 60 bc 68 34&nbsp; 26 ed 92 78&nbsp; 0d 2c 6a 31<br>
Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; 8d 72 6e a2&nbsp; 63 76 67 66&nbsp; 03 30 79 01&nbsp; e0 c6 bd 44<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; fe 44 5c 43&nbsp; f6 a0 2b 5c&nbsp; 85 ad 70 ed&nbsp; d1 eb 86 11<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; 5d 27 44 61<br>
Aug 13 20:09:16 1218638356 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>
Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>
Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_INFO<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; f1 4d 7b a4<br>
Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 84<br>Aug 13 20:09:16 1218638356 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_INFO (5)<br>Aug 13 20:09:16 1218638356 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>Aug 13 20:09:17 1218638357 pluto[18847]: | state hash entry 28<br>Aug 13 20:09:17 1218638357 pluto[18847]: | peer and cookies match on #4, provided msgid 00000000 vs 0e723b1e/00000000<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000/00000000<br>Aug 13 20:09:17 1218638357 pluto[18847]: | p15 state object #3 found, in STATE_MAIN_R3<br>Aug 13 20:09:17 1218638357 pluto[18847]: | processing connection nton-1<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: | computed Phase 2 IV:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 8e 9d f9 62&nbsp; 21 d3 1c 21&nbsp; cf c0 c0 3d&nbsp; 60 89 bb bd<br>Aug 13 20:09:17 1218638357 pluto[18847]: | received encrypted packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a><br>
Aug 13 20:09:17 1218638357 pluto[18847]: | decrypting 56 bytes using algorithm OAKLEY_3DES_CBC<br>Aug 13 20:09:17 1218638357 pluto[18847]: | decrypted:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 0b 00 00 14&nbsp; 58 27 c1 29&nbsp; 3a f0 95 77&nbsp; 76 8a 23 f2<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; d0 95 56 36&nbsp; 00 00 00 20&nbsp; 00 00 00 01&nbsp; 01 10 8d 28<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 00 00 70 96&nbsp; 00 00 00 00<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | next IV:&nbsp; d1 eb 86 11&nbsp; 5d 27 44 61<br>Aug 13 20:09:17 1218638357 pluto[18847]: | np=8 and sd=0x80e523c <br>Aug 13 20:09:17 1218638357 pluto[18847]: | ***parse ISAKMP Hash Payload:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_N<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:09:17 1218638357 pluto[18847]: | np=11 and sd=0x80e52e0 <br>Aug 13 20:09:17 1218638357 pluto[18847]: | ***parse ISAKMP Notification Payload:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 32<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: 1<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 16<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; Notify Message Type: R_U_THERE<br>Aug 13 20:09:17 1218638357 pluto[18847]: | removing 4 bytes of padding<br>Aug 13 20:09:17 1218638357 pluto[18847]: | info:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 00 00 70 96<br>Aug 13 20:09:17 1218638357 pluto[18847]: | processing informational R_U_THERE (36136)<br>Aug 13 20:09:17 1218638357 pluto[18847]: | **emit ISAKMP Message:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_INFO<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 90 9e d7 37<br>Aug 13 20:09:17 1218638357 pluto[18847]: | ***emit ISAKMP Hash Payload:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_N<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | emitting 16 zero bytes of HASH into ISAKMP Hash Payload<br>Aug 13 20:09:17 1218638357 pluto[18847]: | emitting length of ISAKMP Hash Payload: 20<br>Aug 13 20:09:17 1218638357 pluto[18847]: | ***emit ISAKMP Notification Payload:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: 1<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 16<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp;&nbsp; Notify Message Type: R_U_THERE_ACK<br>Aug 13 20:09:17 1218638357 pluto[18847]: | emitting 8 raw bytes of notify icookie into ISAKMP Notification Payload<br>Aug 13 20:09:17 1218638357 pluto[18847]: | notify icookie&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | emitting 8 raw bytes of notify rcookie into ISAKMP Notification Payload<br>Aug 13 20:09:17 1218638357 pluto[18847]: | notify rcookie&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: | emitting 4 raw bytes of notify data into ISAKMP Notification Payload<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | notify data&nbsp; 00 00 70 96<br>Aug 13 20:09:17 1218638357 pluto[18847]: | emitting length of ISAKMP Notification Payload: 32<br>Aug 13 20:09:17 1218638357 pluto[18847]: | HASH computed:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; f4 72 e9 b7&nbsp; 5d 56 2e b4&nbsp; 94 4e 54 9d&nbsp; c2 fe 66 d5<br>Aug 13 20:09:17 1218638357 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:09:17 1218638357 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | computed Phase 2 IV:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 34 49 10 b3&nbsp; ef 81 30 d2&nbsp; 45 c1 c1 f9&nbsp; cc f9 fa 26<br>Aug 13 20:09:17 1218638357 pluto[18847]: | encrypting:<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 0b 00 00 14&nbsp; f4 72 e9 b7&nbsp; 5d 56 2e b4&nbsp; 94 4e 54 9d<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; c2 fe 66 d5&nbsp; 00 00 00 20&nbsp; 00 00 00 01&nbsp; 01 10 8d 29<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 00 00 70 96<br>Aug 13 20:09:17 1218638357 pluto[18847]: | IV:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 34 49 10 b3&nbsp; ef 81 30 d2&nbsp; 45 c1 c1 f9&nbsp; cc f9 fa 26<br>Aug 13 20:09:17 1218638357 pluto[18847]: | emitting 4 zero bytes of encryption padding into ISAKMP Message<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | encrypting using OAKLEY_3DES_CBC<br>Aug 13 20:09:17 1218638357 pluto[18847]: | next IV:&nbsp; 68 3d 12 81&nbsp; 31 90 7d 37<br>Aug 13 20:09:17 1218638357 pluto[18847]: | emitting length of ISAKMP Message: 84<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | sending 84 bytes for ISAKMP notify through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 08 10 05 01&nbsp; 90 9e d7 37&nbsp; 00 00 00 54&nbsp; 92 85 c4 7f<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 71 a5 28 e1&nbsp; 3e 19 69 f0&nbsp; f4 9f 53 62&nbsp; 36 6f 2a 27<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 9a 8f 20 c3&nbsp; 1d 96 51 88&nbsp; 1d 6c e0 69&nbsp; e4 e8 ef ee<br>
Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 07 2a 4f 0a&nbsp; f7 0e db 0b&nbsp; ff e2 65 d5&nbsp; 68 3d 12 81<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp;&nbsp; 31 90 7d 37<br>Aug 13 20:09:17 1218638357 pluto[18847]: | complete state transition with STF_IGNORE<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | next event EVENT_DPD in -1 seconds for #4<br>Aug 13 20:09:17 1218638357 pluto[18847]: |&nbsp; <br>Aug 13 20:09:17 1218638357 pluto[18847]: | *time to handle event<br>Aug 13 20:09:17 1218638357 pluto[18847]: | handling event EVENT_DPD<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | event after this is EVENT_PENDING_PHASE2 in 64 seconds<br>Aug 13 20:09:17 1218638357 pluto[18847]: | processing connection nton-1<br>Aug 13 20:09:17 1218638357 pluto[18847]: | inserting event EVENT_DPD, timeout in 30 seconds for #4<br>
Aug 13 20:09:17 1218638357 pluto[18847]: | next event EVENT_DPD in 30 seconds for #4<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp; <br>Aug 13 20:09:47 1218638387 pluto[18847]: | *received 84 bytes from <a href="http://172.16.1.2:500">172.16.1.2:500</a> on eth1 (port=500)<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 08 10 05 01&nbsp; 45 a2 bd e3&nbsp; 00 00 00 54&nbsp; 6a 04 05 82<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 33 6c 75 28&nbsp; 51 df d8 e6&nbsp; 72 ae cf f3&nbsp; f4 d3 89 70<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 2d 14 b2 19&nbsp; 9d 15 cc 6c&nbsp; 77 d3 4b 2d&nbsp; e0 35 b2 8b<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; db e8 4f c0&nbsp; cd 97 92 2f&nbsp; 4b ba 0f ae&nbsp; b9 13 ca 2c<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 1c 68 68 7b<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | **parse ISAKMP Message:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_INFO<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 45 a2 bd e3<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 84<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp; processing packet with exchange type=ISAKMP_XCHG_INFO (5)<br>Aug 13 20:09:47 1218638387 pluto[18847]: | ICOOKIE:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | RCOOKIE:&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: | peer:&nbsp; ac 10 01 02<br>Aug 13 20:09:47 1218638387 pluto[18847]: | state hash entry 28<br>Aug 13 20:09:47 1218638387 pluto[18847]: | peer and cookies match on #4, provided msgid 00000000 vs 0e723b1e/00000000<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | peer and cookies match on #3, provided msgid 00000000 vs 00000000/00000000<br>Aug 13 20:09:47 1218638387 pluto[18847]: | p15 state object #3 found, in STATE_MAIN_R3<br>Aug 13 20:09:47 1218638387 pluto[18847]: | processing connection nton-1<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: | computed Phase 2 IV:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ec 92 11 ce&nbsp; ca 28 b2 d3&nbsp; 55 a5 2f 6d&nbsp; 8d e6 de c9<br>Aug 13 20:09:47 1218638387 pluto[18847]: | received encrypted packet from <a href="http://172.16.1.2:500">172.16.1.2:500</a><br>
Aug 13 20:09:47 1218638387 pluto[18847]: | decrypting 56 bytes using algorithm OAKLEY_3DES_CBC<br>Aug 13 20:09:47 1218638387 pluto[18847]: | decrypted:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 0b 00 00 14&nbsp; 10 6f 09 00&nbsp; 91 df db 2a&nbsp; d9 01 97 fd<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 6f d6 28 e8&nbsp; 00 00 00 20&nbsp; 00 00 00 01&nbsp; 01 10 8d 28<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 00 00 70 97&nbsp; 00 00 00 00<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | next IV:&nbsp; b9 13 ca 2c&nbsp; 1c 68 68 7b<br>Aug 13 20:09:47 1218638387 pluto[18847]: | np=8 and sd=0x80e523c <br>Aug 13 20:09:47 1218638387 pluto[18847]: | ***parse ISAKMP Hash Payload:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_N<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 20<br>Aug 13 20:09:47 1218638387 pluto[18847]: | np=11 and sd=0x80e52e0 <br>Aug 13 20:09:47 1218638387 pluto[18847]: | ***parse ISAKMP Notification Payload:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; length: 32<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: 1<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 16<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; Notify Message Type: R_U_THERE<br>Aug 13 20:09:47 1218638387 pluto[18847]: | removing 4 bytes of padding<br>Aug 13 20:09:47 1218638387 pluto[18847]: | info:&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 00 00 70 97<br>Aug 13 20:09:47 1218638387 pluto[18847]: | processing informational R_U_THERE (36136)<br>Aug 13 20:09:47 1218638387 pluto[18847]: | **emit ISAKMP Message:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; initiator cookie:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; responder cookie:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_HASH<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; ISAKMP version: ISAKMP Version 1.0<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; exchange type: ISAKMP_XCHG_INFO<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; flags: ISAKMP_FLAG_ENCRYPTION<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; message ID:&nbsp; 1a ba 7b 05<br>Aug 13 20:09:47 1218638387 pluto[18847]: | ***emit ISAKMP Hash Payload:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_N<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | emitting 16 zero bytes of HASH into ISAKMP Hash Payload<br>Aug 13 20:09:47 1218638387 pluto[18847]: | emitting length of ISAKMP Hash Payload: 20<br>Aug 13 20:09:47 1218638387 pluto[18847]: | ***emit ISAKMP Notification Payload:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; next payload type: ISAKMP_NEXT_NONE<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; DOI: ISAKMP_DOI_IPSEC<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; protocol ID: 1<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; SPI size: 16<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp;&nbsp; Notify Message Type: R_U_THERE_ACK<br>Aug 13 20:09:47 1218638387 pluto[18847]: | emitting 8 raw bytes of notify icookie into ISAKMP Notification Payload<br>Aug 13 20:09:47 1218638387 pluto[18847]: | notify icookie&nbsp; ce 11 f6 da&nbsp; 11 18 14 59<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | emitting 8 raw bytes of notify rcookie into ISAKMP Notification Payload<br>Aug 13 20:09:47 1218638387 pluto[18847]: | notify rcookie&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: | emitting 4 raw bytes of notify data into ISAKMP Notification Payload<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | notify data&nbsp; 00 00 70 97<br>Aug 13 20:09:47 1218638387 pluto[18847]: | emitting length of ISAKMP Notification Payload: 32<br>Aug 13 20:09:47 1218638387 pluto[18847]: | HASH computed:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; d8 6c 26 aa&nbsp; 77 a5 93 25&nbsp; 09 1f d0 0b&nbsp; 6a 88 a2 95<br>Aug 13 20:09:47 1218638387 pluto[18847]: | last Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>Aug 13 20:09:47 1218638387 pluto[18847]: | current Phase 1 IV:&nbsp; 87 cf 1f 02&nbsp; 7a ff f5 a0<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | computed Phase 2 IV:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 05 63 25 53&nbsp; de 86 dc 41&nbsp; fb ef b7 f5&nbsp; 6a f6 3f 41<br>Aug 13 20:09:47 1218638387 pluto[18847]: | encrypting:<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 0b 00 00 14&nbsp; d8 6c 26 aa&nbsp; 77 a5 93 25&nbsp; 09 1f d0 0b<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 6a 88 a2 95&nbsp; 00 00 00 20&nbsp; 00 00 00 01&nbsp; 01 10 8d 29<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 00 00 70 97<br>Aug 13 20:09:47 1218638387 pluto[18847]: | IV:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 05 63 25 53&nbsp; de 86 dc 41&nbsp; fb ef b7 f5&nbsp; 6a f6 3f 41<br>Aug 13 20:09:47 1218638387 pluto[18847]: | emitting 4 zero bytes of encryption padding into ISAKMP Message<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | encrypting using OAKLEY_3DES_CBC<br>Aug 13 20:09:47 1218638387 pluto[18847]: | next IV:&nbsp; 8d 0a 9e b1&nbsp; 25 d2 73 17<br>Aug 13 20:09:47 1218638387 pluto[18847]: | emitting length of ISAKMP Message: 84<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | sending 84 bytes for ISAKMP notify through eth1:500 to <a href="http://172.16.1.2:500">172.16.1.2:500</a>:<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; ce 11 f6 da&nbsp; 11 18 14 59&nbsp; 7a 0e df 4c&nbsp; 12 87 e0 a0<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 08 10 05 01&nbsp; 1a ba 7b 05&nbsp; 00 00 00 54&nbsp; 8c 21 81 5b<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 35 9a 3d 76&nbsp; e6 7c a2 27&nbsp; e3 96 d4 8d&nbsp; 30 44 80 e6<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 71 fb 0e a3&nbsp; 3d 73 f8 76&nbsp; 67 99 a6 a6&nbsp; b6 56 1c ad<br>
Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; e2 a1 7f ca&nbsp; 48 bc d5 fb&nbsp; 94 1b b5 56&nbsp; 8d 0a 9e b1<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp;&nbsp; 25 d2 73 17<br>Aug 13 20:09:47 1218638387 pluto[18847]: | complete state transition with STF_IGNORE<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | next event EVENT_DPD in 0 seconds for #4<br>Aug 13 20:09:47 1218638387 pluto[18847]: |&nbsp; <br>Aug 13 20:09:47 1218638387 pluto[18847]: | *time to handle event<br>Aug 13 20:09:47 1218638387 pluto[18847]: | handling event EVENT_DPD<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | event after this is EVENT_PENDING_PHASE2 in 34 seconds<br>Aug 13 20:09:47 1218638387 pluto[18847]: | processing connection nton-1<br>Aug 13 20:09:47 1218638387 pluto[18847]: | inserting event EVENT_DPD, timeout in 30 seconds for #4<br>
Aug 13 20:09:47 1218638387 pluto[18847]: | next event EVENT_DPD in 30 seconds for #4<br>Aug 14 12:36:57 1218697617 ipsec__plutorun: Starting Pluto subsystem...<br>Aug 14 12:36:57 1218697617 pluto[4918]: Starting Pluto (Openswan Version 2.4.12 LDAP_V3 PLUTO_USES_KEYRR)<br>
</div>