Search found 260 matches

by dave
Tue Sep 02, 2014 8:21 pm
Forum: FreeNATS Support
Topic: Project Status
Replies: 3
Views: 40792

Re: Project Status

Hi,

Ok - good luck. Hope it is what you're after.

I put it on a Pi back in 2012 using the stock Debian (I think) SD install that came with it: http://www.purplepixie.org/freenats/wiki/NATS_Pi_Recipe

Certainly ran ok performance-wise.

Regards,

Dave.
by dave
Mon Sep 01, 2014 4:15 pm
Forum: FreeNATS Support
Topic: Project Status
Replies: 3
Views: 40792

Re: Project Status

Hi Ian, Good question! I think snoozing might be the best way to describe it. As far as I'm concerned it's still a current and supported project - so I do issue bugfixes as they crop up or requests for change. User supplied/generated new test types either posted in the forum or available as extras a...
by dave
Thu Jul 17, 2014 1:45 pm
Forum: FreeNATS Support
Topic: Single (non)-failures - only alert in 3 fails in a row
Replies: 3
Views: 15550

Re: Single (non)-failures - only alert in 3 fails in a row

Hi, Glad that worked and sorry for the delay in replying. It's been a while so I had to dig through the code and there is no retry option for nodeside tests. This does seem like a logical option to have though I think so I've added it to the ToDo list for FreeNATS: http://www.purplepixie.org/freenat...
by dave
Tue Jul 01, 2014 10:08 am
Forum: FreeNATS Support
Topic: Single (non)-failures - only alert in 3 fails in a row
Replies: 3
Views: 15550

Re: Single (non)-failures - only alert in 3 fails in a row

Hi Eike, Glad you're finding the system useful and thanks for getting in touch. I believe what you're after is the test attempts option? http://www.purplepixie.org/freenats/wiki/Tests#Attempts For the ICMP "ping host" option then this is a system-wide configuration option: http://www.purplepixie.org...
by dave
Mon Apr 07, 2014 10:18 am
Forum: PHP DNS API
Topic: PHP DNS API Error
Replies: 2
Views: 16889

Re: PHP DNS API Error

No need to apologise! Just glad to see you've solved the problem.

My guess would be some sort of permissions issue then, either within PHP itself or more generally for whichever user the script is run as.

Regards,

Dave.
by dave
Sat Feb 22, 2014 12:54 am
Forum: PHP DNS API
Topic: method query give false back
Replies: 6
Views: 19839

Re: method query give false back

Hi, Another update! Ok so there are three sets of figures given. The RFC shows them as flags, protocol and algorithm (without going into detail): http://www.ietf.org/rfc/rfc4034.txt So all three of these values are now recovered in the extras section: DNSAnswer Object ( [count] => 1 [results] => Arr...
by dave
Sat Feb 22, 2014 12:29 am
Forum: PHP DNS API
Topic: method query give false back
Replies: 6
Views: 19839

Re: method query give false back

Hi, Sorry for the delay - I've implemented it and it seems to work ok on the latest development version. If you could test it that would be great, if it works ok I'll push up a general release. The dev version is on github: https://github.com/purplepixie/phpdns where you can either clone the repo or...
by dave
Wed Feb 05, 2014 1:05 am
Forum: FreeNATS Support
Topic: Small fix to run freenats on RBP
Replies: 1
Views: 14143

Re: Small fix to run freenats on RBP

Hi,

That's great thanks for the feedback. It looks like a problem with PHP itself rather than FreeNATS specifically but great to have it on here so anyone can get FreeNATS working on the Pi.

Many thanks,

Dave.
by dave
Wed Feb 05, 2014 12:58 am
Forum: PHP DNS API
Topic: method query give false back
Replies: 6
Views: 19839

Re: method query give false back

Hi, To use TCP you need to set UDP as false in the constructor e.g. <?php require("dns.inc.php"); $server="my.dns.server"; $port=53; // TCP/UDP port for DNS (53 is the standard and default) $timeout=60; // Timeout - default is 60s $udp=false; // UDP as false, will use TCP $query = new DNSQuery($serv...
by dave
Mon Feb 03, 2014 7:14 pm
Forum: PHP DNS API
Topic: method query give false back
Replies: 6
Views: 19839

Re: method query give false back

Hi, Sorry to hear you are having a problem with PHPDNS. First off DNSKEY-RR is not a type in PHPDNS. I think you mean DNSKEY or perhaps RRSIG? For a full list have a look at the source code: http://www.purplepixie.org/phpdns/viewfile.php?file=dns.inc&ext=php . Also can you provide some more details ...