Broadband-Hamnet™ Forum
Welcome Guest   [Register]  [Login]
«StartPrev361362363364365366367368369370NextEnd»
 Subject :Re:OLSR v0.6.3 - Adding to SVN Builds.. 2012-07-22- 20:09:08 
AD5OO
Admin
Joined: 2010-01-18- 23:05:42
Posts: 37
Location
Forum : Firmware
Topic : OLSR v0.6.3 - Adding to SVN Builds

0.6.3 has not yet been added to the firmware.  The latest olsr tag is 0.6.0-0.4.1 which is the 0.6.0 olsr built for the 0.4.1 (and later) firmware.  The next major 0.5.0 release will have at least olsr 0.6.3 (with tweaks) assuming that it works.  No date is yet set or projected for that release :(


IP Logged
 Subject :Re:OLSR v0.6.3 - Adding to SVN Builds.. 2012-07-22- 19:39:00 
KY9K
Member
Joined: 2012-07-07- 23:39:07
Posts: 23
Location: Roy, WA
Forum : Firmware
Topic : OLSR v0.6.3 - Adding to SVN Builds

That was what I figured, but I wasn't sure. I'll make that my project for tomorrow (and probably Tuesday after I break it the first couple times). Do you have 0.6.3 in a separate SVN repository? I didn't see it in the main trunk repository when I downloaded it. Different tag perhaps? I used the HSMM-Mesh OLSR configs on some different hardware and have 0.6.3 working now in secure mode. I've just got to get it added to my HSMM-Mesh build. Fingers crossed for a HSMM-Mesh 0.5.x release sometime soon with OLSRd v0.6.3. :) 73-KY9K/Brian
IP Logged
 Subject :Re:OLSR v0.6.3 - Adding to SVN Builds.. 2012-07-22- 19:34:33 
AD5OO
Admin
Joined: 2010-01-18- 23:05:42
Posts: 37
Location
Forum : Firmware
Topic : OLSR v0.6.3 - Adding to SVN Builds

Hi Brian.  Manually copying the olsr libraries and binaries is the only way to do it.  That's the way I did it...  There aren't that many, so it shouldn't pose too much of a problem.  You'll notice that olsr is not installed as a package, instead it lives inside the files directory of the build environment (where it was manually copied from my olsr build, also found in the svn repository).  There were a few tweaks made to it to make it more useful in the HSMM-MESH environment.

Good luck with the firmware work!

73
ad5oo


IP Logged
 Subject :Re:OWW and a WRT54GS.. 2012-07-22- 19:34:16 
KY9K
Member
Joined: 2012-07-07- 23:39:07
Posts: 23
Location: Roy, WA
Forum : Applications
Topic : OWW and a WRT54GS

James, The ow* series of packages doesn't appear to be available in Kamikaze 7.09. It is available in OpenWRT Backfire and Trunk. You'd likely need to use the SDK to cross-compile the ow* series of packages and then bring them in via ipkg. 73-KY9K/Brian
IP Logged
 Subject :WRT54G-TM MMHC/SDHC Card Support.. 2012-07-21- 06:00:35 
Joined: 2024-09-27- 17:22:35
Posts: 0
Location
Forum : Hardware
Topic : WRT54G-TM MMHC/SDHC Card Support

So after much researching and finally getting newer source code to compile for these devices, I have been able to add MMHC/SDHC support to the WRT54G-TM.

If anyone is interested, I have attached instructions on how to do it along with the source code I used and the MMHC/SDHC modules.

What I like most about it, is the fact that everything is internal.  After setting yours up, you can do whatever you would like with that extra space.  I turned mine into an FTP Server:  http://tech.dir.groups.yahoo.com/group/DAWG-HSMM/message/2397

73,
KF5JIM


P.S. This can also work on other routers.  You would just need to edit and compile the sourcecode for your GPIO pinout.

=================== Prepare the SDHC Card ==================
Format SDHC card using a computer to the ext2 file system.
We need something that does not have journaling.
Do not decide to format it using the HSMM-MESH node as it will
stall.
 
Optional:  Create a seperate partition and set it to swap.
 
 
=============== Prepare the WRT54G-TM Router ===============
With the HSMM-MESH node connected to the internet, install the
following packages:
    e2fsprogs
    fdisk
    kmod-fs-ext2
    libuuid        (If doing SWAP)
    swap-utils    (If doing SwAP)
 
 
Modify the router as per instructions paying close attention
on the pinouts:
 
    http://www.dd-wrt.com/wiki/index.php/Linksys_WRT54G-TM_SD/MMC_mod
 
Optional:  Build the attached source code
(Note:  I could not get it to compile on anything other than "whiterussian_0.9")
 
scp the sdhc.o (normal version) and sdhcd.o (debug version) modules
to the /etc/modules/2.4.34 directory:
 
    scp -P 2222 /sdhc.o root@localnode:/etc/modules/2.4.34
 
****  The module files attached are hard-coded to use   ****
****     these particular pinouts for the WRT54G-TM        ****
****          However, they can easily be changed            ****
 
 
ssh into the router and navigate to the /etc/modules.d directory and
add another file titled '80-broadcom-sdhc' with the only text inside
the file is one of the two uploaded files without the '.o'.  eg: sdhc
 
    ssh -p 2222 root@localnode
    
    vi /etc/modules.d/80-broadcom-sdhc
/*  [press the keyboard button]  */
    [i]
    sdhc (or) sdhcd
    [esc]
    [:][wq!][enter]
 
 
Go into the /etc/init.d/ directory and modify the 'boot' file  
(using vi again) to mount the partition(s) or swap space  
(changing the correct partition numbers) after the  
'load_modules /etc/modules.d/*' command:
 
    load_modules /etc/modules.d/*
    mkswap /dev/sdcard/part1
    swapon /dev/sdcard/part1
    mount /dev/sdcard/part2 /
}
 
===== Plugging the SDHC Card into the WRT54G-TM Router =====
Plug the SDHC Card into the router.
 
using the ssh console, reboot the router by typing 'reboot'
 
 
=================== Checking the Mod out ===================
ssh into the router and type:
df -h
cat /proc/meminfo
 
You should see your mounted SDHC card and (if you did it)  
much more swap than before.
 
 
Now you can use this extra space for whatever you would like.
I turned mine into an FTP server following these instructions:
    
    http://tech.dir.groups.yahoo.com/group/DAWG-HSMM/message/2397
 
 
This method by Paul is licensed under a Creative Commons  
Attribution 3.0 Unported License.


Attachments
 SDHC Instructions.zip [1 KB] :: SDHC Instructions
 WRT54GTM.png [58 KB] :: After Finishing the Mod
 broadcom-sdhc.zip [27 KB] :: Source Code
 broadcom-sdhc-modules.zip [25 KB] :: Modules
IP Logged
Last Edited On: 2014-05-10- 12:27:40 By KF5JIM for the Reason
 Subject :Re:HSMM-MESH in Utah.. 2012-07-21- 03:12:22 
KV4I
Member
Joined: 2011-12-17- 08:30:12
Posts: 51
Location: New Smyrna Beach, FL
Forum : Utah
Topic : HSMM-MESH in Utah

Dennis,

Focus Video Phone uses Port 4500 and offers no way to select any alternative ports. If you use port forwarding as I did, this limits you to one Focus Video Phone station on each MESH node.

I've gotten Focus Video Phone working by doing the following. In the setup for each MESH node to which a Focus Video Phone computer is connected:

- assign a DHCP reservation for the computer that is hosting Focus Video Phone

- enable Port Forwarding over Port 4500 to the computer hosting Focus Video Phone. 73 Mark KV4I

IP Logged
Last Edited On: 2012-07-21- 03:13:53 By KV4I for the Reason
 Subject :OWW and a WRT54GS.. 2012-07-19- 05:50:21 
w8iss
Member
Joined: 2012-01-17- 07:29:35
Posts: 42
Location: Lincoln Park, MI - EN82jg
Forum : Applications
Topic : OWW and a WRT54GS

Wondering if anyone has tried to install OWW (one wire weather), either the GUI or non-GUI

versions onto a WRT54 with a serial port mod and then hooked a one wire weather station

to it over the mesh?


I'd be willing to give it a try but still clunking around with how to get into the routers so far.

Been having problems connecting between my two 54GS's. I know I just haven't done the

right thing yet but I'll figure it out sooner or later or find the correct topic or FAQ that I have

over looked so far.


James W8IS

Lincoln Park, MI

EN82jg

IP Logged
 Subject :good ones.. 2012-07-18- 22:14:09 
Joined: 2024-09-27- 17:22:35
Posts: 0
Location
Forum : General
Topic : good ones


There are almost 70 different designs of Vans Authentic shoes available in the market. All of them are different from others in terms of colors, designs, used materials and prices.Try it now But one thing is common in all that they have durable quality materials that promise to give maximum comfort to the wearers. For example, two most popular designs of Vans shoes include Era shoes and Slip On. You can easily purchase them online at a very reasonable price.


Some dealers are cashing in on the actuality that celebrities have brought designer sneakers to the consideration of the general public and they are selling search alike sneakers. Most gals having said that,christian louboutin sale uk true would choose to save their income right until they can manage a authentic pair of Christian Louboutin or Jimmy Choo shoes alternatively than a pair that just seems like them. If you actually want real Christian Louboutin or Jimmy Choo footwear, just like Kylie wears then you really should be hunting for discount designer shoes.


Whatever affectionate calm with women you should be, you about consistently accusation self-confidence. Because the arrangement ambition the top above online writing but arrangement abounding things, so,cheap prefect christian louboutin shoes uk according to the address of the public, Christian beforehand its exchange idea, such as innovating the online writing and creating added and added actualization architectonics to attraction the assimilation of its customer. So, at the Women Christian Louboutin new styles with analysis of the actualization industry, I acquire that the shoes have the actualization of both constant and activated idea. Therefore, just crop a quick action to get the things you need.


Emporio Armani watches include models like Diamond, Sport, Classic and Ceramica. You can choose from 100 or more different styles that will give you the perfect combination of fashion and function, no matter what your preferred design style might be.Next Post The timeless nature of Armani watches are what set them apart from the rest of the world, allowing everyone to enjoy the elegance of simple design that is Armani in every aspect. Plus, these watches are affordably priced. Every single Armani watch comes with a guarantee, which proves that the company is just as proud of their products as their audience is impressed.


Nicky Hayden, exactly who won the 2006 MotoGP Entire world Championship, has joined your Tissot team at the same time. Currently in her 6th season when using the MotoGP Championships, Nicky is known for pushing himself to realize new heights associated with excellence.tissot t-race women\'s watch orange strap Nicky, Danica, Michael and other iconic sports information have embraced your Tissot brand due to its dedication in order to precision, technological excellence, and long historical past of innovation. Women and men Tissot team associated with Brand Ambassadors isn't limited to the world of professional activities.


True to its reputation, has launched Tiffany determined the scope of the other? That you suspect will cause an allergic reaction to one of these rings can be assured that the nickel content is negligible. Therefore, such a thing can not happen.link to url If you plan to buy an engagement ring, then you need to go for storing the newest Tiffany and Company, pick one of them in the first part of the time.


Because of to actuality this is acquittance for the duration of Aug involving 08 by way of blogger decreased charge pandora Businesses, Company., bead again once more again-variety performing your best together with the large tutorial size by simply achiever inward your Application Maintain. The same as it truly is on-line reverse amount, the precise pandora bracelet considering that iphone aren't any fee.pandora charm bracelet starter set You'll find it with the correct treasured time drastically founded primarily since marked down pandora charms in contrast to an overall full ton added loading song programs, the principle can take on really properly.


From the beginning, RayBan sunglasses have been at the forefront of eye protection technology. These glasses stay in style not only because of their celebrity appeal but also because they are well made and practical. ray ban online shopping in india is the fastest growing online community selling affordable yet high quality prescription eyeglasses, discount prescription eyeglasses and other eyewear. Firmoo's return and refund policy makes your purchase with Firmoo risk-free. Be sure to get your cheap eyeglasses online ready.


The mass-manufactured approach is the usual means of silk scarf manufacture including high end scarves. Therefore it's improbable that you are shopping for a scarf which has been homemade by artisans who've had decades in the business.visit website When cost is one thing to consider which should be taken into consideration while making your order, it can be more significant which you will get just what is required for your needs even when involving spending even more money on your order. Don't let yourself be too anxious on the industry specifics whenever selecting a silk scarf because almost all top quality silk scarves have similar fundamental features.

IP Logged
 Subject :HSMM Presentation to HOTARC.. 2012-07-17- 10:43:29 
AC5CV
Member
Joined: 2012-07-17- 15:19:06
Posts: 1
Location: Waco, TX
Forum : Austin
Topic : HSMM Presentation to HOTARC

Hello Austin HSMM-ers!

The HOTARC group in Waco area is considering a HSMM-Mesh for our area. We've been studying the web site, and have flashed a few routers, but haven't got any two talking to each other (beyond 10 feet) yet. Are any of you interested in driving up to Waco to make a 30-45-minute presentation about HSMM to our Club meeting July 26 (2012)? We'll treat you to dinner and reimburse you for mileage. :-)

If interested, please contact me at AC5CV@arrl.net, and we can discuss further by phone.

Thanks!!

John AC5CV
HOTARC Editor & Webmaster, former President, etc.

IP Logged
John AC5CV
Waco, TX
 Subject :OLSR v0.6.3 - Adding to SVN Builds.. 2012-07-16- 19:01:36 
KY9K
Member
Joined: 2012-07-07- 23:39:07
Posts: 23
Location: Roy, WA
Forum : Firmware
Topic : OLSR v0.6.3 - Adding to SVN Builds

Howdy,

I'm trying to patch OLSR v0.6.3 into my local SVN tree.  Besides manually copying each library and binary in to replace the v0.6.0 versions, is there a script or better method?  While I know this will break interoperability with the v0.4.3 release, the payoff in being able to mesh to other manufacturers hardware is worth it.

I've got a full OpenWRT development environment setup and have compiled firmware from trunk and backfire for several different devices and have it working fine.  The same goes for adding OLSR to them.  The process isn't that difficult and the compile times aren't too bad once the toolchain is in place.  I'm concentrating on OpenWRT-trunk as that is where OLSR v0.6.3 is already available as a package to build.  Trunk also contains support for RAMIPS which enables use on the $25 Keebox N150 (from Fry's) and other hardware.

My goal is to enable things like running a Ubiquiti Bullet up a flagpole at a shelter, creating longer range links on other bands, and ideally putting "supernodes" in advantaged locations that can talk on multiple banks - 420MHz, 900MHz, 3.5GHz, 5.5GHz.   While getting HSMM-MESH interoperability configured on the devices from other manufacturer's won't be nearly as easy as running the canonical HSMM-MESH firmware, the payoff seems to be worth it.  Besides, it is definitely advancing the art. :)

I'm definitely open to thoughts and suggestions.  I'd like to avoid putting any more dents in my forehead from banging it on the desk.


73-KY9K/Brian


IP Logged
 Subject :Localized webSplat!.. 2012-07-16- 16:02:49 
AD7QF
Member
Joined: 2012-04-16- 05:51:12
Posts: 23
Location
Forum : Utah
Topic : Localized webSplat!

I finely ended up with splat.artisanchemicals.com or hsmm.sumo.io on my DNS.  These two url's will access the program.  It is still optimized for our usage for mesh what if's.  I leave the server up from 5:00 am to 10:00 pm MDT each day.


IP Logged
Last Edited On: 2013-03-26- 08:50:25 By AD7QF for the Reason
 Subject :How To Configure Mesh Nodes for N1MM and N3FJP Video.. 2012-07-16- 09:03:14 
WK5DX
Member
Joined: 2012-01-13- 00:46:47
Posts: 10
Location: NW Houston
 
Forum : How we used HSMM-MESH™
Topic : How To Configure Mesh Nodes for N1MM and N3FJP Video

YouTube Link to the 13 minute How TO video

http://youtu.be/twVF_yo8RQU



IP Logged
 Subject :Re:Localized webSplat!.. 2012-07-15- 06:28:09 
K5KTF
Admin
Joined: 2010-01-18- 23:04:04
Posts: 266
Location: 5' from this webserver
  
Forum : Utah
Topic : Localized webSplat!

Hi Gerald!

Great service! If you want, I could assign DNS to that IP for you, like websplat.hemm-mesh.org , if you like? Is that a dynamic IP or static? If dynamic, you could email me when it updates (jim@k5ktf.com).

I was playing with it a little, so you will see a couple of my nodes in there :-)

73 !
Jim
K5KTF

IP Logged
B-) Jim K5KTF EM10bm Cedar Park, TX :star:
 Subject :Localized webSplat!.. 2012-07-11- 07:57:58 
AD7QF
Member
Joined: 2012-04-16- 05:51:12
Posts: 23
Location
Forum : Utah
Topic : Localized webSplat!

Starting today I will keep a webSplat! service (38.73.130.45) going from 5am to 9pm MDT  It has been optimized for Utah and HSMM-MESH plots. 

Comments are welcomed.


Gerald

AD7QF



IP Logged
 Subject :Re:WRT54GTM.. 2012-07-10- 11:37:08 
Joined: 2024-09-27- 17:22:35
Posts: 0
Location
Forum : Hardware
Topic : WRT54GTM

I recently got a WRT54GTM and tried many different variations/methods of installing the HSMM-MESH firmware. I echo KD7MG and say the method mentioned above is (right now) the only way to get it to work on this particular router.

I messed up a couple of times and bricked the router.  I found that only way to recover (without JTAGing it) is to follow the instructions on dd-wrt with respect to going back to the stock Linksys firmware and trying again from step 1.

http://www.dd-wrt.com/wiki/index.php/Linksys_WRT54G-TM


EDIT:  Make sure you select "reset to default settings" on the router before upgrading from dd-wrt otherwise you will have missing information on your HSMM-MESH node.

IP Logged
Last Edited On: 2012-07-14- 12:05:38 By for the Reason
 Subject :Spectrum Analysis Program - FREE!.. 2012-07-10- 06:59:37 
NP2X
Member
Joined: 2012-06-22- 14:25:44
Posts: 24
Location: St. Croix, USVI
Forum : General
Topic : Spectrum Analysis Program - FREE!

Hello Mesh Heads,
 
Serveral of the local KP2s have talked about a spectrum analysis program that is available (when not sold out) for sometihng like $50.  I've found a bare bones alternative that's FREE!  It's similar to an Android app called WiFi finder that KP2JS showed me. 
 
The windows version of Wireless Wizard, ver 5.2 from Azulstar is available for download from CNET.  The Spectrum Analyzer / Channel Scan shows the wi-fi channels & received occupants of the spectrum.  It lists each received AP with a "bubble" as well as received signal strength in dBm.  A tabular form of the same data, including MAC address, SSID & RSSI is also listed. Sample output is attached. 
 
Pretty cool for free!  It can be downloaded at: (cut & paste into browser) 
 
 
About the only negative I can find is that it dosen't have a connection for an external antenna.  Still, the features certainly justify the price! 
 
Happy meshing,
Fred, NP2X

Attachments
 Spectrum Scan.jpg [133 KB] :: Sample output page from Wireless Wizard
IP Logged
 Subject :Re:Path Profiling in Google Earth.. 2012-07-08- 15:22:52 
NP2X
Member
Joined: 2012-06-22- 14:25:44
Posts: 24
Location: St. Croix, USVI
Forum : General
Topic : Path Profiling in Google Earth

Jim, You're most welcome to post the path profiling write-up as you see fit. I also have another one I'm working on. It's a cheap go-kit container. I'll e-mail you a draft off-line. 73, Fred
IP Logged
 Subject :Re:Path Profiling in Google Earth.. 2012-07-08- 15:05:27 
K5KTF
Admin
Joined: 2010-01-18- 23:04:04
Posts: 266
Location: 5' from this webserver
  
Forum : General
Topic : Path Profiling in Google Earth

Excellent post Fred!

With your permission, Id like to take that and make it a full blown article, and have a link to it listed with the other path-profiling stuff over on the rest of the site?

And Yes, you are a still the grimm reaper....

Try this, go to the forums, then at the top click on My Profile, then upload a pic there (100x100pixels is best), and then see what it gives in the pull-down, and select whatever it shows.

73

Jim

K5KTF

IP Logged
B-) Jim K5KTF EM10bm Cedar Park, TX :star:
 Subject :Re:HSMM-MESH in Utah.. 2012-07-08- 14:57:04 
K5KTF
Admin
Joined: 2010-01-18- 23:04:04
Posts: 266
Location: 5' from this webserver
  
Forum : Utah
Topic : HSMM-MESH in Utah

Dennis,
Try putting the IP of each laptop into the DMZ of each router and see if that works.

That removes any port forwarding possibilities.

If THAT works, then you could research what ports need to be forwarded in the firewall (if you desire to tighten things up a bit)

If that still doesnt work, I would check firewall/permissions on each laptop.

Maybe even move both laptops to the same physical LAN (plug both into the same node) to check to see that they CAN talk to each other properly first.

I ran into an issue when playing with VoIP, that when on the same LAN, no problems at all, but move an ATA behind another node, and blammo... I get hit with problems to work out.

Let me/us know how it goes with that, as Im always wanting to hear solutions.


Thanks and 73

Jim

K5KTF

IP Logged
B-) Jim K5KTF EM10bm Cedar Park, TX :star:
 Subject :Re:HSMM-MESH in Utah.. 2012-07-08- 10:21:07 
N0NKN
Member
Joined: 2012-06-21- 16:49:45
Posts: 5
Location
Forum : Utah
Topic : HSMM-MESH in Utah

I am Dennis Tracey in Tooele. Veteran of 35 years in Defense Satellite Communications System, now retired. Heard about this last month and trying to use it. Have two nodes in my bedroom. Trying to get Focus VideoPhone up between two lap tops and getting no joy. Going to be something simple, but I have CRS concerning networking. Don't use it, you lose it. Suppose to have a speaker at 4 September meeting at club here, but I am finding it hard to wait till then. Willing to bring my gear to your qth to be shown a few tricks of the trade.
IP Logged
Page #  «StartPrev361362363364365366367368369370NextEnd»


Powered by ccBoard


SPONSORED AD: