From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-02-ewr.dyndns.com (mxout-092-ewr.mailhop.org [216.146.33.92]) by lists.bufferbloat.net (Postfix) with ESMTP id AAAA02E07DF for ; Sun, 17 Apr 2011 07:39:22 -0700 (PDT) Received: from scan-01-ewr.mailhop.org (scanner [10.0.141.223]) by mail-02-ewr.dyndns.com (Postfix) with ESMTP id 10A8E73D719 for ; Sun, 17 Apr 2011 14:39:22 +0000 (UTC) X-Spam-Score: 0.0 () X-Mail-Handler: MailHop by DynDNS X-Originating-IP: 149.20.54.64 Received: from mainmail.teklibre.com (toutatis.isc.org [149.20.54.64]) by mail-02-ewr.dyndns.com (Postfix) with ESMTP id 7903073D2DA for ; Sun, 17 Apr 2011 14:39:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mainmail.teklibre.com (Postfix) with ESMTP id 21EF512B74A for ; Sun, 17 Apr 2011 08:13:50 -0700 (PDT) Received: from mainmail.teklibre.com ([127.0.0.1]) by localhost (toutatis.sql1.isc.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GlVxC2Gj8Yf0 for ; Sun, 17 Apr 2011 08:13:49 -0700 (PDT) Received: from [192.168.1.4] (c-68-39-173-20.hsd1.nj.comcast.net [68.39.173.20]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: d) by mainmail.teklibre.com (Postfix) with ESMTPSA id 8B5AA12B6AB for ; Sun, 17 Apr 2011 08:13:49 -0700 (PDT) Message-ID: <4DAAFB95.2060302@taht.net> Date: Sun, 17 Apr 2011 08:39:17 -0600 From: Dave Taht User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8 MIME-Version: 1.0 To: bismark-devel@lists.bufferbloat.net References: <60E27FC5-BE98-4BBC-868B-D274499E97D7@cc.gatech.edu> In-Reply-To: <60E27FC5-BE98-4BBC-868B-D274499E97D7@cc.gatech.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Bismark-devel] upnp X-BeenThere: bismark-devel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: BISMark related software development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Apr 2011 14:39:23 -0000 On 04/17/2011 08:22 AM, Nick Feamster wrote: > Shouldn't the box have this enabled? I'm not sure, but certain things on my network seem broken (e.g., apple remote doesn't work when I'm associated to the SSID of the WNDR 3700), and I suspect it might be a upnp support issue. When I try to install from the Web interface, I get this: > > Installing miniUPNPd ... > Installing package... > Unknown package 'miniupnpd'. > > 1. Is it important to install upnp? (I think so, but I'm not an expert on this.) > 2. If so, how to fix this? > > -Nick > _______________________________________________ > Bismark-devel mailing list > Bismark-devel@lists.bufferbloat.net > https://lists.bufferbloat.net/listinfo/bismark-devel Actually upnp may not be all of what you need. You may also need mdns installed, too. Regrettably (as mentioned earlier) huchra is down temporarily. If you have the ability to do your own build, you can look in the available feeds for additional packages you might like to have, and install them. You should update your package database to point to the right place on the router, too. That file is /etc/opkg.conf - when doing my own development I point that to my laptop cd src/wndr3700 ./scripts/feeds list | less # capture the additional packages you might like to have in the future # somewhere, I'm sure you will see stuff you might find useful ./scripts/feeds install each package you like # capture this list for later incorporation into the generic ~/bin/install_std_packages file make menuconfig # Select the new packages you want to build (usually I select "m" for packages I just want to try, and then later incorporate them in the image if that's good) # As a time saver, usually I just do a quick make menuconfig then save, then edit the .config file # directly to enable what I want. In this case it would be ./scripts/feeds install miniupnpd mdnsresponder make menuconfig # then save The .config options to change would look like: # CONFIG_PACKAGE_miniupnpd is not set # # IP Addresses and Names # CONFIG_PACKAGE_ddns-scripts=m # CONFIG_PACKAGE_mdnsresponder is not set # So uncomment the above and make it be: CONFIG_PACKAGE_mdnsresponder=m CONFIG_PACKAGE_miniupnpd=m # do a make # assuming these packages are correct, the builds will show up in your bin/packages directory