From jburke at remap.UCLA.EDU Mon Dec 1 08:00:40 2014 From: jburke at remap.UCLA.EDU (Burke, Jeff) Date: Mon, 1 Dec 2014 16:00:40 +0000 Subject: [Nfd-dev] [Ndn-app] NFD faces/create: requires canonical FaceUri In-Reply-To: Message-ID: Hi Junxiao, Hi Jeff DNS is a complex affair that has many details to take care of. I don't understand exactly what's complex for NFD here; is it the asynchronous nature of the resolution process that you prefer not be handled in the daemon? NFD isn't the right place to perform DNS resolution, so we have decided to off-load this operation to the client library. ndn-cxx provides FaceUri::isCanonical method that determines whether a FaceUri is canonical. ndn-cxx provides FaceUri::canonize method to perform DNS resolution, and obtain a canonical FaceUri. Most users shouldn't be affected, because nfdc command line tool will canonize FaceUri before creating face. NLSR is the only known app that uses faces/create command through ndn-cxx Controller API, and NLSR has been updated I'm not sure that it's good practice to assume you know the cases in which the library and daemon are being used in the research community. Apps based on ndn-ccl shouldn't be affected because ndn-ccl API doesn't have a face creation method. udp and udp4 are not equivalent. udp can be resolved to either udp4 or udp6. udp://192.0.2.1 will be canonized as udp4://192.0.2.1:6363 Yes, all I was getting at is that the convention could be similarly defined at the NFD level. Is the use of udp and tcp in URI schemes, rather than, say, ndnudp or ndntcp going to cause any conflicts with registered URI schemes in the future? http://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml Jeff Yours, Junxiao On Nov 28, 2014 12:45 PM, "Burke, Jeff" > wrote: Hi Junxiao, Thanks. What's the design rationale for the changes? (In general, I'd suggest that API updates should include at least a brief statement on why they're being made.) The removal of support for DNS names seems odd from a usability standpoint, and I don't understand why udp and udp4 can't just be considered equivalent. Thanks, Jeff From: Junxiao Shi > Date: Thu, 27 Nov 2014 20:59:27 -0700 To: "ndn-app at lists.cs.ucla.edu" >, "ndn-lib at lists.cs.ucla.edu" >, ">" > Subject: [Ndn-app] NFD faces/create: requires canonical FaceUri Dear folks Please be aware of an upcoming NFD Management API change: faces/create command requires canonical FaceUri. This change will happen no sooner than Dec 04 12:00 UTC. A canonical FaceUri for UDP and TCP tunnels should specify either IPv4 or IPv6, have IP address instead of hostname, and contain port number. Examples of canonical FaceUri: udp4://192.0.2.1:6363 udp6://[2001:db8::1]:6363 tcp4://192.0.2.1:6363 tcp6://[2001:db8::1]:6363 Examples of non-canonical FaceUri that will be rejected by faces/create command after the change: udp://192.0.2.1 udp://example.net:6363 udp4://example.net:6363 udp6://example.net:6363 tcp://192.0.2.1 tcp://example.net:6363 tcp4://example.net:6363 tcp6://example.net:6363 If you have a library / application that utilizes NFD faces/create command, please canonize the FaceUri before sending the command. Scripts calling nfdc command line tool are unaffected by this change. Yours, Junxiao _______________________________________________ Ndn-app mailing list Ndn-app at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-app -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Mon Dec 1 08:11:12 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Mon, 1 Dec 2014 09:11:12 -0700 Subject: [Nfd-dev] [Ndn-app] NFD faces/create: requires canonical FaceUri In-Reply-To: References: Message-ID: Hi Jeff DNS resolution is simply not the responsibility of NFD. Management utility (nfdc) should take care of that. After completing the resolution process, a canonical FaceUri is generated and passed to NFD for face creation (and face query). I'm not assuming anything about how NFD is used in the community. The first message in this thread is an announcement that all users must change their programs if they are using this specific feature. Face query operation requires exact match of FaceUri. That's why NFD expects a canonical FaceUri that remains the same for the same endpoint. Allowing any alias of a canonical FaceUri would cause problems in face query operation. The usage of udp4, udp6, tcp4, tcp6 doesn't require IANA registration, because FaceUri is not in the same namespace as URI. Yours, Junxiao On Mon, Dec 1, 2014 at 9:00 AM, Burke, Jeff wrote: > Hi Junxiao, > > Hi Jeff > > DNS is a complex affair that has many details to take care of. > > I don't understand exactly what's complex for NFD here; is it the > asynchronous nature of the resolution process that you prefer not be > handled in the daemon? > > > NFD isn't the right place to perform DNS resolution, so we have decided to > off-load this operation to the client library. > ndn-cxx provides FaceUri::isCanonical method that determines whether a > FaceUri is canonical. > ndn-cxx provides FaceUri::canonize method to perform DNS resolution, and > obtain a canonical FaceUri. > > Most users shouldn't be affected, because nfdc command line tool will > canonize FaceUri before creating face. > > > NLSR is the only known app that uses faces/create command through ndn-cxx > Controller API, and NLSR has been updated > > I'm not sure that it's good practice to assume you know the cases in > which the library and daemon are being used in the research community. > > > Apps based on ndn-ccl shouldn't be affected because ndn-ccl API doesn't > have a face creation method. > > udp and udp4 are not equivalent. udp can be resolved to either udp4 or > udp6. > udp://192.0.2.1 will be canonized as udp4://192.0.2.1:6363 > > Yes, all I was getting at is that the convention could be similarly > defined at the NFD level. > > Is the use of udp and tcp in URI schemes, rather than, say, ndnudp or > ndntcp going to cause any conflicts with registered URI schemes in the > future? http://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml > > Jeff > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jburke at remap.UCLA.EDU Mon Dec 1 08:23:31 2014 From: jburke at remap.UCLA.EDU (Burke, Jeff) Date: Mon, 1 Dec 2014 16:23:31 +0000 Subject: [Nfd-dev] [Ndn-app] NFD faces/create: requires canonical FaceUri In-Reply-To: Message-ID: Hi Jeff DNS resolution is simply not the responsibility of NFD. Management utility (nfdc) should take care of that. Hi Junxiao, I'm not arguing with the separation, but I want to understand the design rationale so that I can better understand what goes in and what stays out of NFD from the perspective of those developing it. What is it about DNS resolution that motivated its exclusion from NFD? Thanks, Jeff After completing the resolution process, a canonical FaceUri is generated and passed to NFD for face creation (and face query). I'm not assuming anything about how NFD is used in the community. The first message in this thread is an announcement that all users must change their programs if they are using this specific feature. Face query operation requires exact match of FaceUri. That's why NFD expects a canonical FaceUri that remains the same for the same endpoint. Allowing any alias of a canonical FaceUri would cause problems in face query operation. The usage of udp4, udp6, tcp4, tcp6 doesn't require IANA registration, because FaceUri is not in the same namespace as URI. Yours, Junxiao On Mon, Dec 1, 2014 at 9:00 AM, Burke, Jeff > wrote: Hi Junxiao, Hi Jeff DNS is a complex affair that has many details to take care of. I don't understand exactly what's complex for NFD here; is it the asynchronous nature of the resolution process that you prefer not be handled in the daemon? NFD isn't the right place to perform DNS resolution, so we have decided to off-load this operation to the client library. ndn-cxx provides FaceUri::isCanonical method that determines whether a FaceUri is canonical. ndn-cxx provides FaceUri::canonize method to perform DNS resolution, and obtain a canonical FaceUri. Most users shouldn't be affected, because nfdc command line tool will canonize FaceUri before creating face. NLSR is the only known app that uses faces/create command through ndn-cxx Controller API, and NLSR has been updated I'm not sure that it's good practice to assume you know the cases in which the library and daemon are being used in the research community. Apps based on ndn-ccl shouldn't be affected because ndn-ccl API doesn't have a face creation method. udp and udp4 are not equivalent. udp can be resolved to either udp4 or udp6. udp://192.0.2.1 will be canonized as udp4://192.0.2.1:6363 Yes, all I was getting at is that the convention could be similarly defined at the NFD level. Is the use of udp and tcp in URI schemes, rather than, say, ndnudp or ndntcp going to cause any conflicts with registered URI schemes in the future? http://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From josh at caida.org Mon Dec 1 16:10:46 2014 From: josh at caida.org (Josh Polterock) Date: Mon, 1 Dec 2014 16:10:46 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: Message-ID: <20141202001046.GC7225@caida.org> Junxiao, I have an iMac 27-inch, Mid 2010, running OS X 10.9.5. When I do a 'sudo port selfupdate' followed by 'sudo port upgrade outdated' I get boost-1.56.0_2+no_single+no_static+python27.darwin_13.x86_64.tbz2 Would I need to manually install boost 1.57? Josh On Tue, Nov 25, 2014 at 11:29:16PM -0700, Junxiao Shi wrote: > Dear folks > > Is anyone on this mailing list running OSX (any of 10.8 10.9 10.10) with > Boost 1.57 installed? > We need a volunteer to test some code on this specific platform. > Please reply-all if you have a machine with this setup. > > Yours, Junxiao > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev From shijunxiao at email.arizona.edu Mon Dec 1 16:27:17 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Mon, 1 Dec 2014 17:27:17 -0700 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141202001046.GC7225@caida.org> References: <20141202001046.GC7225@caida.org> Message-ID: Hi Josh Thanks for your offer. Boost 1.57 isn't in MacPorts or HomeBrew yet, so it needs to be installed manually from source code. Yours, Junxiao On Dec 1, 2014 5:10 PM, "Josh Polterock" wrote: > Junxiao, > > I have an iMac 27-inch, Mid 2010, running OS X 10.9.5. > > When I do a 'sudo port selfupdate' followed by 'sudo port upgrade > outdated' I get > boost-1.56.0_2+no_single+no_static+python27.darwin_13.x86_64.tbz2 > > Would I need to manually install boost 1.57? > > Josh > > On Tue, Nov 25, 2014 at 11:29:16PM -0700, Junxiao Shi wrote: > > Dear folks > > > > Is anyone on this mailing list running OSX (any of 10.8 10.9 10.10) with > > Boost 1.57 installed? > > We need a volunteer to test some code on this specific platform. > > Please reply-all if you have a machine with this setup. > > > > Yours, Junxiao > > > _______________________________________________ > > Nfd-dev mailing list > > Nfd-dev at lists.cs.ucla.edu > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Mon Dec 1 23:19:49 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Tue, 2 Dec 2014 00:19:49 -0700 Subject: [Nfd-dev] Import repo-ng skiplist.hpp Message-ID: Hi Shuo I want to import repo-ng/src/storage/skiplist.hpp to NFD. Please grant permission. Use REPLY-ALL to ensure this permission is logged by mailing list. Yours, Junxiao On Oct 20, 2014 10:30 PM, "Alex Afanasyev" wrote: > > You should always read the license / contact the original copyright holders whenever you're borrowing any code. For some popular licenses, such as GPL/LPGL, there are a numerous explanations on the Internet describing how properly use that code in the project. > > --- > Alex -------------- next part -------------- An HTML attachment was scrubbed... URL: From chenatu2006 at gmail.com Mon Dec 1 23:55:17 2014 From: chenatu2006 at gmail.com (Shuo Chen) Date: Tue, 2 Dec 2014 15:55:17 +0800 Subject: [Nfd-dev] Import repo-ng skiplist.hpp In-Reply-To: References: Message-ID: Hi Junxiao That's OK~ However, wentao has noticed that repo consumes too much memory. I don't know whether there is a memory leak or extra memory usage in this skiplist. You can review it before importing to NFD. ---- Shuo Chen On Tue, Dec 2, 2014 at 3:19 PM, Junxiao Shi wrote: > Hi Shuo > > I want to import repo-ng/src/storage/skiplist.hpp to NFD. > Please grant permission. Use REPLY-ALL to ensure this permission is logged > by mailing list. > > Yours, Junxiao > > On Oct 20, 2014 10:30 PM, "Alex Afanasyev" > wrote: > > > > You should always read the license / contact the original copyright > holders whenever you're borrowing any code. For some popular licenses, > such as GPL/LPGL, there are a numerous explanations on the Internet > describing how properly use that code in the project. > > > > --- > > Alex > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From josh at caida.org Tue Dec 2 10:52:11 2014 From: josh at caida.org (Josh Polterock) Date: Tue, 2 Dec 2014 10:52:11 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> Message-ID: <20141202185211.GH7225@caida.org> Junxiao, O.k. I have the boost 1.57 libraries manually installed. I specified no library-name-list options so everything should be there. Josh On Mon, Dec 01, 2014 at 05:27:17PM -0700, Junxiao Shi wrote: > Hi Josh > > Thanks for your offer. > Boost 1.57 isn't in MacPorts or HomeBrew yet, so it needs to be installed > manually from source code. > > Yours, Junxiao > On Dec 1, 2014 5:10 PM, "Josh Polterock" wrote: > > > Junxiao, > > > > I have an iMac 27-inch, Mid 2010, running OS X 10.9.5. > > > > When I do a 'sudo port selfupdate' followed by 'sudo port upgrade > > outdated' I get > > boost-1.56.0_2+no_single+no_static+python27.darwin_13.x86_64.tbz2 > > > > Would I need to manually install boost 1.57? > > > > Josh > > > > On Tue, Nov 25, 2014 at 11:29:16PM -0700, Junxiao Shi wrote: > > > Dear folks > > > > > > Is anyone on this mailing list running OSX (any of 10.8 10.9 10.10) with > > > Boost 1.57 installed? > > > We need a volunteer to test some code on this specific platform. > > > Please reply-all if you have a machine with this setup. > > > > > > Yours, Junxiao > > > > > _______________________________________________ > > > Nfd-dev mailing list > > > Nfd-dev at lists.cs.ucla.edu > > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > > From shijunxiao at email.ARIZONA.EDU Tue Dec 2 10:57:54 2014 From: shijunxiao at email.ARIZONA.EDU (Junxiao Shi) Date: Tue, 2 Dec 2014 11:57:54 -0700 Subject: [Nfd-dev] Fwd: need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141202185211.GH7225@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> Message-ID: Hi Alex and Davide Please advise Josh on how to test Change 1444 for Task 1922. Yours, Junxiao ---------- Forwarded message ---------- From: "Josh Polterock" Date: Dec 2, 2014 11:52 AM Subject: Re: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 To: "Junxiao Shi" Cc: "<nfd-dev at lists.cs.ucla.edu>" > Junxiao, > > O.k. I have the boost 1.57 libraries manually installed. I specified > no library-name-list options so everything should be there. > > Josh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jefft0 at remap.UCLA.EDU Mon Dec 8 09:00:15 2014 From: jefft0 at remap.UCLA.EDU (Thompson, Jeff) Date: Mon, 8 Dec 2014 17:00:15 +0000 Subject: [Nfd-dev] NFD release before the February NDN retreat? Message-ID: Hello. Do you plan a new NFD release before the February NDN retreat? I ask because we would want to coordinate the next platform release. Thanks, - Jeff T -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Mon Dec 8 09:02:43 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Mon, 8 Dec 2014 10:02:43 -0700 Subject: [Nfd-dev] NFD release before the February NDN retreat? In-Reply-To: References: Message-ID: Hi JeffT As decided in 20141110 NFD conference call, NFD v0.3 will be released on Feb 20, 2015. Please wait for Beichuan's official announcement. Yours, Junxiao On Mon, Dec 8, 2014 at 10:00 AM, Thompson, Jeff wrote: > Hello. > > Do you plan a new NFD release before the February NDN retreat? I ask > because we would want to coordinate the next platform release. > > Thanks, > - Jeff T > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jburke at remap.UCLA.EDU Mon Dec 8 09:11:15 2014 From: jburke at remap.UCLA.EDU (Burke, Jeff) Date: Mon, 8 Dec 2014 17:11:15 +0000 Subject: [Nfd-dev] NFD release before the February NDN retreat? In-Reply-To: Message-ID: Hi Junxiao, Thanks. Apologies if I've lost track of where the documentation is, but are notes for the NFD calls online somewhere? Jeff From: Junxiao Shi > Date: Mon, 8 Dec 2014 10:02:43 -0700 To: "Thompson, Jeff" > Cc: nfd-dev > Subject: Re: [Nfd-dev] NFD release before the February NDN retreat? Hi JeffT As decided in 20141110 NFD conference call, NFD v0.3 will be released on Feb 20, 2015. Please wait for Beichuan's official announcement. Yours, Junxiao On Mon, Dec 8, 2014 at 10:00 AM, Thompson, Jeff > wrote: Hello. Do you plan a new NFD release before the February NDN retreat? I ask because we would want to coordinate the next platform release. Thanks, - Jeff T _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From bzhang at cs.ARIZONA.EDU Mon Dec 8 09:40:24 2014 From: bzhang at cs.ARIZONA.EDU (Beichuan Zhang) Date: Mon, 8 Dec 2014 10:40:24 -0700 Subject: [Nfd-dev] NFD release before the February NDN retreat? In-Reply-To: References: Message-ID: <18E89A5C-069A-4B98-BB2A-C4C4AB487180@cs.arizona.edu> Yes, we plan to make the next release (0.3) on Feb 20. Developers will or already got assignments via redmine, and probably more emails coming. We haven?t be able to take notes of NFD calls. For most issues Junxiao has been updating redmine text to reflect the discussion/conclusion to some degree. Beichuan > On Dec 8, 2014, at 10:11 AM, Burke, Jeff wrote: > > Hi Junxiao, > > Thanks. Apologies if I've lost track of where the documentation is, but are notes for the NFD calls online somewhere? > > Jeff > > From: Junxiao Shi > > Date: Mon, 8 Dec 2014 10:02:43 -0700 > To: "Thompson, Jeff" > > Cc: nfd-dev > > Subject: Re: [Nfd-dev] NFD release before the February NDN retreat? > >> Hi JeffT >> >> As decided in 20141110 NFD conference call, NFD v0.3 will be released on Feb 20, 2015. >> Please wait for Beichuan's official announcement. >> >> Yours, Junxiao >> >> On Mon, Dec 8, 2014 at 10:00 AM, Thompson, Jeff > wrote: >>> Hello. >>> >>> Do you plan a new NFD release before the February NDN retreat? I ask because we would want to coordinate the next platform release. >>> >>> Thanks, >>> - Jeff T >>> >>> _______________________________________________ >>> Nfd-dev mailing list >>> Nfd-dev at lists.cs.ucla.edu >>> http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev >>> >> >> _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc at caida.ORG Mon Dec 8 13:01:17 2014 From: kc at caida.ORG (k claffy) Date: Mon, 8 Dec 2014 13:01:17 -0800 Subject: [Nfd-dev] NFD release before the February NDN retreat? In-Reply-To: <18E89A5C-069A-4B98-BB2A-C4C4AB487180@cs.arizona.edu> References: <18E89A5C-069A-4B98-BB2A-C4C4AB487180@cs.arizona.edu> Message-ID: <20141208210117.GA83293@caida.org> Actually I thought there was going to be a calendar set up for important milestones like release dates, which is also where dates/times and how-to-participate URL of calls should be listed? i thought there was already some google calendar for this that i lost track of. k On Mon, Dec 08, 2014 at 10:40:24AM -0700, Beichuan Zhang wrote: Yes, we plan to make the next release (0.3) on Feb 20. Developers will or already got assignments via redmine, and probably more emails coming. We haven???t be able to take notes of NFD calls. For most issues Junxiao has been updating redmine text to reflect the discussion/conclusion to some degree. Beichuan > On Dec 8, 2014, at 10:11 AM, Burke, Jeff wrote: > > Hi Junxiao, > > Thanks. Apologies if I've lost track of where the documentation is, but are notes for the NFD calls online somewhere? > > Jeff > > From: Junxiao Shi > > Date: Mon, 8 Dec 2014 10:02:43 -0700 > To: "Thompson, Jeff" > > Cc: nfd-dev > > Subject: Re: [Nfd-dev] NFD release before the February NDN retreat? > >> Hi JeffT >> >> As decided in 20141110 NFD conference call, NFD v0.3 will be released on Feb 20, 2015. >> Please wait for Beichuan's official announcement. >> >> Yours, Junxiao >> >> On Mon, Dec 8, 2014 at 10:00 AM, Thompson, Jeff > wrote: >>> Hello. >>> >>> Do you plan a new NFD release before the February NDN retreat? I ask because we would want to coordinate the next platform release. >>> >>> Thanks, >>> - Jeff T >>> >>> _______________________________________________ >>> Nfd-dev mailing list >>> Nfd-dev at lists.cs.ucla.edu >>> http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev >>> >> >> _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev From nnaren1902 at gmail.com Tue Dec 9 10:57:29 2014 From: nnaren1902 at gmail.com (NAREN N) Date: Tue, 9 Dec 2014 10:57:29 -0800 Subject: [Nfd-dev] NDN traffic generator Message-ID: Hello everyone, I was running some experiments for a course project and was using NDN traffic generator to measure of the performance and how each factor contributes to the performance of the NFD. However, I noticed something weird during the experiments. When having the interestlifetime=100ms and the freshness period=100ms same between the runs, and also the contents of the data packet being the same, I ran the traffic generator for different burst rates. Here are the rates >1 interest / second -----> RTT=71ms and InterstLoss = 20% >10 interests/second------> RTT=27ms and interestLoss = 1% > 100 interests/second -------> RTT=13ms and interestLoss = 0% >1000 interests/second ------>RTT=22ms and interestLoss=0% So I was wondering why would the roundtrip time decrease with increase in Interest rate?? I have a feeling this has something do with the traffic generator logger code, which isn't reporting the RTT properly... Also I see a interest loss when the Interest rate is lower, which is completely weird. I was expecting the interest loss to be higher when there was a burst of interests but this is opposite to what I was expecting. Any help would be appreciated with this! regards, Naren -------------- next part -------------- An HTML attachment was scrubbed... URL: From nnaren1902 at gmail.com Tue Dec 9 10:58:46 2014 From: nnaren1902 at gmail.com (NAREN N) Date: Tue, 9 Dec 2014 10:58:46 -0800 Subject: [Nfd-dev] NDN traffic generator Message-ID: Hello, Also forgot to mention that I am using only one of the gateways i.e the spurs.cs.ucla.edu regards, Naren -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Tue Dec 9 11:02:19 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Tue, 9 Dec 2014 12:02:19 -0700 Subject: [Nfd-dev] NDN traffic generator In-Reply-To: References: Message-ID: Hi Naren Please attach your configuration files and the exact command line you use to invoke traffic generator, so that others can try to reproduce the problem. Please also mention the version (obtained by `git log | head -1`) of traffic generator, and the output of `nfd-status`. Yours, Junxiao On Dec 9, 2014 11:57 AM, "NAREN N" wrote: > Hello everyone, > I was running some experiments for a course project and was using NDN > traffic generator to measure of the performance and how each factor > contributes to the performance of the NFD. > However, I noticed something weird during the experiments. > > When having the interestlifetime=100ms and the freshness period=100ms same > between the runs, and also the contents of the data packet being the same, > I ran the traffic generator for different burst rates. Here are the rates > > >1 interest / second -----> RTT=71ms and InterstLoss = 20% > >10 interests/second------> RTT=27ms and interestLoss = 1% > > 100 interests/second -------> RTT=13ms and interestLoss = 0% > >1000 interests/second ------>RTT=22ms and interestLoss=0% > > So I was wondering why would the roundtrip time decrease with increase in > Interest rate?? I have a feeling this has something do with the traffic > generator logger code, which isn't reporting the RTT properly... > > Also I see a interest loss when the Interest rate is lower, which is > completely weird. I was expecting the interest loss to be higher when there > was a burst of interests but this is opposite to what I was expecting. > > Any help would be appreciated with this! > > regards, > Naren > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lanwang at memphis.edu Tue Dec 9 11:18:30 2014 From: lanwang at memphis.edu (Lan Wang (lanwang)) Date: Tue, 9 Dec 2014 19:18:30 +0000 Subject: [Nfd-dev] NDN traffic generator In-Reply-To: References: Message-ID: <57C2D86A-19A7-4EB4-BA3D-24E2EACD7B32@memphis.edu> On Dec 9, 2014, at 12:57 PM, NAREN N > wrote: Hello everyone, I was running some experiments for a course project and was using NDN traffic generator to measure of the performance and how each factor contributes to the performance of the NFD. However, I noticed something weird during the experiments. When having the interestlifetime=100ms and the freshness period=100ms same between the runs, and also the contents of the data packet being the same, I ran the traffic generator for different burst rates. Here are the rates >1 interest / second -----> RTT=71ms and InterstLoss = 20% >10 interests/second------> RTT=27ms and interestLoss = 1% > 100 interests/second -------> RTT=13ms and interestLoss = 0% >1000 interests/second ------>RTT=22ms and interestLoss=0% So I was wondering why would the roundtrip time decrease with increase in Interest rate?? I have a feeling this has something do with the traffic generator logger code, which isn't reporting the RTT properly... Also I see a interest loss when the Interest rate is lower, which is completely weird. I was expecting the interest loss to be higher when there was a burst of interests but this is opposite to what I was expecting. Any help would be appreciated with this! Have you set the option MustBeFresh to be true in the client's configuration file? If so, your observation is due to your freshness period setting and interval between Interests. If the sending rate is 1/s, then all of the Interests will have to fetch new data from the producer (because the data is expired when the new Interest comes). The higher the sending rate, the more likely that the data in the local cache or an intermediate cache is fresh and the Interest does not have to go all the way to the producer. Lan regards, Naren _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From nnaren1902 at gmail.com Tue Dec 9 11:44:29 2014 From: nnaren1902 at gmail.com (NAREN N) Date: Tue, 9 Dec 2014 11:44:29 -0800 Subject: [Nfd-dev] NDN traffic generator In-Reply-To: <57C2D86A-19A7-4EB4-BA3D-24E2EACD7B32@memphis.edu> References: <57C2D86A-19A7-4EB4-BA3D-24E2EACD7B32@memphis.edu> Message-ID: Hello, Yes I believe that is the case. So what would be a good way to get a sense of NFD performance?? Basically, we are trying to stress test the NFD and see when it will start dropping interests. So should I set the freshness period high and the interest lifetime to be low and increase the interest rates? -Naren On Tue, Dec 9, 2014 at 11:18 AM, Lan Wang (lanwang) wrote: > > > > On Dec 9, 2014, at 12:57 PM, NAREN N > wrote: > > Hello everyone, > I was running some experiments for a course project and was using NDN > traffic generator to measure of the performance and how each factor > contributes to the performance of the NFD. > However, I noticed something weird during the experiments. > > When having the interestlifetime=100ms and the freshness period=100ms > same between the runs, and also the contents of the data packet being the > same, I ran the traffic generator for different burst rates. Here are the > rates > > >1 interest / second -----> RTT=71ms and InterstLoss = 20% > >10 interests/second------> RTT=27ms and interestLoss = 1% > > 100 interests/second -------> RTT=13ms and interestLoss = 0% > >1000 interests/second ------>RTT=22ms and interestLoss=0% > > So I was wondering why would the roundtrip time decrease with increase > in Interest rate?? I have a feeling this has something do with the traffic > generator logger code, which isn't reporting the RTT properly... > > Also I see a interest loss when the Interest rate is lower, which is > completely weird. I was expecting the interest loss to be higher when there > was a burst of interests but this is opposite to what I was expecting. > > Any help would be appreciated with this! > > > Have you set the option MustBeFresh to be true in the client's > configuration file? If so, your observation is due to your freshness > period setting and interval between Interests. If the sending rate is 1/s, > then all of the Interests will have to fetch new data from the producer > (because the data is expired when the new Interest comes). The higher the > sending rate, the more likely that the data in the local cache or an > intermediate cache is fresh and the Interest does not have to go all the > way to the producer. > > Lan > > > regards, > Naren > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lanwang at memphis.edu Tue Dec 9 12:03:19 2014 From: lanwang at memphis.edu (Lan Wang (lanwang)) Date: Tue, 9 Dec 2014 20:03:19 +0000 Subject: [Nfd-dev] NDN traffic generator In-Reply-To: References: <57C2D86A-19A7-4EB4-BA3D-24E2EACD7B32@memphis.edu> Message-ID: <995A00F6-CB6C-4C04-989D-20A82F827804@memphis.edu> Just set the freshness period to be the lower than the smallest interval between the Interests. Lan On Dec 9, 2014, at 1:44 PM, NAREN N > wrote: Hello, Yes I believe that is the case. So what would be a good way to get a sense of NFD performance?? Basically, we are trying to stress test the NFD and see when it will start dropping interests. So should I set the freshness period high and the interest lifetime to be low and increase the interest rates? -Naren On Tue, Dec 9, 2014 at 11:18 AM, Lan Wang (lanwang) > wrote: On Dec 9, 2014, at 12:57 PM, NAREN N > wrote: Hello everyone, I was running some experiments for a course project and was using NDN traffic generator to measure of the performance and how each factor contributes to the performance of the NFD. However, I noticed something weird during the experiments. When having the interestlifetime=100ms and the freshness period=100ms same between the runs, and also the contents of the data packet being the same, I ran the traffic generator for different burst rates. Here are the rates >1 interest / second -----> RTT=71ms and InterstLoss = 20% >10 interests/second------> RTT=27ms and interestLoss = 1% > 100 interests/second -------> RTT=13ms and interestLoss = 0% >1000 interests/second ------>RTT=22ms and interestLoss=0% So I was wondering why would the roundtrip time decrease with increase in Interest rate?? I have a feeling this has something do with the traffic generator logger code, which isn't reporting the RTT properly... Also I see a interest loss when the Interest rate is lower, which is completely weird. I was expecting the interest loss to be higher when there was a burst of interests but this is opposite to what I was expecting. Any help would be appreciated with this! Have you set the option MustBeFresh to be true in the client's configuration file? If so, your observation is due to your freshness period setting and interval between Interests. If the sending rate is 1/s, then all of the Interests will have to fetch new data from the producer (because the data is expired when the new Interest comes). The higher the sending rate, the more likely that the data in the local cache or an intermediate cache is fresh and the Interest does not have to go all the way to the producer. Lan regards, Naren _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From lanwang at memphis.edu Tue Dec 9 12:56:21 2014 From: lanwang at memphis.edu (Lan Wang (lanwang)) Date: Tue, 9 Dec 2014 20:56:21 +0000 Subject: [Nfd-dev] Fwd: How ccnx sets sock file References: <1418154136788.42446@memphis.edu> Message-ID: <5DF45100-C10C-4F6F-9F5D-9260AAB0FC8C@memphis.edu> Any suggestions on how to solve this problem? Lan Begin forwarded message: From: "Ashlesh Gawande (agawande)" > Subject: Re: How ccnx sets sock file Date: December 9, 2014 1:42:12 PM CST To: "Lan Wang (lanwang)" > Cc: "Vince Lehman (vslehman)" > So I am using the mininet (miniccnx) environment where virtual machines share file systems. Miniccnx can run multiple instances of CCNx on these virtual machines. The sock file it uses can be specified as following: export CCN_LOCAL_SOCKNAME=/tmp/file.sock This is what miniccnx does on each node before starting CCNx when it instantiates the nodes. For NFD: I set up two nodes connected to each other. Then if I want to start different instances of NFD and applications on them. To do this I need to have different sock files, but the sock file is hard coded in ndn-cxx. As a temporary work around heres what I did: 1) Compiled ndn-cxx with a different sock file (/var/run/host1-nfd.conf) and then compiled NFD and moved the binaries to a folder on desktop. 2) Copied the /usr/local/etc/ndn/nfd.conf file to /usr/local/etc/ndn/host1-nfd.conf and changed the sock file name to /var/run/host1-nfd.conf. 3) Started nfd from that folder using the following: ./nfd --config /usr/local/etc/ndn/host1-nfd.conf & ./nfd-status ? and ./nfdc works properly. 4) I repeat the procedure for the other node. I was wondering if there is an easy way? Vince has directed me to how Obaid was running it: http://redmine.named-data.net/issues/1790? Ashlesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Tue Dec 9 12:59:27 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Tue, 9 Dec 2014 13:59:27 -0700 Subject: [Nfd-dev] Fwd: Fwd: How ccnx sets sock file In-Reply-To: <5DF45100-C10C-4F6F-9F5D-9260AAB0FC8C@memphis.edu> References: <1418154136788.42446@memphis.edu> <5DF45100-C10C-4F6F-9F5D-9260AAB0FC8C@memphis.edu> Message-ID: This is a question about CCNx. I'm forwarding this question to ccnx mailing list. ---------- Forwarded message ---------- From: Lan Wang (lanwang) Date: Tue, Dec 9, 2014 at 1:56 PM Subject: [Nfd-dev] Fwd: How ccnx sets sock file To: "nfd-dev at lists.cs.ucla.edu" Any suggestions on how to solve this problem? Lan Begin forwarded message: *From: *"Ashlesh Gawande (agawande)" *Subject: **Re: How ccnx sets sock file* *Date: *December 9, 2014 1:42:12 PM CST *To: *"Lan Wang (lanwang)" *Cc: *"Vince Lehman (vslehman)" So I am using the mininet (miniccnx) environment where virtual machines share file systems. Miniccnx can run multiple instances of CCNx on these virtual machines. The sock file it uses can be specified as following: export CCN_LOCAL_SOCKNAME=/tmp/file.sock This is what miniccnx does on each node before starting CCNx when it instantiates the nodes. For NFD: I set up two nodes connected to each other. Then if I want to start different instances of NFD and applications on them. To do this I need to have different sock files, but the sock file is hard coded in ndn-cxx. As a temporary work around heres what I did: 1) Compiled ndn-cxx with a different sock file (/var/run/host1-nfd.conf) and then compiled NFD and moved the binaries to a folder on desktop. 2) Copied the /usr/local/etc/ndn/nfd.conf file to /usr/local/etc/ndn/host1-nfd.conf and changed the sock file name to /var/run/host1-nfd.conf. 3) Started nfd from that folder using the following: ./nfd --config /usr/local/etc/ndn/host1-nfd.conf & ./nfd-status ? and ./nfdc works properly. 4) I repeat the procedure for the other node. I was wondering if there is an easy way? Vince has directed me to how Obaid was running it: http://redmine.named-data.net/issues/1790? Ashlesh _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From lanwang at memphis.edu Tue Dec 9 13:01:23 2014 From: lanwang at memphis.edu (Lan Wang (lanwang)) Date: Tue, 9 Dec 2014 21:01:23 +0000 Subject: [Nfd-dev] Fwd: How ccnx sets sock file In-Reply-To: References: <1418154136788.42446@memphis.edu> <5DF45100-C10C-4F6F-9F5D-9260AAB0FC8C@memphis.edu> Message-ID: <6C988511-E6A9-4B1A-8AF2-EE5FFE6A801C@memphis.edu> No, it's not about ccnx. We're trying to run multiple instances of nfd. Lan On Dec 9, 2014, at 2:59 PM, Junxiao Shi > wrote: This is a question about CCNx. I'm forwarding this question to ccnx mailing list. ---------- Forwarded message ---------- From: Lan Wang (lanwang) > Date: Tue, Dec 9, 2014 at 1:56 PM Subject: [Nfd-dev] Fwd: How ccnx sets sock file To: "nfd-dev at lists.cs.ucla.edu" > Any suggestions on how to solve this problem? Lan Begin forwarded message: From: "Ashlesh Gawande (agawande)" > Subject: Re: How ccnx sets sock file Date: December 9, 2014 1:42:12 PM CST To: "Lan Wang (lanwang)" > Cc: "Vince Lehman (vslehman)" > So I am using the mininet (miniccnx) environment where virtual machines share file systems. Miniccnx can run multiple instances of CCNx on these virtual machines. The sock file it uses can be specified as following: export CCN_LOCAL_SOCKNAME=/tmp/file.sock This is what miniccnx does on each node before starting CCNx when it instantiates the nodes. For NFD: I set up two nodes connected to each other. Then if I want to start different instances of NFD and applications on them. To do this I need to have different sock files, but the sock file is hard coded in ndn-cxx. As a temporary work around heres what I did: 1) Compiled ndn-cxx with a different sock file (/var/run/host1-nfd.conf) and then compiled NFD and moved the binaries to a folder on desktop. 2) Copied the /usr/local/etc/ndn/nfd.conf file to /usr/local/etc/ndn/host1-nfd.conf and changed the sock file name to /var/run/host1-nfd.conf. 3) Started nfd from that folder using the following: ./nfd --config /usr/local/etc/ndn/host1-nfd.conf & ./nfd-status ? and ./nfdc works properly. 4) I repeat the procedure for the other node. I was wondering if there is an easy way? Vince has directed me to how Obaid was running it: http://redmine.named-data.net/issues/1790? Ashlesh _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From wentaoshang at gmail.com Tue Dec 9 13:20:18 2014 From: wentaoshang at gmail.com (Wentao Shang) Date: Tue, 09 Dec 2014 21:20:18 +0000 Subject: [Nfd-dev] Fwd: How ccnx sets sock file References: <1418154136788.42446@memphis.edu> <5DF45100-C10C-4F6F-9F5D-9260AAB0FC8C@memphis.edu> <6C988511-E6A9-4B1A-8AF2-EE5FFE6A801C@memphis.edu> Message-ID: I remember I had the same question during the summer. It is indeed a hard problem. Using customized config file seems the best (only?) solution. But you have to be careful because the ndn-cxx library reads default configuration from /usr/local/etc/ndn/client.conf, which is also shared across the system. In your applications you have to avoid using the default unix socket and explicitly specify the correct location. Wentao On Tue Dec 09 2014 at 1:01:55 PM Lan Wang (lanwang) wrote: > No, it's not about ccnx. We're trying to run multiple instances of nfd. > > Lan > > > > On Dec 9, 2014, at 2:59 PM, Junxiao Shi > wrote: > > This is a question about CCNx. I'm forwarding this question to ccnx > mailing list. > > ---------- Forwarded message ---------- > From: Lan Wang (lanwang) > Date: Tue, Dec 9, 2014 at 1:56 PM > Subject: [Nfd-dev] Fwd: How ccnx sets sock file > To: "nfd-dev at lists.cs.ucla.edu" > > > Any suggestions on how to solve this problem? > > Lan > > > Begin forwarded message: > > *From: *"Ashlesh Gawande (agawande)" > *Subject: **Re: How ccnx sets sock file* > *Date: *December 9, 2014 1:42:12 PM CST > *To: *"Lan Wang (lanwang)" > *Cc: *"Vince Lehman (vslehman)" > > So I am using the mininet (miniccnx) environment where virtual machines > share file systems. Miniccnx can run multiple instances of CCNx on these > virtual machines. The sock file it uses can be specified as following: > > export CCN_LOCAL_SOCKNAME=/tmp/file.sock > > This is what miniccnx does on each node before starting CCNx when it > instantiates the nodes. > > For NFD: > > I set up two nodes connected to each other. > Then if I want to start different instances of NFD and applications on > them. To do this I need to have different sock files, but the sock file > is hard coded in ndn-cxx. > As a temporary work around heres what I did: > > 1) Compiled ndn-cxx with a different sock file > (/var/run/host1-nfd.conf) and then compiled NFD and moved the binaries to a > folder on desktop. > > 2) Copied the /usr/local/etc/ndn/nfd.conf file to /usr/local/etc/ndn/host1-nfd.conf > and changed the sock file name to /var/run/host1-nfd.conf. > > 3) Started nfd from that folder using the following: > ./nfd --config /usr/local/etc/ndn/host1-nfd.conf & > > ./nfd-status ? and ./nfdc works properly. > > 4) I repeat the procedure for the other node. > > I was wondering if there is an easy way? Vince has directed me to how > Obaid was running it: > http://redmine.named-data.net/issues/1790? > > Ashlesh > > > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.ARIZONA.EDU Tue Dec 9 22:09:31 2014 From: shijunxiao at email.ARIZONA.EDU (Junxiao Shi) Date: Tue, 9 Dec 2014 23:09:31 -0700 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141202185211.GH7225@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> Message-ID: Hi Alex and Davide Please advise Josh on how to test Change 1444 for Task 1922. Yours, Junxiao On Tue, Dec 2, 2014 at 11:52 AM, Josh Polterock wrote: > Junxiao, > > O.k. I have the boost 1.57 libraries manually installed. I specified > no library-name-list options so everything should be there. > > Josh > > On Mon, Dec 01, 2014 at 05:27:17PM -0700, Junxiao Shi wrote: > > Hi Josh > > > > Thanks for your offer. > > Boost 1.57 isn't in MacPorts or HomeBrew yet, so it needs to be installed > > manually from source code. > > > > Yours, Junxiao > > On Dec 1, 2014 5:10 PM, "Josh Polterock" wrote: > > > > > Junxiao, > > > > > > I have an iMac 27-inch, Mid 2010, running OS X 10.9.5. > > > > > > When I do a 'sudo port selfupdate' followed by 'sudo port upgrade > > > outdated' I get > > > boost-1.56.0_2+no_single+no_static+python27.darwin_13.x86_64.tbz2 > > > > > > Would I need to manually install boost 1.57? > > > > > > Josh > > > > > > On Tue, Nov 25, 2014 at 11:29:16PM -0700, Junxiao Shi wrote: > > > > Dear folks > > > > > > > > Is anyone on this mailing list running OSX (any of 10.8 10.9 10.10) > with > > > > Boost 1.57 installed? > > > > We need a volunteer to test some code on this specific platform. > > > > Please reply-all if you have a machine with this setup. > > > > > > > > Yours, Junxiao > > > > > > > _______________________________________________ > > > > Nfd-dev mailing list > > > > Nfd-dev at lists.cs.ucla.edu > > > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jdd at seas.wustl.edu Wed Dec 10 13:24:25 2014 From: jdd at seas.wustl.edu (John DeHart) Date: Wed, 10 Dec 2014 15:24:25 -0600 Subject: [Nfd-dev] NDN traffic generator In-Reply-To: References: Message-ID: <5488BA09.9030802@seas.wustl.edu> Naren, Have you been able to resolve your questions? John On 12/9/14, 12:57 PM, NAREN N wrote: > Hello everyone, > I was running some experiments for a course project and was using NDN > traffic generator to measure of the performance and how each factor > contributes to the performance of the NFD. > However, I noticed something weird during the experiments. > > When having the interestlifetime=100ms and the freshness period=100ms > same between the runs, and also the contents of the data packet being > the same, I ran the traffic generator for different burst rates. Here > are the rates > > >1 interest / second -----> RTT=71ms and InterstLoss = 20% > >10 interests/second------> RTT=27ms and interestLoss = 1% > > 100 interests/second -------> RTT=13ms and interestLoss = 0% > >1000 interests/second ------>RTT=22ms and interestLoss=0% > > So I was wondering why would the roundtrip time decrease with increase > in Interest rate?? I have a feeling this has something do with the > traffic generator logger code, which isn't reporting the RTT properly... > > Also I see a interest loss when the Interest rate is lower, which is > completely weird. I was expecting the interest loss to be higher when > there was a burst of interests but this is opposite to what I was > expecting. > > Any help would be appreciated with this! > > regards, > Naren > > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From nnaren1902 at gmail.com Wed Dec 10 17:30:51 2014 From: nnaren1902 at gmail.com (NAREN N) Date: Thu, 11 Dec 2014 01:30:51 +0000 Subject: [Nfd-dev] NDN traffic generator References: <5488BA09.9030802@seas.wustl.edu> Message-ID: Hello John, Yes I think I figured out the reason for the results I got. I was able to modify the inputs and get the expected results. However I had a question regarding the ndn traffic generator. I will post the question with the description in a while. -naren On Wed, 10 Dec 2014 at 13:24 John DeHart wrote: > > Naren, > > Have you been able to resolve your questions? > > > John > > > On 12/9/14, 12:57 PM, NAREN N wrote: > > Hello everyone, > I was running some experiments for a course project and was using NDN > traffic generator to measure of the performance and how each factor > contributes to the performance of the NFD. > However, I noticed something weird during the experiments. > > When having the interestlifetime=100ms and the freshness period=100ms > same between the runs, and also the contents of the data packet being the > same, I ran the traffic generator for different burst rates. Here are the > rates > > >1 interest / second -----> RTT=71ms and InterstLoss = 20% > >10 interests/second------> RTT=27ms and interestLoss = 1% > > 100 interests/second -------> RTT=13ms and interestLoss = 0% > >1000 interests/second ------>RTT=22ms and interestLoss=0% > > So I was wondering why would the roundtrip time decrease with increase > in Interest rate?? I have a feeling this has something do with the traffic > generator logger code, which isn't reporting the RTT properly... > > Also I see a interest loss when the Interest rate is lower, which is > completely weird. I was expecting the interest loss to be higher when there > was a burst of interests but this is opposite to what I was expecting. > > Any help would be appreciated with this! > > regards, > Naren > > > _______________________________________________ > Nfd-dev mailing listNfd-dev at lists.cs.ucla.eduhttp://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lanwang at memphis.edu Fri Dec 12 09:49:26 2014 From: lanwang at memphis.edu (Lan Wang (lanwang)) Date: Fri, 12 Dec 2014 17:49:26 +0000 Subject: [Nfd-dev] How ccnx sets sock file In-Reply-To: References: <1418154136788.42446@memphis.edu> <5DF45100-C10C-4F6F-9F5D-9260AAB0FC8C@memphis.edu> <6C988511-E6A9-4B1A-8AF2-EE5FFE6A801C@memphis.edu> Message-ID: <5738BCD5-4D15-41F3-B1EB-4AF4780010C4@memphis.edu> Wentao, et. al.: Thank you for your responses. Just an update: we were able to solve this problem. Below is more information: Lan From: "Ashlesh Gawande (agawande)" > Subject: Re: mini-ndn? Date: December 12, 2014 11:38:00 AM CST Hi all Earlier I said that I was having problems with per node NFD installation because it used a fixed "nfd.sock" file. I was able to get over that by using different HOME and putting a client.conf file in the .ndn folder under the HOME folder and modifying it to point towards a different sock file. I also changed the sock file location in nfd.conf for each of the NFD instance. I was successfully able to use ndnping (ndn-tlv-ping) and I also ran NLSR on the two node topology I have been using. Thanks Ashlesh On Dec 9, 2014, at 3:20 PM, Wentao Shang > wrote: I remember I had the same question during the summer. It is indeed a hard problem. Using customized config file seems the best (only?) solution. But you have to be careful because the ndn-cxx library reads default configuration from /usr/local/etc/ndn/client.conf, which is also shared across the system. In your applications you have to avoid using the default unix socket and explicitly specify the correct location. Wentao On Tue Dec 09 2014 at 1:01:55 PM Lan Wang (lanwang) > wrote: No, it's not about ccnx. We're trying to run multiple instances of nfd. Lan On Dec 9, 2014, at 2:59 PM, Junxiao Shi > wrote: This is a question about CCNx. I'm forwarding this question to ccnx mailing list. ---------- Forwarded message ---------- From: Lan Wang (lanwang) > Date: Tue, Dec 9, 2014 at 1:56 PM Subject: [Nfd-dev] Fwd: How ccnx sets sock file To: "nfd-dev at lists.cs.ucla.edu" > Any suggestions on how to solve this problem? Lan Begin forwarded message: From: "Ashlesh Gawande (agawande)" > Subject: Re: How ccnx sets sock file Date: December 9, 2014 1:42:12 PM CST To: "Lan Wang (lanwang)" > Cc: "Vince Lehman (vslehman)" > So I am using the mininet (miniccnx) environment where virtual machines share file systems. Miniccnx can run multiple instances of CCNx on these virtual machines. The sock file it uses can be specified as following: export CCN_LOCAL_SOCKNAME=/tmp/file.sock This is what miniccnx does on each node before starting CCNx when it instantiates the nodes. For NFD: I set up two nodes connected to each other. Then if I want to start different instances of NFD and applications on them. To do this I need to have different sock files, but the sock file is hard coded in ndn-cxx. As a temporary work around heres what I did: 1) Compiled ndn-cxx with a different sock file (/var/run/host1-nfd.conf) and then compiled NFD and moved the binaries to a folder on desktop. 2) Copied the /usr/local/etc/ndn/nfd.conf file to /usr/local/etc/ndn/host1-nfd.conf and changed the sock file name to /var/run/host1-nfd.conf. 3) Started nfd from that folder using the following: ./nfd --config /usr/local/etc/ndn/host1-nfd.conf & ./nfd-status ? and ./nfdc works properly. 4) I repeat the procedure for the other node. I was wondering if there is an easy way? Vince has directed me to how Obaid was running it: http://redmine.named-data.net/issues/1790? Ashlesh _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Sat Dec 13 12:30:52 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Sat, 13 Dec 2014 13:30:52 -0700 Subject: [Nfd-dev] Fwd: need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> Message-ID: Hi Alex and Davide Please advise Josh on how to test Change 1444 for Task 1922. Yours, Junxiao ---------- Forwarded message ---------- From: "Josh Polterock" Date: Dec 2, 2014 11:52 AM Subject: Re: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 To: "Junxiao Shi" Cc: "<nfd-dev at lists.cs.ucla.edu>" > Junxiao, > > O.k. I have the boost 1.57 libraries manually installed. I specified > no library-name-list options so everything should be there. > > Josh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nnaren1902 at gmail.com Mon Dec 15 11:05:02 2014 From: nnaren1902 at gmail.com (NAREN N) Date: Mon, 15 Dec 2014 11:05:02 -0800 Subject: [Nfd-dev] NDN traffic generator Message-ID: Hello, Can someone please tell me how is the RTT calculated in the NDN traffic generator when there is interest loss? When there data coming back, it is fairly straightforward to get the RTT. However I wanted to know how it's calculated when there is no data coming back. Is it gonna wait for [InterestLifeTime] period and add that to RTT? -Naren -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.ARIZONA.EDU Wed Dec 17 14:26:37 2014 From: shijunxiao at email.ARIZONA.EDU (Junxiao Shi) Date: Wed, 17 Dec 2014 15:26:37 -0700 Subject: [Nfd-dev] Fwd: need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> Message-ID: Hi Alex and Davide Please advise Josh on how to test Change 1444 for Task 1922. Yours, Junxiao ---------- Forwarded message ---------- From: "Josh Polterock" Date: Dec 2, 2014 11:52 AM Subject: Re: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 To: "Junxiao Shi" Cc: "<nfd-dev at lists.cs.ucla.edu>" > Junxiao, > > O.k. I have the boost 1.57 libraries manually installed. I specified > no library-name-list options so everything should be there. > > Josh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Wed Dec 17 14:59:59 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Wed, 17 Dec 2014 15:59:59 -0700 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141202185211.GH7225@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> Message-ID: Hi Josh Thanks again for your offer. Since Alex and Davide fail to provide you instructions on how to test this Change in past 15 days, I'll try to give you some simple instructions. On hostA (OSX box with Boost 1.57): - recompile and install ndn-cxx, latest version from GitHub - recompile and install NFD - after git clone, use the following command to checkout a branch under review: git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/5 && git checkout FETCH_HEAD - then compile and install as usual - recompile and install ndn-tlv-ping, latest version from GitHub On hostB (either another OSX with Boost 1.57, or any Ubuntu version): - recompile and install ndn-cxx, latest version from GitHub - recompile and install NFD - after git clone, use the following command to checkout a branch under review: git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/5 && git checkout FETCH_HEAD - then compile and install as usual - recompile and install ndn-tlv-ping, latest version from GitHub 1. on both hosts: execute `nfd-start` 2. on hostA: execute `nfd-status -f | grep 'dev='`, find the number after "id=" 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the number found in step 2 4. on hostB: run `ndnpingserver /A` 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds Report back with the output from step 3~5. Yours, Junxiao On Tue, Dec 2, 2014 at 11:52 AM, Josh Polterock wrote: > > Junxiao, > > O.k. I have the boost 1.57 libraries manually installed. I specified > no library-name-list options so everything should be there. > > Josh > > On Mon, Dec 01, 2014 at 05:27:17PM -0700, Junxiao Shi wrote: > > Hi Josh > > > > Thanks for your offer. > > Boost 1.57 isn't in MacPorts or HomeBrew yet, so it needs to be installed > > manually from source code. > > > > Yours, Junxiao > > On Dec 1, 2014 5:10 PM, "Josh Polterock" wrote: > > > > > Junxiao, > > > > > > I have an iMac 27-inch, Mid 2010, running OS X 10.9.5. > > > > > > When I do a 'sudo port selfupdate' followed by 'sudo port upgrade > > > outdated' I get > > > boost-1.56.0_2+no_single+no_static+python27.darwin_13.x86_64.tbz2 > > > > > > Would I need to manually install boost 1.57? > > > > > > Josh > > > > > > On Tue, Nov 25, 2014 at 11:29:16PM -0700, Junxiao Shi wrote: > > > > Dear folks > > > > > > > > Is anyone on this mailing list running OSX (any of 10.8 10.9 10.10) > with > > > > Boost 1.57 installed? > > > > We need a volunteer to test some code on this specific platform. > > > > Please reply-all if you have a machine with this setup. > > > > > > > > Yours, Junxiao > > > > > > > _______________________________________________ > > > > Nfd-dev mailing list > > > > Nfd-dev at lists.cs.ucla.edu > > > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From josh at caida.org Wed Dec 17 16:20:32 2014 From: josh at caida.org (Josh Polterock) Date: Wed, 17 Dec 2014 16:20:32 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> Message-ID: <20141218002032.GJ12768@caida.org> On Wed, Dec 17, 2014 at 03:59:59PM -0700, Junxiao Shi wrote: > Hi Josh > > Thanks again for your offer. > Since Alex and Davide fail to provide you instructions on how to test this > Change in past 15 days, I'll try to give you some simple instructions. > > On hostA (OSX box with Boost 1.57): > > - recompile and install ndn-cxx, latest version from GitHub > - recompile and install NFD > - after git clone, use the following command to checkout a branch > under review: > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/5 && > git checkout FETCH_HEAD > - then compile and install as usual During the compile I get the following error: [ 51/105] Compiling daemon/mgmt/face-manager.cpp ../daemon/mgmt/status-server.cpp:66:25: error: reference to type 'const std::string' (aka 'const basic_string, allocator >') could not bind to an rvalue of type 'int' status->setNfdVersion(NFD_VERSION); ^~~~~~~~~~~ /Users/josh/Downloads/NFD/build/version.hpp:41:21: note: expanded from macro 'NFD_VERSION' #define NFD_VERSION 2000 ^~~~ /opt/local/include/ndn-cxx/management/nfd-forwarder-status.hpp:84:36: note: passing argument to parameter 'nfdVersion' here setNfdVersion(const std::string& nfdVersion); ^ 1 error generated. Waf: Leaving directory `/Users/josh/Downloads/NFD/build' Build failed -> task in 'daemon-objects' failed (exit status 1): {task 4550484496: cxx status-server.cpp -> status-server.cpp.3.o} ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-fPIC', '-include', '/Users/josh/Downloads/NFD/build/core-objects.2', '-I/Users/josh/Downloads/NFD/build/daemon', '-I/Users/josh/Downloads/NFD/daemon', '-I/Users/josh/Downloads/NFD/build', '-I/Users/josh/Downloads/NFD', '-I/Users/josh/Downloads/NFD/build/core', '-I/Users/josh/Downloads/NFD/core', '-I/opt/local/include', '-I/Users/josh/Downloads/NFD/websocketpp', '-DHAVE_NDN_CXX=1', '../daemon/mgmt/status-server.cpp', '-c', '-o', '/Users/josh/Downloads/NFD/build/daemon/mgmt/status-server.cpp.3.o'] tao:~/Downloads/NFD $ > - recompile and install ndn-tlv-ping, latest version from GitHub > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > > - recompile and install ndn-cxx, latest version from GitHub > - recompile and install NFD > - after git clone, use the following command to checkout a branch > under review: > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/5 && > git checkout FETCH_HEAD > - then compile and install as usual > - recompile and install ndn-tlv-ping, latest version from GitHub > > > 1. on both hosts: execute `nfd-start` > 2. on hostA: execute `nfd-status -f | grep 'dev='`, find the number > after "id=" > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > number found in step 2 > 4. on hostB: run `ndnpingserver /A` > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > > Report back with the output from step 3~5. > > Yours, Junxiao > > On Tue, Dec 2, 2014 at 11:52 AM, Josh Polterock wrote: > > > > Junxiao, > > > > O.k. I have the boost 1.57 libraries manually installed. I specified > > no library-name-list options so everything should be there. > > > > Josh > > > > On Mon, Dec 01, 2014 at 05:27:17PM -0700, Junxiao Shi wrote: > > > Hi Josh > > > > > > Thanks for your offer. > > > Boost 1.57 isn't in MacPorts or HomeBrew yet, so it needs to be installed > > > manually from source code. > > > > > > Yours, Junxiao > > > On Dec 1, 2014 5:10 PM, "Josh Polterock" wrote: > > > > > > > Junxiao, > > > > > > > > I have an iMac 27-inch, Mid 2010, running OS X 10.9.5. > > > > > > > > When I do a 'sudo port selfupdate' followed by 'sudo port upgrade > > > > outdated' I get > > > > boost-1.56.0_2+no_single+no_static+python27.darwin_13.x86_64.tbz2 > > > > > > > > Would I need to manually install boost 1.57? > > > > > > > > Josh > > > > > > > > On Tue, Nov 25, 2014 at 11:29:16PM -0700, Junxiao Shi wrote: > > > > > Dear folks > > > > > > > > > > Is anyone on this mailing list running OSX (any of 10.8 10.9 10.10) > > with > > > > > Boost 1.57 installed? > > > > > We need a volunteer to test some code on this specific platform. > > > > > Please reply-all if you have a machine with this setup. > > > > > > > > > > Yours, Junxiao > > > > > > > > > _______________________________________________ > > > > > Nfd-dev mailing list > > > > > Nfd-dev at lists.cs.ucla.edu > > > > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > > > > > > > > From shijunxiao at email.arizona.edu Thu Dec 18 10:10:40 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Thu, 18 Dec 2014 11:10:40 -0700 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141218002032.GJ12768@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> Message-ID: Hi Josh It seems that the branch is outdated. I have rebased it. Please try again with the new procedure: On hostA (OSX with Boost 1.57): - recompile and install ndn-cxx, latest version from GitHub - recompile and install NFD - after git clone, use the following command to checkout a branch under review: git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 && git checkout FETCH_HEAD - then compile and install as usual - recompile and install ndn-tlv-ping, latest version from GitHub On hostB (either another OSX with Boost 1.57, or any Ubuntu version): - recompile and install ndn-cxx, latest version from GitHub - recompile and install NFD - after git clone, use the following command to checkout a branch under review: git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 && git checkout FETCH_HEAD - then compile and install as usual - recompile and install ndn-tlv-ping, latest version from GitHub 1. on both hosts: execute `nfd-start` 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number after "faceid=" 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the number found in step 2 4. on hostB: run `ndnpingserver /A` 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds Report back with the output from step 3~5. Yours, Junxiao On Wed, Dec 17, 2014 at 5:20 PM, Josh Polterock wrote: > > During the compile I get the following error: > > [ 51/105] Compiling daemon/mgmt/face-manager.cpp > ../daemon/mgmt/status-server.cpp:66:25: error: reference to type 'const > std::string' (aka 'const basic_string, > allocator >') could not bind to an rvalue of type 'int' > status->setNfdVersion(NFD_VERSION); > ^~~~~~~~~~~ > /Users/josh/Downloads/NFD/build/version.hpp:41:21: note: expanded from > macro 'NFD_VERSION' > #define NFD_VERSION 2000 > ^~~~ > /opt/local/include/ndn-cxx/management/nfd-forwarder-status.hpp:84:36: > note: passing argument to parameter 'nfdVersion' here > setNfdVersion(const std::string& nfdVersion); > ^ > 1 error generated. > > Waf: Leaving directory `/Users/josh/Downloads/NFD/build' > Build failed > -> task in 'daemon-objects' failed (exit status 1): > {task 4550484496: cxx status-server.cpp -> status-server.cpp.3.o} > ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', > '-pedantic', '-Wall', '-O2', '-g', '-fPIC', '-include', > '/Users/josh/Downloads/NFD/build/core-objects.2', > '-I/Users/josh/Downloads/NFD/build/daemon', > '-I/Users/josh/Downloads/NFD/daemon', > '-I/Users/josh/Downloads/NFD/build', '-I/Users/josh/Downloads/NFD', > '-I/Users/josh/Downloads/NFD/build/core', > '-I/Users/josh/Downloads/NFD/core', '-I/opt/local/include', > '-I/Users/josh/Downloads/NFD/websocketpp', '-DHAVE_NDN_CXX=1', > '../daemon/mgmt/status-server.cpp', '-c', '-o', > '/Users/josh/Downloads/NFD/build/daemon/mgmt/status-server.cpp.3.o'] > tao:~/Downloads/NFD $ > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.ARIZONA.EDU Thu Dec 18 10:15:49 2014 From: shijunxiao at email.ARIZONA.EDU (Junxiao Shi) Date: Thu, 18 Dec 2014 11:15:49 -0700 Subject: [Nfd-dev] Repository of ndn-cxx Application Developer Guide Message-ID: Dear folks I got questions about where is "ndn-cxx Application Developer Guide". This document is hosted in a git server that is separate from Gerrit. git clone git at git.irl.cs.ucla.edu:papers/ndn-cxx-docs.git If you need push privilege to this repository, please send request to Alex (CC'ed on this message). Yours, Junxiao -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Mon Dec 22 21:07:16 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Mon, 22 Dec 2014 22:07:16 -0700 Subject: [Nfd-dev] Redmine connectivity Message-ID: Dear folks I'm having difficulty accessing Redmine system right now (Dec 23 05:05 UTC). Does anyone have the same issue? Yours, Junxiao -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexander.afanasyev at ucla.edu Mon Dec 22 21:29:38 2014 From: alexander.afanasyev at ucla.edu (Alex Afanasyev) Date: Mon, 22 Dec 2014 21:29:38 -0800 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: References: Message-ID: <48924AB6-BB61-4132-9952-16F818DB0AEC@ucla.edu> named-data.net website is not accessible at the time (it is the same host). I believe there is some problem with the hosting or the server. > On Dec 22, 2014, at 9:07 PM, Junxiao Shi wrote: > > Dear folks > > I'm having difficulty accessing Redmine system right now (Dec 23 05:05 UTC). > Does anyone have the same issue? > > Yours, Junxiao > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Mon Dec 22 21:30:40 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Mon, 22 Dec 2014 22:30:40 -0700 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: <48924AB6-BB61-4132-9952-16F818DB0AEC@ucla.edu> References: <48924AB6-BB61-4132-9952-16F818DB0AEC@ucla.edu> Message-ID: Hi Alex Please inform webmaster to open a ticket with datacenter. Yours, Junxiao On Mon, Dec 22, 2014 at 10:29 PM, Alex Afanasyev < alexander.afanasyev at ucla.edu> wrote: > named-data.net website is not accessible at the time (it is the same > host). I believe there is some problem with the hosting or the server. > > > On Dec 22, 2014, at 9:07 PM, Junxiao Shi > wrote: > > Dear folks > > I'm having difficulty accessing Redmine system right now (Dec 23 05:05 > UTC). > Does anyone have the same issue? > > Yours, Junxiao > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lixia at CS.UCLA.EDU Mon Dec 22 22:06:05 2014 From: lixia at CS.UCLA.EDU (Lixia Zhang) Date: Mon, 22 Dec 2014 22:06:05 -0800 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: <48924AB6-BB61-4132-9952-16F818DB0AEC@ucla.edu> References: <48924AB6-BB61-4132-9952-16F818DB0AEC@ucla.edu> Message-ID: <6FF5617D-8D4D-4D9D-8FC0-6CE0B9A21F30@cs.ucla.edu> > On Dec 22, 2014, at 9:29 PM, Alex Afanasyev wrote: > > named-data.net website is not accessible at the time (it is the same host). I believe there is some problem with the hosting or the server. is this a box in our group? > > >> On Dec 22, 2014, at 9:07 PM, Junxiao Shi > wrote: >> >> Dear folks >> >> I'm having difficulty accessing Redmine system right now (Dec 23 05:05 UTC). >> Does anyone have the same issue? >> >> Yours, Junxiao >> _______________________________________________ >> Nfd-dev mailing list >> Nfd-dev at lists.cs.ucla.edu >> http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From jburke at remap.UCLA.EDU Mon Dec 22 22:08:47 2014 From: jburke at remap.UCLA.EDU (Burke, Jeff) Date: Tue, 23 Dec 2014 06:08:47 +0000 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: <6FF5617D-8D4D-4D9D-8FC0-6CE0B9A21F30@cs.ucla.edu> Message-ID: It's hosted by UCLA Information Technology Services. We'll file a ticket if needed and try to get it up in the morning. Other VMs are up, so I'm not sure what's going on. J. From: Lixia Zhang > Date: Mon, 22 Dec 2014 22:06:05 -0800 To: Alexander Afanasyev > Cc: ">" >, Xiaoke Jiang > Subject: Re: [Nfd-dev] Redmine connectivity On Dec 22, 2014, at 9:29 PM, Alex Afanasyev > wrote: named-data.net website is not accessible at the time (it is the same host). I believe there is some problem with the hosting or the server. is this a box in our group? On Dec 22, 2014, at 9:07 PM, Junxiao Shi > wrote: Dear folks I'm having difficulty accessing Redmine system right now (Dec 23 05:05 UTC). Does anyone have the same issue? Yours, Junxiao _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From jburke at remap.UCLA.EDU Tue Dec 23 01:01:09 2014 From: jburke at remap.UCLA.EDU (Burke, Jeff) Date: Tue, 23 Dec 2014 09:01:09 +0000 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: <7A380F6B-EBF7-4151-91F6-A354583D6009@remap.ucla.edu> References: , <7A380F6B-EBF7-4151-91F6-A354583D6009@remap.ucla.edu> Message-ID: <020480B79F5DB249B89F4856EB5270EA984ED82F@EM1A.ad.ucla.edu> Thanks. We should check to see what's growing ... -----Original Message----- From: alexnano [nano at remap.ucla.edu] Received: Monday, 22 Dec 2014, 11:24PM To: Burke, Jeff [jburke at remap.ucla.edu] CC: Zhang, Lixia [lixia at cs.ucla.edu]; Alexander Afanasyev [alexander.afanasyev at ucla.edu]; {nfd-dev at lists.cs.ucla.edu} [nfd-dev at lists.cs.ucla.edu]; Xiaoke Jiang [shock.jiang at gmail.com] Subject: Re: [Nfd-dev] Redmine connectivity it?s a disk space issue - VM is out of space. we?ll have it fixed shortly. On Dec 23, 2014, at 12:08 AM, Burke, Jeff > wrote: It's hosted by UCLA Information Technology Services. We'll file a ticket if needed and try to get it up in the morning. Other VMs are up, so I'm not sure what's going on. J. From: Lixia Zhang > Date: Mon, 22 Dec 2014 22:06:05 -0800 To: Alexander Afanasyev > Cc: ">" >, Xiaoke Jiang > Subject: Re: [Nfd-dev] Redmine connectivity On Dec 22, 2014, at 9:29 PM, Alex Afanasyev > wrote: named-data.net website is not accessible at the time (it is the same host). I believe there is some problem with the hosting or the server. is this a box in our group? On Dec 22, 2014, at 9:07 PM, Junxiao Shi > wrote: Dear folks I'm having difficulty accessing Redmine system right now (Dec 23 05:05 UTC). Does anyone have the same issue? Yours, Junxiao _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From shijunxiao at email.arizona.edu Tue Dec 23 13:24:12 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Tue, 23 Dec 2014 14:24:12 -0700 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: <020480B79F5DB249B89F4856EB5270EA984ED82F@EM1A.ad.ucla.edu> References: <7A380F6B-EBF7-4151-91F6-A354583D6009@remap.ucla.edu> <020480B79F5DB249B89F4856EB5270EA984ED82F@EM1A.ad.ucla.edu> Message-ID: Dear folks This problem is tracked as named-data.net Feature 2326 . Yours, Junxiao On Tue, Dec 23, 2014 at 2:01 AM, Burke, Jeff wrote: > Thanks. We should check to see what's growing ... > > -----Original Message----- > *From:* alexnano [nano at remap.ucla.edu] > *Received:* Monday, 22 Dec 2014, 11:24PM > *To:* Burke, Jeff [jburke at remap.ucla.edu] > *CC:* Zhang, Lixia [lixia at cs.ucla.edu]; Alexander Afanasyev [ > alexander.afanasyev at ucla.edu]; {nfd-dev at lists.cs.ucla.edu} [ > nfd-dev at lists.cs.ucla.edu]; Xiaoke Jiang [shock.jiang at gmail.com] > *Subject:* Re: [Nfd-dev] Redmine connectivity > > it?s a disk space issue - VM is out of space. > > we?ll have it fixed shortly. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From josh at caida.org Tue Dec 23 14:02:39 2014 From: josh at caida.org (Josh Polterock) Date: Tue, 23 Dec 2014 14:02:39 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> Message-ID: <20141223220239.GC14038@caida.org> Junxiao, On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > Hi Josh > > It seems that the branch is outdated. I have rebased it. Please try again > with the new procedure: > > > On hostA (OSX with Boost 1.57): > > - recompile and install ndn-cxx, latest version from GitHub > - recompile and install NFD > - after git clone, use the following command to checkout a branch > under review: > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 && > git checkout FETCH_HEAD > - then compile and install as usual > - recompile and install ndn-tlv-ping, latest version from GitHub This all seemed to go smoothly. I still need to commandeer a second system (we have another iMac I can use but it does not have XCode on it yet, so I'm installing). so, I jumped down to instructions on starting and testing nfd on HostA. > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > > - recompile and install ndn-cxx, latest version from GitHub > - recompile and install NFD > - after git clone, use the following command to checkout a branch > under review: > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 && > git checkout FETCH_HEAD > - then compile and install as usual > - recompile and install ndn-tlv-ping, latest version from GitHub > > > 1. on both hosts: execute `nfd-start` Upon trying to start nfd, I receive the following error: Script started on Tue Dec 23 13:59:11 2014 $ nfd-start Password: 1419371964.968853 TRACE: [NameTree] lookup / 1419371964.968910 TRACE: [NameTree] insert / 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to the table 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy /localhost/nfd/strategy/best-route/%FD%02 1419371964.969523 INFO: [InternalFace] registering callback for /localhost/nfd/fib 1419371964.969624 INFO: [InternalFace] registering callback for /localhost/nfd/faces 1419371964.969753 INFO: [InternalFace] registering callback for /localhost/nfd/strategy-choice 1419371964.969898 INFO: [InternalFace] registering callback for /localhost/nfd/status 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// local=internal:// 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%00 1419371967.346542 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%00 1419371967.346832 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419371967.347198 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, skipList size 0 1419371967.347508 TRACE: [ContentStore] Not a duplicate 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%00 cached 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper with user "" group "" 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" section 1419371967.350783 TRACE: [ContentStore] evictItem() 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419371967.351261 TRACE: [ContentStore] SkipList size 1 1419371967.351353 TRACE: [ContentStore] evictItem() tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face create/destroy events 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No such file or directory) Script done on Tue Dec 23 13:59:51 2014 > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number after > "faceid=" > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > number found in step 2 > 4. on hostB: run `ndnpingserver /A` > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > > Report back with the output from step 3~5. > > > Yours, Junxiao > > On Wed, Dec 17, 2014 at 5:20 PM, Josh Polterock wrote: > > > > During the compile I get the following error: > > > > [ 51/105] Compiling daemon/mgmt/face-manager.cpp > > ../daemon/mgmt/status-server.cpp:66:25: error: reference to type 'const > > std::string' (aka 'const basic_string, > > allocator >') could not bind to an rvalue of type 'int' > > status->setNfdVersion(NFD_VERSION); > > ^~~~~~~~~~~ > > /Users/josh/Downloads/NFD/build/version.hpp:41:21: note: expanded from > > macro 'NFD_VERSION' > > #define NFD_VERSION 2000 > > ^~~~ > > /opt/local/include/ndn-cxx/management/nfd-forwarder-status.hpp:84:36: > > note: passing argument to parameter 'nfdVersion' here > > setNfdVersion(const std::string& nfdVersion); > > ^ > > 1 error generated. > > > > Waf: Leaving directory `/Users/josh/Downloads/NFD/build' > > Build failed > > -> task in 'daemon-objects' failed (exit status 1): > > {task 4550484496: cxx status-server.cpp -> status-server.cpp.3.o} > > ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', > > '-pedantic', '-Wall', '-O2', '-g', '-fPIC', '-include', > > '/Users/josh/Downloads/NFD/build/core-objects.2', > > '-I/Users/josh/Downloads/NFD/build/daemon', > > '-I/Users/josh/Downloads/NFD/daemon', > > '-I/Users/josh/Downloads/NFD/build', '-I/Users/josh/Downloads/NFD', > > '-I/Users/josh/Downloads/NFD/build/core', > > '-I/Users/josh/Downloads/NFD/core', '-I/opt/local/include', > > '-I/Users/josh/Downloads/NFD/websocketpp', '-DHAVE_NDN_CXX=1', > > '../daemon/mgmt/status-server.cpp', '-c', '-o', > > '/Users/josh/Downloads/NFD/build/daemon/mgmt/status-server.cpp.3.o'] > > tao:~/Downloads/NFD $ > > > > From shijunxiao at email.arizona.edu Tue Dec 23 14:05:14 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Tue, 23 Dec 2014 15:05:14 -0700 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141223220239.GC14038@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> Message-ID: Hi Josh We recently changed the configuration file format. Please delete the "listen" line in face_system.unix section, or just replace the configuration file with the sample. Thanks. Yours, Junxiao On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: > Junxiao, > > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > > Hi Josh > > > > It seems that the branch is outdated. I have rebased it. Please try again > > with the new procedure: > > > > > > On hostA (OSX with Boost 1.57): > > > > - recompile and install ndn-cxx, latest version from GitHub > > - recompile and install NFD > > - after git clone, use the following command to checkout a branch > > under review: > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > && > > git checkout FETCH_HEAD > > - then compile and install as usual > > - recompile and install ndn-tlv-ping, latest version from GitHub > > This all seemed to go smoothly. I still need to commandeer a second > system (we have another iMac I can use but it does not have XCode on it > yet, so I'm installing). so, I jumped down to instructions on starting > and testing nfd on HostA. > > > > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > > > > - recompile and install ndn-cxx, latest version from GitHub > > - recompile and install NFD > > - after git clone, use the following command to checkout a branch > > under review: > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > && > > git checkout FETCH_HEAD > > - then compile and install as usual > > - recompile and install ndn-tlv-ping, latest version from GitHub > > > > > > 1. on both hosts: execute `nfd-start` > > Upon trying to start nfd, I receive the following error: > > Script started on Tue Dec 23 13:59:11 2014 > $ nfd-start > Password: > 1419371964.968853 TRACE: [NameTree] lookup / > 1419371964.968910 TRACE: [NameTree] insert / > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to > the table > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy > /localhost/nfd/strategy/best-route/%FD%02 > 1419371964.969523 INFO: [InternalFace] registering callback for > /localhost/nfd/fib > 1419371964.969624 INFO: [InternalFace] registering callback for > /localhost/nfd/faces > 1419371964.969753 INFO: [InternalFace] registering callback for > /localhost/nfd/strategy-choice > 1419371964.969898 INFO: [InternalFace] registering callback for > /localhost/nfd/status > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// > local=internal:// > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 > data=/localhost/nfd/faces/events/%FE%00 > 1419371967.346542 TRACE: [NameTree] > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch > /localhost/nfd/faces/events/%FE%00 > 1419371967.346832 TRACE: [ContentStore] insert() > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, > skipList size 0 > 1419371967.347508 TRACE: [ContentStore] Not a duplicate > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 > data=/localhost/nfd/faces/events/%FE%00 cached > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper > with user "" group "" > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address > 127.0.0.1 > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address > fe80::1 > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer > address for unhandled interface type 7 > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer > address for unhandled interface type 9 > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet > address c4:2c:03:2c:5f:26 > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > fe80::c62c:3ff:fe2c:5f26 > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address > 192.172.226.92 > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast > address 192.172.226.255 > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > 2001:48d0:101:501:d13:94d:a184:7a7d > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer > address for unhandled interface type > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet > address d8:30:62:51:e4:aa > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet > address 0a:30:62:51:e4:aa > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" > section > 1419371967.350783 TRACE: [ContentStore] evictItem() > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 > 1419371967.351353 TRACE: [ContentStore] evictItem() > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face > create/destroy events > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No > such file or directory) > > Script done on Tue Dec 23 13:59:51 2014 > > > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number > after > > "faceid=" > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > > number found in step 2 > > 4. on hostB: run `ndnpingserver /A` > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From josh at caida.org Tue Dec 23 14:09:13 2014 From: josh at caida.org (Josh Polterock) Date: Tue, 23 Dec 2014 14:09:13 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> Message-ID: <20141223220913.GD14038@caida.org> Junxiao, Ok. nfd starts and gives regular DEBUG output. When I execute the 'nfd-status -f | grep 'dev' command it returns nothing. Josh On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: > Hi Josh > > We recently changed the configuration file format. > Please delete the "listen" line in face_system.unix section, or just > replace the configuration file with the sample. > > Thanks. > Yours, Junxiao > > On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: > > > Junxiao, > > > > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > > > Hi Josh > > > > > > It seems that the branch is outdated. I have rebased it. Please try again > > > with the new procedure: > > > > > > > > > On hostA (OSX with Boost 1.57): > > > > > > - recompile and install ndn-cxx, latest version from GitHub > > > - recompile and install NFD > > > - after git clone, use the following command to checkout a branch > > > under review: > > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > > && > > > git checkout FETCH_HEAD > > > - then compile and install as usual > > > - recompile and install ndn-tlv-ping, latest version from GitHub > > > > This all seemed to go smoothly. I still need to commandeer a second > > system (we have another iMac I can use but it does not have XCode on it > > yet, so I'm installing). so, I jumped down to instructions on starting > > and testing nfd on HostA. > > > > > > > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > > > > > > - recompile and install ndn-cxx, latest version from GitHub > > > - recompile and install NFD > > > - after git clone, use the following command to checkout a branch > > > under review: > > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > > && > > > git checkout FETCH_HEAD > > > - then compile and install as usual > > > - recompile and install ndn-tlv-ping, latest version from GitHub > > > > > > > > > 1. on both hosts: execute `nfd-start` > > > > Upon trying to start nfd, I receive the following error: > > > > Script started on Tue Dec 23 13:59:11 2014 > > $ nfd-start > > Password: > > 1419371964.968853 TRACE: [NameTree] lookup / > > 1419371964.968910 TRACE: [NameTree] insert / > > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 > > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to > > the table > > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy > > /localhost/nfd/strategy/best-route/%FD%02 > > 1419371964.969523 INFO: [InternalFace] registering callback for > > /localhost/nfd/fib > > 1419371964.969624 INFO: [InternalFace] registering callback for > > /localhost/nfd/faces > > 1419371964.969753 INFO: [InternalFace] registering callback for > > /localhost/nfd/strategy-choice > > 1419371964.969898 INFO: [InternalFace] registering callback for > > /localhost/nfd/status > > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// > > local=internal:// > > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib > > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 > > data=/localhost/nfd/faces/events/%FE%00 > > 1419371967.346542 TRACE: [NameTree] > > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 > > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch > > /localhost/nfd/faces/events/%FE%00 > > 1419371967.346832 TRACE: [ContentStore] insert() > > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() > > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, > > skipList size 0 > > 1419371967.347508 TRACE: [ContentStore] Not a duplicate > > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 > > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 > > data=/localhost/nfd/faces/events/%FE%00 cached > > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" > > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper > > with user "" group "" > > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 > > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address > > 127.0.0.1 > > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address > > fe80::1 > > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer > > address for unhandled interface type 7 > > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer > > address for unhandled interface type 9 > > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet > > address c4:2c:03:2c:5f:26 > > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > > fe80::c62c:3ff:fe2c:5f26 > > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address > > 192.172.226.92 > > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast > > address 192.172.226.255 > > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 > > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > > 2001:48d0:101:501:d13:94d:a184:7a7d > > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer > > address for unhandled interface type > > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet > > address d8:30:62:51:e4:aa > > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet > > address 0a:30:62:51:e4:aa > > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" > > section > > 1419371967.350783 TRACE: [ContentStore] evictItem() > > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue > > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() > > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 > > 1419371967.351353 TRACE: [ContentStore] evictItem() > > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face > > create/destroy events > > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No > > such file or directory) > > > > Script done on Tue Dec 23 13:59:51 2014 > > > > > > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number > > after > > > "faceid=" > > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > > > number found in step 2 > > > 4. on hostB: run `ndnpingserver /A` > > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > > > > > > > > From shijunxiao at email.arizona.edu Tue Dec 23 14:12:54 2014 From: shijunxiao at email.arizona.edu (Junxiao Shi) Date: Tue, 23 Dec 2014 15:12:54 -0700 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141223220913.GD14038@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> Message-ID: Hi Josh Thanks for your testing. It seems that there's some other problem in the code that EthernetFace is not correctly created. I'll ask developer to look into it. I'll ask you to test again once the problem is fixed. Yours, Junxiao On Tue, Dec 23, 2014 at 3:09 PM, Josh Polterock wrote: > Junxiao, > > Ok. nfd starts and gives regular DEBUG output. > > When I execute the 'nfd-status -f | grep 'dev' command it returns > nothing. > > Josh > > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: > > Hi Josh > > > > We recently changed the configuration file format. > > Please delete the "listen" line in face_system.unix section, or just > > replace the configuration file with the sample. > > > > Thanks. > > Yours, Junxiao > > > > On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: > > > > > Junxiao, > > > > > > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > > > > Hi Josh > > > > > > > > It seems that the branch is outdated. I have rebased it. Please try > again > > > > with the new procedure: > > > > > > > > > > > > On hostA (OSX with Boost 1.57): > > > > > > > > - recompile and install ndn-cxx, latest version from GitHub > > > > - recompile and install NFD > > > > - after git clone, use the following command to checkout a > branch > > > > under review: > > > > git fetch http://gerrit.named-data.net/NFD > refs/changes/44/1444/6 > > > && > > > > git checkout FETCH_HEAD > > > > - then compile and install as usual > > > > - recompile and install ndn-tlv-ping, latest version from GitHub > > > > > > This all seemed to go smoothly. I still need to commandeer a second > > > system (we have another iMac I can use but it does not have XCode on it > > > yet, so I'm installing). so, I jumped down to instructions on starting > > > and testing nfd on HostA. > > > > > > > > > > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > > > > > > > > - recompile and install ndn-cxx, latest version from GitHub > > > > - recompile and install NFD > > > > - after git clone, use the following command to checkout a > branch > > > > under review: > > > > git fetch http://gerrit.named-data.net/NFD > refs/changes/44/1444/6 > > > && > > > > git checkout FETCH_HEAD > > > > - then compile and install as usual > > > > - recompile and install ndn-tlv-ping, latest version from GitHub > > > > > > > > > > > > 1. on both hosts: execute `nfd-start` > > > > > > Upon trying to start nfd, I receive the following error: > > > > > > Script started on Tue Dec 23 13:59:11 2014 > > > $ nfd-start > > > Password: > > > 1419371964.968853 TRACE: [NameTree] lookup / > > > 1419371964.968910 TRACE: [NameTree] insert / > > > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 > > > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it > to > > > the table > > > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy > > > /localhost/nfd/strategy/best-route/%FD%02 > > > 1419371964.969523 INFO: [InternalFace] registering callback for > > > /localhost/nfd/fib > > > 1419371964.969624 INFO: [InternalFace] registering callback for > > > /localhost/nfd/faces > > > 1419371964.969753 INFO: [InternalFace] registering callback for > > > /localhost/nfd/strategy-choice > > > 1419371964.969898 INFO: [InternalFace] registering callback for > > > /localhost/nfd/status > > > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// > > > local=internal:// > > > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib > > > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 > > > data=/localhost/nfd/faces/events/%FE%00 > > > 1419371967.346542 TRACE: [NameTree] > > > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 > > > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch > > > /localhost/nfd/faces/events/%FE%00 > > > 1419371967.346832 TRACE: [ContentStore] insert() > > > > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > > > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() > > > > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, > > > skipList size 0 > > > 1419371967.347508 TRACE: [ContentStore] Not a duplicate > > > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 > > > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 > > > data=/localhost/nfd/faces/events/%FE%00 cached > > > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" > > > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege > helper > > > with user "" group "" > > > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 > address ::1 > > > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address > > > 127.0.0.1 > > > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address > > > fe80::1 > > > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring > link-layer > > > address for unhandled interface type 7 > > > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring > link-layer > > > address for unhandled interface type 9 > > > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet > > > address c4:2c:03:2c:5f:26 > > > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > > > fe80::c62c:3ff:fe2c:5f26 > > > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address > > > 192.172.226.92 > > > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 > broadcast > > > address 192.172.226.255 > > > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > > > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 > > > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > > > 2001:48d0:101:501:d13:94d:a184:7a7d > > > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring > link-layer > > > address for unhandled interface type > > > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet > > > address d8:30:62:51:e4:aa > > > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet > > > address 0a:30:62:51:e4:aa > > > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" > > > section > > > 1419371967.350783 TRACE: [ContentStore] evictItem() > > > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue > > > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() > > > > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > > > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 > > > 1419371967.351353 TRACE: [ContentStore] evictItem() > > > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face > > > create/destroy events > > > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder > (No > > > such file or directory) > > > > > > Script done on Tue Dec 23 13:59:51 2014 > > > > > > > > > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number > > > after > > > > "faceid=" > > > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 > with the > > > > number found in step 2 > > > > 4. on hostB: run `ndnpingserver /A` > > > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 > seconds > > > > > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From davide.pesavento at lip6.fr Tue Dec 23 15:23:01 2014 From: davide.pesavento at lip6.fr (Davide Pesavento) Date: Wed, 24 Dec 2014 00:23:01 +0100 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141223220913.GD14038@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> Message-ID: Josh, Thanks a lot for testing. Would you mind attaching (or pasting inline) the output of NFD startup phase at a debug level of "ALL"? Thanks, Davide On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: > Junxiao, > > Ok. nfd starts and gives regular DEBUG output. > > When I execute the 'nfd-status -f | grep 'dev' command it returns > nothing. > > Josh > > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: >> Hi Josh >> >> We recently changed the configuration file format. >> Please delete the "listen" line in face_system.unix section, or just >> replace the configuration file with the sample. >> >> Thanks. >> Yours, Junxiao >> >> On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: >> >> > Junxiao, >> > >> > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: >> > > Hi Josh >> > > >> > > It seems that the branch is outdated. I have rebased it. Please try again >> > > with the new procedure: >> > > >> > > >> > > On hostA (OSX with Boost 1.57): >> > > >> > > - recompile and install ndn-cxx, latest version from GitHub >> > > - recompile and install NFD >> > > - after git clone, use the following command to checkout a branch >> > > under review: >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 >> > && >> > > git checkout FETCH_HEAD >> > > - then compile and install as usual >> > > - recompile and install ndn-tlv-ping, latest version from GitHub >> > >> > This all seemed to go smoothly. I still need to commandeer a second >> > system (we have another iMac I can use but it does not have XCode on it >> > yet, so I'm installing). so, I jumped down to instructions on starting >> > and testing nfd on HostA. >> > >> > > >> > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): >> > > >> > > - recompile and install ndn-cxx, latest version from GitHub >> > > - recompile and install NFD >> > > - after git clone, use the following command to checkout a branch >> > > under review: >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 >> > && >> > > git checkout FETCH_HEAD >> > > - then compile and install as usual >> > > - recompile and install ndn-tlv-ping, latest version from GitHub >> > > >> > > >> > > 1. on both hosts: execute `nfd-start` >> > >> > Upon trying to start nfd, I receive the following error: >> > >> > Script started on Tue Dec 23 13:59:11 2014 >> > $ nfd-start >> > Password: >> > 1419371964.968853 TRACE: [NameTree] lookup / >> > 1419371964.968910 TRACE: [NameTree] insert / >> > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 >> > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to >> > the table >> > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy >> > /localhost/nfd/strategy/best-route/%FD%02 >> > 1419371964.969523 INFO: [InternalFace] registering callback for >> > /localhost/nfd/fib >> > 1419371964.969624 INFO: [InternalFace] registering callback for >> > /localhost/nfd/faces >> > 1419371964.969753 INFO: [InternalFace] registering callback for >> > /localhost/nfd/strategy-choice >> > 1419371964.969898 INFO: [InternalFace] registering callback for >> > /localhost/nfd/status >> > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// >> > local=internal:// >> > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib >> > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 >> > data=/localhost/nfd/faces/events/%FE%00 >> > 1419371967.346542 TRACE: [NameTree] >> > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 >> > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch >> > /localhost/nfd/faces/events/%FE%00 >> > 1419371967.346832 TRACE: [ContentStore] insert() >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 >> > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, >> > skipList size 0 >> > 1419371967.347508 TRACE: [ContentStore] Not a duplicate >> > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 >> > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 >> > data=/localhost/nfd/faces/events/%FE%00 cached >> > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" >> > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper >> > with user "" group "" >> > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 >> > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address >> > 127.0.0.1 >> > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address >> > fe80::1 >> > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer >> > address for unhandled interface type 7 >> > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer >> > address for unhandled interface type 9 >> > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet >> > address c4:2c:03:2c:5f:26 >> > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> > fe80::c62c:3ff:fe2c:5f26 >> > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address >> > 192.172.226.92 >> > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast >> > address 192.172.226.255 >> > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 >> > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> > 2001:48d0:101:501:d13:94d:a184:7a7d >> > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer >> > address for unhandled interface type >> > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet >> > address d8:30:62:51:e4:aa >> > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet >> > address 0a:30:62:51:e4:aa >> > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" >> > section >> > 1419371967.350783 TRACE: [ContentStore] evictItem() >> > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue >> > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 >> > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 >> > 1419371967.351353 TRACE: [ContentStore] evictItem() >> > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face >> > create/destroy events >> > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No >> > such file or directory) >> > >> > Script done on Tue Dec 23 13:59:51 2014 >> > >> > >> > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number >> > after >> > > "faceid=" >> > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the >> > > number found in step 2 >> > > 4. on hostB: run `ndnpingserver /A` >> > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds >> > > >> > > >> > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev From josh at caida.org Tue Dec 23 15:39:34 2014 From: josh at caida.org (Josh Polterock) Date: Tue, 23 Dec 2014 15:39:34 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> Message-ID: <20141223233934.GE14038@caida.org> Davide, Please find attached. Thanks, Josh On Wed, Dec 24, 2014 at 12:23:01AM +0100, Davide Pesavento wrote: > Josh, > > Thanks a lot for testing. > > Would you mind attaching (or pasting inline) the output of NFD startup > phase at a debug level of "ALL"? > > Thanks, > Davide > > On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: > > Junxiao, > > > > Ok. nfd starts and gives regular DEBUG output. > > > > When I execute the 'nfd-status -f | grep 'dev' command it returns > > nothing. > > > > Josh > > > > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: > >> Hi Josh > >> > >> We recently changed the configuration file format. > >> Please delete the "listen" line in face_system.unix section, or just > >> replace the configuration file with the sample. > >> > >> Thanks. > >> Yours, Junxiao > >> > >> On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: > >> > >> > Junxiao, > >> > > >> > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > >> > > Hi Josh > >> > > > >> > > It seems that the branch is outdated. I have rebased it. Please try again > >> > > with the new procedure: > >> > > > >> > > > >> > > On hostA (OSX with Boost 1.57): > >> > > > >> > > - recompile and install ndn-cxx, latest version from GitHub > >> > > - recompile and install NFD > >> > > - after git clone, use the following command to checkout a branch > >> > > under review: > >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > >> > && > >> > > git checkout FETCH_HEAD > >> > > - then compile and install as usual > >> > > - recompile and install ndn-tlv-ping, latest version from GitHub > >> > > >> > This all seemed to go smoothly. I still need to commandeer a second > >> > system (we have another iMac I can use but it does not have XCode on it > >> > yet, so I'm installing). so, I jumped down to instructions on starting > >> > and testing nfd on HostA. > >> > > >> > > > >> > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > >> > > > >> > > - recompile and install ndn-cxx, latest version from GitHub > >> > > - recompile and install NFD > >> > > - after git clone, use the following command to checkout a branch > >> > > under review: > >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > >> > && > >> > > git checkout FETCH_HEAD > >> > > - then compile and install as usual > >> > > - recompile and install ndn-tlv-ping, latest version from GitHub > >> > > > >> > > > >> > > 1. on both hosts: execute `nfd-start` > >> > > >> > Upon trying to start nfd, I receive the following error: > >> > > >> > Script started on Tue Dec 23 13:59:11 2014 > >> > $ nfd-start > >> > Password: > >> > 1419371964.968853 TRACE: [NameTree] lookup / > >> > 1419371964.968910 TRACE: [NameTree] insert / > >> > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 > >> > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to > >> > the table > >> > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy > >> > /localhost/nfd/strategy/best-route/%FD%02 > >> > 1419371964.969523 INFO: [InternalFace] registering callback for > >> > /localhost/nfd/fib > >> > 1419371964.969624 INFO: [InternalFace] registering callback for > >> > /localhost/nfd/faces > >> > 1419371964.969753 INFO: [InternalFace] registering callback for > >> > /localhost/nfd/strategy-choice > >> > 1419371964.969898 INFO: [InternalFace] registering callback for > >> > /localhost/nfd/status > >> > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// > >> > local=internal:// > >> > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib > >> > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 > >> > data=/localhost/nfd/faces/events/%FE%00 > >> > 1419371967.346542 TRACE: [NameTree] > >> > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 > >> > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch > >> > /localhost/nfd/faces/events/%FE%00 > >> > 1419371967.346832 TRACE: [ContentStore] insert() > >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > >> > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() > >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, > >> > skipList size 0 > >> > 1419371967.347508 TRACE: [ContentStore] Not a duplicate > >> > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 > >> > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 > >> > data=/localhost/nfd/faces/events/%FE%00 cached > >> > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" > >> > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper > >> > with user "" group "" > >> > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 > >> > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address > >> > 127.0.0.1 > >> > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address > >> > fe80::1 > >> > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer > >> > address for unhandled interface type 7 > >> > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer > >> > address for unhandled interface type 9 > >> > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet > >> > address c4:2c:03:2c:5f:26 > >> > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> > fe80::c62c:3ff:fe2c:5f26 > >> > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address > >> > 192.172.226.92 > >> > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast > >> > address 192.172.226.255 > >> > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 > >> > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> > 2001:48d0:101:501:d13:94d:a184:7a7d > >> > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer > >> > address for unhandled interface type > >> > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet > >> > address d8:30:62:51:e4:aa > >> > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet > >> > address 0a:30:62:51:e4:aa > >> > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" > >> > section > >> > 1419371967.350783 TRACE: [ContentStore] evictItem() > >> > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue > >> > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() > >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > >> > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 > >> > 1419371967.351353 TRACE: [ContentStore] evictItem() > >> > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face > >> > create/destroy events > >> > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No > >> > such file or directory) > >> > > >> > Script done on Tue Dec 23 13:59:51 2014 > >> > > >> > > >> > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number > >> > after > >> > > "faceid=" > >> > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > >> > > number found in step 2 > >> > > 4. on hostB: run `ndnpingserver /A` > >> > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > >> > > > >> > > > >> > > > _______________________________________________ > > Nfd-dev mailing list > > Nfd-dev at lists.cs.ucla.edu > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- Script started on Tue Dec 23 15:37:39 2014 $ nfd-start 1419377864.489117 TRACE: [NameTree] lookup / 1419377864.489174 TRACE: [NameTree] insert / 1419377864.489216 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377864.489284 TRACE: [NameTree] Did not find /, need to insert it to the table 1419377864.489430 INFO: [StrategyChoice] setDefaultStrategy /localhost/nfd/strategy/best-route/%FD%02 1419377864.492082 INFO: [InternalFace] registering callback for /localhost/nfd/fib 1419377864.492184 INFO: [InternalFace] registering callback for /localhost/nfd/faces 1419377864.492307 INFO: [InternalFace] registering callback for /localhost/nfd/strategy-choice 1419377864.492439 INFO: [InternalFace] registering callback for /localhost/nfd/status 1419377864.492566 INFO: [FaceTable] Added face id=1 remote=internal:// local=internal:// 1419377864.593162 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%00 1419377864.593345 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 1419377864.593476 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%00 1419377864.593626 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419377864.593977 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, skipList size 0 1419377864.594265 TRACE: [ContentStore] Not a duplicate 1419377864.594354 TRACE: [ContentStore] pushback 0x7f91e2c180a0 1419377864.594457 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%00 cached 1419377864.594890 TRACE: [GeneralConfigSection] using user "" group "" 1419377864.594955 TRACE: [PrivilegeHelper] initializing privilege helper with user "" group "" 1419377864.595115 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419377864.595186 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419377864.595268 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419377864.595338 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419377864.595437 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419377864.595537 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419377864.595619 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419377864.595705 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419377864.595782 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419377864.595868 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419377864.595963 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419377864.596058 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419377864.596157 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419377864.596240 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419377864.596336 TRACE: [FaceManager] TCP port set to 6363 1419377864.596424 TRACE: [FaceManager] UDP port set to 6363 1419377864.596497 TRACE: [FaceManager] UDP multicast port set to 56363 1419377864.596571 TRACE: [FaceManager] WebSocket port set to 9696 1419377864.596636 WARNING: [CommandValidator] Wildcard identity is intended for demo purpose only and SHOULD NOT be used in production environment 1419377864.596767 INFO: [CommandValidator] Giving privilege "faces" to identity wildcard 1419377864.596855 INFO: [CommandValidator] Giving privilege "fib" to identity wildcard 1419377864.596932 INFO: [CommandValidator] Giving privilege "strategy-choice" to identity wildcard 1419377864.597353 TRACE: [GeneralConfigSection] using user "" group "" 1419377864.597415 TRACE: [PrivilegeHelper] initializing privilege helper with user "" group "" 1419377864.597499 INFO: [TablesConfigSection] Setting CS max packets to 65536 1419377864.603254 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419377864.603348 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419377864.603419 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419377864.603489 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419377864.603589 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419377864.603688 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419377864.603775 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419377864.603860 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419377864.603936 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419377864.604024 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419377864.604121 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419377864.604215 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419377864.604313 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419377864.604397 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419377864.662044 TRACE: [FaceManager] TCP port set to 6363 1419377864.662235 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419377864.662347 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419377864.662465 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419377864.662578 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419377864.662739 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419377864.662894 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419377864.663030 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419377864.663167 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419377864.663288 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419377864.663424 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419377864.663576 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419377864.663725 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419377864.663883 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419377864.664016 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419377864.664154 TRACE: [TcpFactory] prohibiting TCP 192.172.226.92:6363 1419377864.664280 TRACE: [TcpFactory] prohibiting TCP 127.0.0.1:6363 1419377864.664387 TRACE: [TcpFactory] prohibiting TCP 0.0.0.0:6363 1419377864.664489 DEBUG: [TcpFactory] Channel [0.0.0.0:6363] created 1419377864.664710 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419377864.664824 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419377864.664939 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419377864.665052 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419377864.665209 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419377864.665363 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419377864.665496 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419377864.665632 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419377864.665752 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419377864.665889 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419377864.666039 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419377864.666189 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419377864.666346 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419377864.666483 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419377864.666625 TRACE: [TcpFactory] prohibiting TCP [fe80::c62c:3ff:fe2c:5f26]:6363 1419377864.666768 TRACE: [TcpFactory] prohibiting TCP [2001:48d0:101:501:c62c:3ff:fe2c:5f26]:6363 1419377864.666922 TRACE: [TcpFactory] prohibiting TCP [2001:48d0:101:501:d13:94d:a184:7a7d]:6363 1419377864.667071 TRACE: [TcpFactory] prohibiting TCP [::1]:6363 1419377864.667168 TRACE: [TcpFactory] prohibiting TCP [fe80::1]:6363 1419377864.667273 TRACE: [TcpFactory] prohibiting TCP [::]:6363 1419377864.667369 DEBUG: [TcpFactory] Channel [[::]:6363] created 1419377864.667513 TRACE: [FaceManager] UDP port set to 6363 1419377864.667613 TRACE: [FaceManager] UDP multicast port set to 56363 1419377864.667755 DEBUG: [UdpFactory] Creating unicast channel 0.0.0.0:6363 1419377864.667960 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419377864.668075 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419377864.668190 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419377864.668302 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419377864.668459 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419377864.668617 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419377864.668755 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419377864.668895 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419377864.669020 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419377864.669160 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419377864.669316 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419377864.669471 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419377864.669629 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419377864.669766 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419377864.669907 TRACE: [UdpFactory] prohibiting UDP 192.172.226.92:6363 1419377864.670027 TRACE: [UdpFactory] prohibiting broadcast address: 192.172.226.255 1419377864.670150 TRACE: [UdpFactory] prohibiting UDP 192.172.226.255:6363 1419377864.670267 TRACE: [UdpFactory] prohibiting UDP 127.0.0.1:6363 1419377864.670377 TRACE: [UdpFactory] prohibiting UDP 255.255.255.255:6363 1419377864.670495 TRACE: [UdpFactory] prohibiting UDP 0.0.0.0:6363 1419377864.670630 DEBUG: [UdpFactory] Creating unicast channel [::]:6363 1419377864.670797 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419377864.670912 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419377864.671031 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419377864.671146 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419377864.671307 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419377864.671475 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419377864.671611 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419377864.671751 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419377864.671881 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419377864.672022 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419377864.672179 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419377864.672329 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419377864.672490 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419377864.672627 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419377864.672768 TRACE: [UdpFactory] prohibiting UDP [fe80::c62c:3ff:fe2c:5f26]:6363 1419377864.672907 TRACE: [UdpFactory] prohibiting UDP [2001:48d0:101:501:c62c:3ff:fe2c:5f26]:6363 1419377864.673112 TRACE: [UdpFactory] prohibiting UDP [2001:48d0:101:501:d13:94d:a184:7a7d]:6363 1419377864.673264 TRACE: [UdpFactory] prohibiting UDP [::1]:6363 1419377864.673362 TRACE: [UdpFactory] prohibiting UDP [fe80::1]:6363 1419377864.673466 TRACE: [UdpFactory] prohibiting UDP [::]:6363 1419377864.673733 INFO: [MulticastUdpFace] Creating multicast UDP face for group 224.0.23.170:56363 1419377864.673895 INFO: [FaceTable] Added face id=256 remote=udp4://224.0.23.170:56363 local=udp4://192.172.226.92:56363 1419377864.698770 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%01 1419377864.698951 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%01 1419377864.699088 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%01 1419377864.699229 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 1419377864.699568 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4, skipList size 1 1419377864.699881 TRACE: [ContentStore] Not a duplicate 1419377864.699953 TRACE: [ContentStore] insertafter 1419377864.700029 TRACE: [ContentStore] pushback 0x7f91e2f00070 1419377864.700125 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%01 cached 1419377864.700421 INFO: [MulticastUdpFace] Creating multicast UDP face for group 224.0.23.170:56363 1419377864.700581 INFO: [FaceTable] Added face id=257 remote=udp4://224.0.23.170:56363 local=udp4://127.0.0.1:56363 1419377864.722376 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%02 1419377864.722554 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%02 1419377864.722691 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%02 1419377864.722796 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%02/sha256digest=9c59465a787e82f6e9acea2093d9a1062ff1d6d6ef41c65124a1af9c3c82befb 1419377864.723117 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%02/sha256digest=9c59465a787e82f6e9acea2093d9a1062ff1d6d6ef41c65124a1af9c3c82befb, skipList size 2 1419377864.723424 TRACE: [ContentStore] Not a duplicate 1419377864.723506 TRACE: [ContentStore] insertafter 1419377864.723582 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%02 cached 1419377864.723740 TRACE: [FaceManager] WebSocket port set to 9696 1419377864.724011 WARNING: [CommandValidator] Wildcard identity is intended for demo purpose only and SHOULD NOT be used in production environment 1419377864.724221 INFO: [CommandValidator] Giving privilege "faces" to identity wildcard 1419377864.724413 INFO: [CommandValidator] Giving privilege "fib" to identity wildcard 1419377864.724574 INFO: [CommandValidator] Giving privilege "strategy-choice" to identity wildcard 1419377864.724794 TRACE: [NameTree] lookup /localhost/nfd 1419377864.724881 TRACE: [NameTree] insert / 1419377864.724950 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377864.725060 TRACE: [NameTree] insert /localhost 1419377864.725141 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419377864.725290 TRACE: [NameTree] Did not find /localhost, need to insert it to the table 1419377864.725423 TRACE: [NameTree] insert /localhost/nfd 1419377864.725512 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419377864.725647 TRACE: [NameTree] Did not find /localhost/nfd, need to insert it to the table 1419377864.725829 INFO: [FaceTable] Added face id=255 remote=null:// local=null:// 1419377864.747165 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%03 1419377864.747342 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%03 1419377864.747475 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%03 1419377864.747624 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%03/sha256digest=f3173f9dd46624fbb545ca5944aa44b53b41b1f68aaff1dff6957802341b6e86 1419377864.747945 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%03/sha256digest=f3173f9dd46624fbb545ca5944aa44b53b41b1f68aaff1dff6957802341b6e86, skipList size 3 1419377864.748248 TRACE: [ContentStore] Not a duplicate 1419377864.748322 TRACE: [ContentStore] insertafter 1419377864.748369 TRACE: [ContentStore] insertafter 1419377864.748417 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%03 cached 1419377864.748534 INFO: [FaceTable] Added face id=254 remote=contentstore:// local=contentstore:// 1419377864.769043 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%04 1419377864.769238 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%04 1419377864.769376 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%04 1419377864.769465 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%04/sha256digest=f3ee8908d065c54deb93056df539806e6aa923ba4944025ffebfd809a1d47ddb 1419377864.769736 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%04/sha256digest=f3ee8908d065c54deb93056df539806e6aa923ba4944025ffebfd809a1d47ddb, skipList size 4 1419377864.770039 TRACE: [ContentStore] Not a duplicate 1419377864.770119 TRACE: [ContentStore] insertafter 1419377864.770173 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%04 cached 1419377864.770348 TRACE: [PrivilegeHelper] dropping to effective gid=0 1419377864.770467 TRACE: [PrivilegeHelper] dropping to effective uid=0 1419377864.770564 INFO: [PrivilegeHelper] dropped to effective uid=0 gid=0 1419377865.690659 DEBUG: [DeadNonceList] mark nMarks=6 1419377866.495910 INFO: [RibManager] Listening on: /localhost/nfd/rib 1419377866.530784 INFO: [RibManager] Start monitoring face create/destroy events 1419377866.553834 DEBUG: [UnixStreamChannel] [/private/var/run/nfd.sock] << Incoming connection 1419377866.554003 INFO: [FaceTable] Added face id=258 remote=fd://20 local=unix:///private/var/run/nfd.sock 1419377866.574581 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%05 1419377866.574767 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%05 1419377866.574909 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%05 1419377866.575057 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 1419377866.575391 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266, skipList size 5 1419377866.575681 TRACE: [ContentStore] Not a duplicate 1419377866.575758 TRACE: [ContentStore] insertafter 1419377866.575834 TRACE: [ContentStore] insertafter 1419377866.575907 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%05 cached 1419377866.576073 TRACE: [UnixStreamFace] [id:258,uri:fd://20] Received: 906 bytes 1419377866.576219 DEBUG: [Forwarder] onIncomingInterest face=258 interest=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.577670 TRACE: [NameTree] lookup /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.578613 TRACE: [NameTree] insert / 1419377866.578656 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377866.578722 TRACE: [NameTree] insert /localhost 1419377866.578770 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419377866.578860 TRACE: [NameTree] insert /localhost/nfd 1419377866.578912 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419377866.579005 TRACE: [NameTree] insert /localhost/nfd/fib 1419377866.579061 TRACE: [NameTree] Name /localhost/nfd/fib hash value = 6388137453996632561 location = 497 1419377866.579156 TRACE: [NameTree] Did not find /localhost/nfd/fib, need to insert it to the table 1419377866.579244 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop 1419377866.579311 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop hash value = 8897078982587721769 location = 41 1419377866.579416 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop, need to insert it to the table 1419377866.579516 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00 1419377866.579634 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00 hash value = 15891323968834093432 location = 376 1419377866.579791 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00, need to insert it to the table 1419377866.579939 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00 1419377866.580074 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00 hash value = 8474689126776296835 location = 387 1419377866.580249 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00, need to insert it to the table 1419377866.580416 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95 1419377866.580575 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95 hash value = 11081424059556387549 location = 733 1419377866.580775 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95, need to insert it to the table 1419377866.580989 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419377866.581354 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT hash value = 10343066674807174658 location = 514 1419377866.581727 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT, need to insert it to the table 1419377866.582036 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.582987 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA hash value = 14380902074802523167 location = 31 1419377866.584043 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA, need to insert it to the table 1419377866.585206 TRACE: [ContentStore] find() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.586254 DEBUG: [Forwarder] onOutgoingInterest face=1 interest=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.587260 DEBUG: [BestRouteStrategy2] /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA?ndn.InterestLifetime=10000&ndn.Nonce=1914343287 from=258 newPitEntry-to=1 1419377866.589707 DEBUG: [Forwarder] onIncomingInterest face=258 interest=/localhost/nfd/faces/events 1419377866.589860 TRACE: [NameTree] lookup /localhost/nfd/faces/events 1419377866.589965 TRACE: [NameTree] insert / 1419377866.590031 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377866.590139 TRACE: [NameTree] insert /localhost 1419377866.590218 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419377866.590371 TRACE: [NameTree] insert /localhost/nfd 1419377866.590461 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419377866.590618 TRACE: [NameTree] insert /localhost/nfd/faces 1419377866.590703 TRACE: [NameTree] Name /localhost/nfd/faces hash value = 4081254122302803360 location = 416 1419377866.590854 TRACE: [NameTree] Did not find /localhost/nfd/faces, need to insert it to the table 1419377866.591005 TRACE: [NameTree] insert /localhost/nfd/faces/events 1419377866.591101 TRACE: [NameTree] Name /localhost/nfd/faces/events hash value = 1233637898983554347 location = 299 1419377866.591274 TRACE: [NameTree] Did not find /localhost/nfd/faces/events, need to insert it to the table 1419377866.591436 TRACE: [ContentStore] find() /localhost/nfd/faces/events 1419377866.591541 TRACE: [ContentStore] selectChild() 1 /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419377866.591842 TRACE: [ContentStore] doesComplyWithSelectors() 1419377866.591932 TRACE: [ContentStore] violates mustBeFresh 1419377866.592022 TRACE: [ContentStore] doesComplyWithSelectors() 1419377866.592117 TRACE: [ContentStore] violates mustBeFresh 1419377866.592204 TRACE: [ContentStore] doesComplyWithSelectors() 1419377866.592298 TRACE: [ContentStore] violates mustBeFresh 1419377866.592385 TRACE: [ContentStore] doesComplyWithSelectors() 1419377866.592479 TRACE: [ContentStore] violates mustBeFresh 1419377866.592565 TRACE: [ContentStore] doesComplyWithSelectors() 1419377866.592659 TRACE: [ContentStore] complies 1419377866.592732 TRACE: [ContentStore] Child prefix/localhost/nfd/faces/events/%FE%05 1419377866.592873 DEBUG: [Forwarder] onOutgoingData face=258 data=/localhost/nfd/faces/events/%FE%05 1419377866.593068 DEBUG: [Forwarder] onIncomingInterest face=258 interest=/localhost/nfd/face1s4/1e9n3a7b7l8e-6local-6c.5o9n3t1r9o4l /ThR%A0CE3:n %[0Ri1b%M0a1n/a%g0er0]% 0o0n%N0ot1iJfyi%c8a3twi%on2:3 /%Fa2cCeGE%veAn8t%NEoBtUi%fiCcCa%t26%i8oBn/(%K1i6n%d:3 Fc%r1eBa%t0ed1,% 0Fa1c%e1ICD%: 3A%078%028%0538n,d nR%e0m8o%t0eU3roir:g %f0d8:%/0/250c,a iLda%0o8c%a0lU3rKiEY:% 0un8i%x0:4/j/o/sphr%i0va8t%e1/1ksvka-r1/4r1u5n1/3n2f9d7.6s0o6c9k%,0 8Fa%c0e7SIcDo-CERpTe/:% l1o7c%aFlD,% 0Fa1c%e0Pe0r%s0is9t%enAcC%Fy6:% oCnE-%dEe1m%an5dD,f %L2i9n%kFTFyAp%e:A Cp%D8o%in8t3-%tBoA-%poCi4n%t)A 7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.594344 TRACE: [NameTree] lookup /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.595392 TRACE: [NameTree] insert / 1419377866.595433 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377866.595501 TRACE: [NameTree] insert /localhost 1419377866.595556 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419377866.595658 TRACE: [NameTree] insert /localhost/nfd 1419377866.595725 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419377866.595844 TRACE: [NameTree] insert /localhost/nfd/faces 1419377866.595918 TRACE: [NameTree] Name /localhost/nfd/faces hash value = 4081254122302803360 location = 416 1419377866.596029 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control 1419377866.596117 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control hash value = 14131624370102305303 location = 535 1419377866.596262 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control, need to insert it to the table 1419377866.596402 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01 1419377866.596511 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01 hash value = 16851061843614654314 location = 874 1419377866.596669 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01, need to insert it to the table 1419377866.596840 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23 1419377866.597022 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23 hash value = 9368823274736391646 location = 478 1419377866.597260 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23, need to insert it to the table 1419377866.597492 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B 1419377866.597703 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B hash value = 4033880353740137674 location = 202 1419377866.597989 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B, need to insert it to the table 1419377866.598250 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419377866.598648 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT hash value = 2430796870919325717 location = 21 1419377866.599103 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT, need to insert it to the table 1419377866.599558 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.601090 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E hash value = 4458974434793362570 location = 138 1419377866.602629 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E, need to insert it to the table 1419377866.604156 TRACE: [ContentStore] find() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.605631 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.607298 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%03/sha256digest=f3173f9dd46624fbb545ca5944aa44b53b41b1f68aaff1dff6957802341b6e86 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.608986 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.610653 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.612324 TRACE: [ContentStore] selectChild() -1 /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 1419377866.612607 DEBUG: [Forwarder] onOutgoingInterest face=1 interest=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.614040 DEBUG: [BestRouteStrategy2] /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E?ndn.InterestLifetime=10000&ndn.Nonce=3897757366 from=258 newPitEntry-to=1 1419377866.615643 DEBUG: [InternalFace] received Interest: /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.617261 DEBUG: [InternalFace] found Interest filter for /localhost/nfd/fib (previous match) 1419377866.617641 DEBUG: [ManagerBase] Parameters parsed OK 1419377866.617730 DEBUG: [FibManager] command result: processing verb: add-nexthop 1419377866.617839 TRACE: [FibManager] add-nexthop prefix: /localhost/nfd/rib faceid: 258 cost: 0 1419377866.618007 TRACE: [NameTree] lookup /localhost/nfd/rib 1419377866.618092 TRACE: [NameTree] insert / 1419377866.618162 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377866.618259 TRACE: [NameTree] insert /localhost 1419377866.618341 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419377866.618483 TRACE: [NameTree] insert /localhost/nfd 1419377866.618566 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419377866.618725 TRACE: [NameTree] insert /localhost/nfd/rib 1419377866.618809 TRACE: [NameTree] Name /localhost/nfd/rib hash value = 17570341667841711180 location = 76 1419377866.618968 TRACE: [NameTree] Did not find /localhost/nfd/rib, need to insert it to the table 1419377866.619099 DEBUG: [FibManager] add-nexthop result: OK prefix:/localhost/nfd/rib faceid: 258 cost: 0 1419377866.619252 DEBUG: [ManagerBase] responding name: /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA code: 200 text: Success 1419377866.641235 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.642866 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.644416 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.646041 TRACE: [NameTree] const_iterator::operator++() 1419377866.646124 TRACE: [ContentStore] insert() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA/sha256digest=e410cab9e0c635e514907adf2aa133138c8e4059db6a80de50bf61a6476d2197 1419377866.647922 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA/sha256digest=e410cab9e0c635e514907adf2aa133138c8e4059db6a80de50bf61a6476d2197, skipList size 6 1419377866.649042 TRACE: [ContentStore] Not a duplicate 1419377866.649104 TRACE: [ContentStore] pushfront 1419377866.649153 DEBUG: [Forwarder] onIncomingData matching=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.650566 DEBUG: [Strategy] beforeSatisfyInterest pitEntry=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA inFace=1 data=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.653676 DEBUG: [Forwarder] onOutgoingData face=258 data=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.655281 TRACE: [UnixStreamFace] [id:258,uri:fd://20] Successfully sent: 435 bytes 1419377866.655454 DEBUG: [InternalFace] received Inte1re4s1t9:3 7/7l8o6c6a.l6h5o5s5t1/9n fDdE/BfUaGc:e s[/ReinbaMbalnea-gleorc]a l-control/h%0S3unc%c0e1s%s0fu1l/l%y0 r0e%g0i0s%t0e1rJeyd% /8l3owc%al2h3o/s%t/2nCfGd%/rAi8b% wEiBtUh% NCFCD% 26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.656966 DEBUG: [InternalFace] found Interest filter for /localhost/nfd/faces (previous match) 1419377866.657308 DEBUG: [ManagerBase] Parameters parsed OK 1419377866.657395 DEBUG: [FaceManager] command result: processing verb: enable-local-control 1419377866.657522 DEBUG: [ManagerBase] responding name: /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E code: 200 text: Success 1419377866.679740 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.681287 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.682816 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.684360 TRACE: [NameTree] const_iterator::operator++() 1419377866.684452 TRACE: [ContentStore] insert() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E/sha256digest=de1b73c61f1984246b88b9db05ccec356be92306255eef261a83f1f36d548b72 1419377866.686150 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E/sha256digest=de1b73c61f1984246b88b9db05ccec356be92306255eef261a83f1f36d548b72, skipList size 7 1419377866.687860 TRACE: [ContentStore] Not a duplicate 1419377866.687920 TRACE: [ContentStore] insertafter 1419377866.687967 TRACE: [ContentStore] insertafter 1419377866.688014 DEBUG: [Forwarder] onIncomingData matching=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.688902 DEBUG: [Strategy] beforeSatisfyInterest pitEntry=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E inFace=1 data=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.691366 DEBUG: [Forwarder] onOutgoingData face=258 data=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.692913 TRACE: [UnixStreamFace] [id:258,uri:fd://20] Received: 49 bytes 1419377866.693051 DEBUG: [Forwarder] onIncomingInterest face=258 interest=/localhost/nfd/faces/events/%FE%06 1419377866.693213 TRACE: [NameTree] lookup /localhost/nfd/faces/events/%FE%06 1419377866.693326 TRACE: [NameTree] insert / 1419377866.693392 TRACE: [NameTree] Name / hash value = 0 location = 0 1419377866.693497 TRACE: [NameTree] insert /localhost 1419377866.693577 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419377866.693727 TRACE: [NameTree] insert /localhost/nfd 1419377866.693813 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419377866.693966 TRACE: [NameTree] insert /localhost/nfd/faces 1419377866.694060 TRACE: [NameTree] Name /localhost/nfd/faces hash value = 4081254122302803360 location = 416 1419377866.694223 TRACE: [NameTree] insert /localhost/nfd/faces/events 1419377866.694328 TRACE: [NameTree] Name /localhost/nfd/faces/events hash value = 1233637898983554347 location = 299 1419377866.694501 TRACE: [NameTree] insert /localhost/nfd/faces/events/%FE%06 1419377866.694619 TRACE: [NameTree] Name /localhost/nfd/faces/events/%FE%06 hash value = 11149859696307243421 location = 413 1419377866.694801 TRACE: [NameTree] Did not find /localhost/nfd/faces/events/%FE%06, need to insert it to the table 1419377866.694973 TRACE: [ContentStore] find() /localhost/nfd/faces/events/%FE%06 1419377866.695098 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 < /localhost/nfd/faces/events/%FE%06 1419377866.695420 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%03/sha256digest=f3173f9dd46624fbb545ca5944aa44b53b41b1f68aaff1dff6957802341b6e86 < /localhost/nfd/faces/events/%FE%06 1419377866.695728 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 < /localhost/nfd/faces/events/%FE%06 1419377866.696034 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 < /localhost/nfd/faces/events/%FE%06 1419377866.696337 TRACE: [ContentStore] selectChild() -1 /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 1419377866.696620 DEBUG: [Forwarder] onOutgoingInterest face=1 interest=/localhost/nfd/faces/events/%FE%06 1419377866.696783 DEBUG: [BestRouteStrategy2] /localhost/nfd/faces/events/%FE%06?ndn.InterestLifetime=60000&ndn.Nonce=3746084811 from=258 newPitEntry-to=1 1419377866.697033 TRACE: [UnixStreamFace] [id:258,uri:fd://20] Successfully sent: 798 bytes 1419377866.697189 DEBUG: [InternalFace] received Interest: /localhost/nfd/faces/events/%FE%06 1419377866.697328 DEBUG: [InternalFace] found Interest filter for /localhost/nfd/faces (previous match) 1419377866.697473 DEBUG: [FaceManager] command result: processing verb: events 1419377866.697587 DEBUG: [Forwarder] onInterestFinalize interest=/localhost/nfd/faces/events satisfied 1419377866.697733 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/events 1419377866.697871 TRACE: [UnixStreamFace] [id:258,uri:fd://20] Successfully sent: 7 bytes 1419377866.698003 TRACE: [UnixStreamFace] [id:2158,uri:f4d1:9/3/72708]6 6S.u6c9c8e0s5s6f uDlElByU Gs:e nt[:R ib7M5a9n abgyetre]s Local control header enabled 1419377866.754967 DEBUG: [Forwarder] onInterestFinalize interest=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA satisfied 1419377866.756554 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA 1419377866.758141 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419377866.758417 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95 1419377866.758583 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00 1419377866.758726 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00 1419377866.758852 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop 1419377866.758926 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib 1419377866.758990 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd 1419377866.796453 DEBUG: [Forwarder] onInterestFinalize interest=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E satisfied 1419377866.797591 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E 1419377866.798947 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419377866.799302 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B 1419377866.799468 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23 1419377866.799584 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01 1419377866.799710 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control 1419377866.799827 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces 1419377866.895269 DEBUG: [DeadNonceList] mark nMarks=7 1419377868.096537 DEBUG: [DeadNonceList] mark nMarks=8 tao:~ $ 1419377869.297831 DEBUG: [DeadNonceList] mark nMarks=9 1419377870.490837 DEBUG: [DeadNonceList] adjustCapacity DOWN capacity=115 1419377870.499109 DEBUG: [DeadNonceList] mark nMarks=10 1419377871.700510 DEBUG: [DeadNonceList] mark nMarks=11 1419377872.901838 DEBUG: [DeadNonceList] mark nMarks=12 1419377874.102562 DEBUG: [DeadNonceList] mark nMarks=13 1419377875.303994 DEBUG: [DeadNonceList] mark nMarks=14 1419377876.492315 DEBUG: [DeadNonceList] adjustCapacity DOWN capacity=103 1419377876.505396 DEBUG: [DeadNonceList] mark nMarks=15 1419377877.706760 DEBUG: [DeadNonceList] mark nMarks=16 1419377878.908124 DEBUG: [DeadNonceList] mark nMarks=17 1419377880.109479 DEBUG: [DeadNonceList] mark nMarks=18 1419377881.149741 INFO: [NRD] Caught signal 'Terminated: 15', exiting... 1419377881.150130 INFO: [UnixStreamFace] [id:258,uri:fd://20] Connection closed 1419377881.176736 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%06 1419377881.176910 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%06 1419377881.177040 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%06 1419377881.177181 TRACE: [NameTree] const_iterator::operator++() 1419377881.177269 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%06/sha256digest=c3de8052bac7a5771cf142b070a902a0066122916efb43206b0f7e76194fb730 1419377881.177571 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%06/sha256digest=c3de8052bac7a5771cf142b070a902a0066122916efb43206b0f7e76194fb730, skipList size 8 1419377881.177942 TRACE: [ContentStore] Not a duplicate 1419377881.178016 TRACE: [ContentStore] insertafter 1419377881.178093 DEBUG: [Forwarder] onIncomingData matching=/localhost/nfd/faces/events/%FE%06 1419377881.178240 DEBUG: [Strategy] beforeSatisfyInterest pitEntry=/localhost/nfd/faces/events/%FE%06 inFace=1 data=/localhost/nfd/faces/events/%FE%06 1419377881.178471 DEBUG: [Forwarder] onOutgoingData face=258 data=/localhost/nfd/faces/events/%FE%06 1419377881.178649 INFO: [FaceTable] Removed face id=258 remote=fd://20 local=unix:///private/var/run/nfd.sock 1419377881.178818 TRACE: [NameTree] fullEnumerate 1419377881.178895 TRACE: [NameTree] const_iterator::operator++() 1419377881.178995 TRACE: [NameTree] const_iterator::operator++() 1419377881.179094 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/rib 1419377881.179204 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd 1419377881.179327 DEBUG: [UnixStreamFace] [id:-1,uri:fd://20] Clearing send queue 1419377881.179527 INFO: [NFD] Caught signal 'Terminated: 15', exiting... 1419377881.179921 TRACE: [UnixStreamChannel] [/private/var/run/nfd.sock] Removing socket file 1419377881.180208 TRACE: [ContentStore] evictItem() 1419377881.180279 TRACE: [ContentStore] Evict from unsolicited queue 1419377881.180359 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419377881.180624 TRACE: [ContentStore] SkipList size 9 1419377881.180748 TRACE: [ContentStore] evictItem() 1419377881.180849 TRACE: [ContentStore] Evict from unsolicited queue 1419377881.180984 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 1419377881.181334 TRACE: [ContentStore] SkipList size 8 1419377881.181426 TRACE: [ContentStore] evictItem() 1419377881.181499 TRACE: [ContentStore] Evict from unsolicited queue 1419377881.181593 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%02/sha256digest=9c59465a787e82f6e9acea2093d9a1062ff1d6d6ef41c65124a1af9c3c82befb 1419377881.181875 TRACE: [ContentStore] SkipList size 7 1419377881.181965 TRACE: [ContentStore] evictItem() 1419377881.182041 TRACE: [ContentStore] Evict from unsolicited queue 1419377881.182136 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%03/sha256digest=f3173f9dd46624fbb545ca5944aa44b53b41b1f68aaff1dff6957802341b6e86 1419377881.182443 TRACE: [ContentStore] SkipList size 6 1419377881.182534 TRACE: [ContentStore] evictItem() 1419377881.182607 TRACE: [ContentStore] Evict from unsolicited queue 1419377881.182701 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%04/sha256digest=f3ee8908d065c54deb93056df539806e6aa923ba4944025ffebfd809a1d47ddb 1419377881.182979 TRACE: [ContentStore] SkipList size 5 1419377881.183068 TRACE: [ContentStore] evictItem() 1419377881.183142 TRACE: [ContentStore] Evict from unsolicited queue 1419377881.183274 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%05/sha256digest=ce987f6512c6b434b73bd92c9357bac97318d91fd16a5a183858fe922d443266 1419377881.183617 TRACE: [ContentStore] SkipList size 4 1419377881.183724 TRACE: [ContentStore] evictItem() 1419377881.183803 TRACE: [ContentStore] Evict from staleness queue 1419377881.183897 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%83w%00/%B0%12%ED8%A2%BB%D6%95/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%14%ED%19%0B%FEz%5E%8F%2A%3C%CEM%910%EB%FD%21_%DB%8Bb%0Fl%2C%AD%E3%08%0B%DA%B8%AEM%F1%1A%A0%97%D4%8E%9DX%F1%CC%F9Q%28%1D%C4t%EE%15l%B0%F3%FDU%07%29J%EC%D9%1D%BAl%8Cz%C6%7Fy%94%2F%15%0A%ECl%8D%AB%C4%A0%1F%FBT8%00%8A%E4%AD%28%EEP%C52Y%E2%26%D1%C3%60%27%3A%C7h%14%2F%9C%F7%7E%F6%DB%3A%3F%B2%D7%A4%C0%D6Np%28G%FA%C4%3BS%98%3E%A4w%87%8E%7E%D8%BB%CE%7F%81Z%06r%E3k%15%1E%CF%C3x%FE_Ti%FB%CB%FD%5B%05%1F%E4xLb%C0%F1%06%0E%96%14%23QW%25%13%D7%5D%B5%A1%23%5C%CB%10%AF%9C%93%EB%23I%C4%AC%85%EA%5BDu%0B%90%FDwb%B2%7F%12%C1%C9l%C1E%B5%D4%17%8D%3D9s%7E%25%F8SaO%B8l2-V%FDV%5D%B5%D88%86U%B5%97%9A%F5%0A%C6%A1%04%0ET%F4Q%03W%AF%E9zD%DA%143%3A%A6s%C3%BA/sha256digest=e410cab9e0c635e514907adf2aa133138c8e4059db6a80de50bf61a6476d2197 1419377881.185652 TRACE: [ContentStore] SkipList size 3 1419377881.185747 TRACE: [ContentStore] evictItem() 1419377881.185819 TRACE: [ContentStore] Evict from staleness queue 1419377881.185912 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%83w%23/%2CG%A8%EBU%CC%26%8B/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%09%AC%F6%CE%E1%5Df%29%FFA%AC%D8%83%BA%C4%A7%20%F2%1E%603x%A2%FB%86%D7%FE%E7R%14cWlT%CB0t%87%A1%8C%CDW%B2%90%DE%8BsG%2F%14%A7%C8%1Eu%2F%E3%B3j%CEz%94b%9D%A1%60%E8%24%88%E0%14%C9%94U%3B%C3e%CC%87%D1N%8F8%B8K%83Q%EF%0AG%D0%96h%A4%F6r%17%16%E3%83U%B63%BA%E5%E2%BA2%12U%E5%1C%B42%7B%FD%1C%09%A11%258%02%C9%DB%B42%83%80%0C%DB%13%D4%E8%22P8%96%B4%13%80%F6r%5B7.%60%2A%1C%B3%C4%ADYm%A3%16%A4%AAM%B4%23%E7%08ic%C6M%FC%1C%3Avf%B8%DB%86mc%87%9Cp%E9%22O%17%88%CA%9C%C6%BF%9EMD%9CW%3B%E7%94o%1E%9E2s%F12%9CTnf-DL%3C%E7%9C%F4%BCNP%A0%5Cd%FD%E9%24%CF%80J%F4S%C8%7D%ED%EEY%F1%02%F2%04%0A%F2%26%7B%3E%21%C1%0E%CEy%E7D%3E%99%94%AELv%5E/sha256digest=de1b73c61f1984246b88b9db05ccec356be92306255eef261a83f1f36d548b72 1419377881.187630 TRACE: [ContentStore] SkipList size 2 1419377881.187718 TRACE: [ContentStore] evictItem() 1419377881.187792 TRACE: [ContentStore] Evict from arrival queue 1419377881.187880 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%06/sha256digest=c3de8052bac7a5771cf142b070a902a0066122916efb43206b0f7e76194fb730 1419377881.188333 TRACE: [ContentStore] SkipList size 1 1419377881.188428 TRACE: [ContentStore] evictItem() $ exit Script done on Tue Dec 23 15:38:05 2014 From davide.pesavento at lip6.fr Tue Dec 23 15:53:48 2014 From: davide.pesavento at lip6.fr (Davide Pesavento) Date: Wed, 24 Dec 2014 00:53:48 +0100 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141223233934.GE14038@caida.org> References: <20141202001046.GC7225@caida.org> <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> <20141223233934.GE14038@caida.org> Message-ID: EthernetFace does not seem to be enabled. Please attach the file "build/config.log" Thanks, Davide On Wed, Dec 24, 2014 at 12:39 AM, Josh Polterock wrote: > Davide, > > Please find attached. > > Thanks, > Josh > > On Wed, Dec 24, 2014 at 12:23:01AM +0100, Davide Pesavento wrote: >> Josh, >> >> Thanks a lot for testing. >> >> Would you mind attaching (or pasting inline) the output of NFD startup >> phase at a debug level of "ALL"? >> >> Thanks, >> Davide >> >> On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: >> > Junxiao, >> > >> > Ok. nfd starts and gives regular DEBUG output. >> > >> > When I execute the 'nfd-status -f | grep 'dev' command it returns >> > nothing. >> > >> > Josh >> > >> > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: >> >> Hi Josh >> >> >> >> We recently changed the configuration file format. >> >> Please delete the "listen" line in face_system.unix section, or just >> >> replace the configuration file with the sample. >> >> >> >> Thanks. >> >> Yours, Junxiao >> >> >> >> On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: >> >> >> >> > Junxiao, >> >> > >> >> > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: >> >> > > Hi Josh >> >> > > >> >> > > It seems that the branch is outdated. I have rebased it. Please try again >> >> > > with the new procedure: >> >> > > >> >> > > >> >> > > On hostA (OSX with Boost 1.57): >> >> > > >> >> > > - recompile and install ndn-cxx, latest version from GitHub >> >> > > - recompile and install NFD >> >> > > - after git clone, use the following command to checkout a branch >> >> > > under review: >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 >> >> > && >> >> > > git checkout FETCH_HEAD >> >> > > - then compile and install as usual >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub >> >> > >> >> > This all seemed to go smoothly. I still need to commandeer a second >> >> > system (we have another iMac I can use but it does not have XCode on it >> >> > yet, so I'm installing). so, I jumped down to instructions on starting >> >> > and testing nfd on HostA. >> >> > >> >> > > >> >> > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): >> >> > > >> >> > > - recompile and install ndn-cxx, latest version from GitHub >> >> > > - recompile and install NFD >> >> > > - after git clone, use the following command to checkout a branch >> >> > > under review: >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 >> >> > && >> >> > > git checkout FETCH_HEAD >> >> > > - then compile and install as usual >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub >> >> > > >> >> > > >> >> > > 1. on both hosts: execute `nfd-start` >> >> > >> >> > Upon trying to start nfd, I receive the following error: >> >> > >> >> > Script started on Tue Dec 23 13:59:11 2014 >> >> > $ nfd-start >> >> > Password: >> >> > 1419371964.968853 TRACE: [NameTree] lookup / >> >> > 1419371964.968910 TRACE: [NameTree] insert / >> >> > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 >> >> > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to >> >> > the table >> >> > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy >> >> > /localhost/nfd/strategy/best-route/%FD%02 >> >> > 1419371964.969523 INFO: [InternalFace] registering callback for >> >> > /localhost/nfd/fib >> >> > 1419371964.969624 INFO: [InternalFace] registering callback for >> >> > /localhost/nfd/faces >> >> > 1419371964.969753 INFO: [InternalFace] registering callback for >> >> > /localhost/nfd/strategy-choice >> >> > 1419371964.969898 INFO: [InternalFace] registering callback for >> >> > /localhost/nfd/status >> >> > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// >> >> > local=internal:// >> >> > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib >> >> > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 >> >> > data=/localhost/nfd/faces/events/%FE%00 >> >> > 1419371967.346542 TRACE: [NameTree] >> >> > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 >> >> > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch >> >> > /localhost/nfd/faces/events/%FE%00 >> >> > 1419371967.346832 TRACE: [ContentStore] insert() >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 >> >> > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, >> >> > skipList size 0 >> >> > 1419371967.347508 TRACE: [ContentStore] Not a duplicate >> >> > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 >> >> > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 >> >> > data=/localhost/nfd/faces/events/%FE%00 cached >> >> > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" >> >> > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper >> >> > with user "" group "" >> >> > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 >> >> > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address >> >> > 127.0.0.1 >> >> > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address >> >> > fe80::1 >> >> > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer >> >> > address for unhandled interface type 7 >> >> > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer >> >> > address for unhandled interface type 9 >> >> > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet >> >> > address c4:2c:03:2c:5f:26 >> >> > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> >> > fe80::c62c:3ff:fe2c:5f26 >> >> > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address >> >> > 192.172.226.92 >> >> > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast >> >> > address 192.172.226.255 >> >> > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> >> > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 >> >> > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> >> > 2001:48d0:101:501:d13:94d:a184:7a7d >> >> > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer >> >> > address for unhandled interface type >> >> > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet >> >> > address d8:30:62:51:e4:aa >> >> > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet >> >> > address 0a:30:62:51:e4:aa >> >> > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" >> >> > section >> >> > 1419371967.350783 TRACE: [ContentStore] evictItem() >> >> > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue >> >> > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 >> >> > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 >> >> > 1419371967.351353 TRACE: [ContentStore] evictItem() >> >> > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face >> >> > create/destroy events >> >> > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No >> >> > such file or directory) >> >> > >> >> > Script done on Tue Dec 23 13:59:51 2014 >> >> > >> >> > >> >> > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number >> >> > after >> >> > > "faceid=" >> >> > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the >> >> > > number found in step 2 >> >> > > 4. on hostB: run `ndnpingserver /A` >> >> > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds >> >> > > >> >> > > >> >> > >> > _______________________________________________ >> > Nfd-dev mailing list >> > Nfd-dev at lists.cs.ucla.edu >> > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > From josh at caida.org Tue Dec 23 16:05:18 2014 From: josh at caida.org (Josh Polterock) Date: Tue, 23 Dec 2014 16:05:18 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> <20141223233934.GE14038@caida.org> Message-ID: <20141224000518.GF14038@caida.org> Wasn't sure which you wanted so included both ndn-cxx and NFD build/config.log files attached. Josh On Wed, Dec 24, 2014 at 12:53:48AM +0100, Davide Pesavento wrote: > EthernetFace does not seem to be enabled. Please attach the file > "build/config.log" > > Thanks, > Davide > > On Wed, Dec 24, 2014 at 12:39 AM, Josh Polterock wrote: > > Davide, > > > > Please find attached. > > > > Thanks, > > Josh > > > > On Wed, Dec 24, 2014 at 12:23:01AM +0100, Davide Pesavento wrote: > >> Josh, > >> > >> Thanks a lot for testing. > >> > >> Would you mind attaching (or pasting inline) the output of NFD startup > >> phase at a debug level of "ALL"? > >> > >> Thanks, > >> Davide > >> > >> On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: > >> > Junxiao, > >> > > >> > Ok. nfd starts and gives regular DEBUG output. > >> > > >> > When I execute the 'nfd-status -f | grep 'dev' command it returns > >> > nothing. > >> > > >> > Josh > >> > > >> > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: > >> >> Hi Josh > >> >> > >> >> We recently changed the configuration file format. > >> >> Please delete the "listen" line in face_system.unix section, or just > >> >> replace the configuration file with the sample. > >> >> > >> >> Thanks. > >> >> Yours, Junxiao > >> >> > >> >> On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: > >> >> > >> >> > Junxiao, > >> >> > > >> >> > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > >> >> > > Hi Josh > >> >> > > > >> >> > > It seems that the branch is outdated. I have rebased it. Please try again > >> >> > > with the new procedure: > >> >> > > > >> >> > > > >> >> > > On hostA (OSX with Boost 1.57): > >> >> > > > >> >> > > - recompile and install ndn-cxx, latest version from GitHub > >> >> > > - recompile and install NFD > >> >> > > - after git clone, use the following command to checkout a branch > >> >> > > under review: > >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > >> >> > && > >> >> > > git checkout FETCH_HEAD > >> >> > > - then compile and install as usual > >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub > >> >> > > >> >> > This all seemed to go smoothly. I still need to commandeer a second > >> >> > system (we have another iMac I can use but it does not have XCode on it > >> >> > yet, so I'm installing). so, I jumped down to instructions on starting > >> >> > and testing nfd on HostA. > >> >> > > >> >> > > > >> >> > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > >> >> > > > >> >> > > - recompile and install ndn-cxx, latest version from GitHub > >> >> > > - recompile and install NFD > >> >> > > - after git clone, use the following command to checkout a branch > >> >> > > under review: > >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > >> >> > && > >> >> > > git checkout FETCH_HEAD > >> >> > > - then compile and install as usual > >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub > >> >> > > > >> >> > > > >> >> > > 1. on both hosts: execute `nfd-start` > >> >> > > >> >> > Upon trying to start nfd, I receive the following error: > >> >> > > >> >> > Script started on Tue Dec 23 13:59:11 2014 > >> >> > $ nfd-start > >> >> > Password: > >> >> > 1419371964.968853 TRACE: [NameTree] lookup / > >> >> > 1419371964.968910 TRACE: [NameTree] insert / > >> >> > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 > >> >> > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to > >> >> > the table > >> >> > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy > >> >> > /localhost/nfd/strategy/best-route/%FD%02 > >> >> > 1419371964.969523 INFO: [InternalFace] registering callback for > >> >> > /localhost/nfd/fib > >> >> > 1419371964.969624 INFO: [InternalFace] registering callback for > >> >> > /localhost/nfd/faces > >> >> > 1419371964.969753 INFO: [InternalFace] registering callback for > >> >> > /localhost/nfd/strategy-choice > >> >> > 1419371964.969898 INFO: [InternalFace] registering callback for > >> >> > /localhost/nfd/status > >> >> > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// > >> >> > local=internal:// > >> >> > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib > >> >> > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 > >> >> > data=/localhost/nfd/faces/events/%FE%00 > >> >> > 1419371967.346542 TRACE: [NameTree] > >> >> > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 > >> >> > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch > >> >> > /localhost/nfd/faces/events/%FE%00 > >> >> > 1419371967.346832 TRACE: [ContentStore] insert() > >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > >> >> > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() > >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, > >> >> > skipList size 0 > >> >> > 1419371967.347508 TRACE: [ContentStore] Not a duplicate > >> >> > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 > >> >> > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 > >> >> > data=/localhost/nfd/faces/events/%FE%00 cached > >> >> > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" > >> >> > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper > >> >> > with user "" group "" > >> >> > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 > >> >> > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address > >> >> > 127.0.0.1 > >> >> > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address > >> >> > fe80::1 > >> >> > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer > >> >> > address for unhandled interface type 7 > >> >> > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer > >> >> > address for unhandled interface type 9 > >> >> > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet > >> >> > address c4:2c:03:2c:5f:26 > >> >> > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> >> > fe80::c62c:3ff:fe2c:5f26 > >> >> > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address > >> >> > 192.172.226.92 > >> >> > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast > >> >> > address 192.172.226.255 > >> >> > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> >> > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 > >> >> > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> >> > 2001:48d0:101:501:d13:94d:a184:7a7d > >> >> > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer > >> >> > address for unhandled interface type > >> >> > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet > >> >> > address d8:30:62:51:e4:aa > >> >> > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet > >> >> > address 0a:30:62:51:e4:aa > >> >> > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" > >> >> > section > >> >> > 1419371967.350783 TRACE: [ContentStore] evictItem() > >> >> > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue > >> >> > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() > >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > >> >> > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 > >> >> > 1419371967.351353 TRACE: [ContentStore] evictItem() > >> >> > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face > >> >> > create/destroy events > >> >> > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No > >> >> > such file or directory) > >> >> > > >> >> > Script done on Tue Dec 23 13:59:51 2014 > >> >> > > >> >> > > >> >> > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number > >> >> > after > >> >> > > "faceid=" > >> >> > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > >> >> > > number found in step 2 > >> >> > > 4. on hostB: run `ndnpingserver /A` > >> >> > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > >> >> > > > >> >> > > > >> >> > > >> > _______________________________________________ > >> > Nfd-dev mailing list > >> > Nfd-dev at lists.cs.ucla.edu > >> > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > > > _______________________________________________ > > Nfd-dev mailing list > > Nfd-dev at lists.cs.ucla.edu > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > -------------- next part -------------- # project ndn-cxx (0.2.0) configured on Tue Dec 23 13:38:44 2014 by # waf 1.8.2 (abi 98, python 20708f0 on darwin) # using ./waf configure --prefix=/opt/local # ---------------------------------------- Setting top to /Users/josh/src/ndn-cxx-master ---------------------------------------- Setting out to /Users/josh/src/ndn-cxx-master/build ---------------------------------------- Checking for 'clang++' (C++ compiler) find program=['clang++'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='CXX' -> ['/usr/bin/clang++'] find program=['ar'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='AR' -> ['/usr/bin/ar'] /usr/bin/clang++ ---------------------------------------- Checking supported CXXFLAGS ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_54b820f8a2a863b01dbb6d17ce7af116/test.cpp ['/usr/bin/clang++', '-Werror', '-std=c++0x', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_54b820f8a2a863b01dbb6d17ce7af116/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_54b820f8a2a863b01dbb6d17ce7af116/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_54b820f8a2a863b01dbb6d17ce7af116/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_0d6fb1fcbca41620827e16707d02de8b/test.cpp ['/usr/bin/clang++', '-Werror', '-std=c++11', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_0d6fb1fcbca41620827e16707d02de8b/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_0d6fb1fcbca41620827e16707d02de8b/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_0d6fb1fcbca41620827e16707d02de8b/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_64296b54047d3273cfde1ad3589fd24b/test.cpp ['/usr/bin/clang++', '-Werror', '-stdlib=libc++', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_64296b54047d3273cfde1ad3589fd24b/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_64296b54047d3273cfde1ad3589fd24b/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_64296b54047d3273cfde1ad3589fd24b/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_0deb0e0c794ee087ffc46366a294c1a4/test.cpp ['/usr/bin/clang++', '-Werror', '-pedantic', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_0deb0e0c794ee087ffc46366a294c1a4/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_0deb0e0c794ee087ffc46366a294c1a4/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_0deb0e0c794ee087ffc46366a294c1a4/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_67599162c4c756cb8153bf7532f90fba/test.cpp ['/usr/bin/clang++', '-Werror', '-Wall', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_67599162c4c756cb8153bf7532f90fba/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_67599162c4c756cb8153bf7532f90fba/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_67599162c4c756cb8153bf7532f90fba/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_9f9fbe9a4fbdf2bdad0db14f1cb235bf/test.cpp ['/usr/bin/clang++', '-Werror', '-O2', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_9f9fbe9a4fbdf2bdad0db14f1cb235bf/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_9f9fbe9a4fbdf2bdad0db14f1cb235bf/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_9f9fbe9a4fbdf2bdad0db14f1cb235bf/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_b2d468fe38389ed2d0bfc5a41f5dcfb3/test.cpp ['/usr/bin/clang++', '-Werror', '-g', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_b2d468fe38389ed2d0bfc5a41f5dcfb3/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_b2d468fe38389ed2d0bfc5a41f5dcfb3/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_b2d468fe38389ed2d0bfc5a41f5dcfb3/testbuild/testprog'] -std=c++0x -std=c++11 -stdlib=libc++ -pedantic -Wall -O2 -g ---------------------------------------- Checking supported LINKFLAGS ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_257a2af9636491d0ceba33e6150e7566/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_257a2af9636491d0ceba33e6150e7566/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_257a2af9636491d0ceba33e6150e7566/testbuild/testprog ['/usr/bin/clang++', '-Werror', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_257a2af9636491d0ceba33e6150e7566/testbuild/testprog'] -stdlib=libc++ ---------------------------------------- Checking for program 'doxygen' /opt/local/bin/doxygen find program=['doxygen'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='DOXYGEN' -> ['/opt/local/bin/doxygen'] ---------------------------------------- Checking for program 'tar' /usr/bin/tar find program=['tar'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='TAR' -> ['/usr/bin/tar'] ---------------------------------------- Checking for program 'sphinx-build' /opt/local/bin/sphinx-build find program=['sphinx-build'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='SPHINX_BUILD' -> ['/opt/local/bin/sphinx-build'] ------------------------------------------ Checking for std::is_default_constructible ==> #include static_assert(std::is_default_constructible::value, ""); <== [1/1] Compiling build/.conf_check_49e926be7cb49748e626de738773d11d/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_49e926be7cb49748e626de738773d11d/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for std::is_move_constructible ==> #include static_assert(std::is_move_constructible::value, ""); <== [1/1] Compiling build/.conf_check_955cd6eacd7ddc3824161f352102d50f/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_955cd6eacd7ddc3824161f352102d50f/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for std::is_move_assignable ==> #include static_assert(std::is_move_assignable::value, ""); <== [1/1] Compiling build/.conf_check_dbc60010b122e82a4fb5a3bece746e83/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_dbc60010b122e82a4fb5a3bece746e83/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for friend typename-specifier ==> class A; template class B { friend T; }; B g_b; <== [1/1] Compiling build/.conf_check_4d26b274e1458e76a8255ca67a2c2ccd/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_4d26b274e1458e76a8255ca67a2c2ccd/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for program 'sh' /bin/sh find program=['sh'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='SH' -> ['/bin/sh'] ------------------------------------------ Checking for library pthread ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_fbb4b5f86c008012fd52122846400a35/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_fbb4b5f86c008012fd52122846400a35/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_fbb4b5f86c008012fd52122846400a35/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_fbb4b5f86c008012fd52122846400a35/testbuild/testprog', '-lpthread'] yes ------------------------------------------ Checking for library rt ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_e42e24d159fe1313ff44ce1cbf3ab73a/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_e42e24d159fe1313ff44ce1cbf3ab73a/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_e42e24d159fe1313ff44ce1cbf3ab73a/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_e42e24d159fe1313ff44ce1cbf3ab73a/testbuild/testprog', '-lrt'] err: ld: library not found for -lrt clang: error: linker command failed with exit code 1 (use -v to see invocation) from /Users/josh/src/ndn-cxx-master: Test does not build: Traceback (most recent call last): File "/Users/josh/src/ndn-cxx-master/.waf-1.8.2-a01aa13963437a19e5d8748cf2afd71b/waflib/Configure.py", line 337, in run_build bld.compile() File "/Users/josh/src/ndn-cxx-master/.waf-1.8.2-a01aa13963437a19e5d8748cf2afd71b/waflib/Build.py", line 184, in compile raise Errors.BuildError(self.producer.error) BuildError: Build failed -> task in 'testprog' failed (exit status 1): {task 4397346192: cxxprogram test.cpp.1.o -> testprog} ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_e42e24d159fe1313ff44ce1cbf3ab73a/testbuild/testprog', '-lrt'] not found from /Users/josh/src/ndn-cxx-master: The configuration failed ------------------------------------------ Checking for compiler flags ['-fPIC'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_4a1d00759ad3312d8f19523a72634857/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-fPIC', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_4a1d00759ad3312d8f19523a72634857/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_4a1d00759ad3312d8f19523a72634857/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_4a1d00759ad3312d8f19523a72634857/testbuild/testprog'] yes ------------------------------------------ Checking for framework CoreFoundation ==> #include int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_21de47956d637de4c6efe591e164229d/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_21de47956d637de4c6efe591e164229d/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_21de47956d637de4c6efe591e164229d/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_21de47956d637de4c6efe591e164229d/testbuild/testprog', '-framework', 'CoreFoundation'] yes ------------------------------------------ Checking for framework CoreServices ==> #include int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_745b86c0bdc0891a79cfb4bf01b29fd3/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '-DHAVE_COREFOUNDATION_COREFOUNDATION_H=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_745b86c0bdc0891a79cfb4bf01b29fd3/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_745b86c0bdc0891a79cfb4bf01b29fd3/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_745b86c0bdc0891a79cfb4bf01b29fd3/testbuild/testprog', '-framework', 'CoreServices'] yes ------------------------------------------ Checking for framework Security ==> #include #include #include #include #include int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_9266e0de905a67b481a49acca5cd546e/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '-DHAVE_COREFOUNDATION_COREFOUNDATION_H=1', '-DHAVE_CORESERVICES_CORESERVICES_H=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_9266e0de905a67b481a49acca5cd546e/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_9266e0de905a67b481a49acca5cd546e/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_9266e0de905a67b481a49acca5cd546e/testbuild/testprog', '-framework', 'Security', '-framework', 'CoreFoundation'] yes ------------------------------------------ Checking for OpenSSL library ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_2871a3a0d7a130b02ee0ede5ed059ff1/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '-DHAVE_COREFOUNDATION_COREFOUNDATION_H=1', '-DHAVE_CORESERVICES_CORESERVICES_H=1', '-DHAVE_SECURITY=1', '-DHAVE_OSX_SECURITY=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_2871a3a0d7a130b02ee0ede5ed059ff1/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_2871a3a0d7a130b02ee0ede5ed059ff1/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_2871a3a0d7a130b02ee0ede5ed059ff1/testbuild/testprog', '-lssl', '-lcrypto'] yes ------------------------------------------ Checking for program 'pkg-config' /opt/local/bin/pkg-config find program=['pkg-config'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='PKGCONFIG' -> ['/opt/local/bin/pkg-config'] ------------------------------------------ Checking for 'sqlite3' ['/opt/local/bin/pkg-config', '--cflags', '--libs', 'sqlite3'] out: -I/opt/local/include -L/opt/local/lib -lsqlite3 yes ------------------------------------------ Checking Crypto++ lib 562 ------------------------------------------ Checking if CryptoPP library works ==> #include int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_b612593f5be1d78999a05a934bfec0d5/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-I/opt/local/include', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '-DHAVE_COREFOUNDATION_COREFOUNDATION_H=1', '-DHAVE_CORESERVICES_CORESERVICES_H=1', '-DHAVE_SECURITY=1', '-DHAVE_OSX_SECURITY=1', '-DHAVE_OPENSSL=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_b612593f5be1d78999a05a934bfec0d5/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_b612593f5be1d78999a05a934bfec0d5/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_b612593f5be1d78999a05a934bfec0d5/testbuild/testprog', '-L/opt/local/lib', '-lcryptopp', '-lpthread'] yes ------------------------------------------ Checking boost includes 1.57.0 ------------------------------------------ Checking boost libs Found the boost path in /opt/local/lib with the libraries: /opt/local/lib/libboost_atomic-mt.a /opt/local/lib/libboost_atomic-mt.dylib /opt/local/lib/libboost_atomic.a /opt/local/lib/libboost_atomic.dylib /opt/local/lib/libboost_chrono-mt.a /opt/local/lib/libboost_chrono-mt.dylib /opt/local/lib/libboost_chrono.a /opt/local/lib/libboost_chrono.dylib /opt/local/lib/libboost_container-mt.a /opt/local/lib/libboost_container-mt.dylib /opt/local/lib/libboost_container.a /opt/local/lib/libboost_container.dylib /opt/local/lib/libboost_context-mt.a /opt/local/lib/libboost_context-mt.dylib /opt/local/lib/libboost_context.a /opt/local/lib/libboost_context.dylib /opt/local/lib/libboost_coroutine-mt.a /opt/local/lib/libboost_coroutine-mt.dylib /opt/local/lib/libboost_coroutine.a /opt/local/lib/libboost_coroutine.dylib /opt/local/lib/libboost_date_time-mt.a /opt/local/lib/libboost_date_time-mt.dylib /opt/local/lib/libboost_date_time.a /opt/local/lib/libboost_date_time.dylib /opt/local/lib/libboost_exception-mt.a /opt/local/lib/libboost_exception.a /opt/local/lib/libboost_filesystem-mt.a /opt/local/lib/libboost_filesystem-mt.dylib /opt/local/lib/libboost_filesystem.a /opt/local/lib/libboost_filesystem.dylib /opt/local/lib/libboost_graph-mt.a /opt/local/lib/libboost_graph-mt.dylib /opt/local/lib/libboost_graph.a /opt/local/lib/libboost_graph.dylib /opt/local/lib/libboost_iostreams-mt.a /opt/local/lib/libboost_iostreams-mt.dylib /opt/local/lib/libboost_iostreams.a /opt/local/lib/libboost_iostreams.dylib /opt/local/lib/libboost_locale-mt.a /opt/local/lib/libboost_locale-mt.dylib /opt/local/lib/libboost_locale.a /opt/local/lib/libboost_locale.dylib /opt/local/lib/libboost_log-mt.a /opt/local/lib/libboost_log-mt.dylib /opt/local/lib/libboost_log.a /opt/local/lib/libboost_log.dylib /opt/local/lib/libboost_log_setup-mt.a /opt/local/lib/libboost_log_setup-mt.dylib /opt/local/lib/libboost_log_setup.a /opt/local/lib/libboost_log_setup.dylib /opt/local/lib/libboost_math_c99-mt.a /opt/local/lib/libboost_math_c99-mt.dylib /opt/local/lib/libboost_math_c99.a /opt/local/lib/libboost_math_c99.dylib /opt/local/lib/libboost_math_c99f-mt.a /opt/local/lib/libboost_math_c99f-mt.dylib /opt/local/lib/libboost_math_c99f.a /opt/local/lib/libboost_math_c99f.dylib /opt/local/lib/libboost_math_c99l-mt.a /opt/local/lib/libboost_math_c99l-mt.dylib /opt/local/lib/libboost_math_c99l.a /opt/local/lib/libboost_math_c99l.dylib /opt/local/lib/libboost_math_tr1-mt.a /opt/local/lib/libboost_math_tr1-mt.dylib /opt/local/lib/libboost_math_tr1.a /opt/local/lib/libboost_math_tr1.dylib /opt/local/lib/libboost_math_tr1f-mt.a /opt/local/lib/libboost_math_tr1f-mt.dylib /opt/local/lib/libboost_math_tr1f.a /opt/local/lib/libboost_math_tr1f.dylib /opt/local/lib/libboost_math_tr1l-mt.a /opt/local/lib/libboost_math_tr1l-mt.dylib /opt/local/lib/libboost_math_tr1l.a /opt/local/lib/libboost_math_tr1l.dylib /opt/local/lib/libboost_prg_exec_monitor-mt.a /opt/local/lib/libboost_prg_exec_monitor-mt.dylib /opt/local/lib/libboost_prg_exec_monitor.a /opt/local/lib/libboost_prg_exec_monitor.dylib /opt/local/lib/libboost_program_options-mt.a /opt/local/lib/libboost_program_options-mt.dylib /opt/local/lib/libboost_program_options.a /opt/local/lib/libboost_program_options.dylib /opt/local/lib/libboost_python-mt.a /opt/local/lib/libboost_python-mt.dylib /opt/local/lib/libboost_python.a /opt/local/lib/libboost_python.dylib /opt/local/lib/libboost_random-mt.a /opt/local/lib/libboost_random-mt.dylib /opt/local/lib/libboost_random.a /opt/local/lib/libboost_random.dylib /opt/local/lib/libboost_regex-mt.a /opt/local/lib/libboost_regex-mt.dylib /opt/local/lib/libboost_regex.a /opt/local/lib/libboost_regex.dylib /opt/local/lib/libboost_serialization-mt.a /opt/local/lib/libboost_serialization-mt.dylib /opt/local/lib/libboost_serialization.a /opt/local/lib/libboost_serialization.dylib /opt/local/lib/libboost_signals-mt.a /opt/local/lib/libboost_signals-mt.dylib /opt/local/lib/libboost_signals.a /opt/local/lib/libboost_signals.dylib /opt/local/lib/libboost_system-mt.a /opt/local/lib/libboost_system-mt.dylib /opt/local/lib/libboost_system.a /opt/local/lib/libboost_system.dylib /opt/local/lib/libboost_test_exec_monitor-mt.a /opt/local/lib/libboost_test_exec_monitor.a /opt/local/lib/libboost_thread-mt.a /opt/local/lib/libboost_thread-mt.dylib /opt/local/lib/libboost_thread.a /opt/local/lib/libboost_thread.dylib /opt/local/lib/libboost_timer-mt.a /opt/local/lib/libboost_timer-mt.dylib /opt/local/lib/libboost_timer.a /opt/local/lib/libboost_timer.dylib /opt/local/lib/libboost_unit_test_framework-mt.a /opt/local/lib/libboost_unit_test_framework-mt.dylib /opt/local/lib/libboost_unit_test_framework.a /opt/local/lib/libboost_unit_test_framework.dylib /opt/local/lib/libboost_wave-mt.a /opt/local/lib/libboost_wave-mt.dylib /opt/local/lib/libboost_wave.a /opt/local/lib/libboost_wave.dylib /opt/local/lib/libboost_wserialization-mt.a /opt/local/lib/libboost_wserialization-mt.dylib /opt/local/lib/libboost_wserialization.a /opt/local/lib/libboost_wserialization.dylib Trying pattern boost_system(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_system(-1_57)+ Trying pattern boost_system(-1_57)+ Trying pattern boost_system(-xgcc[0-9]{0,3})+ Trying pattern boost_system Found boost lib libboost_system-mt.a Trying pattern boost_filesystem(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_filesystem(-1_57)+ Trying pattern boost_filesystem(-1_57)+ Trying pattern boost_filesystem(-xgcc[0-9]{0,3})+ Trying pattern boost_filesystem Found boost lib libboost_filesystem-mt.a Trying pattern boost_date_time(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_date_time(-1_57)+ Trying pattern boost_date_time(-1_57)+ Trying pattern boost_date_time(-xgcc[0-9]{0,3})+ Trying pattern boost_date_time Found boost lib libboost_date_time-mt.a Trying pattern boost_iostreams(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_iostreams(-1_57)+ Trying pattern boost_iostreams(-1_57)+ Trying pattern boost_iostreams(-xgcc[0-9]{0,3})+ Trying pattern boost_iostreams Found boost lib libboost_iostreams-mt.a Trying pattern boost_regex(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_regex(-1_57)+ Trying pattern boost_regex(-1_57)+ Trying pattern boost_regex(-xgcc[0-9]{0,3})+ Trying pattern boost_regex Found boost lib libboost_regex-mt.a Trying pattern boost_program_options(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_program_options(-1_57)+ Trying pattern boost_program_options(-1_57)+ Trying pattern boost_program_options(-xgcc[0-9]{0,3})+ Trying pattern boost_program_options Found boost lib libboost_program_options-mt.a Trying pattern boost_chrono(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_chrono(-1_57)+ Trying pattern boost_chrono(-1_57)+ Trying pattern boost_chrono(-xgcc[0-9]{0,3})+ Trying pattern boost_chrono Found boost lib libboost_chrono-mt.a Trying pattern boost_random(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_random(-1_57)+ Trying pattern boost_random(-1_57)+ Trying pattern boost_random(-xgcc[0-9]{0,3})+ Trying pattern boost_random Found boost lib libboost_random-mt.a ok ------------------------------------------ Checking for boost linkage ==> #include int main() { boost::system::error_code c; } <== [1/2] Compiling build/.conf_check_d743e553950574a1f408da4d87a05aa4/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-I/opt/local/include', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_ASSIGNABLE=1', '-DHAVE_CXX_FRIEND_TYPENAME=1', '-DHAVE_PTHREAD=1', '-DHAVE_COREFOUNDATION_COREFOUNDATION_H=1', '-DHAVE_CORESERVICES_CORESERVICES_H=1', '-DHAVE_SECURITY=1', '-DHAVE_OSX_SECURITY=1', '-DHAVE_OPENSSL=1', '-DHAVE_CRYPTOPP_CONFIG_H=1', '../test.cpp', '-c', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_d743e553950574a1f408da4d87a05aa4/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_d743e553950574a1f408da4d87a05aa4/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/ndn-cxx-master/build/.conf_check_d743e553950574a1f408da4d87a05aa4/testbuild/testprog', '-L/opt/local/lib', '-lboost_system-mt', '-lboost_filesystem-mt', '-lboost_date_time-mt', '-lboost_iostreams-mt', '-lboost_regex-mt', '-lboost_program_options-mt', '-lboost_chrono-mt', '-lboost_random-mt'] ok -------------- next part -------------- # project nfd (0.2.0) configured on Tue Dec 23 13:44:23 2014 by # waf 1.8.2 (abi 98, python 20708f0 on darwin) # using ./waf configure --prefix=/opt/local # ---------------------------------------- Setting top to /Users/josh/src/NFD ---------------------------------------- Setting out to /Users/josh/src/NFD/build ---------------------------------------- Checking for 'clang++' (C++ compiler) find program=['clang++'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='CXX' -> ['/usr/bin/clang++'] find program=['ar'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='AR' -> ['/usr/bin/ar'] /usr/bin/clang++ ---------------------------------------- Checking supported CXXFLAGS ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_14ebd83ea58183b452fac4f80e09c644/test.cpp ['/usr/bin/clang++', '-Werror', '-std=c++0x', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_14ebd83ea58183b452fac4f80e09c644/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_14ebd83ea58183b452fac4f80e09c644/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_14ebd83ea58183b452fac4f80e09c644/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_98e8b86f5d7bc63532850eb9ad348bb0/test.cpp ['/usr/bin/clang++', '-Werror', '-std=c++11', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_98e8b86f5d7bc63532850eb9ad348bb0/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_98e8b86f5d7bc63532850eb9ad348bb0/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_98e8b86f5d7bc63532850eb9ad348bb0/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_a471b73ef653792c8c2821a5f05dbab4/test.cpp ['/usr/bin/clang++', '-Werror', '-stdlib=libc++', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_a471b73ef653792c8c2821a5f05dbab4/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_a471b73ef653792c8c2821a5f05dbab4/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_a471b73ef653792c8c2821a5f05dbab4/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_79a7d2e26bbe348aa2133f5c19e67993/test.cpp ['/usr/bin/clang++', '-Werror', '-pedantic', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_79a7d2e26bbe348aa2133f5c19e67993/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_79a7d2e26bbe348aa2133f5c19e67993/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_79a7d2e26bbe348aa2133f5c19e67993/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_3fb2f032bd9c2b7d89042391dab68f6b/test.cpp ['/usr/bin/clang++', '-Werror', '-Wall', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_3fb2f032bd9c2b7d89042391dab68f6b/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_3fb2f032bd9c2b7d89042391dab68f6b/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_3fb2f032bd9c2b7d89042391dab68f6b/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_e1f5b67515434d32d36fb56ee593b3f5/test.cpp ['/usr/bin/clang++', '-Werror', '-O2', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_e1f5b67515434d32d36fb56ee593b3f5/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_e1f5b67515434d32d36fb56ee593b3f5/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_e1f5b67515434d32d36fb56ee593b3f5/testbuild/testprog'] ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_de2b315124bcbf75dec7f91deb9b3751/test.cpp ['/usr/bin/clang++', '-Werror', '-g', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_de2b315124bcbf75dec7f91deb9b3751/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_de2b315124bcbf75dec7f91deb9b3751/testbuild/testprog ['/usr/bin/clang++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_de2b315124bcbf75dec7f91deb9b3751/testbuild/testprog'] -std=c++0x -std=c++11 -stdlib=libc++ -pedantic -Wall -O2 -g ---------------------------------------- Checking supported LINKFLAGS ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_60ae166b9fec91f1d4c88e9904ba1a63/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_60ae166b9fec91f1d4c88e9904ba1a63/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_60ae166b9fec91f1d4c88e9904ba1a63/testbuild/testprog ['/usr/bin/clang++', '-Werror', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_60ae166b9fec91f1d4c88e9904ba1a63/testbuild/testprog'] -stdlib=libc++ ---------------------------------------- Checking for program 'doxygen' /opt/local/bin/doxygen find program=['doxygen'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='DOXYGEN' -> ['/opt/local/bin/doxygen'] ---------------------------------------- Checking for program 'tar' /usr/bin/tar find program=['tar'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='TAR' -> ['/usr/bin/tar'] ---------------------------------------- Checking for program 'sphinx-build' /opt/local/bin/sphinx-build find program=['sphinx-build'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='SPHINX_BUILD' -> ['/opt/local/bin/sphinx-build'] ------------------------------------------ Checking for std::is_default_constructible ==> #include static_assert(std::is_default_constructible::value, ""); <== [1/1] Compiling build/.conf_check_1dd5fc6fcf02a0de1cb38084983945ee/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_1dd5fc6fcf02a0de1cb38084983945ee/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for std::is_move_constructible ==> #include static_assert(std::is_move_constructible::value, ""); <== [1/1] Compiling build/.conf_check_08617337cd0ebf043d54661bf829003e/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_08617337cd0ebf043d54661bf829003e/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for override specifier ==> class Base { virtual void f(int a); }; class Derived : public Base { virtual void f(int a) override; }; <== [1/1] Compiling build/.conf_check_4937bf810f5bfd335e650302b8080e6c/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_4937bf810f5bfd335e650302b8080e6c/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for program 'bash' /bin/bash find program=['bash'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='BASH' -> ['/bin/bash'] ------------------------------------------ Checking for program 'pkg-config' /opt/local/bin/pkg-config find program=['pkg-config'] paths=['/opt/local/bin', '/opt/local/sbin', '/usr/bin', '/bin', '/usr/sbin', '/sbin', '/usr/local/bin', '/opt/X11/bin', '/usr/texbin', '/usr/local/git/bin', '~/bin', '/usr/local/git/bin', '~/bin'] var='PKGCONFIG' -> ['/opt/local/bin/pkg-config'] ------------------------------------------ Checking for 'libndn-cxx' ['/opt/local/bin/pkg-config', '--cflags', '--libs', 'libndn-cxx'] out: -fPIC -I/opt/local/include -L/opt/local/lib -lndn-cxx -lboost_system-mt -lboost_filesystem-mt -lboost_date_time-mt -lboost_iostreams-mt -lboost_regex-mt -lboost_program_options-mt -lboost_chrono-mt -lboost_random-mt -lssl -lcrypto -lcryptopp -lsqlite3 -lpthread -framework CoreFoundation -framework Security yes ------------------------------------------ Checking for librt library ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_d4f9d92c5a454b308065f7805e9fda8e/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_d4f9d92c5a454b308065f7805e9fda8e/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_d4f9d92c5a454b308065f7805e9fda8e/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_d4f9d92c5a454b308065f7805e9fda8e/testbuild/testprog', '-lrt'] err: ld: library not found for -lrt clang: error: linker command failed with exit code 1 (use -v to see invocation) from /Users/josh/src/NFD: Test does not build: Traceback (most recent call last): File "/Users/josh/src/NFD/.waf-1.8.2-a01aa13963437a19e5d8748cf2afd71b/waflib/Configure.py", line 337, in run_build bld.compile() File "/Users/josh/src/NFD/.waf-1.8.2-a01aa13963437a19e5d8748cf2afd71b/waflib/Build.py", line 184, in compile raise Errors.BuildError(self.producer.error) BuildError: Build failed -> task in 'testprog' failed (exit status 1): {task 4333970448: cxxprogram test.cpp.1.o -> testprog} ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_d4f9d92c5a454b308065f7805e9fda8e/testbuild/testprog', '-lrt'] not found from /Users/josh/src/NFD: The configuration failed ------------------------------------------ Checking for libresolv library ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_9ee39f7b3368b79bcccc0f7cc9c0883e/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_9ee39f7b3368b79bcccc0f7cc9c0883e/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_9ee39f7b3368b79bcccc0f7cc9c0883e/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_9ee39f7b3368b79bcccc0f7cc9c0883e/testbuild/testprog', '-lresolv'] yes ------------------------------------------ Checking boost includes 1.57.0 ------------------------------------------ Checking boost libs Found the boost path in /opt/local/lib with the libraries: /opt/local/lib/libboost_atomic-mt.a /opt/local/lib/libboost_atomic-mt.dylib /opt/local/lib/libboost_atomic.a /opt/local/lib/libboost_atomic.dylib /opt/local/lib/libboost_chrono-mt.a /opt/local/lib/libboost_chrono-mt.dylib /opt/local/lib/libboost_chrono.a /opt/local/lib/libboost_chrono.dylib /opt/local/lib/libboost_container-mt.a /opt/local/lib/libboost_container-mt.dylib /opt/local/lib/libboost_container.a /opt/local/lib/libboost_container.dylib /opt/local/lib/libboost_context-mt.a /opt/local/lib/libboost_context-mt.dylib /opt/local/lib/libboost_context.a /opt/local/lib/libboost_context.dylib /opt/local/lib/libboost_coroutine-mt.a /opt/local/lib/libboost_coroutine-mt.dylib /opt/local/lib/libboost_coroutine.a /opt/local/lib/libboost_coroutine.dylib /opt/local/lib/libboost_date_time-mt.a /opt/local/lib/libboost_date_time-mt.dylib /opt/local/lib/libboost_date_time.a /opt/local/lib/libboost_date_time.dylib /opt/local/lib/libboost_exception-mt.a /opt/local/lib/libboost_exception.a /opt/local/lib/libboost_filesystem-mt.a /opt/local/lib/libboost_filesystem-mt.dylib /opt/local/lib/libboost_filesystem.a /opt/local/lib/libboost_filesystem.dylib /opt/local/lib/libboost_graph-mt.a /opt/local/lib/libboost_graph-mt.dylib /opt/local/lib/libboost_graph.a /opt/local/lib/libboost_graph.dylib /opt/local/lib/libboost_iostreams-mt.a /opt/local/lib/libboost_iostreams-mt.dylib /opt/local/lib/libboost_iostreams.a /opt/local/lib/libboost_iostreams.dylib /opt/local/lib/libboost_locale-mt.a /opt/local/lib/libboost_locale-mt.dylib /opt/local/lib/libboost_locale.a /opt/local/lib/libboost_locale.dylib /opt/local/lib/libboost_log-mt.a /opt/local/lib/libboost_log-mt.dylib /opt/local/lib/libboost_log.a /opt/local/lib/libboost_log.dylib /opt/local/lib/libboost_log_setup-mt.a /opt/local/lib/libboost_log_setup-mt.dylib /opt/local/lib/libboost_log_setup.a /opt/local/lib/libboost_log_setup.dylib /opt/local/lib/libboost_math_c99-mt.a /opt/local/lib/libboost_math_c99-mt.dylib /opt/local/lib/libboost_math_c99.a /opt/local/lib/libboost_math_c99.dylib /opt/local/lib/libboost_math_c99f-mt.a /opt/local/lib/libboost_math_c99f-mt.dylib /opt/local/lib/libboost_math_c99f.a /opt/local/lib/libboost_math_c99f.dylib /opt/local/lib/libboost_math_c99l-mt.a /opt/local/lib/libboost_math_c99l-mt.dylib /opt/local/lib/libboost_math_c99l.a /opt/local/lib/libboost_math_c99l.dylib /opt/local/lib/libboost_math_tr1-mt.a /opt/local/lib/libboost_math_tr1-mt.dylib /opt/local/lib/libboost_math_tr1.a /opt/local/lib/libboost_math_tr1.dylib /opt/local/lib/libboost_math_tr1f-mt.a /opt/local/lib/libboost_math_tr1f-mt.dylib /opt/local/lib/libboost_math_tr1f.a /opt/local/lib/libboost_math_tr1f.dylib /opt/local/lib/libboost_math_tr1l-mt.a /opt/local/lib/libboost_math_tr1l-mt.dylib /opt/local/lib/libboost_math_tr1l.a /opt/local/lib/libboost_math_tr1l.dylib /opt/local/lib/libboost_prg_exec_monitor-mt.a /opt/local/lib/libboost_prg_exec_monitor-mt.dylib /opt/local/lib/libboost_prg_exec_monitor.a /opt/local/lib/libboost_prg_exec_monitor.dylib /opt/local/lib/libboost_program_options-mt.a /opt/local/lib/libboost_program_options-mt.dylib /opt/local/lib/libboost_program_options.a /opt/local/lib/libboost_program_options.dylib /opt/local/lib/libboost_python-mt.a /opt/local/lib/libboost_python-mt.dylib /opt/local/lib/libboost_python.a /opt/local/lib/libboost_python.dylib /opt/local/lib/libboost_random-mt.a /opt/local/lib/libboost_random-mt.dylib /opt/local/lib/libboost_random.a /opt/local/lib/libboost_random.dylib /opt/local/lib/libboost_regex-mt.a /opt/local/lib/libboost_regex-mt.dylib /opt/local/lib/libboost_regex.a /opt/local/lib/libboost_regex.dylib /opt/local/lib/libboost_serialization-mt.a /opt/local/lib/libboost_serialization-mt.dylib /opt/local/lib/libboost_serialization.a /opt/local/lib/libboost_serialization.dylib /opt/local/lib/libboost_signals-mt.a /opt/local/lib/libboost_signals-mt.dylib /opt/local/lib/libboost_signals.a /opt/local/lib/libboost_signals.dylib /opt/local/lib/libboost_system-mt.a /opt/local/lib/libboost_system-mt.dylib /opt/local/lib/libboost_system.a /opt/local/lib/libboost_system.dylib /opt/local/lib/libboost_test_exec_monitor-mt.a /opt/local/lib/libboost_test_exec_monitor.a /opt/local/lib/libboost_thread-mt.a /opt/local/lib/libboost_thread-mt.dylib /opt/local/lib/libboost_thread.a /opt/local/lib/libboost_thread.dylib /opt/local/lib/libboost_timer-mt.a /opt/local/lib/libboost_timer-mt.dylib /opt/local/lib/libboost_timer.a /opt/local/lib/libboost_timer.dylib /opt/local/lib/libboost_unit_test_framework-mt.a /opt/local/lib/libboost_unit_test_framework-mt.dylib /opt/local/lib/libboost_unit_test_framework.a /opt/local/lib/libboost_unit_test_framework.dylib /opt/local/lib/libboost_wave-mt.a /opt/local/lib/libboost_wave-mt.dylib /opt/local/lib/libboost_wave.a /opt/local/lib/libboost_wave.dylib /opt/local/lib/libboost_wserialization-mt.a /opt/local/lib/libboost_wserialization-mt.dylib /opt/local/lib/libboost_wserialization.a /opt/local/lib/libboost_wserialization.dylib Trying pattern boost_system(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_system(-1_57)+ Trying pattern boost_system(-1_57)+ Trying pattern boost_system(-xgcc[0-9]{0,3})+ Trying pattern boost_system Found boost lib libboost_system-mt.a Trying pattern boost_chrono(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_chrono(-1_57)+ Trying pattern boost_chrono(-1_57)+ Trying pattern boost_chrono(-xgcc[0-9]{0,3})+ Trying pattern boost_chrono Found boost lib libboost_chrono-mt.a Trying pattern boost_program_options(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_program_options(-1_57)+ Trying pattern boost_program_options(-1_57)+ Trying pattern boost_program_options(-xgcc[0-9]{0,3})+ Trying pattern boost_program_options Found boost lib libboost_program_options-mt.a Trying pattern boost_random(-xgcc[0-9]{0,3})+(-1_57)+ Trying pattern boost_random(-1_57)+ Trying pattern boost_random(-1_57)+ Trying pattern boost_random(-xgcc[0-9]{0,3})+ Trying pattern boost_random Found boost lib libboost_random-mt.a ok ------------------------------------------ Checking for boost linkage ==> #include int main() { boost::system::error_code c; } <== [1/2] Compiling build/.conf_check_b4f5ad8391c3f6deb5beedd161a1ce57/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-I/opt/local/include', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '-DHAVE_LIBRESOLV=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_b4f5ad8391c3f6deb5beedd161a1ce57/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_b4f5ad8391c3f6deb5beedd161a1ce57/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_b4f5ad8391c3f6deb5beedd161a1ce57/testbuild/testprog', '-L/opt/local/lib', '-lboost_system-mt', '-lboost_chrono-mt', '-lboost_program_options-mt', '-lboost_random-mt'] ok ------------------------------------------ Checking if Unix sockets are supported ==> #include #ifndef BOOST_ASIO_HAS_LOCAL_SOCKETS #error "Unix sockets are not available on this platform" #endif <== [1/1] Compiling build/.conf_check_7c0e57495bc4c87479144b7bccb61964/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-I/opt/local/include', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '-DHAVE_LIBRESOLV=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_7c0e57495bc4c87479144b7bccb61964/testbuild/test.cpp.1.o'] yes ------------------------------------------ Checking for WebSocket includes 0.4.0 ------------------------------------------------ Checking if Ethernet face support can be enabled ==> #include #if defined(BOOST_ASIO_HAS_KQUEUE) and BOOST_VERSION == 105600 #error "Ethernet face support cannot be enabled on this platform with boost 1.56" #endif <== [1/1] Compiling build/.conf_check_10466baffe3fdf15b3991667e7ab6b43/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-I/opt/local/include', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '-DHAVE_LIBRESOLV=1', '-DHAVE_UNIX_SOCKETS=1', '-DHAVE_WEBSOCKET=1', '-D_WEBSOCKETPP_CPP11_STL_=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_10466baffe3fdf15b3991667e7ab6b43/testbuild/test.cpp.1.o'] yes ------------------------------------------------ Checking for libpcap library ==> int main(int argc, char **argv) { (void)argc; (void)argv; return 0; } <== [1/2] Compiling build/.conf_check_a8cb3437b1ebf3ed452d887d44fbb5d7/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '-DHAVE_LIBRESOLV=1', '-DHAVE_UNIX_SOCKETS=1', '-DHAVE_WEBSOCKET=1', '-D_WEBSOCKETPP_CPP11_STL_=1', '-DHAVE_ASIO_PCAP_SUPPORT=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_a8cb3437b1ebf3ed452d887d44fbb5d7/testbuild/test.cpp.1.o'] [2/2] Linking build/.conf_check_a8cb3437b1ebf3ed452d887d44fbb5d7/testbuild/testprog ['/usr/bin/clang++', '-stdlib=libc++', 'test.cpp.1.o', '-o', '/Users/josh/src/NFD/build/.conf_check_a8cb3437b1ebf3ed452d887d44fbb5d7/testbuild/testprog', '-lpcap'] yes ------------------------------------------------ Checking for function pcap_set_immediate_mode ==> #include int main(int argc, char **argv) { void *p; (void)argc; (void)argv; p=(void*)(pcap_set_immediate_mode); return 0; } <== [1/2] Compiling build/.conf_check_bbbc6f30f10be932a98c9a3e4cb70afa/test.cpp ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-Wno-error', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '-DHAVE_LIBRESOLV=1', '-DHAVE_UNIX_SOCKETS=1', '-DHAVE_WEBSOCKET=1', '-D_WEBSOCKETPP_CPP11_STL_=1', '-DHAVE_ASIO_PCAP_SUPPORT=1', '-DHAVE_LIBPCAP=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_bbbc6f30f10be932a98c9a3e4cb70afa/testbuild/test.cpp.1.o'] err: ../test.cpp:6:12: error: use of undeclared identifier 'pcap_set_immediate_mode' p=(void*)(pcap_set_immediate_mode); ^ 1 error generated. from /Users/josh/src/NFD: Test does not build: Traceback (most recent call last): File "/Users/josh/src/NFD/.waf-1.8.2-a01aa13963437a19e5d8748cf2afd71b/waflib/Configure.py", line 337, in run_build bld.compile() File "/Users/josh/src/NFD/.waf-1.8.2-a01aa13963437a19e5d8748cf2afd71b/waflib/Build.py", line 184, in compile raise Errors.BuildError(self.producer.error) BuildError: Build failed -> task in 'testprog' failed (exit status 1): {task 4337714512: cxx test.cpp -> test.cpp.1.o} ['/usr/bin/clang++', '-std=c++0x', '-std=c++11', '-stdlib=libc++', '-pedantic', '-Wall', '-O2', '-g', '-Wno-error', '-DHAVE_IS_DEFAULT_CONSTRUCTIBLE=1', '-DHAVE_IS_MOVE_CONSTRUCTIBLE=1', '-DHAVE_CXX_OVERRIDE=1', '-DHAVE_LIBRESOLV=1', '-DHAVE_UNIX_SOCKETS=1', '-DHAVE_WEBSOCKET=1', '-D_WEBSOCKETPP_CPP11_STL_=1', '-DHAVE_ASIO_PCAP_SUPPORT=1', '-DHAVE_LIBPCAP=1', '../test.cpp', '-c', '-o', '/Users/josh/src/NFD/build/.conf_check_bbbc6f30f10be932a98c9a3e4cb70afa/testbuild/test.cpp.1.o'] no from /Users/josh/src/NFD: The configuration failed From davide.pesavento at lip6.fr Tue Dec 23 16:14:11 2014 From: davide.pesavento at lip6.fr (Davide Pesavento) Date: Wed, 24 Dec 2014 01:14:11 +0100 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141224000518.GF14038@caida.org> References: <20141202185211.GH7225@caida.org> <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> <20141223233934.GE14038@caida.org> <20141224000518.GF14038@caida.org> Message-ID: The build-time configuration looks good. Please make sure that the "ether" section exists in the nfd.conf you're using and that it's not commented out. If unsure, use the default "build/nfd.conf.sample" file. Attach NFD output for the new run with the corrected conf file. Thanks, Davide On Wed, Dec 24, 2014 at 1:05 AM, Josh Polterock wrote: > Wasn't sure which you wanted so included both ndn-cxx and NFD > build/config.log files attached. > > Josh > > On Wed, Dec 24, 2014 at 12:53:48AM +0100, Davide Pesavento wrote: >> EthernetFace does not seem to be enabled. Please attach the file >> "build/config.log" >> >> Thanks, >> Davide >> >> On Wed, Dec 24, 2014 at 12:39 AM, Josh Polterock wrote: >> > Davide, >> > >> > Please find attached. >> > >> > Thanks, >> > Josh >> > >> > On Wed, Dec 24, 2014 at 12:23:01AM +0100, Davide Pesavento wrote: >> >> Josh, >> >> >> >> Thanks a lot for testing. >> >> >> >> Would you mind attaching (or pasting inline) the output of NFD startup >> >> phase at a debug level of "ALL"? >> >> >> >> Thanks, >> >> Davide >> >> >> >> On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: >> >> > Junxiao, >> >> > >> >> > Ok. nfd starts and gives regular DEBUG output. >> >> > >> >> > When I execute the 'nfd-status -f | grep 'dev' command it returns >> >> > nothing. >> >> > >> >> > Josh >> >> > >> >> > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: >> >> >> Hi Josh >> >> >> >> >> >> We recently changed the configuration file format. >> >> >> Please delete the "listen" line in face_system.unix section, or just >> >> >> replace the configuration file with the sample. >> >> >> >> >> >> Thanks. >> >> >> Yours, Junxiao >> >> >> >> >> >> On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: >> >> >> >> >> >> > Junxiao, >> >> >> > >> >> >> > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: >> >> >> > > Hi Josh >> >> >> > > >> >> >> > > It seems that the branch is outdated. I have rebased it. Please try again >> >> >> > > with the new procedure: >> >> >> > > >> >> >> > > >> >> >> > > On hostA (OSX with Boost 1.57): >> >> >> > > >> >> >> > > - recompile and install ndn-cxx, latest version from GitHub >> >> >> > > - recompile and install NFD >> >> >> > > - after git clone, use the following command to checkout a branch >> >> >> > > under review: >> >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 >> >> >> > && >> >> >> > > git checkout FETCH_HEAD >> >> >> > > - then compile and install as usual >> >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub >> >> >> > >> >> >> > This all seemed to go smoothly. I still need to commandeer a second >> >> >> > system (we have another iMac I can use but it does not have XCode on it >> >> >> > yet, so I'm installing). so, I jumped down to instructions on starting >> >> >> > and testing nfd on HostA. >> >> >> > >> >> >> > > >> >> >> > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): >> >> >> > > >> >> >> > > - recompile and install ndn-cxx, latest version from GitHub >> >> >> > > - recompile and install NFD >> >> >> > > - after git clone, use the following command to checkout a branch >> >> >> > > under review: >> >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 >> >> >> > && >> >> >> > > git checkout FETCH_HEAD >> >> >> > > - then compile and install as usual >> >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub >> >> >> > > >> >> >> > > >> >> >> > > 1. on both hosts: execute `nfd-start` >> >> >> > >> >> >> > Upon trying to start nfd, I receive the following error: >> >> >> > >> >> >> > Script started on Tue Dec 23 13:59:11 2014 >> >> >> > $ nfd-start >> >> >> > Password: >> >> >> > 1419371964.968853 TRACE: [NameTree] lookup / >> >> >> > 1419371964.968910 TRACE: [NameTree] insert / >> >> >> > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 >> >> >> > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to >> >> >> > the table >> >> >> > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy >> >> >> > /localhost/nfd/strategy/best-route/%FD%02 >> >> >> > 1419371964.969523 INFO: [InternalFace] registering callback for >> >> >> > /localhost/nfd/fib >> >> >> > 1419371964.969624 INFO: [InternalFace] registering callback for >> >> >> > /localhost/nfd/faces >> >> >> > 1419371964.969753 INFO: [InternalFace] registering callback for >> >> >> > /localhost/nfd/strategy-choice >> >> >> > 1419371964.969898 INFO: [InternalFace] registering callback for >> >> >> > /localhost/nfd/status >> >> >> > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// >> >> >> > local=internal:// >> >> >> > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib >> >> >> > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 >> >> >> > data=/localhost/nfd/faces/events/%FE%00 >> >> >> > 1419371967.346542 TRACE: [NameTree] >> >> >> > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 >> >> >> > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch >> >> >> > /localhost/nfd/faces/events/%FE%00 >> >> >> > 1419371967.346832 TRACE: [ContentStore] insert() >> >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 >> >> >> > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() >> >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, >> >> >> > skipList size 0 >> >> >> > 1419371967.347508 TRACE: [ContentStore] Not a duplicate >> >> >> > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 >> >> >> > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 >> >> >> > data=/localhost/nfd/faces/events/%FE%00 cached >> >> >> > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" >> >> >> > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper >> >> >> > with user "" group "" >> >> >> > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 >> >> >> > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address >> >> >> > 127.0.0.1 >> >> >> > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address >> >> >> > fe80::1 >> >> >> > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer >> >> >> > address for unhandled interface type 7 >> >> >> > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer >> >> >> > address for unhandled interface type 9 >> >> >> > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet >> >> >> > address c4:2c:03:2c:5f:26 >> >> >> > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> >> >> > fe80::c62c:3ff:fe2c:5f26 >> >> >> > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address >> >> >> > 192.172.226.92 >> >> >> > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast >> >> >> > address 192.172.226.255 >> >> >> > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> >> >> > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 >> >> >> > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address >> >> >> > 2001:48d0:101:501:d13:94d:a184:7a7d >> >> >> > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer >> >> >> > address for unhandled interface type >> >> >> > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet >> >> >> > address d8:30:62:51:e4:aa >> >> >> > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet >> >> >> > address 0a:30:62:51:e4:aa >> >> >> > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" >> >> >> > section >> >> >> > 1419371967.350783 TRACE: [ContentStore] evictItem() >> >> >> > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue >> >> >> > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() >> >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 >> >> >> > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 >> >> >> > 1419371967.351353 TRACE: [ContentStore] evictItem() >> >> >> > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face >> >> >> > create/destroy events >> >> >> > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No >> >> >> > such file or directory) >> >> >> > >> >> >> > Script done on Tue Dec 23 13:59:51 2014 >> >> >> > >> >> >> > >> >> >> > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number >> >> >> > after >> >> >> > > "faceid=" >> >> >> > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the >> >> >> > > number found in step 2 >> >> >> > > 4. on hostB: run `ndnpingserver /A` >> >> >> > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds >> >> >> > > >> >> >> > > >> >> >> > >> >> > _______________________________________________ >> >> > Nfd-dev mailing list >> >> > Nfd-dev at lists.cs.ucla.edu >> >> > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev >> > >> > _______________________________________________ >> > Nfd-dev mailing list >> > Nfd-dev at lists.cs.ucla.edu >> > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev >> > > > _______________________________________________ > Nfd-dev mailing list > Nfd-dev at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > From josh at caida.org Tue Dec 23 16:22:10 2014 From: josh at caida.org (Josh Polterock) Date: Tue, 23 Dec 2014 16:22:10 -0800 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: References: <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> <20141223233934.GE14038@caida.org> <20141224000518.GF14038@caida.org> Message-ID: <20141224002210.GG14038@caida.org> Updated /opt/local/etc/ndn/nfd.conf to match build/nfd.conf.sample NFD output attached. Josh On Wed, Dec 24, 2014 at 01:14:11AM +0100, Davide Pesavento wrote: > The build-time configuration looks good. Please make sure that the > "ether" section exists in the nfd.conf you're using and that it's not > commented out. If unsure, use the default "build/nfd.conf.sample" > file. > > Attach NFD output for the new run with the corrected conf file. > > Thanks, > Davide > > On Wed, Dec 24, 2014 at 1:05 AM, Josh Polterock wrote: > > Wasn't sure which you wanted so included both ndn-cxx and NFD > > build/config.log files attached. > > > > Josh > > > > On Wed, Dec 24, 2014 at 12:53:48AM +0100, Davide Pesavento wrote: > >> EthernetFace does not seem to be enabled. Please attach the file > >> "build/config.log" > >> > >> Thanks, > >> Davide > >> > >> On Wed, Dec 24, 2014 at 12:39 AM, Josh Polterock wrote: > >> > Davide, > >> > > >> > Please find attached. > >> > > >> > Thanks, > >> > Josh > >> > > >> > On Wed, Dec 24, 2014 at 12:23:01AM +0100, Davide Pesavento wrote: > >> >> Josh, > >> >> > >> >> Thanks a lot for testing. > >> >> > >> >> Would you mind attaching (or pasting inline) the output of NFD startup > >> >> phase at a debug level of "ALL"? > >> >> > >> >> Thanks, > >> >> Davide > >> >> > >> >> On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: > >> >> > Junxiao, > >> >> > > >> >> > Ok. nfd starts and gives regular DEBUG output. > >> >> > > >> >> > When I execute the 'nfd-status -f | grep 'dev' command it returns > >> >> > nothing. > >> >> > > >> >> > Josh > >> >> > > >> >> > On Tue, Dec 23, 2014 at 03:05:14PM -0700, Junxiao Shi wrote: > >> >> >> Hi Josh > >> >> >> > >> >> >> We recently changed the configuration file format. > >> >> >> Please delete the "listen" line in face_system.unix section, or just > >> >> >> replace the configuration file with the sample. > >> >> >> > >> >> >> Thanks. > >> >> >> Yours, Junxiao > >> >> >> > >> >> >> On Tue, Dec 23, 2014 at 3:02 PM, Josh Polterock wrote: > >> >> >> > >> >> >> > Junxiao, > >> >> >> > > >> >> >> > On Thu, Dec 18, 2014 at 11:10:40AM -0700, Junxiao Shi wrote: > >> >> >> > > Hi Josh > >> >> >> > > > >> >> >> > > It seems that the branch is outdated. I have rebased it. Please try again > >> >> >> > > with the new procedure: > >> >> >> > > > >> >> >> > > > >> >> >> > > On hostA (OSX with Boost 1.57): > >> >> >> > > > >> >> >> > > - recompile and install ndn-cxx, latest version from GitHub > >> >> >> > > - recompile and install NFD > >> >> >> > > - after git clone, use the following command to checkout a branch > >> >> >> > > under review: > >> >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > >> >> >> > && > >> >> >> > > git checkout FETCH_HEAD > >> >> >> > > - then compile and install as usual > >> >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub > >> >> >> > > >> >> >> > This all seemed to go smoothly. I still need to commandeer a second > >> >> >> > system (we have another iMac I can use but it does not have XCode on it > >> >> >> > yet, so I'm installing). so, I jumped down to instructions on starting > >> >> >> > and testing nfd on HostA. > >> >> >> > > >> >> >> > > > >> >> >> > > On hostB (either another OSX with Boost 1.57, or any Ubuntu version): > >> >> >> > > > >> >> >> > > - recompile and install ndn-cxx, latest version from GitHub > >> >> >> > > - recompile and install NFD > >> >> >> > > - after git clone, use the following command to checkout a branch > >> >> >> > > under review: > >> >> >> > > git fetch http://gerrit.named-data.net/NFD refs/changes/44/1444/6 > >> >> >> > && > >> >> >> > > git checkout FETCH_HEAD > >> >> >> > > - then compile and install as usual > >> >> >> > > - recompile and install ndn-tlv-ping, latest version from GitHub > >> >> >> > > > >> >> >> > > > >> >> >> > > 1. on both hosts: execute `nfd-start` > >> >> >> > > >> >> >> > Upon trying to start nfd, I receive the following error: > >> >> >> > > >> >> >> > Script started on Tue Dec 23 13:59:11 2014 > >> >> >> > $ nfd-start > >> >> >> > Password: > >> >> >> > 1419371964.968853 TRACE: [NameTree] lookup / > >> >> >> > 1419371964.968910 TRACE: [NameTree] insert / > >> >> >> > 1419371964.968954 TRACE: [NameTree] Name / hash value = 0 location = 0 > >> >> >> > 1419371964.969026 TRACE: [NameTree] Did not find /, need to insert it to > >> >> >> > the table > >> >> >> > 1419371964.969103 INFO: [StrategyChoice] setDefaultStrategy > >> >> >> > /localhost/nfd/strategy/best-route/%FD%02 > >> >> >> > 1419371964.969523 INFO: [InternalFace] registering callback for > >> >> >> > /localhost/nfd/fib > >> >> >> > 1419371964.969624 INFO: [InternalFace] registering callback for > >> >> >> > /localhost/nfd/faces > >> >> >> > 1419371964.969753 INFO: [InternalFace] registering callback for > >> >> >> > /localhost/nfd/strategy-choice > >> >> >> > 1419371964.969898 INFO: [InternalFace] registering callback for > >> >> >> > /localhost/nfd/status > >> >> >> > 1419371964.970031 INFO: [FaceTable] Added face id=1 remote=internal:// > >> >> >> > local=internal:// > >> >> >> > 1419371966.938915 INFO: [RibManager] Listening on: /localhost/nfd/rib > >> >> >> > 1419371967.346360 DEBUG: [Forwarder] onIncomingData face=1 > >> >> >> > data=/localhost/nfd/faces/events/%FE%00 > >> >> >> > 1419371967.346542 TRACE: [NameTree] > >> >> >> > NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 > >> >> >> > 1419371967.346677 TRACE: [NameTree] findLongestPrefixMatch > >> >> >> > /localhost/nfd/faces/events/%FE%00 > >> >> >> > 1419371967.346832 TRACE: [ContentStore] insert() > >> >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > >> >> >> > 1419371967.347198 TRACE: [ContentStore] insertToSkipList() > >> >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, > >> >> >> > skipList size 0 > >> >> >> > 1419371967.347508 TRACE: [ContentStore] Not a duplicate > >> >> >> > 1419371967.347598 TRACE: [ContentStore] pushback 0x7fbb2bf00570 > >> >> >> > 1419371967.347701 DEBUG: [Forwarder] onDataUnsolicited face=1 > >> >> >> > data=/localhost/nfd/faces/events/%FE%00 cached > >> >> >> > 1419371967.348166 TRACE: [GeneralConfigSection] using user "" group "" > >> >> >> > 1419371967.348273 TRACE: [PrivilegeHelper] initializing privilege helper > >> >> >> > with user "" group "" > >> >> >> > 1419371967.348511 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 > >> >> >> > 1419371967.348628 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address > >> >> >> > 127.0.0.1 > >> >> >> > 1419371967.348746 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address > >> >> >> > fe80::1 > >> >> >> > 1419371967.348859 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer > >> >> >> > address for unhandled interface type 7 > >> >> >> > 1419371967.349019 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer > >> >> >> > address for unhandled interface type 9 > >> >> >> > 1419371967.349177 TRACE: [NetworkInterfaceInfo] en0: added Ethernet > >> >> >> > address c4:2c:03:2c:5f:26 > >> >> >> > 1419371967.349313 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> >> >> > fe80::c62c:3ff:fe2c:5f26 > >> >> >> > 1419371967.349452 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address > >> >> >> > 192.172.226.92 > >> >> >> > 1419371967.349575 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast > >> >> >> > address 192.172.226.255 > >> >> >> > 1419371967.349713 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> >> >> > 2001:48d0:101:501:c62c:3ff:fe2c:5f26 > >> >> >> > 1419371967.349867 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address > >> >> >> > 2001:48d0:101:501:d13:94d:a184:7a7d > >> >> >> > 1419371967.350019 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer > >> >> >> > address for unhandled interface type > >> >> >> > 1419371967.350177 TRACE: [NetworkInterfaceInfo] en1: added Ethernet > >> >> >> > address d8:30:62:51:e4:aa > >> >> >> > 1419371967.350312 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet > >> >> >> > address 0a:30:62:51:e4:aa > >> >> >> > 1419371967.350546 FATAL: [NFD] Unrecognized option "listen" in "unix" > >> >> >> > section > >> >> >> > 1419371967.350783 TRACE: [ContentStore] evictItem() > >> >> >> > 1419371967.350860 TRACE: [ContentStore] Evict from unsolicited queue > >> >> >> > 1419371967.350958 TRACE: [ContentStore] eraseFromSkipList() > >> >> >> > /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 > >> >> >> > 1419371967.351261 TRACE: [ContentStore] SkipList size 1 > >> >> >> > 1419371967.351353 TRACE: [ContentStore] evictItem() > >> >> >> > tao:~ $ 1419371969.501131 INFO: [RibManager] Start monitoring face > >> >> >> > create/destroy events > >> >> >> > 1419371970.116432 FATAL: [NRD] error while connecting to the forwarder (No > >> >> >> > such file or directory) > >> >> >> > > >> >> >> > Script done on Tue Dec 23 13:59:51 2014 > >> >> >> > > >> >> >> > > >> >> >> > > 2. on hostA: execute `nfd-status -f | grep 'dev'`, find the number > >> >> >> > after > >> >> >> > > "faceid=" > >> >> >> > > 3. on hostA: execute `nfdc register /A 8888`, substitute 8888 with the > >> >> >> > > number found in step 2 > >> >> >> > > 4. on hostB: run `ndnpingserver /A` > >> >> >> > > 5. on hostA: run `ndnping /A`, and press CTRL+C after about 20 seconds > >> >> >> > > > >> >> >> > > > >> >> >> > > >> >> > _______________________________________________ > >> >> > Nfd-dev mailing list > >> >> > Nfd-dev at lists.cs.ucla.edu > >> >> > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > >> > > >> > _______________________________________________ > >> > Nfd-dev mailing list > >> > Nfd-dev at lists.cs.ucla.edu > >> > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > >> > > > > > _______________________________________________ > > Nfd-dev mailing list > > Nfd-dev at lists.cs.ucla.edu > > http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > -------------- next part -------------- Script started on Tue Dec 23 16:20:20 2014 $ nfd-start 1419380424.698441 TRACE: [NameTree] lookup / 1419380424.698503 TRACE: [NameTree] insert / 1419380424.698546 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380424.698613 TRACE: [NameTree] Did not find /, need to insert it to the table 1419380424.698689 INFO: [StrategyChoice] setDefaultStrategy /localhost/nfd/strategy/best-route/%FD%02 1419380424.699045 INFO: [InternalFace] registering callback for /localhost/nfd/fib 1419380424.699150 INFO: [InternalFace] registering callback for /localhost/nfd/faces 1419380424.699273 INFO: [InternalFace] registering callback for /localhost/nfd/strategy-choice 1419380424.699406 INFO: [InternalFace] registering callback for /localhost/nfd/status 1419380424.699530 INFO: [FaceTable] Added face id=1 remote=internal:// local=internal:// 1419380424.732190 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%00 1419380424.732373 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%00 1419380424.732508 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%00 1419380424.732649 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419380424.733044 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740, skipList size 0 1419380424.733366 TRACE: [ContentStore] Not a duplicate 1419380424.733480 TRACE: [ContentStore] pushback 0x7ff18bf006a0 1419380424.733604 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%00 cached 1419380424.734235 TRACE: [GeneralConfigSection] using user "" group "" 1419380424.734341 TRACE: [PrivilegeHelper] initializing privilege helper with user "" group "" 1419380424.734693 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419380424.734811 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419380424.734929 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419380424.735042 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419380424.735205 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419380424.735367 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419380424.735505 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419380424.735643 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419380424.735770 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419380424.735908 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419380424.736064 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419380424.736216 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419380424.736374 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419380424.736510 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419380424.736671 TRACE: [FaceManager] TCP port set to 6363 1419380424.736777 TRACE: [FaceManager] UDP port set to 6363 1419380424.736878 TRACE: [FaceManager] UDP multicast port set to 56363 1419380424.737010 TRACE: [FaceManager] WebSocket port set to 9696 1419380424.737117 WARNING: [CommandValidator] Wildcard identity is intended for demo purpose only and SHOULD NOT be used in production environment 1419380424.737327 INFO: [CommandValidator] Giving privilege "faces" to identity wildcard 1419380424.737453 INFO: [CommandValidator] Giving privilege "fib" to identity wildcard 1419380424.737570 INFO: [CommandValidator] Giving privilege "strategy-choice" to identity wildcard 1419380424.738183 TRACE: [GeneralConfigSection] using user "" group "" 1419380424.738288 TRACE: [PrivilegeHelper] initializing privilege helper with user "" group "" 1419380424.738497 TRACE: [NameTree] lookup / 1419380424.738564 TRACE: [NameTree] insert / 1419380424.738623 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380424.738731 TRACE: [StrategyChoice] insert(/) not changing /localhost/nfd/strategy/best-route/%FD%02 1419380424.738930 TRACE: [NameTree] lookup /ndn/broadcast 1419380424.739035 TRACE: [NameTree] insert / 1419380424.739131 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380424.739290 TRACE: [NameTree] insert /ndn 1419380424.739392 TRACE: [NameTree] Name /ndn hash value = 6181921638449679482 location = 122 1419380424.739587 TRACE: [NameTree] Did not find /ndn, need to insert it to the table 1419380424.739755 TRACE: [NameTree] insert /ndn/broadcast 1419380424.739899 TRACE: [NameTree] Name /ndn/broadcast hash value = 10179271752148773262 location = 398 1419380424.740109 TRACE: [NameTree] Did not find /ndn/broadcast, need to insert it to the table 1419380424.740274 TRACE: [NameTree] findLongestPrefixMatch /ndn/broadcast 1419380424.740388 TRACE: [StrategyChoice] insert(/ndn/broadcast) new entry /localhost/nfd/strategy/broadcast/%FD%01 1419380424.740555 INFO: [StrategyChoice] changeStrategy(/ndn/broadcast) from /localhost/nfd/strategy/best-route/%FD%02 to /localhost/nfd/strategy/broadcast/%FD%01 1419380424.740708 TRACE: [NameTree] findExactMatch /ndn/broadcast 1419380424.740802 TRACE: [NameTree] Name /ndn/broadcast hash value = 10179271752148773262 location = 398 1419380424.740914 TRACE: [StrategyChoice] clearStrategyInfo /ndn/broadcast 1419380424.741018 TRACE: [NameTree] const_iterator::operator++() 1419380424.741100 TRACE: [NameTree] lookup /localhost 1419380424.741175 TRACE: [NameTree] insert / 1419380424.741237 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380424.741308 TRACE: [NameTree] insert /localhost 1419380424.741357 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380424.741448 TRACE: [NameTree] Did not find /localhost, need to insert it to the table 1419380424.741535 TRACE: [NameTree] findLongestPrefixMatch /localhost 1419380424.741641 TRACE: [StrategyChoice] insert(/localhost) new entry /localhost/nfd/strategy/broadcast/%FD%01 1419380424.741810 INFO: [StrategyChoice] changeStrategy(/localhost) from /localhost/nfd/strategy/best-route/%FD%02 to /localhost/nfd/strategy/broadcast/%FD%01 1419380424.742047 TRACE: [NameTree] findExactMatch /localhost 1419380424.742135 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380424.742285 TRACE: [StrategyChoice] clearStrategyInfo /localhost 1419380424.742387 TRACE: [NameTree] const_iterator::operator++() 1419380424.742482 TRACE: [NameTree] lookup /localhost/nfd 1419380424.742558 TRACE: [NameTree] insert / 1419380424.742624 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380424.742732 TRACE: [NameTree] insert /localhost 1419380424.742814 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380424.742965 TRACE: [NameTree] insert /localhost/nfd 1419380424.743052 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380424.743207 TRACE: [NameTree] Did not find /localhost/nfd, need to insert it to the table 1419380424.743346 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd 1419380424.743459 TRACE: [StrategyChoice] insert(/localhost/nfd) new entry /localhost/nfd/strategy/best-route/%FD%02 1419380424.743631 INFO: [StrategyChoice] changeStrategy(/localhost/nfd) from /localhost/nfd/strategy/broadcast/%FD%01 to /localhost/nfd/strategy/best-route/%FD%02 1419380424.743812 TRACE: [NameTree] findExactMatch /localhost/nfd 1419380424.743892 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380424.744024 TRACE: [StrategyChoice] clearStrategyInfo /localhost/nfd 1419380424.744113 TRACE: [NameTree] const_iterator::operator++() 1419380424.744180 INFO: [TablesConfigSection] Setting CS max packets to 65536 1419380424.750561 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419380424.750696 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419380424.750842 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419380424.751040 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419380424.751318 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419380424.751513 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419380424.751649 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419380424.751781 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419380424.751906 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419380424.752045 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419380424.752200 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419380424.752365 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419380424.752534 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419380424.752692 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419380424.753190 TRACE: [FaceManager] TCP port set to 6363 1419380424.753359 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419380424.753468 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419380424.753570 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419380424.753682 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419380424.753804 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419380424.753903 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419380424.753989 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419380424.754076 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419380424.754152 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419380424.754243 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419380424.754344 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419380424.754438 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419380424.754537 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419380424.754620 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419380424.754714 TRACE: [TcpFactory] prohibiting TCP 192.172.226.92:6363 1419380424.754831 TRACE: [TcpFactory] prohibiting TCP 127.0.0.1:6363 1419380424.754940 TRACE: [TcpFactory] prohibiting TCP 0.0.0.0:6363 1419380424.755045 DEBUG: [TcpFactory] Channel [0.0.0.0:6363] created 1419380424.755247 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419380424.755321 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419380424.755393 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419380424.755462 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419380424.755560 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419380424.755657 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419380424.755740 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419380424.755826 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419380424.755902 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419380424.755988 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419380424.756082 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419380424.756177 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419380424.756308 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419380424.756444 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419380424.756585 TRACE: [TcpFactory] prohibiting TCP [fe80::c62c:3ff:fe2c:5f26]:6363 1419380424.756700 TRACE: [TcpFactory] prohibiting TCP [2001:48d0:101:501:c62c:3ff:fe2c:5f26]:6363 1419380424.756854 TRACE: [TcpFactory] prohibiting TCP [2001:48d0:101:501:d13:94d:a184:7a7d]:6363 1419380424.756975 TRACE: [TcpFactory] prohibiting TCP [::1]:6363 1419380424.757035 TRACE: [TcpFactory] prohibiting TCP [fe80::1]:6363 1419380424.757100 TRACE: [TcpFactory] prohibiting TCP [::]:6363 1419380424.757158 DEBUG: [TcpFactory] Channel [[::]:6363] created 1419380424.757244 TRACE: [FaceManager] UDP port set to 6363 1419380424.757332 TRACE: [FaceManager] UDP multicast port set to 56363 1419380424.757471 DEBUG: [UdpFactory] Creating unicast channel 0.0.0.0:6363 1419380424.757663 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419380424.757817 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419380424.757964 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419380424.758064 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419380424.758167 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419380424.758265 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419380424.758351 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419380424.758438 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419380424.758514 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419380424.758610 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419380424.758707 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419380424.758802 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419380424.758900 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419380424.758982 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419380424.759070 TRACE: [UdpFactory] prohibiting UDP 192.172.226.92:6363 1419380424.759142 TRACE: [UdpFactory] prohibiting broadcast address: 192.172.226.255 1419380424.759218 TRACE: [UdpFactory] prohibiting UDP 192.172.226.255:6363 1419380424.759287 TRACE: [UdpFactory] prohibiting UDP 127.0.0.1:6363 1419380424.759352 TRACE: [UdpFactory] prohibiting UDP 255.255.255.255:6363 1419380424.759423 TRACE: [UdpFactory] prohibiting UDP 0.0.0.0:6363 1419380424.759506 DEBUG: [UdpFactory] Creating unicast channel [::]:6363 1419380424.759673 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address ::1 1419380424.759785 TRACE: [NetworkInterfaceInfo] lo0: added IPv4 address 127.0.0.1 1419380424.759857 TRACE: [NetworkInterfaceInfo] lo0: added IPv6 address fe80::1 1419380424.759929 DEBUG: [NetworkInterfaceInfo] gif0: ignoring link-layer address for unhandled interface type 7 1419380424.760028 DEBUG: [NetworkInterfaceInfo] stf0: ignoring link-layer address for unhandled interface type 9 1419380424.760129 TRACE: [NetworkInterfaceInfo] en0: added Ethernet address c4:2c:03:2c:5f:26 1419380424.760214 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address fe80::c62c:3ff:fe2c:5f26 1419380424.760300 TRACE: [NetworkInterfaceInfo] en0: added IPv4 address 192.172.226.92 1419380424.760377 TRACE: [NetworkInterfaceInfo] en0: added IPv4 broadcast address 192.172.226.255 1419380424.760463 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:c62c:3ff:fe2c:5f26 1419380424.760559 TRACE: [NetworkInterfaceInfo] en0: added IPv6 address 2001:48d0:101:501:d13:94d:a184:7a7d 1419380424.760655 DEBUG: [NetworkInterfaceInfo] fw0: ignoring link-layer address for unhandled interface type ? 1419380424.760758 TRACE: [NetworkInterfaceInfo] en1: added Ethernet address d8:30:62:51:e4:aa 1419380424.760892 TRACE: [NetworkInterfaceInfo] p2p0: added Ethernet address 0a:30:62:51:e4:aa 1419380424.761036 TRACE: [UdpFactory] prohibiting UDP [fe80::c62c:3ff:fe2c:5f26]:6363 1419380424.761170 TRACE: [UdpFactory] prohibiting UDP [2001:48d0:101:501:c62c:3ff:fe2c:5f26]:6363 1419380424.761267 TRACE: [UdpFactory] prohibiting UDP [2001:48d0:101:501:d13:94d:a184:7a7d]:6363 1419380424.761361 TRACE: [UdpFactory] prohibiting UDP [::1]:6363 1419380424.761422 TRACE: [UdpFactory] prohibiting UDP [fe80::1]:6363 1419380424.761488 TRACE: [UdpFactory] prohibiting UDP [::]:6363 1419380424.761690 INFO: [MulticastUdpFace] Creating multicast UDP face for group 224.0.23.170:56363 1419380424.761790 INFO: [FaceTable] Added face id=256 remote=udp4://224.0.23.170:56363 local=udp4://192.172.226.92:56363 1419380424.784341 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%01 1419380424.784516 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%01 1419380424.784655 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%01 1419380424.784806 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 1419380424.785144 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4, skipList size 1 1419380424.785457 TRACE: [ContentStore] Not a duplicate 1419380424.785534 TRACE: [ContentStore] insertafter 1419380424.785603 TRACE: [ContentStore] pushback 0x7ff18bf015c0 1419380424.785664 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%01 cached 1419380424.785917 INFO: [MulticastUdpFace] Creating multicast UDP face for group 224.0.23.170:56363 1419380424.786081 INFO: [FaceTable] Added face id=257 remote=udp4://224.0.23.170:56363 local=udp4://127.0.0.1:56363 1419380424.807831 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%02 1419380424.807999 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%02 1419380424.808141 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%02 1419380424.808290 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%02/sha256digest=9c59465a787e82f6e9acea2093d9a1062ff1d6d6ef41c65124a1af9c3c82befb 1419380424.808607 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%02/sha256digest=9c59465a787e82f6e9acea2093d9a1062ff1d6d6ef41c65124a1af9c3c82befb, skipList size 2 1419380424.808855 TRACE: [ContentStore] Not a duplicate 1419380424.808938 TRACE: [ContentStore] insertafter 1419380424.809017 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%02 cached 1419380424.809211 INFO: [EthernetFace] Creating ethernet face on en1: d8:30:62:51:e4:aa <--> 01:00:5e:00:17:aa 1419380424.809736 WARNING: [EthernetFace] [id:-1,endpoint:en1] Failed to get interface MTU: Invalid argument 1419380424.809902 DEBUG: [EthernetFace] [id:-1,endpoint:en1] Interface MTU is: 1500 1419380424.810131 WARNING: [EthernetFace] [id:-1,endpoint:en1] ioctl(SIOCADDMULTI) failed: Invalid argument 1419380424.810289 DEBUG: [EthernetFace] [id:-1,endpoint:en1] Falling back to promiscuous mode 1419380424.810444 INFO: [FaceTable] Added face id=258 remote=ether://[01:00:5e:00:17:aa] local=dev://en1 1419380424.831051 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%03 1419380424.831225 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%03 1419380424.831367 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%03 1419380424.831517 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%03/sha256digest=52432edc0307d2a2dec7f91ba54be3a1c4bcf7af8f72f9b2d633951cb1df0734 1419380424.831821 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%03/sha256digest=52432edc0307d2a2dec7f91ba54be3a1c4bcf7af8f72f9b2d633951cb1df0734, skipList size 3 1419380424.832159 TRACE: [ContentStore] Not a duplicate 1419380424.832240 TRACE: [ContentStore] insertafter 1419380424.832295 TRACE: [ContentStore] insertafter 1419380424.832343 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%03 cached 1419380424.832456 INFO: [EthernetFace] Creating ethernet face on fw0: 00:00:00:00:00:00 <--> 01:00:5e:00:17:aa 1419380424.833118 ERROR: [FaceManager] pcap_set_datalink(): EN10MB is not one of the DLTs supported by this device, continuing 1419380424.833310 INFO: [EthernetFace] Creating ethernet face on en0: c4:2c:03:2c:5f:26 <--> 01:00:5e:00:17:aa 1419380424.833639 WARNING: [EthernetFace] [id:-1,endpoint:en0] Failed to get interface MTU: Invalid argument 1419380424.833797 DEBUG: [EthernetFace] [id:-1,endpoint:en0] Interface MTU is: 1500 1419380424.833984 WARNING: [EthernetFace] [id:-1,endpoint:en0] ioctl(SIOCADDMULTI) failed: Invalid argument 1419380424.834133 DEBUG: [EthernetFace] [id:-1,endpoint:en0] Falling back to promiscuous mode 1419380424.834271 INFO: [FaceTable] Added face id=259 remote=ether://[01:00:5e:00:17:aa] local=dev://en0 1419380424.854676 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%04 1419380424.854842 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%04 1419380424.854985 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%04 1419380424.855134 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%04/sha256digest=bc2e87b95cb7a98f6b202225f04ba749ca6601b15bed1778dcf91a152bd8b23d 1419380424.855478 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%04/sha256digest=bc2e87b95cb7a98f6b202225f04ba749ca6601b15bed1778dcf91a152bd8b23d, skipList size 4 1419380424.855774 TRACE: [ContentStore] Not a duplicate 1419380424.855857 TRACE: [ContentStore] insertafter 1419380424.855933 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%04 cached 1419380424.856110 INFO: [EthernetFace] Creating ethernet face on lo0: 00:00:00:00:00:00 <--> 01:00:5e:00:17:aa 1419380424.856699 ERROR: [FaceManager] pcap_set_datalink(): EN10MB is not one of the DLTs supported by this device, continuing 1419380424.856889 TRACE: [FaceManager] WebSocket port set to 9696 1419380424.857155 WARNING: [CommandValidator] Wildcard identity is intended for demo purpose only and SHOULD NOT be used in production environment 1419380424.857366 INFO: [CommandValidator] Giving privilege "faces" to identity wildcard 1419380424.857545 INFO: [CommandValidator] Giving privilege "fib" to identity wildcard 1419380424.857694 INFO: [CommandValidator] Giving privilege "strategy-choice" to identity wildcard 1419380424.857901 TRACE: [NameTree] lookup /localhost/nfd 1419380424.857989 TRACE: [NameTree] insert / 1419380424.858057 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380424.858154 TRACE: [NameTree] insert /localhost 1419380424.858234 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380424.858387 TRACE: [NameTree] insert /localhost/nfd 1419380424.858475 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380424.858686 INFO: [FaceTable] Added face id=255 remote=null:// local=null:// 1419380424.879393 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%05 1419380424.879578 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%05 1419380424.879708 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%05 1419380424.879814 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%05/sha256digest=2b3f6623fba717f65b687bf6728529663a53882b53f1d71a0952694781e66015 1419380424.880122 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%05/sha256digest=2b3f6623fba717f65b687bf6728529663a53882b53f1d71a0952694781e66015, skipList size 5 1419380424.880349 TRACE: [ContentStore] Not a duplicate 1419380424.880426 TRACE: [ContentStore] insertafter 1419380424.880496 TRACE: [ContentStore] insertafter 1419380424.880573 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%05 cached 1419380424.880759 INFO: [FaceTable] Added face id=254 remote=contentstore:// local=contentstore:// 1419380424.901088 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%06 1419380424.901235 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%06 1419380424.901379 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%06 1419380424.901521 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%06/sha256digest=bbf602ed8b49d95f309cc81bde1cc91f18fa38e37cca34ef932d6d595698d0fc 1419380424.901789 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%06/sha256digest=bbf602ed8b49d95f309cc81bde1cc91f18fa38e37cca34ef932d6d595698d0fc, skipList size 6 1419380424.902096 TRACE: [ContentStore] Not a duplicate 1419380424.902174 TRACE: [ContentStore] insertafter 1419380424.902251 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%06 cached 1419380424.902424 TRACE: [PrivilegeHelper] dropping to effective gid=0 1419380424.902542 TRACE: [PrivilegeHelper] dropping to effective uid=0 1419380424.902644 INFO: [PrivilegeHelper] dropped to effective uid=0 gid=0 1419380425.899839 DEBUG: [DeadNonceList] mark nMarks=6 1419380426.691455 INFO: [RemoteRegistrator] Load remote_register section in rib section 1419380426.691918 INFO: [RemoteRegistrator] Load remote_register section in rib section 1419380426.692121 INFO: [RibManager] Listening on: /localhost/nfd/rib 1419380426.726505 INFO: [RibManager] Start monitoring face create/destroy events 1419380426.750006 DEBUG: [UnixStreamChannel] [/private/var/run/nfd.sock] << Incoming connection 1419380426.750172 INFO: [FaceTable] Added face id=260 remote=fd://24 local=unix:///private/var/run/nfd.sock 1419380426.772566 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%07 1419380426.772745 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%07 1419380426.772886 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%07 1419380426.773040 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec 1419380426.773351 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec, skipList size 7 1419380426.773638 TRACE: [ContentStore] Not a duplicate 1419380426.773719 TRACE: [ContentStore] insertafter 1419380426.773796 TRACE: [ContentStore] insertafter 1419380426.773871 DEBUG: [Forwarder] onDataUnsolicited face=1 data=/localhost/nfd/faces/events/%FE%07 cached 1419380426.774034 TRACE: [UnixStreamFace] [id:260,uri:fd://24] Received: 906 bytes 1419380426.774183 DEBUG: [Forwarder] onIncomingInterest face=260 interest=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.776658 TRACE: [NameTree] lookup /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.778052 TRACE: [NameTree] insert / 1419380426.778117 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380426.778228 TRACE: [NameTree] insert /localhost 1419380426.778314 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380426.778470 TRACE: [NameTree] insert /localhost/nfd 1419380426.778564 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380426.778720 TRACE: [NameTree] insert /localhost/nfd/fib 1419380426.778812 TRACE: [NameTree] Name /localhost/nfd/fib hash value = 6388137453996632561 location = 497 1419380426.778970 TRACE: [NameTree] Did not find /localhost/nfd/fib, need to insert it to the table 1419380426.779117 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop 1419380426.779230 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop hash value = 8897078982587721769 location = 41 1419380426.779405 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop, need to insert it to the table 1419380426.779569 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00 1419380426.779772 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00 hash value = 15891323968834093432 location = 376 1419380426.780037 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00, need to insert it to the table 1419380426.780281 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4 1419380426.780521 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4 hash value = 6802407345157214930 location = 722 1419380426.780822 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4, need to insert it to the table 1419380426.781022 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1. 1419380426.781239 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1. hash value = 12555279576180930413 location = 877 1419380426.781492 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1., need to insert it to the table 1419380426.781691 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419380426.781972 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT hash value = 13293927291012225970 location = 946 1419380426.782281 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT, need to insert it to the table 1419380426.782647 TRACE: [NameTree] insert /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.784181 TRACE: [NameTree] Name /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 hash value = 10991293458816918944 location = 416 1419380426.785786 TRACE: [NameTree] Did not find /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22, need to insert it to the table 1419380426.787406 TRACE: [ContentStore] find() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.788947 DEBUG: [Forwarder] onOutgoingInterest face=1 interest=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.790522 DEBUG: [BestRouteStrategy2] /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22?ndn.InterestLifetime=10000&ndn.Nonce=2807372958 from=260 newPitEntry-to=1 1419380426.792175 DEBUG: [Forwarder] onIncomingInterest face=260 interest=/localhost/nfd/faces/events 1419380426.792312 TRACE: [NameTree] lookup /localhost/nfd/faces/events 1419380426.792416 TRACE: [NameTree] insert / 1419380426.792482 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380426.792575 TRACE: [NameTree] insert /localhost 1419380426.792646 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380426.792789 TRACE: [NameTree] insert /localhost/nfd 1419380426.792887 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380426.793040 TRACE: [NameTree] insert /localhost/nfd/faces 1419380426.793133 TRACE: [NameTree] Name /localhost/nfd/faces hash value = 4081254122302803360 location = 416 1419380426.793296 TRACE: [NameTree] Did not find /localhost/nfd/faces, need to insert it to the table 1419380426.793447 TRACE: [NameTree] insert /localhost/nfd/faces/events 1419380426.793553 TRACE: [NameTree] Name /localhost/nfd/faces/events hash value = 1233637898983554347 location = 299 1419380426.793664 TRACE: [NameTree] Did not find /localhost/nfd/faces/events, need to insert it to the table 1419380426.793763 TRACE: [ContentStore] find() /localhost/nfd/faces/events 1419380426.793830 TRACE: [ContentStore] selectChild() 1 /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419380426.794057 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794156 TRACE: [ContentStore] violates mustBeFresh 1419380426.794242 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794314 TRACE: [ContentStore] violates mustBeFresh 1419380426.794369 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794427 TRACE: [ContentStore] violates mustBeFresh 1419380426.794480 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794538 TRACE: [ContentStore] violates mustBeFresh 1419380426.794592 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794650 TRACE: [ContentStore] violates mustBeFresh 1419380426.794703 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794760 TRACE: [ContentStore] violates mustBeFresh 1419380426.794822 TRACE: [ContentStore] doesComplyWithSelectors() 1419380426.794879 TRACE: [ContentStore] complies 1419380426.794940 TRACE: [ContentStore] Child prefix/localhost/nfd/faces/events/%FE%07 1419380426.795074 DEBUG: [Forwarder] onOutgoingData face=260 data=/localhost/nfd/faces/events/%FE%07 1419380426.795262 DEBUG: [Forwarder] onIncomingInterest1 f4a1c9e3=80422660. 7i9n5t3e3r1e sTtR=A/ClEo:c a[lRhiobsMta/nnafgde/rf]a coensN/oetniafbilcea-tlioocna:l -FcaocnetErvoeln/thN%o0tif3inc%a0ti1o%n0(1K/i%n0d:0 %c0re0a%t0ed1,J yF%acAeAI%D8:7 %E6/%A2A6%0D,B %Re3mAo%teEU6r%i0: 9f%d:F/A/%24A,2 %LCo8c/a%lU1r6i%: 3uFn%ix1:B/%/0/p1r%i0va1t%e1/Cv%ar3/Ar%u0n/7n8f%d0.s8o%c0k,3 nFdanc%e0Sc8o%p0e:3 olrogc%a0l8,% 0Fa5cceaPiedras%i0st8e%n0c3yK:E Yo%n0-d8e%m0an4dj,o sLhi%n0kT8y%pe1:1 kpsoki-n1t4-1t5o1-3p2o9i7n6t0)6 9%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.796884 TRACE: [NameTree] lookup /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.798423 TRACE: [NameTree] insert / 1419380426.798488 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380426.798595 TRACE: [NameTree] insert /localhost 1419380426.798676 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380426.798826 TRACE: [NameTree] insert /localhost/nfd 1419380426.798912 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380426.799066 TRACE: [NameTree] insert /localhost/nfd/faces 1419380426.799160 TRACE: [NameTree] Name /localhost/nfd/faces hash value = 4081254122302803360 location = 416 1419380426.799315 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control 1419380426.799438 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control hash value = 14131624370102305303 location = 535 1419380426.799635 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control, need to insert it to the table 1419380426.799815 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01 1419380426.799966 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01 hash value = 16851061843614654314 location = 874 1419380426.800182 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01, need to insert it to the table 1419380426.800384 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6 1419380426.800571 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6 hash value = 9474365532088266012 location = 284 1419380426.800791 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6, need to insert it to the table 1419380426.801029 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8 1419380426.801242 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8 hash value = 14699888297125670485 location = 597 1419380426.801528 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8, need to insert it to the table 1419380426.801811 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419380426.802226 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT hash value = 15726757550181597834 location = 650 1419380426.802706 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT, need to insert it to the table 1419380426.803131 TRACE: [NameTree] insert /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.804019 TRACE: [NameTree] Name /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F hash value = 7719291071135575691 location = 651 1419380426.804944 TRACE: [NameTree] Did not find /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F, need to insert it to the table 1419380426.805867 TRACE: [ContentStore] find() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.806846 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.808490 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%03/sha256digest=52432edc0307d2a2dec7f91ba54be3a1c4bcf7af8f72f9b2d633951cb1df0734 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.810250 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%05/sha256digest=2b3f6623fba717f65b687bf6728529663a53882b53f1d71a0952694781e66015 < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.811979 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.813711 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec < /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.815324 TRACE: [ContentStore] selectChild() -1 /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec 1419380426.815626 DEBUG: [Forwarder] onOutgoingInterest face=1 interest=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.816605 DEBUG: [BestRouteStrategy2] /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F?ndn.InterestLifetime=10000&ndn.Nonce=2671688765 from=260 newPitEntry-to=1 1419380426.817584 DEBUG: [InternalFace] received Interest: /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.818625 DEBUG: [InternalFace] found Interest filter for /localhost/nfd/fib (previous match) 1419380426.818963 DEBUG: [ManagerBase] Parameters parsed OK 1419380426.819050 DEBUG: [FibManager] command result: processing verb: add-nexthop 1419380426.819157 TRACE: [FibManager] add-nexthop prefix: /localhost/nfd/rib faceid: 260 cost: 0 1419380426.819319 TRACE: [NameTree] lookup /localhost/nfd/rib 1419380426.819407 TRACE: [NameTree] insert / 1419380426.819473 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380426.819571 TRACE: [NameTree] insert /localhost 1419380426.819653 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380426.819804 TRACE: [NameTree] insert /localhost/nfd 1419380426.819886 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380426.820032 TRACE: [NameTree] insert /localhost/nfd/rib 1419380426.820128 TRACE: [NameTree] Name /localhost/nfd/rib hash value = 17570341667841711180 location = 76 1419380426.820290 TRACE: [NameTree] Did not find /localhost/nfd/rib, need to insert it to the table 1419380426.820437 DEBUG: [FibManager] add-nexthop result: OK prefix:/localhost/nfd/rib faceid: 260 cost: 0 1419380426.820583 DEBUG: [ManagerBase] responding name: /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 code: 200 text: Success 1419380426.843130 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.844206 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.845187 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.846115 TRACE: [NameTree] const_iterator::operator++() 1419380426.846200 TRACE: [ContentStore] insert() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22/sha256digest=f8370c18d677c31e50e9060fbe022edec7d53cd69763a6473ae43e343c6c5dd1 1419380426.847970 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22/sha256digest=f8370c18d677c31e50e9060fbe022edec7d53cd69763a6473ae43e343c6c5dd1, skipList size 8 1419380426.849773 TRACE: [ContentStore] Not a duplicate 1419380426.849859 TRACE: [ContentStore] pushfront 1419380426.849935 DEBUG: [Forwarder] onIncomingData matching=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.851551 DEBUG: [Strategy] beforeSatisfyInterest pitEntry=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 inFace=1 data=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.854748 DEBUG: [Forwarder] onOutgoingData face=260 data=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.856270 TRACE: [UnixStreamFace] [id:260,uri:fd://24] Successfully sent: 435 bytes 1419380426.856439 DEBUG: [InternalFace] received Interest: /localhost/nfd/faces/enable-local-co1n4t1r9o3l8/0h4%206.835n6%50721 %D0EB1U/G%:0 [0R%i0bM0a%n0ag1eJry]% AA%87%E6/%SAuAc%ceDsBs%fu3lAl%y Er6e%g0is9t%eFrAe%d A/2l%ocCa8l/h%o1s6t%/n3fFd%/r1iBb% 0wi1t%h0 N1F%D 1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.858029 DEBUG: [InternalFace] found Interest filter for /localhost/nfd/faces (previous match) 1419380426.858385 DEBUG: [ManagerBase] Parameters parsed OK 1419380426.858475 DEBUG: [FaceManager] command result: processing verb: enable-local-control 1419380426.858635 DEBUG: [ManagerBase] responding name: /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F code: 200 text: Success 1419380426.880771 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.882374 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.883932 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.885516 TRACE: [NameTree] const_iterator::operator++() 1419380426.885605 TRACE: [ContentStore] insert() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F/sha256digest=2bbdb24cf246c19ebbe24b7b345dde49af143985ffbe8305028206485fb5a452 1419380426.887333 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F/sha256digest=2bbdb24cf246c19ebbe24b7b345dde49af143985ffbe8305028206485fb5a452, skipList size 9 1419380426.888463 TRACE: [ContentStore] Not a duplicate 1419380426.888522 TRACE: [ContentStore] insertafter 1419380426.888569 TRACE: [ContentStore] insertafter 1419380426.888616 DEBUG: [Forwarder] onIncomingData matching=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.889518 DEBUG: [Strategy] beforeSatisfyInterest pitEntry=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F inFace=1 data=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.892470 DEBUG: [Forwarder] onOutgoingData face=260 data=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.894033 TRACE: [UnixStreamFace] [id:260,uri:fd://24] Received: 49 bytes 1419380426.894175 DEBUG: [Forwarder] onIncomingInterest face=260 interest=/localhost/nfd/faces/events/%FE%08 1419380426.894338 TRACE: [NameTree] lookup /localhost/nfd/faces/events/%FE%08 1419380426.894453 TRACE: [NameTree] insert / 1419380426.894519 TRACE: [NameTree] Name / hash value = 0 location = 0 1419380426.894631 TRACE: [NameTree] insert /localhost 1419380426.894713 TRACE: [NameTree] Name /localhost hash value = 10937169108514740553 location = 329 1419380426.894859 TRACE: [NameTree] insert /localhost/nfd 1419380426.894944 TRACE: [NameTree] Name /localhost/nfd hash value = 3626199823732152002 location = 706 1419380426.895093 TRACE: [NameTree] insert /localhost/nfd/faces 1419380426.895189 TRACE: [NameTree] Name /localhost/nfd/faces hash value = 4081254122302803360 location = 416 1419380426.895356 TRACE: [NameTree] insert /localhost/nfd/faces/events 1419380426.895467 TRACE: [NameTree] Name /localhost/nfd/faces/events hash value = 1233637898983554347 location = 299 1419380426.895646 TRACE: [NameTree] insert /localhost/nfd/faces/events/%FE%08 1419380426.895770 TRACE: [NameTree] Name /localhost/nfd/faces/events/%FE%08 hash value = 1433651596582080499 location = 1011 1419380426.895954 TRACE: [NameTree] Did not find /localhost/nfd/faces/events/%FE%08, need to insert it to the table 1419380426.896126 TRACE: [ContentStore] find() /localhost/nfd/faces/events/%FE%08 1419380426.896256 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 < /localhost/nfd/faces/events/%FE%08 1419380426.896580 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%03/sha256digest=52432edc0307d2a2dec7f91ba54be3a1c4bcf7af8f72f9b2d633951cb1df0734 < /localhost/nfd/faces/events/%FE%08 1419380426.896886 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%05/sha256digest=2b3f6623fba717f65b687bf6728529663a53882b53f1d71a0952694781e66015 < /localhost/nfd/faces/events/%FE%08 1419380426.897175 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec < /localhost/nfd/faces/events/%FE%08 1419380426.897414 TRACE: [ContentStore] /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec < /localhost/nfd/faces/events/%FE%08 1419380426.897749 TRACE: [ContentStore] selectChild() -1 /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec 1419380426.897991 DEBUG: [Forwarder] onOutgoingInterest face=1 interest=/localhost/nfd/faces/events/%FE%08 1419380426.898153 DEBUG: [BestRouteStrategy2] /localhost/nfd/faces/events/%FE%08?ndn.InterestLifetime=60000&ndn.Nonce=2716109730 from=260 newPitEntry-to=1 1419380426.898404 TRACE: [UnixStreamFace] [id:260,uri:fd://24] Successfully sent: 798 bytes 1419380426.898548 DEBUG: [InternalFace] received Interest: /localhost/nfd/faces/events/%FE%08 1419380426.898681 DEBUG: [InternalFace] found Interest filter for /localhost/nfd/faces (previous match) 1419380426.898772 DEBUG: [FaceManager] command result: processing verb: events 1419380426.898844 DEBUG: [Forwarder] onInterestFinalize interest=/localhost/nfd/faces/events satisfied 1419380426.898938 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/events 1419380426.899022 TRACE: [UnixStreamFace] [id:260,uri:fd://24] Successfully sent: 7 bytes 1419380426.899157 TRACE: [UnixStreamFace] [id:260,uri:fd://24] Successfully sent: 759 bytes 1419380426.899342 DEBUG: [RibManager] Local control header enabled 1419380426.955865 DEBUG: [Forwarder] onInterestFinalize interest=/localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 satisfied 1419380426.956893 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22 1419380426.957825 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419380426.958106 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1. 1419380426.958278 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4 1419380426.958427 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00 1419380426.958582 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib/add-nexthop 1419380426.958709 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/fib 1419380426.958816 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd 1419380426.996373 DEBUG: [Forwarder] onInterestFinalize interest=/localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F satisfied 1419380426.998003 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F 1419380426.999071 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT 1419380426.999326 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8 1419380426.999471 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6 1419380426.999590 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control/h%03n%01%01 1419380426.999688 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces/enable-local-control 1419380426.999773 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/faces 1419380427.103541 DEBUG: [DeadNonceList] mark nMarks=7 1419380428.304837 DEBUG: [DeadNonceList] mark nMarks=8 tao:~ $ 1419380429.506178 DEBUG: [DeadNonceList] mark nMarks=9 1419380430.700033 DEBUG: [DeadNonceList] adjustCapacity DOWN capacity=115 1419380430.707330 DEBUG: [DeadNonceList] mark nMarks=10 1419380431.908695 DEBUG: [DeadNonceList] mark nMarks=11 1419380433.109639 DEBUG: [DeadNonceList] mark nMarks=12 1419380434.310892 DEBUG: [DeadNonceList] mark nMarks=13 1419380435.512331 DEBUG: [DeadNonceList] mark nMarks=14 1419380436.701454 DEBUG: [DeadNonceList] adjustCapacity DOWN capacity=103 1419380436.713751 DEBUG: [DeadNonceList] mark nMarks=15 1419380437.915159 DEBUG: [DeadNonceList] mark nMarks=16 1419380439.116585 DEBUG: [DeadNonceList] mark nMarks=17 1419380439.605690 INFO: [NRD] Caught signal 'Terminated: 15', exiting... 1419380439.606159 INFO: [UnixStreamFace] [id:260,uri:fd://24] Connection closed 1419380439.630805 DEBUG: [Forwarder] onIncomingData face=1 data=/localhost/nfd/faces/events/%FE%08 1419380439.630970 TRACE: [NameTree] NameTree::findAllMatches/localhost/nfd/faces/events/%FE%08 1419380439.631105 TRACE: [NameTree] findLongestPrefixMatch /localhost/nfd/faces/events/%FE%08 1419380439.631233 TRACE: [NameTree] const_iterator::operator++() 1419380439.631320 TRACE: [ContentStore] insert() /localhost/nfd/faces/events/%FE%08/sha256digest=c66a7fdfb03163c77b9f7e636f8b0e70e7a6d09c0710cd45fb8bbd2e13e0d3c8 1419380439.631631 TRACE: [ContentStore] insertToSkipList() /localhost/nfd/faces/events/%FE%08/sha256digest=c66a7fdfb03163c77b9f7e636f8b0e70e7a6d09c0710cd45fb8bbd2e13e0d3c8, skipList size 10 1419380439.631924 TRACE: [ContentStore] Not a duplicate 1419380439.632005 TRACE: [ContentStore] insertafter 1419380439.632085 DEBUG: [Forwarder] onIncomingData matching=/localhost/nfd/faces/events/%FE%08 1419380439.632212 DEBUG: [Strategy] beforeSatisfyInterest pitEntry=/localhost/nfd/faces/events/%FE%08 inFace=1 data=/localhost/nfd/faces/events/%FE%08 1419380439.632407 DEBUG: [Forwarder] onOutgoingData face=260 data=/localhost/nfd/faces/events/%FE%08 1419380439.632567 INFO: [FaceTable] Removed face id=260 remote=fd://24 local=unix:///private/var/run/nfd.sock 1419380439.632706 TRACE: [NameTree] fullEnumerate 1419380439.632755 TRACE: [NameTree] const_iterator::operator++() 1419380439.632815 TRACE: [NameTree] const_iterator::operator++() 1419380439.632874 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd/rib 1419380439.632940 TRACE: [NameTree] eraseEntryIfEmpty /localhost/nfd 1419380439.633015 DEBUG: [UnixStreamFace] [id:-1,uri:fd://24] Clearing send queue 1419380439.633202 INFO: [NFD] Caught signal 'Terminated: 15', exiting... 1419380439.633438 TRACE: [UnixStreamChannel] [/private/var/run/nfd.sock] Removing socket file 1419380439.633669 TRACE: [ContentStore] evictItem() 1419380439.633754 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.633850 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%00/sha256digest=7fc8f0f09483606aed7d26a02001eca60bd7ab602fd2085f6cf478872af14740 1419380439.634123 TRACE: [ContentStore] SkipList size 11 1419380439.634216 TRACE: [ContentStore] evictItem() 1419380439.634288 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.634385 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%01/sha256digest=06f2037d37a2d59338bf597f972a828cd4fcd3b968b9843d6833be2c4626fca4 1419380439.634679 TRACE: [ContentStore] SkipList size 10 1419380439.634773 TRACE: [ContentStore] evictItem() 1419380439.634850 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.634924 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%02/sha256digest=9c59465a787e82f6e9acea2093d9a1062ff1d6d6ef41c65124a1af9c3c82befb 1419380439.635144 TRACE: [ContentStore] SkipList size 9 1419380439.635209 TRACE: [ContentStore] evictItem() 1419380439.635282 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.635381 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%03/sha256digest=52432edc0307d2a2dec7f91ba54be3a1c4bcf7af8f72f9b2d633951cb1df0734 1419380439.635658 TRACE: [ContentStore] SkipList size 8 1419380439.635748 TRACE: [ContentStore] evictItem() 1419380439.635821 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.635900 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%04/sha256digest=bc2e87b95cb7a98f6b202225f04ba749ca6601b15bed1778dcf91a152bd8b23d 1419380439.636121 TRACE: [ContentStore] SkipList size 7 1419380439.636211 TRACE: [ContentStore] evictItem() 1419380439.636287 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.636360 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%05/sha256digest=2b3f6623fba717f65b687bf6728529663a53882b53f1d71a0952694781e66015 1419380439.636575 TRACE: [ContentStore] SkipList size 6 1419380439.636639 TRACE: [ContentStore] evictItem() 1419380439.636703 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.636786 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%06/sha256digest=bbf602ed8b49d95f309cc81bde1cc91f18fa38e37cca34ef932d6d595698d0fc 1419380439.637006 TRACE: [ContentStore] SkipList size 5 1419380439.637095 TRACE: [ContentStore] evictItem() 1419380439.637170 TRACE: [ContentStore] Evict from unsolicited queue 1419380439.637251 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%07/sha256digest=54448765380ee92c10b94b25f3769cfc4cf0634cbd0afc53cf986a9098c0e4ec 1419380439.637429 TRACE: [ContentStore] SkipList size 4 1419380439.637484 TRACE: [ContentStore] evictItem() 1419380439.637552 TRACE: [ContentStore] Evict from staleness queue 1419380439.637639 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/fib/add-nexthop/h%1A%07%15%08%09localhost%08%03nfd%08%03ribi%01%00/%00%00%01Jy%AA%87%C4/%2C%FF%F0%BBS%CA%A1./%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00I%DF%DE%A3t%3B%0F2Y%8C%98%1E%E6%A9S%1E%60D%8E%0A%C0%C1%D6%9D%A0%C71%E0+%842%5D%11y%9B%7F%16%24%85%03%8C%F4%11Q5X%E3J%90R%90%D7%FF%F6J%9B%B0n%8F%838%EA%DE%0Bw%D9%8EEw%D0N%B2%B8%8A%D8%0C%CD%A8%90%AA%D7%CAIM%C6%CA%05%D6%B7%D8%AC%94%97%BA%86t%14%0BZ%B1%87%D0e%5E%16%94%26n%8F%D3B%3A%F7%96Ff%0C%84%7F%23b%13%A7%A4%80N%FF%5Ds%E1%00U%E8U%E3f%A4%80%DF%F9%21%EA%E72%C7%8E%14M0%E7%92%9B%A8S3%07%2C%3CW0%3D%20%F5%A5l%86%A8%0D%CE%AE%40%A3F%BD%1F%A2%89%2A%91%C8%FF%94%E0%BB%28%5Csj%14GB%18jD%8B%FE%A0%E2%0D-%9B%B3%9C%93%81%DC%9CmQ%84q%DF%FFJ9F%CF%29%EE%A3Q%21%DD%E3%901%BF%AC%92Gz%FC%83%98%14%F2%86%C6p%C9%ADPe%20c%DCiQ3%00r%CD%F4%AB%AB%22/sha256digest=f8370c18d677c31e50e9060fbe022edec7d53cd69763a6473ae43e343c6c5dd1 1419380439.638711 TRACE: [ContentStore] SkipList size 3 1419380439.638790 TRACE: [ContentStore] evictItem() 1419380439.638852 TRACE: [ContentStore] Evict from staleness queue 1419380439.638936 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/enable-local-control/h%03n%01%01/%00%00%01Jy%AA%87%E6/%AA%DB%3A%E6%09%FA%A2%C8/%16%3F%1B%01%01%1C%3A%078%08%03ndn%08%03org%08%05caida%08%03KEY%08%04josh%08%11ksk-1415132976069%08%07ID-CERT/%17%FD%01%00%8D%40PZQe%0E%9E%DE%3F%80%BF%1A%B0%A9%F1%02%D9r%C5%2F%A7%83%F5%3EA%86%B1w%FB%A1M%13h%C37%E4%F3%D3%EA%B4O%C4%C8%0A%5C%9Cp%F4%EC%CA%15j%B3Nx9%FDG%CE%08%F5bk%2A%8B%FAt%7F%E0%8F%8A%AC%8C%F3%A9e%87Ea%87%9B%C0%15%9D%C4%95S%1B%8D%F8%40%CD%F1%60%13%11%1F6%F6Q6%B1%EB%B2%84%0FCoq%D7x0%8C%EA%C9%9E%8C%F4W%85%EE%C4%EAS%82%BD%CB%E3%81%9B%23%9A%D1%C4%BF%21%12%3B%1A%D4f%D3%3D%A0.%E0%BC%8CJ%A3%DD%FF1%3D%14%96%C3%2A%EBI%AEX%A7%04%AF0%ABy%1B%7B%DE%EE%21%D0%C9SQ%40%DD%BB%EA%A1A%5C5%C9%AD%FB%E9%97%0E%1C.I1%A7%8A%05%FD%B9%07AC%29%FDFGB%15S%E7k+%00cL%DF4_%D8%D2l%B2%BB%1B%0C%C8%C9%5B%92%D5y%60%CE%2C%F8t%3D%95%A32%40%3DnS%97n%80%82%214O55%3F/sha256digest=2bbdb24cf246c19ebbe24b7b345dde49af143985ffbe8305028206485fb5a452 1419380439.639959 TRACE: [ContentStore] SkipList size 2 1419380439.640044 TRACE: [ContentStore] evictItem() 1419380439.640115 TRACE: [ContentStore] Evict from arrival queue 1419380439.640202 TRACE: [ContentStore] eraseFromSkipList() /localhost/nfd/faces/events/%FE%08/sha256digest=c66a7fdfb03163c77b9f7e636f8b0e70e7a6d09c0710cd45fb8bbd2e13e0d3c8 1419380439.640484 TRACE: [ContentStore] SkipList size 1 1419380439.640595 TRACE: [ContentStore] evictItem() Script done on Tue Dec 23 16:20:43 2014 From davide.pesavento at lip6.fr Tue Dec 23 17:41:55 2014 From: davide.pesavento at lip6.fr (Davide Pesavento) Date: Wed, 24 Dec 2014 02:41:55 +0100 Subject: [Nfd-dev] need volunteer to test EthernetFace on OSX and Boost 1.57 In-Reply-To: <20141224002210.GG14038@caida.org> References: <20141218002032.GJ12768@caida.org> <20141223220239.GC14038@caida.org> <20141223220913.GD14038@caida.org> <20141223233934.GE14038@caida.org> <20141224000518.GF14038@caida.org> <20141224002210.GG14038@caida.org> Message-ID: Josh, Ok, good. The face creation works as far as I can see. You should now have one or more Ethernet faces in `nfd-status -f`. Junxiao asked for more thorough testing, including packet exchange, but I don't think it's necessary. Thanks again for your help. Best, Davide On Wed, Dec 24, 2014 at 1:22 AM, Josh Polterock wrote: > Updated /opt/local/etc/ndn/nfd.conf to match build/nfd.conf.sample > > NFD output attached. > > Josh > > On Wed, Dec 24, 2014 at 01:14:11AM +0100, Davide Pesavento wrote: >> The build-time configuration looks good. Please make sure that the >> "ether" section exists in the nfd.conf you're using and that it's not >> commented out. If unsure, use the default "build/nfd.conf.sample" >> file. >> >> Attach NFD output for the new run with the corrected conf file. >> >> Thanks, >> Davide >> >> On Wed, Dec 24, 2014 at 1:05 AM, Josh Polterock wrote: >> > Wasn't sure which you wanted so included both ndn-cxx and NFD >> > build/config.log files attached. >> > >> > Josh >> > >> > On Wed, Dec 24, 2014 at 12:53:48AM +0100, Davide Pesavento wrote: >> >> EthernetFace does not seem to be enabled. Please attach the file >> >> "build/config.log" >> >> >> >> Thanks, >> >> Davide >> >> >> >> On Wed, Dec 24, 2014 at 12:39 AM, Josh Polterock wrote: >> >> > Davide, >> >> > >> >> > Please find attached. >> >> > >> >> > Thanks, >> >> > Josh >> >> > >> >> > On Wed, Dec 24, 2014 at 12:23:01AM +0100, Davide Pesavento wrote: >> >> >> Josh, >> >> >> >> >> >> Thanks a lot for testing. >> >> >> >> >> >> Would you mind attaching (or pasting inline) the output of NFD startup >> >> >> phase at a debug level of "ALL"? >> >> >> >> >> >> Thanks, >> >> >> Davide >> >> >> >> >> >> On Tue, Dec 23, 2014 at 11:09 PM, Josh Polterock wrote: >> >> >> > Junxiao, >> >> >> > >> >> >> > Ok. nfd starts and gives regular DEBUG output. >> >> >> > >> >> >> > When I execute the 'nfd-status -f | grep 'dev' command it returns >> >> >> > nothing. >> >> >> > >> >> >> > Josh >> >> >> > From nano at remap.UCLA.EDU Mon Dec 22 23:24:36 2014 From: nano at remap.UCLA.EDU (alexnano) Date: Tue, 23 Dec 2014 07:24:36 -0000 Subject: [Nfd-dev] Redmine connectivity In-Reply-To: References: Message-ID: <7A380F6B-EBF7-4151-91F6-A354583D6009@remap.ucla.edu> it?s a disk space issue - VM is out of space. we?ll have it fixed shortly. > On Dec 23, 2014, at 12:08 AM, Burke, Jeff wrote: > > It's hosted by UCLA Information Technology Services. > We'll file a ticket if needed and try to get it up in the morning. Other VMs are up, so I'm not sure what's going on. > J. > > > From: Lixia Zhang > > Date: Mon, 22 Dec 2014 22:06:05 -0800 > To: Alexander Afanasyev > > Cc: ">" >, Xiaoke Jiang > > Subject: Re: [Nfd-dev] Redmine connectivity > > >> On Dec 22, 2014, at 9:29 PM, Alex Afanasyev > wrote: >> >> named-data.net website is not accessible at the time (it is the same host). I believe there is some problem with the hosting or the server. > > is this a box in our group? > > >> >> >>> On Dec 22, 2014, at 9:07 PM, Junxiao Shi > wrote: >>> >>> Dear folks >>> >>> I'm having difficulty accessing Redmine system right now (Dec 23 05:05 UTC). >>> Does anyone have the same issue? >>> >>> Yours, Junxiao >>> _______________________________________________ >>> Nfd-dev mailing list >>> Nfd-dev at lists.cs.ucla.edu >>> http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev >> >> _______________________________________________ >> Nfd-dev mailing list >> Nfd-dev at lists.cs.ucla.edu >> http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev > > _______________________________________________ Nfd-dev mailing list Nfd-dev at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/nfd-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: