YAMon 3.4 - usage monitoring for your router

Post new topic   Reply to topic    DD-WRT Forum Index -> General Questions
Goto page Previous  1, 2, 3 ... 5, 6, 7 ... 44, 45, 46  Next
Author Message
ColoradoUser
DD-WRT Novice


Joined: 12 May 2018
Posts: 31
Location: Broomfield, Colorado USA

PostPosted: Sun May 13, 2018 17:04    Post subject: Reply with quote
ddaniel51 - I did some more digging. The Kingspec Z3 64gb USB claims to have wear leveling, so your writes will be spread over the entire device over time. The Kingston devices show no indication of wear leveling capability, so I must assume they do not have it. Thus in our YAMon application where a given file is written repeatedly it will write to the same cells repeatedly if you have a Kingston. Doing a little math:
- I think the YAMon data was being updated every 2 minutes.
- That would be 30 times an hour, or 720 times a day.
- With a typical write life per cell of 100,000 writes, that would work out to 138 days to EOL. That's about 5 months. I got about 8 months. I think I've convinced myself of the source of my failures.

So, you either want a USB stick with wear leveling, or a significant number of cheaper non-leveling devices to swap out. Or, use an HDD or SSD as your USB storage.

Would appreciate any feedback as a sanity check on the write frequency. I'm a former storage engineer so I know the wearout and leveling technologies, but I'm not really sure how often the data updates are being written out by YAMon. I just think it is 2 minutes because that's what the reports display seems to indicate.

Mike
Sponsor
ColoradoUser
DD-WRT Novice


Joined: 12 May 2018
Posts: 31
Location: Broomfield, Colorado USA

PostPosted: Sun May 13, 2018 19:57    Post subject: Reply with quote
I think I have to declare "Doh!" on my own post. I'm looking through the YAMon files on the /opt storage and not seeing a singular file that is written repeatedly (unless I missed it). So while I still believe the Kingston devices suffered some form of wearout, I'm having trouble finding the supporting evidence. So I stand down on that for the moment.
Mike
ddaniel51
DD-WRT Guru


Joined: 19 Feb 2013
Posts: 1464

PostPosted: Sun May 13, 2018 20:49    Post subject: Reply with quote
ColoradoUser wrote:
I think I have to declare "Doh!" on my own post. I'm looking through the YAMon files on the /opt storage and not seeing a singular file that is written repeatedly (unless I missed it). So while I still believe the Kingston devices suffered some form of wearout, I'm having trouble finding the supporting evidence. So I stand down on that for the moment.
Mike


The live data file is written new every 30 sec on my routers.

_________________
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
ColoradoUser
DD-WRT Novice


Joined: 12 May 2018
Posts: 31
Location: Broomfield, Colorado USA

PostPosted: Sun May 13, 2018 21:43    Post subject: Reply with quote
ddaniel51 wrote:
ColoradoUser wrote:
I think I have to declare "Doh!" on my own post. I'm looking through the YAMon files on the /opt storage and not seeing a singular file that is written repeatedly (unless I missed it). So while I still believe the Kingston devices suffered some form of wearout, I'm having trouble finding the supporting evidence. So I stand down on that for the moment.
Mike


The live data file is written new every 30 sec on my routers.


Thanks for catching that. You probably have your refresh timer set for 30 secs, I have mine set for 120 secs. Still, it looks like the live data file is written for an hour, then a new file is opened for the next hour. This makes the wear process take a little more thinking as now we have to think about how much data fits in an erase block (typically 1MB) before moving on to the next block, as each small file commit is going to erase that entire block and re-write it. Then we get into issues that we're not going to figure out with observation, like whether the sequence of files are being written to the same erase block or different blocks. Hmmmm. I will study it a bit longer. But the fact remains that using a non-wear-leveling USB stick for frequent writes leads to trouble before long. They were really designed for casual writes.

Probably enough on this subject. Since YAMon is very "active" in terms of /opt writes I'm going to stick with more robust storage.

Mike
ColoradoUser
DD-WRT Novice


Joined: 12 May 2018
Posts: 31
Location: Broomfield, Colorado USA

PostPosted: Mon May 14, 2018 0:13    Post subject: Reply with quote
ColoradoUser wrote:
ddaniel51 wrote:
ColoradoUser wrote:
I think I have to declare "Doh!" on my own post. I'm looking through the YAMon files on the /opt storage and not seeing a singular file that is written repeatedly (unless I missed it). So while I still believe the Kingston devices suffered some form of wearout, I'm having trouble finding the supporting evidence. So I stand down on that for the moment.
Mike


The live data file is written new every 30 sec on my routers.


Thanks for catching that. You probably have your refresh timer set for 30 secs, I have mine set for 120 secs. Still, it looks like the live data file is written for an hour, then a new file is opened for the next hour. This makes the wear process take a little more thinking as now we have to think about how much data fits in an erase block (typically 1MB) before moving on to the next block, as each small file commit is going to erase that entire block and re-write it. Then we get into issues that we're not going to figure out with observation, like whether the sequence of files are being written to the same erase block or different blocks. Hmmmm. I will study it a bit longer. But the fact remains that using a non-wear-leveling USB stick for frequent writes leads to trouble before long. They were really designed for casual writes.

Probably enough on this subject. Since YAMon is very "active" in terms of /opt writes I'm going to stick with more robust storage.

Mike

So even though I said “that’s probably enough on this subject” I feel obligated to clean up (or at least point out) some probable misinformation on my part. I did the math all wrong. Even though the Kingston device doesn’t have wear leveling, it should still have sufficient smarts in it’s controller to write every flash page before coming back around to erase blocks and re-write pages. Assuming a 16GB device, and assuming a 16K page size, there should be 1M pages. Each time a file is written it will consume a page. So, at 1 page every 2 minutes it should take 47 months to write every page in the 16GB device, then start over. And you can do that thousands of cycles before wearing out the device. So … the math says I shouldn’t be able to wear out the device, even if some of the space is permanently occupied, or even if the hourly files were filling 2 or 3 pages per write, or even if my assumption is wrong and the pages are larger (say 32K or 64K). So I am stumped again about why my Kingston devices failed. My apologies and I will try to think a little more before writing next time. But again I’m just going to avoid using these types of devices for this application.
gLeW
DD-WRT Novice


Joined: 08 Feb 2008
Posts: 28

PostPosted: Mon May 14, 2018 2:06    Post subject: Reply with quote
al_c wrote:
gLeW wrote:
i have a question, I have several rules of QOS or Access Restrictions, if I change something and push the button apply settings, the Yamon stops working and tells me all the data as if they were from the router and not from each computer.

I have to enter by ssh and restart the yamon and there if it works again.

Is there any way to create some script or something so that every time I aproto the apply button, execute the option to reboot the yamon ?????


Or I do not know if it is normal that I should restart the Yamon every time.

Thank you

Just guessing but I suspect that your iptables entries get clobbered after you update your QOS or Access Restrictions...

To confirm this can you
1. update the QOS or Access Restrictions
2. in a PuTTY (or equivalent terminal app) window, enter:
iptables -L -vnx

and then
iptables -L YAMON34v4 -vnx

(I'm guessing the latter will contain few entries if any)

Al


In the putty say this

Code:
root@DD-WRT:~# iptables -L -vnx
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 ACCEPT     0    --  *      *       0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
       0        0 ACCEPT     udp  --  vlan2  *       0.0.0.0/0            0.0.0.0/0           udp spt:67 dpt:68
       0        0 DROP       udp  --  vlan2  *       0.0.0.0/0            0.0.0.0/0           udp dpt:520
       0        0 DROP       udp  --  br0    *       0.0.0.0/0            0.0.0.0/0           udp dpt:520
       0        0 ACCEPT     udp  --  *      *       0.0.0.0/0            0.0.0.0/0           udp dpt:520
       0        0 DROP       icmp --  vlan2  *       0.0.0.0/0            0.0.0.0/0
       0        0 DROP       2    --  *      *       0.0.0.0/0            0.0.0.0/0
       0        0 ACCEPT     0    --  lo     *       0.0.0.0/0            0.0.0.0/0           state NEW
       2      153 ACCEPT     0    --  br0    *       0.0.0.0/0            0.0.0.0/0           state NEW
       2       80 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 ACCEPT     47   --  *      vlan2   192.168.1.0/24       0.0.0.0/0
       0        0 ACCEPT     tcp  --  *      vlan2   192.168.1.0/24       0.0.0.0/0           tcp dpt:1723
      12     4254 lan2wan    0    --  *      *       0.0.0.0/0            0.0.0.0/0
       8     2050 ACCEPT     0    --  *      *       0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
       0        0 ACCEPT     0    --  br0    br0     0.0.0.0/0            0.0.0.0/0
       0        0 TRIGGER    0    --  vlan2  br0     0.0.0.0/0            0.0.0.0/0           TRIGGER type:in match:0 relate:0
       2     2100 trigger_out  0    --  br0    *       0.0.0.0/0            0.0.0.0/0
       2     2100 ACCEPT     0    --  br0    *       0.0.0.0/0            0.0.0.0/0           state NEW
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0

Chain OUTPUT (policy ACCEPT 2 packets, 169 bytes)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_1 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_10 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_2 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_3 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_4 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_5 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_6 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_7 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_8 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain advgrp_9 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_1 (1 references)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC D0:7E:35:6C:BF:DD
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC D0:7E:35:6C:BF:DD
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC DC:53:60:F0:F3:F7
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC DC:53:60:F0:F3:F7

Chain grp_10 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_2 (1 references)
    pkts      bytes target     prot opt in     out     source               destination
       2      104 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC 2C:33:79:AB:92:6E
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC 2C:33:79:AB:92:6E

Chain grp_3 (1 references)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC 2C:33:79:AB:92:6E
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC 2C:33:79:AB:92:6E
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC A0:DD:2E:09:EE:7B
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0           MAC A0:DD:2E:09:EE:7B

Chain grp_4 (1 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_5 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_6 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_7 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_8 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain grp_9 (0 references)
    pkts      bytes target     prot opt in     out     source               destination

Chain lan2wan (1 references)
    pkts      bytes target     prot opt in     out     source               destination
      12     4254 grp_1      0    --  *      *       0.0.0.0/0            0.0.0.0/0
      12     4254 grp_2      0    --  *      *       0.0.0.0/0            0.0.0.0/0
      10     4150 grp_3      0    --  *      *       0.0.0.0/0            0.0.0.0/0
      10     4150 grp_4      0    --  *      *       0.0.0.0/0            0.0.0.0/0

Chain logaccept (0 references)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 ACCEPT     0    --  *      *       0.0.0.0/0            0.0.0.0/0

Chain logdrop (0 references)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0

Chain logreject (0 references)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 REJECT     tcp  --  *      *       0.0.0.0/0            0.0.0.0/0           reject-with tcp-reset

Chain trigger_out (1 references)
    pkts      bytes target     prot opt in     out     source               destination
root@DD-WRT:~# iptables -L YAMON34v4 -vnx
root@DD-WRT:~# iptables -L YAMON34v4 -vnx
root@DD-WRT:~#
ddaniel51
DD-WRT Guru


Joined: 19 Feb 2013
Posts: 1464

PostPosted: Tue May 15, 2018 7:49    Post subject: Reply with quote
Hey Al

My router's web pages are complaining they can't find router.js in /opt/YAMon3/www/js.

They are correct as it's located in /opt/yamon/www/js.

Do you still have YAMon3 hard coded somewhere? Perhaps a remote js file?

I did a files local config to check them but, but downloading the files fails.

Dave

_________________
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
aloss
DD-WRT Novice


Joined: 18 Oct 2016
Posts: 33

PostPosted: Tue May 15, 2018 16:15    Post subject: Re: Tip: workaround to restart YAMon periodically Reply with quote
al_c wrote:

This bug scares me... I cannot reproduce it my environment. I'm holding off on v3.4.5 to see if anything should be added for this issue.

Alexander said things got better when he updated is firmware... have you tried that as well?

When things get to a bad state, please open a PuTTY window and run

1. iptables -L -vnx | grep -i yamon
2. iptables -L YAMON34v4 -vnx


Hi Al,

Unfortunately the error occurred again with YAMon stopping to register traffic. DD-WRT is still r35898.
In the current log, the last logged activity was 05:04 AM local time (now is 1:00 PM).

This is the output of command 1:

Code:
# iptables -L -vnx | grep -i yamon
  145244 17758153 YAMON34v4Entry  0    --  *      *       0.0.0.0/0            0.0.0.0/0
15918877 16923228542 YAMON34v4Entry  0    --  *      *       0.0.0.0/0            0.0.0.0/0
  101358 23817679 YAMON34v4Entry  0    --  *      *       0.0.0.0/0            0.0.0.0/0
Chain YAMON34v4 (1 references)
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.15
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.15        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.60
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.60        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.207
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.207       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.56
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.56        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.34
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.34        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.18
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.18        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.41
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.41        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.5
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.5         0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.31
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.31        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.23
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.23        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.203
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.203       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.202
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.202       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.201
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.201       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.244
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.244       0.0.0.0/0
     685    52144 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.175
    1032   180167 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.175       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.42
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.42        0.0.0.0/0
   23321 31177931 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.174
   10871   885058 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.174       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.49
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.49        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.37
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.37        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.32
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.32        0.0.0.0/0
   16771 13934306 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.55
   13357  1778829 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.55        0.0.0.0/0
    3198  1162954 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.154
    3243   326603 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.154       0.0.0.0/0
       8      608 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.201
       8      608 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.201       0.0.0.0/0
  628036 873254344 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.150
  175658 80145987 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.150       0.0.0.0/0
   23838 28292083 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.53
    6386  1295686 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.53        0.0.0.0/0
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.48
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.48        0.0.0.0/0
      54     2452 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.112
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.112       0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.39
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.39        0.0.0.0/0
     327   122373 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.169
     418    60062 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.169       0.0.0.0/0
     167     7469 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.100
     140   100476 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.100       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.46
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.46        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.45
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.45        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.13
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.13        0.0.0.0/0
     178    31315 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.152
     212    21974 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.152       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.170
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.170       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.164
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.164       0.0.0.0/0
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.153
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.153       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.172
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.172       0.0.0.0/0
     712   439221 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.54
     760   118775 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.54        0.0.0.0/0
   62547 20582807 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.111
   58742 15122970 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.111       0.0.0.0/0
      86    66884 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.151
      91     8758 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.151       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.10
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.10        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.3
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.3         0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.103
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.103       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.25.2
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.25.2         0.0.0.0/0
  186212 194332576 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.52
  107011 124291929 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.52        0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.50
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.50        0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.168
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.168       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.5
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.5         0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.51
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.51        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.9
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.9         0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.202
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.202       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.204
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.204       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.171
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.171       0.0.0.0/0
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.156
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.156       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.203
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.203       0.0.0.0/0
      31     1498 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.167
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.167       0.0.0.0/0
      80    12696 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.160
      88     7536 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.160       0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.113
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.113       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.166
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.166       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.165
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.165       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.163
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.163       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.162
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.162       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.161
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.161       0.0.0.0/0
      95    22936 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.244
      97     9836 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.244       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            191.35.174.71
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       191.35.174.71        0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.254
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.254       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            169.254.255.1
     160    38240 YAMON34v4_gp_Perifericos  0    --  *      *       169.254.255.1        0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.1
       5      855 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.1         0.0.0.0/0
Chain YAMON34v4Entry (3 references)
       0        0 YAMON34v4Local  0    --  *      *       0.0.0.0/0            127.0.0.1           [goto]
       0        0 YAMON34v4Local  0    --  *      *       127.0.0.1            0.0.0.0/0           [goto]
    3339   193468 YAMON34v4Local  0    --  *      *       0.0.0.0/0            224.0.0.1           [goto]
       0        0 YAMON34v4Local  0    --  *      *       224.0.0.1            0.0.0.0/0           [goto]
    6841  1316947 YAMON34v4Local  0    --  *      *       0.0.0.0/0            255.255.255.255     [goto]
       0        0 YAMON34v4Local  0    --  *      *       255.255.255.255      0.0.0.0/0           [goto]
   51143 12612610 YAMON34v4Local  0    --  *      *       192.168.0.0/16       192.168.0.0/16      [goto]
       6      360 YAMON34v4Local  0    --  *      *       192.168.0.0/16       10.0.0.0/8          [goto]
       0        0 YAMON34v4Local  0    --  *      *       192.168.0.0/16       172.16.0.0/12       [goto]
       0        0 YAMON34v4Local  0    --  *      *       10.0.0.0/8           192.168.0.0/16      [goto]
       0        0 YAMON34v4Local  0    --  *      *       10.0.0.0/8           10.0.0.0/8          [goto]
       0        0 YAMON34v4Local  0    --  *      *       10.0.0.0/8           172.16.0.0/12       [goto]
       0        0 YAMON34v4Local  0    --  *      *       172.16.0.0/12        192.168.0.0/16      [goto]
       0        0 YAMON34v4Local  0    --  *      *       172.16.0.0/12        10.0.0.0/8          [goto]
       0        0 YAMON34v4Local  0    --  *      *       172.16.0.0/12        172.16.0.0/12       [goto]
 3055554 3278971026 YAMON34v4  0    --  *      *       0.0.0.0/0            0.0.0.0/0
Chain YAMON34v4Local (15 references)
Chain YAMON34v4_gp_Computadores (12 references)
Chain YAMON34v4_gp_Entretenimento (28 references)
Chain YAMON34v4_gp_Mobile (20 references)
Chain YAMON34v4_gp_Perifericos (24 references)
Chain YAMON34v4_gp_Unknown (38 references)
Chain YAMON34v4_gp_Visitante (16 references)



And this is the output of command 2:

Code:
# iptables -L YAMON34v4 -vnx
Chain YAMON34v4 (1 references)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.15
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.15        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.15
       0        0 RETURN     0    --  *      *       192.168.13.15        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.60
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.60        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.60
       0        0 RETURN     0    --  *      *       192.168.13.60        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.207
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.207       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.207
       0        0 RETURN     0    --  *      *       192.168.25.207       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.56
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.56        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.56
       0        0 RETURN     0    --  *      *       192.168.13.56        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.34
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.34        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.34
       0        0 RETURN     0    --  *      *       192.168.13.34        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.18
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.18        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.18
       0        0 RETURN     0    --  *      *       192.168.13.18        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.41
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.41        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.41
       0        0 RETURN     0    --  *      *       192.168.13.41        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.5
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.5         0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.5
       0        0 RETURN     0    --  *      *       192.168.25.5         0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.31
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.31        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.31
       0        0 RETURN     0    --  *      *       192.168.13.31        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.23
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.23        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.23
       0        0 RETURN     0    --  *      *       192.168.25.23        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.203
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.203       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.203
       0        0 RETURN     0    --  *      *       192.168.25.203       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.202
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.202       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.202
       0        0 RETURN     0    --  *      *       192.168.25.202       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.201
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.201       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.201
       0        0 RETURN     0    --  *      *       192.168.25.201       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.25.244
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.25.244       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.244
       0        0 RETURN     0    --  *      *       192.168.25.244       0.0.0.0/0
     686    52204 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.175
    1036   181470 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.175       0.0.0.0/0
     686    52204 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.175
    1036   181470 RETURN     0    --  *      *       192.168.13.175       0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.42
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.42        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.42
       0        0 RETURN     0    --  *      *       192.168.13.42        0.0.0.0/0
   23321 31177931 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.174
   10871   885058 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.174       0.0.0.0/0
   23321 31177931 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.174
   10871   885058 RETURN     0    --  *      *       192.168.13.174       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.49
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.49        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.49
       0        0 RETURN     0    --  *      *       192.168.13.49        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.37
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.37        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.37
       0        0 RETURN     0    --  *      *       192.168.13.37        0.0.0.0/0
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.32
       0        0 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.32        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.32
       0        0 RETURN     0    --  *      *       192.168.13.32        0.0.0.0/0
   16771 13934306 YAMON34v4_gp_Unknown  0    --  *      *       0.0.0.0/0            192.168.13.55
   13357  1778829 YAMON34v4_gp_Unknown  0    --  *      *       192.168.13.55        0.0.0.0/0
   16771 13934306 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.55
   13357  1778829 RETURN     0    --  *      *       192.168.13.55        0.0.0.0/0
    6730  5663618 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.154
    4860   488018 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.154       0.0.0.0/0
    6730  5663618 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.154
    4860   488018 RETURN     0    --  *      *       192.168.13.154       0.0.0.0/0
       8      608 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.201
       8      608 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.201       0.0.0.0/0
       8      608 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.201
       8      608 RETURN     0    --  *      *       192.168.13.201       0.0.0.0/0
  628036 873254344 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.150
  175658 80145987 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.150       0.0.0.0/0
  628036 873254344 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.150
  175658 80145987 RETURN     0    --  *      *       192.168.13.150       0.0.0.0/0
   25492 30494552 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.53
    6687  1334423 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.53        0.0.0.0/0
   25492 30494552 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.53
    6687  1334423 RETURN     0    --  *      *       192.168.13.53        0.0.0.0/0
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.48
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.48        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.48
       0        0 RETURN     0    --  *      *       192.168.13.48        0.0.0.0/0
      54     2452 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.112
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.112       0.0.0.0/0
      54     2452 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.112
       0        0 RETURN     0    --  *      *       192.168.13.112       0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.39
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.39        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.39
       0        0 RETURN     0    --  *      *       192.168.13.39        0.0.0.0/0
     327   122373 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.169
     418    60062 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.169       0.0.0.0/0
     327   122373 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.169
     418    60062 RETURN     0    --  *      *       192.168.13.169       0.0.0.0/0
     167     7469 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.100
     140   100476 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.100       0.0.0.0/0
     167     7469 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.100
     140   100476 RETURN     0    --  *      *       192.168.13.100       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.46
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.46        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.46
       0        0 RETURN     0    --  *      *       192.168.13.46        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.45
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.45        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.45
       0        0 RETURN     0    --  *      *       192.168.13.45        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.13
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.13        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.13
       0        0 RETURN     0    --  *      *       192.168.13.13        0.0.0.0/0
     178    31315 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.152
     212    21974 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.152       0.0.0.0/0
     178    31315 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.152
     212    21974 RETURN     0    --  *      *       192.168.13.152       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.170
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.170       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.170
       0        0 RETURN     0    --  *      *       192.168.13.170       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.164
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.164       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.164
       0        0 RETURN     0    --  *      *       192.168.13.164       0.0.0.0/0
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.153
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.153       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.153
       0        0 RETURN     0    --  *      *       192.168.13.153       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.172
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.172       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.172
       0        0 RETURN     0    --  *      *       192.168.13.172       0.0.0.0/0
     712   439221 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.54
     760   118775 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.54        0.0.0.0/0
     712   439221 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.54
     760   118775 RETURN     0    --  *      *       192.168.13.54        0.0.0.0/0
   62678 20612590 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.111
   58878 15166979 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.111       0.0.0.0/0
   62678 20612590 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.111
   58878 15166979 RETURN     0    --  *      *       192.168.13.111       0.0.0.0/0
      86    66884 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.151
      91     8758 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.151       0.0.0.0/0
      86    66884 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.151
      91     8758 RETURN     0    --  *      *       192.168.13.151       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.10
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.10        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.10
       0        0 RETURN     0    --  *      *       192.168.13.10        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.3
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.3         0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.3
       0        0 RETURN     0    --  *      *       192.168.13.3         0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.103
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.103       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.103
       0        0 RETURN     0    --  *      *       192.168.13.103       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.25.2
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.25.2         0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.25.2
       0        0 RETURN     0    --  *      *       192.168.25.2         0.0.0.0/0
  195018 205996533 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.52
  112140 124890596 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.52        0.0.0.0/0
  195018 205996533 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.52
  112140 124890596 RETURN     0    --  *      *       192.168.13.52        0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.50
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.50        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.50
       0        0 RETURN     0    --  *      *       192.168.13.50        0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.168
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.168       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.168
       0        0 RETURN     0    --  *      *       192.168.13.168       0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.5
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.5         0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.5
       0        0 RETURN     0    --  *      *       192.168.13.5         0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.51
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.51        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.51
       0        0 RETURN     0    --  *      *       192.168.13.51        0.0.0.0/0
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       0.0.0.0/0            192.168.13.9
       0        0 YAMON34v4_gp_Visitante  0    --  *      *       192.168.13.9         0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.9
       0        0 RETURN     0    --  *      *       192.168.13.9         0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.202
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.202       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.202
       0        0 RETURN     0    --  *      *       192.168.13.202       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.204
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.204       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.204
       0        0 RETURN     0    --  *      *       192.168.13.204       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.171
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.171       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.171
       0        0 RETURN     0    --  *      *       192.168.13.171       0.0.0.0/0
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       0.0.0.0/0            192.168.13.156
       0        0 YAMON34v4_gp_Mobile  0    --  *      *       192.168.13.156       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.156
       0        0 RETURN     0    --  *      *       192.168.13.156       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.203
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.203       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.203
       0        0 RETURN     0    --  *      *       192.168.13.203       0.0.0.0/0
      31     1498 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.167
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.167       0.0.0.0/0
      31     1498 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.167
       0        0 RETURN     0    --  *      *       192.168.13.167       0.0.0.0/0
      80    12696 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.160
      88     7536 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.160       0.0.0.0/0
      80    12696 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.160
      88     7536 RETURN     0    --  *      *       192.168.13.160       0.0.0.0/0
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       0.0.0.0/0            192.168.13.113
       0        0 YAMON34v4_gp_Computadores  0    --  *      *       192.168.13.113       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.113
       0        0 RETURN     0    --  *      *       192.168.13.113       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.166
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.166       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.166
       0        0 RETURN     0    --  *      *       192.168.13.166       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.165
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.165       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.165
       0        0 RETURN     0    --  *      *       192.168.13.165       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.163
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.163       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.163
       0        0 RETURN     0    --  *      *       192.168.13.163       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.162
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.162       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.162
       0        0 RETURN     0    --  *      *       192.168.13.162       0.0.0.0/0
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       0.0.0.0/0            192.168.13.161
       0        0 YAMON34v4_gp_Entretenimento  0    --  *      *       192.168.13.161       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.161
       0        0 RETURN     0    --  *      *       192.168.13.161       0.0.0.0/0
      95    22936 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.244
      97     9836 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.244       0.0.0.0/0
      95    22936 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.244
      97     9836 RETURN     0    --  *      *       192.168.13.244       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            191.35.174.71
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       191.35.174.71        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            191.35.174.71
       0        0 RETURN     0    --  *      *       191.35.174.71        0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.254
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.254       0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.254
       0        0 RETURN     0    --  *      *       192.168.13.254       0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            169.254.255.1
     160    38240 YAMON34v4_gp_Perifericos  0    --  *      *       169.254.255.1        0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            169.254.255.1
     160    38240 RETURN     0    --  *      *       169.254.255.1        0.0.0.0/0
       0        0 YAMON34v4_gp_Perifericos  0    --  *      *       0.0.0.0/0            192.168.13.1
       5      855 YAMON34v4_gp_Perifericos  0    --  *      *       192.168.13.1         0.0.0.0/0
       0        0 RETURN     0    --  *      *       0.0.0.0/0            192.168.13.1
       5      855 RETURN     0    --  *      *       192.168.13.1         0.0.0.0/0
    8485   906470 RETURN     0    --  *      *       0.0.0.0/0            0.0.0.0/0
al_c
DD-WRT Guru


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

PostPosted: Wed May 16, 2018 4:16    Post subject: some tweaks to the reports Reply with quote
I've made some smallish changes to the reports... these changes are not available in the full version yet (I'll make that update in v3.4.5 once it is ready for release)

1. On the Summary tab, there is a generally cleaner look for the table on the left. You can also now select the number of busiest devices and groups that you want to appear in this table (previously it was hard coded to three entries)

2. On the Live tab, you now can more easily filter connection types in the Active Connections table. You can now specify a comma separated list of internal IP addresses to filter those from the table as well

See http://usage-monitoring.com/help/?t=reports-tweaks for details
al_c
DD-WRT Guru


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

PostPosted: Wed May 16, 2018 4:22    Post subject: Reply with quote
gLeW wrote:
al_c wrote:
gLeW wrote:
i have a question, I have several rules of QOS or Access Restrictions, if I change something and push the button apply settings, the Yamon stops working and tells me all the data as if they were from the router and not from each computer.

I have to enter by ssh and restart the yamon and there if it works again.

Is there any way to create some script or something so that every time I aproto the apply button, execute the option to reboot the yamon ?????


Or I do not know if it is normal that I should restart the Yamon every time.

Thank you

Just guessing but I suspect that your iptables entries get clobbered after you update your QOS or Access Restrictions...

To confirm this can you
1. update the QOS or Access Restrictions
2. in a PuTTY (or equivalent terminal app) window, enter:
iptables -L -vnx

and then
iptables -L YAMON34v4 -vnx

(I'm guessing the latter will contain few entries if any)

Al


In the putty say this

Code:
root@DD-WRT:~# iptables -L -vnx
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 ACCEPT     0    --  *      *       0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
       0        0 ACCEPT     udp  --  vlan2  *       0.0.0.0/0            0.0.0.0/0           udp spt:67 dpt:68
       0        0 DROP       udp  --  vlan2  *       0.0.0.0/0            0.0.0.0/0           udp dpt:520
       0        0 DROP       udp  --  br0    *       0.0.0.0/0            0.0.0.0/0           udp dpt:520
       0        0 ACCEPT     udp  --  *      *       0.0.0.0/0            0.0.0.0/0           udp dpt:520
       0        0 DROP       icmp --  vlan2  *       0.0.0.0/0            0.0.0.0/0
       0        0 DROP       2    --  *      *       0.0.0.0/0            0.0.0.0/0
       0        0 ACCEPT     0    --  lo     *       0.0.0.0/0            0.0.0.0/0           state NEW
       2      153 ACCEPT     0    --  br0    *       0.0.0.0/0            0.0.0.0/0           state NEW
       2       80 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
    pkts      bytes target     prot opt in     out     source               destination
       0        0 ACCEPT     47   --  *      vlan2   192.168.1.0/24       0.0.0.0/0
       0        0 ACCEPT     tcp  --  *      vlan2   192.168.1.0/24       0.0.0.0/0           tcp dpt:1723
      12     4254 lan2wan    0    --  *      *       0.0.0.0/0            0.0.0.0/0
       8     2050 ACCEPT     0    --  *      *       0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
       0        0 ACCEPT     0    --  br0    br0     0.0.0.0/0            0.0.0.0/0
       0        0 TRIGGER    0    --  vlan2  br0     0.0.0.0/0            0.0.0.0/0           TRIGGER type:in match:0 relate:0
       2     2100 trigger_out  0    --  br0    *       0.0.0.0/0            0.0.0.0/0
       2     2100 ACCEPT     0    --  br0    *       0.0.0.0/0            0.0.0.0/0           state NEW
       0        0 DROP       0    --  *      *       0.0.0.0/0            0.0.0.0/0
<snip>


Thank you... that confirms that your QOS updates are clobbering the YAMon rules in the INPUT and FORWARD chains... I thought I had code to recover from this but apparently it is either missing or not working. I'll check ASAP... in the interim, if you make changes, you will have to remember to run /opt/YAMon3/restart.sh

Al
al_c
DD-WRT Guru


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

PostPosted: Wed May 16, 2018 4:33    Post subject: Reply with quote
ddaniel51 wrote:
Hey Al

My router's web pages are complaining they can't find router.js in /opt/YAMon3/www/js.

They are correct as it's located in /opt/yamon/www/js.

Do you still have YAMon3 hard coded somewhere? Perhaps a remote js file?

I did a files local config to check them but, but downloading the files fails.

Dave


WTF?!? (where's the file???)

The actual file should be created in /opt/YAMon3/www/js and there should be a symlink pointing to that location in /tmp/www/js.

what do you get when you enter ls -la /tmp/www/js? See my bottom entry below...

root@turris:~# ls -la /tmp/www/js
drwxr-xr-x 2 root root 120 May 13 13:40 .
drwxr-xr-x 3 root root 140 May 13 13:40 ..
-rw-r--r-- 1 root root 7044 May 16 00:00 alerts.js
lrwxrwxrwx 1 root root 31 May 10 21:22 config3.4.js -> /opt/YAMon3/www/js/config3.4.js
-rw-r--r-- 1 root root 14829 May 16 00:31 live_data3.js
lrwxrwxrwx 1 root root 28 May 10 21:22 router.js -> /opt/YAMon3/www/js/router.js
ddaniel51
DD-WRT Guru


Joined: 19 Feb 2013
Posts: 1464

PostPosted: Wed May 16, 2018 7:52    Post subject: Reply with quote
al_c wrote:
ddaniel51 wrote:
Hey Al

My router's web pages are complaining they can't find router.js in /opt/YAMon3/www/js.

They are correct as it's located in /opt/yamon/www/js.

Do you still have YAMon3 hard coded somewhere? Perhaps a remote js file?

I did a files local config to check them but, but downloading the files fails.

Dave


WTF?!? (where's the file???)

The actual file should be created in /opt/YAMon3/www/js and there should be a symlink pointing to that location in /tmp/www/js.

what do you get when you enter ls -la /tmp/www/js? See my bottom entry below...

root@turris:~# ls -la /tmp/www/js
drwxr-xr-x 2 root root 120 May 13 13:40 .
drwxr-xr-x 3 root root 140 May 13 13:40 ..
-rw-r--r-- 1 root root 7044 May 16 00:00 alerts.js
lrwxrwxrwx 1 root root 31 May 10 21:22 config3.4.js -> /opt/YAMon3/www/js/config3.4.js
-rw-r--r-- 1 root root 14829 May 16 00:31 live_data3.js
lrwxrwxrwx 1 root root 28 May 10 21:22 router.js -> /opt/YAMon3/www/js/router.js



root@R9000:~# ls -la /tmp/www/js
drwxr-xr-x 2 root root 0 May 15 00:44 .
drwx------ 3 root root 0 May 15 00:44 ..
-rw-r--r-- 1 root root 65629 May 16 00:42 alerts.js
lrwxrwxrwx 1 root root 30 May 15 00:42 config3.4.js -> /opt/yamon/www/js/config3.4.js
-rw-r--r-- 1 root root 4087 May 16 00:44 live_data.js
lrwxrwxrwx 1 root root 27 May 15 00:42 router.js -> /opt/yamon/www/js/router.js
-rw-r--r-- 1 root root 117736 May 15 00:42 util3.4.js
-rw-r--r-- 1 root root 71254 May 15 00:42 yamon3.4.js
root@R9000:~#

Js is where it is supposed to be via the symlink although something is still looking for it in /opt/YAMon3 when it is actually nested in /opt/yamon.

_________________
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
ColoradoUser
DD-WRT Novice


Joined: 12 May 2018
Posts: 31
Location: Broomfield, Colorado USA

PostPosted: Thu May 17, 2018 17:12    Post subject: Re: Tip: workaround to restart YAMon periodically Reply with quote
Hi Al - I was anxiously awaiting your reply to aloss post wherein his system hit the "no data collection" issue again. Mine was continuing to run with only a few "unknown device" reports in the Active Connections. So, I thought I would implement the "some tweaks to the reports" suggestion (looked good to me). That installed OK, and it may just be coincidence, but data collection immediately stopped. Before doing anything else I took a screenshot of the Live page as I noticed it IS collecting data for uploads, but no data for downloads. Then I ran the two commands you suggested should a data collection failure occur (see below).

It looks like data collection is occuring for my laptop (connected via wifi) - but no data collection for hardwired devices. After collecting the below I did another restart.sh, but still no download data collection. Then I did a router reboot, and still no download data collection.

So, somehow I triggered the defect while making the reports tweak update. But like I said that may just be coincidence. So as of now I'm broken.


root@r7800MainRouter:~# iptables -L -vnx | grep -i yamon
150733 16305158 YAMON34v4Entry 0 -- * * 0.0.0.0/0 0.0.0.0/0
13706330 14625475357 YAMON34v4Entry 0 -- * * 0.0.0.0/0 0.0.0.0/0
146853 37377109 YAMON34v4Entry 0 -- * * 0.0.0.0/0 0.0.0.0/0
Chain YAMON34v4 (1 references)
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.34
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.34 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.40
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.40 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.14
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.14 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.12
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.12 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.112
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.112 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.147
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.147 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.111
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.111 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.101
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.101 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.143
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.143 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.105
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.105 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.103
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.103 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.144
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.144 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.128
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.128 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.130
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.130 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.116
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.116 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.107
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.107 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.32
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.32 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.8
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.8 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.106
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.106 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.111
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.111 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.193
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.193 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.112
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.112 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.11
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.11 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.60
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.60 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.45
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.45 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.59
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.59 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.13
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.13 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.21
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.21 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.15
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.15 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.105
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.105 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.72
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.72 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 75.75.75.75
0 0 YAMON34v4_gp_Unknown 0 -- * * 75.75.75.75 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 169.254.5.122
0 0 YAMON34v4_gp_Unknown 0 -- * * 169.254.5.122 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.148
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.148 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.20
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.20 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.19
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.19 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.52
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.52 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.95
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.95 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.92
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.92 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.39
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.39 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.80
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.80 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.36
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.36 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.18
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.18 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.200
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.200 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.23
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.23 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.47
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.47 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.30.71
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.30.71 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.91
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.91 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.60
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.60 0.0.0.0/0
1 77 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.38
1 77 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.38 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.115
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.115 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 67.164.168.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 67.164.168.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.30.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.30.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 67.164.168.65
0 0 YAMON34v4_gp_Unknown 0 -- * * 67.164.168.65 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 169.254.255.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 169.254.255.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.1 0.0.0.0/0
Chain YAMON34v4Entry (3 references)
0 0 YAMON34v4Local 0 -- * * 0.0.0.0/0 127.0.0.1 [goto]
0 0 YAMON34v4Local 0 -- * * 127.0.0.1 0.0.0.0/0 [goto]
0 0 YAMON34v4Local 0 -- * * 0.0.0.0/0 224.0.0.1 [goto]
0 0 YAMON34v4Local 0 -- * * 224.0.0.1 0.0.0.0/0 [goto]
0 0 YAMON34v4Local 0 -- * * 0.0.0.0/0 255.255.255.255 [goto]
0 0 YAMON34v4Local 0 -- * * 255.255.255.255 0.0.0.0/0 [goto]
508 248547 YAMON34v4Local 0 -- * * 192.168.0.0/16 192.168.0.0/16 [goto]
0 0 YAMON34v4Local 0 -- * * 192.168.0.0/16 10.0.0.0/8 [goto]
0 0 YAMON34v4Local 0 -- * * 192.168.0.0/16 172.16.0.0/12 [goto]
0 0 YAMON34v4Local 0 -- * * 10.0.0.0/8 192.168.0.0/16 [goto]
0 0 YAMON34v4Local 0 -- * * 10.0.0.0/8 10.0.0.0/8 [goto]
0 0 YAMON34v4Local 0 -- * * 10.0.0.0/8 172.16.0.0/12 [goto]
0 0 YAMON34v4Local 0 -- * * 172.16.0.0/12 192.168.0.0/16 [goto]
0 0 YAMON34v4Local 0 -- * * 172.16.0.0/12 10.0.0.0/8 [goto]
0 0 YAMON34v4Local 0 -- * * 172.16.0.0/12 172.16.0.0/12 [goto]
1053 529074 YAMON34v4 0 -- * * 0.0.0.0/0 0.0.0.0/0
Chain YAMON34v4Local (15 references)
Chain YAMON34v4_gp_Unknown (116 references)








root@r7800MainRouter:~# iptables -L YAMON34v4 -vnx
Chain YAMON34v4 (1 references)
pkts bytes target prot opt in out source destination
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.34
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.34 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.34
0 0 RETURN 0 -- * * 192.168.1.34 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.40
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.40 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.40
0 0 RETURN 0 -- * * 192.168.1.40 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.14
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.14 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.14
0 0 RETURN 0 -- * * 192.168.1.14 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.12
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.12 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.12
0 0 RETURN 0 -- * * 192.168.1.12 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.112
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.112 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.112
0 0 RETURN 0 -- * * 192.168.20.112 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.147
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.147 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.147
0 0 RETURN 0 -- * * 192.168.20.147 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.111
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.111 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.111
0 0 RETURN 0 -- * * 192.168.20.111 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.101
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.101 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.101
0 0 RETURN 0 -- * * 192.168.20.101 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.143
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.143 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.143
0 0 RETURN 0 -- * * 192.168.20.143 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.105
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.105 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.105
0 0 RETURN 0 -- * * 192.168.40.105 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.103
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.103 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.103
0 0 RETURN 0 -- * * 192.168.40.103 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.144
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.144 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.144
0 0 RETURN 0 -- * * 192.168.40.144 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.128
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.128 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.128
0 0 RETURN 0 -- * * 192.168.40.128 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.130
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.130 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.130
0 0 RETURN 0 -- * * 192.168.40.130 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.116
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.116 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.116
0 0 RETURN 0 -- * * 192.168.1.116 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.107
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.107 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.107
0 0 RETURN 0 -- * * 192.168.1.107 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.32
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.32 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.32
0 0 RETURN 0 -- * * 192.168.1.32 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.8
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.8 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.8
0 0 RETURN 0 -- * * 192.168.1.8 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.106
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.106 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.106
0 0 RETURN 0 -- * * 192.168.1.106 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.111
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.111 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.111
0 0 RETURN 0 -- * * 192.168.1.111 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.193
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.193 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.193
0 0 RETURN 0 -- * * 192.168.1.193 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.112
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.112 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.112
0 0 RETURN 0 -- * * 192.168.1.112 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.11
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.11 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.11
0 0 RETURN 0 -- * * 192.168.1.11 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.60
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.60 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.60
0 0 RETURN 0 -- * * 192.168.1.60 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.45
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.45 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.45
0 0 RETURN 0 -- * * 192.168.1.45 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.59
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.59 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.59
0 0 RETURN 0 -- * * 192.168.1.59 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.13
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.13 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.13
0 0 RETURN 0 -- * * 192.168.1.13 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.21
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.21 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.21
0 0 RETURN 0 -- * * 192.168.1.21 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.15
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.15 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.15
0 0 RETURN 0 -- * * 192.168.1.15 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.105
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.105 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.105
0 0 RETURN 0 -- * * 192.168.1.105 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.72
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.72 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.72
0 0 RETURN 0 -- * * 192.168.1.72 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 75.75.75.75
0 0 YAMON34v4_gp_Unknown 0 -- * * 75.75.75.75 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 75.75.75.75
0 0 RETURN 0 -- * * 75.75.75.75 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 169.254.5.122
0 0 YAMON34v4_gp_Unknown 0 -- * * 169.254.5.122 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 169.254.5.122
0 0 RETURN 0 -- * * 169.254.5.122 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.148
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.148 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.148
0 0 RETURN 0 -- * * 192.168.20.148 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.20
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.20 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.20
0 0 RETURN 0 -- * * 192.168.1.20 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.19
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.19 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.19
0 0 RETURN 0 -- * * 192.168.1.19 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.52
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.52 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.52
0 0 RETURN 0 -- * * 192.168.1.52 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.95
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.95 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.95
0 0 RETURN 0 -- * * 192.168.1.95 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.92
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.92 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.92
0 0 RETURN 0 -- * * 192.168.1.92 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.39
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.39 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.39
0 0 RETURN 0 -- * * 192.168.1.39 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.80
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.80 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.80
0 0 RETURN 0 -- * * 192.168.1.80 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.36
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.36 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.36
0 0 RETURN 0 -- * * 192.168.1.36 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.18
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.18 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.18
0 0 RETURN 0 -- * * 192.168.1.18 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.200
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.200 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.200
0 0 RETURN 0 -- * * 192.168.40.200 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.23
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.23 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.23
0 0 RETURN 0 -- * * 192.168.1.23 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.47
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.47 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.47
0 0 RETURN 0 -- * * 192.168.1.47 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.30.71
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.30.71 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.30.71
0 0 RETURN 0 -- * * 192.168.30.71 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.91
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.91 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.91
0 0 RETURN 0 -- * * 192.168.1.91 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.60
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.60 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.60
0 0 RETURN 0 -- * * 192.168.20.60 0.0.0.0/0
1 77 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.38
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.38 0.0.0.0/0
1 77 RETURN 0 -- * * 0.0.0.0/0 192.168.1.38
0 0 RETURN 0 -- * * 192.168.1.38 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.115
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.115 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.115
0 0 RETURN 0 -- * * 192.168.1.115 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 67.164.168.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 67.164.168.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 67.164.168.1
0 0 RETURN 0 -- * * 67.164.168.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.40.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.40.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.40.1
0 0 RETURN 0 -- * * 192.168.40.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.30.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.30.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.30.1
0 0 RETURN 0 -- * * 192.168.30.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.20.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.20.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.20.1
0 0 RETURN 0 -- * * 192.168.20.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 67.164.168.65
0 0 YAMON34v4_gp_Unknown 0 -- * * 67.164.168.65 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 67.164.168.65
0 0 RETURN 0 -- * * 67.164.168.65 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 169.254.255.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 169.254.255.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 169.254.255.1
0 0 RETURN 0 -- * * 169.254.255.1 0.0.0.0/0
0 0 YAMON34v4_gp_Unknown 0 -- * * 0.0.0.0/0 192.168.1.1
0 0 YAMON34v4_gp_Unknown 0 -- * * 192.168.1.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 192.168.1.1
0 0 RETURN 0 -- * * 192.168.1.1 0.0.0.0/0
0 0 RETURN 0 -- * * 0.0.0.0/0 0.0.0.0/0
ColoradoUser
DD-WRT Novice


Joined: 12 May 2018
Posts: 31
Location: Broomfield, Colorado USA

PostPosted: Thu May 17, 2018 19:04    Post subject: Re: Tip: workaround to restart YAMon periodically Reply with quote
Al - False alarm I think. I had to rush the above out because I had an appt - but now I'm back and find that with the new tweaks I had to enable the display of Active Connections. Once doing that I find that data is in fact being collected (both up and down). I'm still seeing the few "unknown device" issues with each sample, but the majority is being collected. I'll keep checking.
Mike
al_c
DD-WRT Guru


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

PostPosted: Sat May 19, 2018 12:44    Post subject: Re: some tweaks to the reports Reply with quote
al_c wrote:
I've made some smallish changes to the reports... these changes are not available in the full version yet (I'll make that update in v3.4.5 once it is ready for release)

1. On the Summary tab, there is a generally cleaner look for the table on the left. You can also now select the number of busiest devices and groups that you want to appear in this table (previously it was hard coded to three entries)

2. On the Live tab, you now can more easily filter connection types in the Active Connections table. You can now specify a comma separated list of internal IP addresses to filter those from the table as well

See http://usage-monitoring.com/help/?t=reports-tweaks for details


I just posted a minor change to yamon3.3.4.sh so that the new bytes column in the Active Connections table is populated.

You can download the updated file from http://usage-monitoring.com/manualInstall.php (or re-run install or compare.sh on your router)
Goto page Previous  1, 2, 3 ... 5, 6, 7 ... 44, 45, 46  Next Display posts from previous:    Page 6 of 46
Post new topic   Reply to topic    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