YAMon 3.0... Usage Reporting by device per hr/day/mo

Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> General Questions
Goto page Previous  1, 2, 3 ... 13, 14, 15 ... 149, 150, 151  Next
Author Message
cnone
DD-WRT Novice


Joined: 20 Oct 2014
Posts: 12

PostPosted: Mon Mar 21, 2016 12:58    Post subject: Reply with quote
Hello al,
So far your script is working well, no problems on my TP-Link WR1043ND v2 (DD-WRT 03.17.2016).
Particularly the installation script and it's local files support is awesome.
Thanks for your efforts. And this update deserves another donation on my behalf Smile
Sponsor
al_c
DD-WRT Guru


Joined: 13 Apr 2013
Posts: 2134
Location: Ottawa Canada

PostPosted: Mon Mar 21, 2016 13:30    Post subject: Reply with quote
cnone wrote:
Hello al,
So far your script is working well, no problems on my TP-Link WR1043ND v2 (DD-WRT 03.17.2016).
Particularly the installation script and it's local files support is awesome.
Thanks for your efforts. And this update deserves another donation on my behalf Smile


Thanks for the update (in particular because things are working well for you).

I think the installation script should make things a lot easier for folks who are new to DD-WRT (OpenWrt, etc.)... I should've done it a long time ago Smile

Donations really help to offset costs of hosting usage-monitoring.com, test routers, etc.

Thanks!

Al
David Lewis
DD-WRT Novice


Joined: 12 Mar 2016
Posts: 6

PostPosted: Tue Mar 22, 2016 8:54    Post subject: Still no traffic data Reply with quote
Hi Al,

I've tried running the 2016-03-19 install.sh, but still there is no traffic data being gathered. Were the log files I sent via PM useful? Is there anything else I can do to help?

Thanks...
andyrav
DD-WRT Novice


Joined: 04 Mar 2014
Posts: 21

PostPosted: Fri Mar 25, 2016 8:43    Post subject: install hangs Reply with quote
trying on TPLINK Archer C9
running Firmware: DD-WRT v3.0-r28444 std (12/05/15)
but the install hangs
any ideas?

Downloading the latest version of:
* /opt/YAMon3/includes/defaults.sh
* /opt/YAMon3/includes/getLocalCopies.sh
* /opt/YAMon3/includes/hourly2monthly.sh
* /opt/YAMon3/includes/util.sh
* /opt/YAMon3/readme.txt
* /opt/YAMon3/yamon3.0.11.sh
* /opt/YAMon3/default config.file
stonewalljones
DD-WRT Novice


Joined: 26 Mar 2016
Posts: 4

PostPosted: Sat Mar 26, 2016 14:32    Post subject: No data Reply with quote
I am having the same problem as rippernz and others.

I ran all of the comands that you had asked people to show and put them here in this pastebin: http://pastebin.com/c7xiKRVW

I just installed YAMon3 with the latest "install (2016-03-19).zip" and I have UPnP disabled.

In the web interface it gives the error attached.

Is there anything else I can give you to help solve the problem?



mojj2YS.png
 Description:
 Filesize:  70.26 KB
 Viewed:  6930 Time(s)

mojj2YS.png


al_c
DD-WRT Guru


Joined: 13 Apr 2013
Posts: 2134
Location: Ottawa Canada

PostPosted: Sat Mar 26, 2016 19:37    Post subject: Re: No data Reply with quote
stonewalljones wrote:
I am having the same problem as rippernz and others.

I ran all of the comands that you had asked people to show and put them here in this pastebin: http://pastebin.com/c7xiKRVW

I just installed YAMon3 with the latest "install (2016-03-19).zip" and I have UPnP disabled.

In the web interface it gives the error attached.

Is there anything else I can give you to help solve the problem?

Thanks, your pastebin dump show that iptables is returning entries with traffic

Can you run:
`iptables -L YAMONv4 -vnx`
and then
`iptables -L YAMONv4 -vnx | grep '^\s\{1,\}[1-9]'`

In particular, the second one should give just the rows that do not start with a zero... does it?

Thx
stonewalljones
DD-WRT Novice


Joined: 26 Mar 2016
Posts: 4

PostPosted: Sat Mar 26, 2016 19:56    Post subject: Re: No data Reply with quote
al_c wrote:
stonewalljones wrote:
I am having the same problem as rippernz and others.

I ran all of the comands that you had asked people to show and put them here in this pastebin: http://pastebin.com/c7xiKRVW

I just installed YAMon3 with the latest "install (2016-03-19).zip" and I have UPnP disabled.

In the web interface it gives the error attached.

Is there anything else I can give you to help solve the problem?

Thanks, your pastebin dump show that iptables is returning entries with traffic

Can you run:
`iptables -L YAMONv4 -vnx`
and then
`iptables -L YAMONv4 -vnx | grep '^\s\{1,\}[1-9]'`

In particular, the second one should give just the rows that do not start with a zero... does it?

Thx


No it does not. And I do have traffic going across my network right now.
al_c
DD-WRT Guru


Joined: 13 Apr 2013
Posts: 2134
Location: Ottawa Canada

PostPosted: Sat Mar 26, 2016 21:25    Post subject: Re: No data Reply with quote
stonewalljones wrote:
al_c wrote:
stonewalljones wrote:
I am having the same problem as rippernz and others.

I ran all of the comands that you had asked people to show and put them here in this pastebin: http://pastebin.com/c7xiKRVW

I just installed YAMon3 with the latest "install (2016-03-19).zip" and I have UPnP disabled.

In the web interface it gives the error attached.

Is there anything else I can give you to help solve the problem?

Thanks, your pastebin dump show that iptables is returning entries with traffic

Can you run:
`iptables -L YAMONv4 -vnx`
and then
`iptables -L YAMONv4 -vnx | grep '^\s\{1,\}[1-9]'`

In particular, the second one should give just the rows that do not start with a zero... does it?

Thx


No it does not. And I do have traffic going across my network right now.

what about
`iptables -L YAMONv4 -vnx | egrep '^\s{1,}[1-9]'`
stonewalljones
DD-WRT Novice


Joined: 26 Mar 2016
Posts: 4

PostPosted: Sat Mar 26, 2016 21:59    Post subject: Re: No data Reply with quote
al_c wrote:
stonewalljones wrote:
al_c wrote:
stonewalljones wrote:
I am having the same problem as rippernz and others.

I ran all of the comands that you had asked people to show and put them here in this pastebin: http://pastebin.com/c7xiKRVW

I just installed YAMon3 with the latest "install (2016-03-19).zip" and I have UPnP disabled.

In the web interface it gives the error attached.

Is there anything else I can give you to help solve the problem?

Thanks, your pastebin dump show that iptables is returning entries with traffic

Can you run:
`iptables -L YAMONv4 -vnx`
and then
`iptables -L YAMONv4 -vnx | grep '^\s\{1,\}[1-9]'`

In particular, the second one should give just the rows that do not start with a zero... does it?

Thx


No it does not. And I do have traffic going across my network right now.

what about
`iptables -L YAMONv4 -vnx | egrep '^\s{1,}[1-9]'`


Still nothing.
ddaniel51
DD-WRT Guru


Joined: 19 Feb 2013
Posts: 1464

PostPosted: Sun Mar 27, 2016 0:19    Post subject: Reply with quote
Al, what services prevent Y from seeing wan traffic?
_________________
Segment 1 XR700 10Gb LAN, 1Gb WAN ISP BS
Wired AP 1 Unifi Wifi 6 LR US 1Gb LAN
Wired AP 2 Unifi Wifi 6 LR US 1Gb LAN
Wired AP 3 Unifi Wifi 6 LR US 1Gb LAN
Syslog Services Asustor 7110T NAS 10GB
NetGear XS716T 10GB Switch
download1.dd-wrt.com/dd-wrtv2/downloads/betas/ (Brain Slayer)
YAMon https://usage-monitoring.com/index.php
cohassetsteve
DD-WRT Novice


Joined: 05 Mar 2009
Posts: 33

PostPosted: Sun Mar 27, 2016 1:26    Post subject: Reply with quote
root@DD-WRT:~# iptables -L YAMONv4 -vnx | egrep '^\s{1,}[1-9]'
root@DD-WRT:~#
cohassetsteve
DD-WRT Novice


Joined: 05 Mar 2009
Posts: 33

PostPosted: Sun Mar 27, 2016 1:39    Post subject: Reply with quote
I don't know if this helps or not


Selection_004.png
 Description:
 Filesize:  108.19 KB
 Viewed:  6827 Time(s)

Selection_004.png


cohassetsteve
DD-WRT Novice


Joined: 05 Mar 2009
Posts: 33

PostPosted: Sun Mar 27, 2016 1:42    Post subject: Reply with quote
Sorry for the giant picture, I forgot to resize it Sad
al_c
DD-WRT Guru


Joined: 13 Apr 2013
Posts: 2134
Location: Ottawa Canada

PostPosted: Sun Mar 27, 2016 2:19    Post subject: Reply with quote
cohassetsteve wrote:
root@DD-WRT:~# iptables -L YAMONv4 -vnx | egrep '^\s{1,}[1-9]'
root@DD-WRT:~#


what do you if you remove the caret (^) - e.g.,
iptables -L YAMONv4 -vnx | grep '\s\{1,\}[1-9]
(In theory it should be similar, if not identical to what you get from
iptables -L YAMONv4 -vnx

Al
al_c
DD-WRT Guru


Joined: 13 Apr 2013
Posts: 2134
Location: Ottawa Canada

PostPosted: Sun Mar 27, 2016 2:35    Post subject: Reply with quote
ddaniel51 wrote:
Al, what services prevent Y from seeing wan traffic?

Dave - I think the only way to filter wan traffic is through more sophisticated rules in iptables... but I don't know what those should be... yet.

Al
Goto page Previous  1, 2, 3 ... 13, 14, 15 ... 149, 150, 151  Next Display posts from previous:    Page 14 of 151
Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> General Questions All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum