Broadband-Hamnet™ Forum
Welcome Guest   [Register]  [Login]
«StartPrev51525354555657585960NextEnd»
 Subject :Re:Amateur Radio Emergency Data Network (AREDN).. 2015-07-01- 15:33:30 
k5dlq
Member
Joined: 2012-05-11- 08:05:13
Posts: 233
Location: Magnolia, TX USA
 
Forum : Developer's Forum
Topic : Amateur Radio Emergency Data Network (AREDN)

thanks John.
IP Logged
Darryl - K5DLQ
www.aredn.org
 Subject :Re:Utah County.. 2015-07-01- 14:38:55 
n7ego
Member
Joined: 2013-03-06- 21:51:50
Posts: 30
Location: Cedar Hills, UT
Forum : Utah
Topic : Utah County

A mobile rig!  That explains why our nodes only connected once.

I run a script once an hour as a cron job on a Raspberry Pi attached to one of my mesh nodes.  It sends me an email whenever my node sees a new "neighbor" for the first time.


#!/bin/bash
if test $# -lt 1; then
	echo "Usage: meshNotify <host>"
	exit 1
fi

# Get list of current connections from the mesh node
cd ~/meshNotify
scp -i ~/.ssh/petKey -P 2222 root@$1:/tmp/node.history .
cat node.history | mawk '{print $3}' > nodeList

# Compare with the previous list and figure out what's new
fprev="nodeList.old"
newNodes=""
if [ -e "$fprev" ]
then
	newNodes=$(grep -v -f nodeList.old nodeList)
fi
cp nodeList nodeList.old
echo "New nodes:"
echo $newNodes

# Email list of new nodes
if [ -n "$newNodes" ]; then
	echo "Sending email"
	echo "Subject: Mesh node connection" > msg.txt
	echo "" >> msg.txt
	echo "Connection from new node(s):" >> msg.txt
	echo $newNodes >> msg.txt
	cat msg.txt | /usr/sbin/ssmtp myemail@example.com
	echo "Email content: "
	cat msg.txt
	rm msg.txt
fi
IP Logged
 Subject :Re:Amateur Radio Emergency Data Network (AREDN).. 2015-07-01- 10:45:50 
k5dlq
Member
Joined: 2012-05-11- 08:05:13
Posts: 233
Location: Magnolia, TX USA
 
Forum : Developer's Forum
Topic : Amateur Radio Emergency Data Network (AREDN)

if you want to discuss, I'm happy to talk about it offline (as not to detract from the BBHN forums) k5dlq@arrl.net

IP Logged
Last Edited On: 2015-07-01- 10:46:38 By k5dlq for the Reason
Darryl - K5DLQ
www.aredn.org
 Subject :Re:Amateur Radio Emergency Data Network (AREDN).. 2015-07-01- 08:55:41 
WX4LTG
Member
Joined: 2015-03-19- 21:05:22
Posts: 8
Location: Scottsdale, AZ
 
Forum : Developer's Forum
Topic : Amateur Radio Emergency Data Network (AREDN)

I'm not seeing anything like that on the front page. I've got a vested interest in Ubiquiti support, and the split worries me a bit.
IP Logged
 Subject :Re:Re:Utah County.. 2015-07-01- 06:56:02 
kg7dgh
Member
Joined: 2013-05-09- 15:54:30
Posts: 9
Location
Forum : Utah
Topic : Utah County

Hi n7ego. Your mesh was contacted by my mobile rig, namely a router in my car. I picked up about 5 stations driving around doing errands Salt Lake around that time as well. I have to remember to check it before it loses power. Sometimes you can see contact was made but not established well enough to get a callsign and other times there is a callsign in the history.

I've set up hamchat on my node and put it in the advertised services jic.

I think a cool hack while we are still trying to grow to an interesting network would be for hamchat to log connect & disconnects with other mesh nodes. I dug around and looked at the APIs that are used to get the mesh topology and it could watch for changes there.

IP Logged
Last Edited On: 2015-07-01- 06:57:45 By kg7dgh for the Reason
 Subject :Re:IP camera for HSMM-Mesh usage.. 2015-07-01- 04:08:07 
kd8txw
Member
Joined: 2013-02-12- 11:01:18
Posts: 3
Location
Forum : Hardware
Topic : IP camera for HSMM-Mesh usage

I'm using Hosafe cameras (Amazon and Newegg). The 1Mp version is $40. **It works fine on the my Hamnet.-- Gordon


**Well I've run into a problem when using more than one of these cameras at the same time on the Mesh Network. The cameras will lose connection to the network. The only solution I've found is to cycle the power. Then it works for a few minutes and the feed is lost again. I tried the cameras on a Netgear N600 router with factory firmware and they did not lose connection at all. I assume it must be an issue with the mesh network.

Note: I tried using individual cameras on separate Ubiquiti Nanostations nodes,  all three cameras into a Linksys mesh node and all three into a Netgear switch attached to a Ubiquiti node. I get the same issue with each configuration. If I use just one Hosafe camera on the mesh network it operates correctly.

IP Logged
Last Edited On: 2015-08-21- 02:11:38 By kd8txw for the Reason Update
 Subject :Re:IP camera for HSMM-Mesh usage.. 2015-07-01- 04:07:18 
kd8txw
Member
Joined: 2013-02-12- 11:01:18
Posts: 3
Location
Forum : Hardware
Topic : IP camera for HSMM-Mesh usage

I'm using Hosafe cameras (Amazon and Newegg). The 1Mp version is $40. It works fine on the my Hamnet.-- Gordon
IP Logged
 Subject :External Node Discovery & Service Registration.. 2015-07-01- 00:35:34 
VK2YJ
Member
Joined: 2015-04-22- 05:58:13
Posts: 5
Location
Forum : Developer's Forum
Topic : External Node Discovery & Service Registration

Appologies in advance if this has been covered already.

I am wanting to develop an iOS mesh server app; connected via Wifi to mesh node.  Server App will serve HTTP/WEBDav for file upload/download.  The smart part is being able to "KNOW" the connected nodes so that the servers can communicate with each other when they are discovered so to speak.  As nodes connect and disconnect the iOS Server App can keep track. A client app can connect to their local node server and also have automatic access to data on other node servers.

I know that this information is available on the node web-interface but I would like my app to be able to access this live.

Is there some API that can be polled to retrieve this information, other can screen scraping the web-interface? 

Finally, is there a mechanism for an external device to register a service and add a port forwarding entry in the node?  This is so that my iOS app could tell if a newly connected node had an iOS device with the app running.

IP Logged
 Subject :Re:Node Listings for UT Broadband-Hamnet users.. 2015-06-30- 07:19:25 
k5dlq
Member
Joined: 2012-05-11- 08:05:13
Posts: 233
Location: Magnolia, TX USA
 
Forum : Utah
Topic : Node Listings for UT Broadband-Hamnet users

no problem. Good luck with the project! MESH ON!
IP Logged
Darryl - K5DLQ
www.aredn.org
 Subject :Re:Node Listings for UT Broadband-Hamnet users.. 2015-06-30- 06:10:00 
W0HU
Member
Joined: 2012-11-05- 00:36:42
Posts: 19
Location
Forum : Utah
Topic : Node Listings for UT Broadband-Hamnet users

Thanks, Darryl. However, even more simple than that, although I do like and encourage support for this fine mapping effort. What we are doing is to make a list that is quickly available on the internet and will show information as to who we are seeing on our mesh devices themselves. We often see a local (neighbor) URL that reveals only for a few seconds, but we otherwise have no way of knowing who it was, only the URL. I recently contacted one of the developers here and got permission to use their trademarked name Broadband-Hamnet™ on our display site, so here is the first effort. I have already received encouragement and a couple of locals have sent their URLs for listing. All are invited to check out and use this site: http://cyberjer.com/bbhndata/ Thank you for your comments to: W0HU at ARRL dot NET
IP Logged
 Subject :Re:Changed Node to.. 2015-06-30- 02:27:40 
WB0NIU
Member
Joined: 2014-05-07- 21:44:09
Posts: 11
Location
Forum : Firmware
Topic : Changed Node to "Standard Access Point" - can't get out of it

Hi, Thanks for the reply! >You can then hop over to the other device I'm having a problem with this step because I don't know the address of the other device. I tried localap:8080 and WB0NIU-2401:8080 (the lost node's name). Neither worked. I also tried putting the mesh node in NAT mode, then using the fixed IP's, with the computer at 172.27.0.100. I tried: 172.27.0.0:8080 through 172.27.0.4:8080 (.1 was the mesh node), localap:8080, WB0NIU-2401:8080. None of these worked. I also tried the fixed IP's with only the lost node hooked up, and connected either to a LAN port or to it's wifi. Thanks for your continuing assistance, Erik
IP Logged
 Subject :Re:Changed Node to.. 2015-06-30- 02:27:30 
WB0NIU
Member
Joined: 2014-05-07- 21:44:09
Posts: 11
Location
Forum : Firmware
Topic : Changed Node to "Standard Access Point" - can't get out of it

Hi, Thanks for the reply! >You can then hop over to the other device I'm having a problem with this step because I don't know the address of the other device. I tried localap:8080 and WB0NIU-2401:8080 (the lost node's name). Neither worked. I also tried putting the mesh node in NAT mode, then using the fixed IP's, with the computer at 172.27.0.100. I tried: 172.27.0.0:8080 through 172.27.0.4:8080 (.1 was the mesh node), localap:8080, WB0NIU-2401:8080. None of these worked. I also tried the fixed IP's with only the lost node hooked up, and connected either to a LAN port or to it's wifi. Thanks for your continuing assistance, Erik
IP Logged
 Subject :Re:Changed Node to "Standard Access Point" - can't get out o.. 2015-06-29- 18:58:23 
NG5V
Admin
Joined: 2010-01-18- 23:06:23
Posts: 43
Location
Forum : Firmware
Topic : Changed Node to "Standard Access Point" - can't get out of it

Getting a node into the Standard AP or Mesh AP mode and losing control of it is a very common problem.

Keep in mind that both of those operating modes turn off the DHCP server in the access point node. this is mentioned in the help screens within the mesh node. There is some good reading there. You can get past this by connecting the node with the problem to a normal mesh node back to back on the lan.  To do this, take a cat5 cord and plug into one of the 4 lan jacks on one device and connect the other end to the same set of jacks on the other device. 

Plug your control computer into a lan jack on either node and use http://localnode:8080/ to log in. You can then hop over to the other device and enter it's management screen to change the operating mode back to mesh node. Do not use the WAN plug on either device.

Remember that when you first load firmware, make a change in which operating mode you are using, or do any of several other things, the IP address will need to change. Be sure to remove the network cable on your control computer, wait 30 seconds and then insert it again. In most cases, you will have to close your web browser and then restart it after you see the new IP address issued (network cable connected) notice.

IP Logged
 Subject :Re:Node Listings for UT Broadband-Hamnet users.. 2015-06-29- 17:23:43 
k5dlq
Member
Joined: 2012-05-11- 08:05:13
Posts: 233
Location: Magnolia, TX USA
 
Forum : Utah
Topic : Node Listings for UT Broadband-Hamnet users

Hi Jerry, Is this what you are looking to do? http://www.broadband-hamnet.org/googlemapped-mesh-nodes.html
IP Logged
Darryl - K5DLQ
www.aredn.org
 Subject :Re:Re:Re:Utah County.. 2015-06-29- 16:36:23 
n7ego
Member
Joined: 2013-03-06- 21:51:50
Posts: 30
Location: Cedar Hills, UT
Forum : Utah
Topic : Utah County

I have a node up at the south end of Cedar Hills.  Not as much elevation as the north part of Cedar Hills.  But looking back in my logs I see that it connected briefly with kg7dgh-4 on April 27 around 10:30 pm.  It's been down most of the time since then due to a construction project at my house, but I put it back up last week.  It's on the south side of the house and has a clear view to the south and west, which is not ideal for connecting to Highland.  But I'm intrigued since they did see each other that one time in the past.  Has your node moved since then or is it still in the same location?





[kg7dgh 2015-06-18- 09:41:50]:

A first goal might be a unidirectional antenna at someone's home that has some elevation. Around North Utah County here that would be Suncrest or maybe Cedar Hills. Does anyone here live in a spot that a few others could aim at?


IP Logged
 Subject :Re:Changed Node to.. 2015-06-29- 15:55:01 
WB0NIU
Member
Joined: 2014-05-07- 21:44:09
Posts: 11
Location
Forum : Firmware
Topic : Changed Node to "Standard Access Point" - can't get out of it

This thread seems to morph from "Standard Access Point" to "Mesh Access Point". I have a Standard Access Point (loaded with firmware version 3.1.0) that is working as I set it, but I can't connect to it to make changes. Connected as noted above, it does not respond to http://172.27.0.2:8080, or localap, or anything else I can think of. The mesh node in NAT mode does respond to 172.27.0.1:8080 as expected. Help!
IP Logged
 Subject :Node Listings for UT Broadband-Hamnet users.. 2015-06-29- 12:48:11 
W0HU
Member
Joined: 2012-11-05- 00:36:42
Posts: 19
Location
Forum : Utah
Topic : Node Listings for UT Broadband-Hamnet users

I am proposing to provide a listing of known UTAH Broadband-Hamnet nodes in a database-type pdf format available on the internet if there is enough interest.

This would allow you to look up who that "previous neighbor" was, or list it's URL so someone could identify it, also to let each other know what is on the air out there, and where it is located.

Please e-mail your thoughts to me at W0HU at ARRL dot NET, let's try harder this year to get connected!


Jerry/W0HU

IP Logged
 Subject :Hamnet success!.. 2015-06-29- 10:29:21 
KE8AVJ
Member
Joined: 2015-04-08- 12:09:35
Posts: 30
Location: Saginaw, MI USA
Forum : Mid-Michigan
Topic : Hamnet at SVARA Field Day 2015

Hi all,

Hamnet was a smash at our Field Day! The mesh was primarily used for the logging software and everyone was pleased with how well it worked. I hope to have a more detailed report after the next SVARA club meeting in August. No July meeting due to the Fourth of July holiday.

VoIP, web and HamChat services were also available through the mesh. A GL node was provided to allow others to connect to the mesh but no one took advantage of this. I believe wireless access to the mesh would have been more successful.


73 and happy meshing
KE8AVJ

IP Logged
4 nodes. One GL, one Bullet, one AirGrid and one Raspberry Pi node. RasPBX and web server setup on another Raspberry Pi.

Club page: www.k8dac.com
 Subject :Successful Field Day with a dash of Mesh.. 2015-06-29- 02:49:17 
K2MTS
Member
Joined: 2013-07-01- 12:30:14
Posts: 14
Location: FN32fp
 
Forum : Eastern New York
Topic : Successful Field Day with a dash of Mesh

This year the Troy ARA (okay, yours truly) decided to dispense with the lengthy runs of Cat5e and wired up our 4 Field Day logging stations. The configuration had two nodes handling two logging stations each, and a third node connected to the main logging 'server'. A spare node was on hand, but was not needed.

https://twitter.com/k2mts/status/614873064921300993

RFI was a concern but did not affect the network at all. The only hiccup was during an overnight generator fuel swap, where one of the logging clients came up in local mode instead of network -- this was quickly resolved, and was not directly related to the network itself.

Some minimal smoke testing was done the night before FD (of course it was the night before) which proved that the setup could work. There was minimal risk because the Cat5 cable could have always been run as usual as a last resort.

I'm very pleased with how this experiment turned out, and look forward to using this solution again for many Field Day's to come. Maybe next year, an IP camera & node on top of our crank up tower?

Bonus teardown video:

https://www.youtube.com/watch?v=XDjxesPuIbo

73

Mike K2MTS

IP Logged
 Subject :Re:Upgrading from Tomato v1.28 to HSMM-Mesh.. 2015-06-28- 07:12:58 
W0GN
Member
Joined: 2015-05-23- 11:55:32
Posts: 16
Location
Forum : General
Topic : Upgrading from Tomato v1.28 to HSMM-Mesh

For W1RGC:



 http://www.broadband-hamnet.org/hsmm-mesh-forums/view-postlist/forum-1-general/topic-754-wrt54g-conversion-from-tomato.html



See if this comes out OK.

IP Logged
Last Edited On: 2015-06-28- 07:16:06 By W0GN for the Reason formatting
Page #  «StartPrev51525354555657585960NextEnd»


Powered by ccBoard


SPONSORED AD: