What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

By the way, the more I use Diversion the more amazed I am at how good it is. Watching it working in real time blocking ads (f in menu) is really great.
Lets just say Diversion is the quintessence of years of coding experience, user input and suggestions and my will to make it as user friendly and nice as possible.

AB-Solution was and is a different beast and evolved from many bad decicions and code habits to what it is. Many of the functions that Diversion now offers evolved in intensive beta discussions during the AB-Solution road-beautification and feature creep sessions.
I am proud of Diversion and its much improved code-base. And I like to think that with AB-Solution, amtm and now Diversion I have revolutionized the way users can interact and do complex things in a unforgiving environment (think what could go wrong with ssh terminal commands). The UI based interaction has influenced many other coders around here to do it in a similar way. That is awsome all by itself.
 
Lets just say Diversion is the quintessence of years of coding experience, user input and suggestions and my will to make it as user friendly and nice as possible.

AB-Solution was and is a different beast and evolved from many bad decicions and code habits to what it is. Many of the functions that Diversion now offers evolved in intensive beta discussions during the AB-Solution road-beautification and feature creep sessions.
I am proud of Diversion and its much improved code-base. And I like to think that with AB-Solution, amtm and now Diversion I have revolutionized the way users can interact and do complex things in a unforgiving environment (think what could go wrong with ssh terminal commands). The UI based interaction has influenced many other coders around here to do it in a similar way. That is awsome all by itself.
I can tell you one thing for sure, I'm very envious of the experience in coding you have. Diversion certainly does make quite complex tasks easily manageable with the UI.
 
Run this script to see if you have a conflict setting in the OpenVPN Client that will prevent Diversion from working over the OpenVPN tunnel.

#!/bin/sh
####################################################################################################
# Written By: Xentrk
# Name: x3mtek_Chk_ADNS.sh
# Version 1.2
#
# Description:
# Display WAN and OpenVPN Interfaces and their connectivity status
# Determine if the router uses Diversion. If so, examine OpenVPN client settings
# If Accept DNS Exclusive set to Exlusive and Redirect Internet Traffic is set to Policy Rules or
# Policy Rules (Strict), intruct user that Diversion will not work over the VPN tunnel and
# provide instructios for work-around solution.
#
####################################################################################################
# Uncomment the line below for debugging
#set -x

COLOR_RED='\033[0;31m'
COLOR_WHITE='\033[0m'
COLOR_GREEN='\e[0;32m'

listifaces () {
# Process OpenVPN Client 1 Information
OVPNC1_ADDR=$(nvram get vpn_client1_addr)
OVPNC1_DESC=$(nvram get vpn_client1_desc)
OVPNC1_STATE=$(nvram get vpn_client1_state)
case "$OVPNC1_STATE" in
0) OVPNC1_STATE_DESC="Stopped" ;;
1) OVPNC1_STATE_DESC="Connecting..." ;;
2) OVPNC1_STATE_DESC="Connected" ;;
*) OVPNC1_STATE_DESC="Unknown State" ;;
esac
OVPNNC1_DNS_CONFIG=$(nvram get vpn_client1_adns)
case "$OVPNNC1_DNS_CONFIG" in
0) OVPNC1_DNS_CONFIG_DESC="Disabled" ;;
1) OVPNC1_DNS_CONFIG_DESC="Relaxed" ;;
2) OVPNC1_DNS_CONFIG_DESC="Strict" ;;
3) OVPNC1_DNS_CONFIG_DESC="Exclusive" ;;
esac

# Process OpenVPN Client 2 Information
OVPNC2_ADDR=$(nvram get vpn_client2_addr)
OVPNC2_DESC=$(nvram get vpn_client2_desc)
OVPNC2_STATE=$(nvram get vpn_client2_state)

case "$OVPNC2_STATE" in
0) OVPNC2_STATE_DESC="Stopped" ;;
1) OVPNC2_STATE_DESC="Connecting..." ;;
2) OVPNC2_STATE_DESC="Connected" ;;
*) OVPNC2_STATE_DESC="Unknown State" ;;
esac
OVPNNC2_DNS_CONFIG=$(nvram get vpn_client2_adns)
case "$OVPNNC2_DNS_CONFIG" in
0) OVPNC2_DNS_CONFIG_DESC="Disabled" ;;
1) OVPNC2_DNS_CONFIG_DESC="Relaxed" ;;
2) OVPNC2_DNS_CONFIG_DESC="Strict" ;;
3) OVPNC2_DNS_CONFIG_DESC="Exclusive" ;;
esac

# Process OpenVPN Client 3 Information
OVPNC3_ADDR=$(nvram get vpn_client3_addr)
OVPNC3_DESC=$(nvram get vpn_client3_desc)
OVPNC3_STATE=$(nvram get vpn_client3_state)

case "$OVPNC3_STATE" in
0) OVPNC3_STATE_DESC="Stopped" ;;
1) OVPNC3_STATE_DESC="Connecting..." ;;
2) OVPNC3_STATE_DESC="Connected" ;;
*) OVPNC3_STATE_DESC="Unknown State" ;;
esac
OVPNNC3_DNS_CONFIG=$(nvram get vpn_client3_adns)
case "$OVPNNC3_DNS_CONFIG" in
0) OVPNC3_DNS_CONFIG_DESC="Disabled" ;;
1) OVPNC3_DNS_CONFIG_DESC="Relaxed" ;;
2) OVPNC3_DNS_CONFIG_DESC="Strict" ;;
3) OVPNC3_DNS_CONFIG_DESC="Exclusive" ;;
esac

# Process OpenVPN Client 4 Information
OVPNC4_ADDR=$(nvram get vpn_client4_addr)
OVPNC4_DESC=$(nvram get vpn_client4_desc)
OVPNC4_STATE=$(nvram get vpn_client4_state)
case "$(nvram get vpn_client4_state)" in
0) OVPNC4_STATE_DESC="Stopped" ;;
1) OVPNC4_STATE_DESC="Connecting..." ;;
2) OVPNC4_STATE_DESC="Connected" ;;
*) OVPNC4_STATE_DESC="Unknown State" ;;
esac
OVPNNC4_DNS_CONFIG=$(nvram get vpn_client4_adns)
case "$OVPNNC4_DNS_CONFIG" in
0) OVPNC4_DNS_CONFIG_DESC="Disabled" ;;
1) OVPNC4_DNS_CONFIG_DESC="Relaxed" ;;
2) OVPNC4_DNS_CONFIG_DESC="Strict" ;;
3) OVPNC4_DNS_CONFIG_DESC="Exclusive" ;;
esac

# Process OpenVPN Client 5 Information
OVPNC5_ADDR=$(nvram get vpn_client5_addr)
OVPNC5_DESC=$(nvram get vpn_client5_desc)
OVPNC5_STATE=$(nvram get vpn_client5_state)
case "$(nvram get vpn_client5_state)" in
0) OVPNC5_STATE_DESC="Stopped" ;;
1) OVPNC5_STATE_DESC="Connecting..." ;;
2) OVPNC5_STATE_DESC="Connected" ;;
*) OVPNC5_STATE_DESC="Unknown State" ;;
esac
OVPNNC5_DNS_CONFIG=$(nvram get vpn_client5_adns)
case "$OVPNNC5_DNS_CONFIG" in
0) OVPNC5_DNS_CONFIG_DESC="Disabled" ;;
1) OVPNC5_DNS_CONFIG_DESC="Relaxed" ;;
2) OVPNC5_DNS_CONFIG_DESC="Strict" ;;
3) OVPNC5_DNS_CONFIG_DESC="Exclusive" ;;
esac

# WAN Interface Information
WAN_IP=$(nvram get wan0_ipaddr)
WAN_GW_IFNAME=$(nvram get wan0_gw_ifname)
WAN_IFNAME=$(nvram get wan0_ifname)
case "$(nvram get wan0_state_t)" in
0) WAN0_STATE_DESC="Stopped" ;;
1) WAN0_STATE_DESC="Connecting..." ;;
2) WAN0_STATE_DESC="Connected" ;;
*) WAN0_STATE_DESC="Unknown State" ;;
esac
case "$(nvram get wan1_state_t)" in
0) WAN1_STATE_DESC="Stopped" ;;
1) WAN1_STATE_DESC="Connecting..." ;;
2) WAN1_STATE_DESC="Connected" ;;
4) WAN1_STATE_DESC="Unknown State" ;;
esac


printf '\n'
printf '********************************************************************************************\n'
printf '* WAN Interfaces *\n'
printf '********************************************************************************************\n'
printf '%-6s %-13s %-15s %-4s %-6s\n' "WAN IF " "Status" "Address" "GW" "IFNAME"
printf '%-6s %-13s %-15s %-4s %-6s\n' "------ " "-------------" "---------------" "----" "------"
printf '%-6s %-13s %-15s %-4s %-6s\n' "WAN0: " "$WAN0_STATE_DESC" "$(nvram get wan0_ipaddr)" "$(nvram get wan0_gw_ifname)" "$(nvram get wan0_ifname)"
printf '%-6s %-13s %-15s %-4s %-6s\n' "WAN1: " "$WAN1_STATE_DESC" "$(nvram get wan1_ipaddr)" "$(nvram get wan1_gw_ifname)" "$(nvram get wan1_ifname)"
printf '\n'
printf '********************************************************************************************\n'
printf '* VPN Interfaces *\n'
printf '********************************************************************************************\n'
printf '%+89s\n' "Accept"
printf '%+86s\n' "DNS"
printf '%-7s %-13s %-35s %-24s %-13s\n' "Client" "Status" "Address" "Description" "Configuration"
printf '%-7s %-13s %-35s %-24s %-13s\n' "-------" "-------------" "-----------------------------------" "------------------------" "-------------"
printf '%-7s %-13s %-35s %-24s %-13s\n' "OVPNC1:" "$OVPNC1_STATE_DESC" "$OVPNC1_ADDR" "$OVPNC1_DESC" "$OVPNC1_DNS_CONFIG_DESC"
printf '%-7s %-13s %-35s %-24s %-13s\n' "OVPNC2:" "$OVPNC2_STATE_DESC" "$OVPNC2_ADDR" "$OVPNC2_DESC" "$OVPNC2_DNS_CONFIG_DESC"
printf '%-7s %-13s %-35s %-24s %-13s\n' "OVPNC3:" "$OVPNC3_STATE_DESC" "$OVPNC3_ADDR" "$OVPNC3_DESC" "$OVPNC3_DNS_CONFIG_DESC"
printf '%-7s %-13s %-35s %-24s %-13s\n' "OVPNC4:" "$OVPNC4_STATE_DESC" "$OVPNC4_ADDR" "$OVPNC4_DESC" "$OVPNC4_DNS_CONFIG_DESC"
printf '%-7s %-13s %-35s %-24s %-13s\n' "OVPNC5:" "$OVPNC5_STATE_DESC" "$OVPNC5_ADDR" "$OVPNC5_DESC" "$OVPNC5_DNS_CONFIG_DESC"
printf '\n'
}
listifaces

if [ -d "/opt/share/diversion" ]; then
printf 'Diversion installation detected\n'
printf 'Checking for potential conflicts with active OpenVPN Clients\n'
printf '\n'

# For clients that are in a connected state, see if ADNS=3 (Exclusive)
# If Accept DNS Cofiguration = "Exclusive", give warning message about DNSMASQ
# being bypassed which prevents Diversion from working

for OPENVPN_CLIENT in 1 2 3 4 5
do
if [ "$(nvram get vpn_client${OPENVPN_CLIENT}_state)" -ne "2" ]; then
printf 'OpenVPN Client %s is not in a connected state. Skipping check for OpenVPN Client %s\n\n' "$OPENVPN_CLIENT" "$OPENVPN_CLIENT"
elif [ "$(nvram get vpn_client${OPENVPN_CLIENT}_state)" -eq "2" ] && [ "$(nvram get vpn_client${OPENVPN_CLIENT}_adns)" -eq "3" ] && [ "$(nvram get vpn_client${OPENVPN_CLIENT}_rgw)" -eq "3" ] || [ "$(nvram get vpn_client${OPENVPN_CLIENT}_rgw)" -eq "4" ]; then
printf 'Warning! Potential configuration conflict found with OpenVPN Client %s\n\n' "$OPENVPN_CLIENT"
printf '%bAccept DNS Configuration%b setting is set to %bExclusive%b\n' "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE"
printf 'When %bAccept DNS Configuration%b is set to %bExclusive%b and %bRedirect Internet Traffic%b is set to\n%bPolicy Rules%b or %bPolicy Rules (Strict)%b DNSMASQ is bypassed which will prevent Diversion from working\n' "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE"
printf '\n'
printf 'The work-around solution is to set %bAccept DNS Configuration%b to %bStrict%b AND\n' "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE"
printf 'in the %bCustom Config Section%b add the entry: %bdhcp-option DNS dns.server.ip.address%b\n' "$COLOR_GREEN" "$COLOR_WHITE" "$COLOR_GREEN" "$COLOR_WHITE"
printf 'where %bdns.server.ip.address%b is a DNS server of your choice\n' "$COLOR_GREEN" "$COLOR_WHITE"
printf 'e.g. dhcp-option DNS 9.9.9.9\n'
printf 'This will result in DNS leaking. But it will allow Diversion to work over the VPN tunnel\n'
printf 'To learn more about the issue, see\n'
printf '%bhttps://x3mtek.com/torguard-openvpn-2-4-client-setup-for-asuswrt-merlin-firmware/%b\n' "$COLOR_GREEN" "$COLOR_WHITE"
printf 'and navigate to the section %bDNSmasq and OpenVPN DNS%b\n\n' "$COLOR_GREEN" "$COLOR_WHITE"
else
printf 'Good news! No configuration conflicts found with OpenVPN Client %s\n\n' "$OPENVPN_CLIENT"
fi
done
fi

I'm still yet to fix the issue I ran into when adding this script. I'm just wondering, how do I go about installing openssh-sftp-server from entware? As you've indicated in another post, using clients like WinSCP (I understand you use a different client) would be better to use when adding scripts like this.
 
I'm still yet to fix the issue I ran into when adding this script. I'm just wondering, how do I go about installing openssh-sftp-server from entware? As you've indicated in another post, using clients like WinSCP (I understand you use a different client) would be better to use when adding scripts like this.
No need to add sftp support when scp is perfectly working well in the Windows environment with WinSCP.
But if you must: opkg install openssh-sftp-server
 
No need to add sftp support when scp is perfectly working well in the Windows environment with WinSCP.
But if you must: opkg install openssh-sftp-server

ahh thank you
 
hi
im having the following issue with this especific domain: tenforums.com

by default, its under a blocking file, therefore i wont be able to access the website

Code:
 Blocking file options:
 5. Find domain in hosts file(s)

 Enter selection [1-5 e=Exit] 5

  i  This finds in which hosts file(s)
     a domain is blocked.

 Enter domain  [e=Exit] tenforums.com

 tenforums.com
 was found in the following list(s):

 hosts-file.net-mmt.txt

also, pings show a redirect to 127.0.0.1 which is ok.

Code:
admin@RT-AC68U-5358:/tmp/home/root# ping tenforums.com
PING tenforums.com (0.0.0.0): 56 data bytes
64 bytes from 127.0.0.1: seq=0 ttl=64 time=0.249 ms
64 bytes from 127.0.0.1: seq=1 ttl=64 time=0.222 ms
64 bytes from 127.0.0.1: seq=2 ttl=64 time=0.184 ms
64 bytes from 127.0.0.1: seq=3 ttl=64 time=0.209 ms
--- tenforums.com ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max = 0.184/0.216/0.249 ms

admin@RT-AC68U-5358:/tmp/home/root#

i then add tenforums.com to the white list and proccess all lists.

now pings show an OK redirect to the ip, but website wont load at all. i have tried in different browsers and devices with the same result.
temporarily disabling diversion will of course let me access the website.

diversion log still shows that the whitelisted domain is still being blocked

Code:
 i  This follows the Dnsmasq log file (tail -f)

 1. Unfiltered log
 2. Unfiltered log extra highligted
 3. Filtered by blocked domains
 4. Filtered by term

 Enter selection [1-4 e=Exit] 3

  i  Press Ctrl-C to exit

 19:54:22 blocked by blockinglist www.tenforums.com
 19:54:22 blocked by blockinglist www.tenforums.com
 19:54:22 blocked by blockinglist www.tenforums.com
____________________________________________________

what am i missing?

thanks
 
I have struggled for some time to get adverts to display on this forum as stated in the Diversion install process [..." don't disallow ads on SNB" - which I have never done].

In Firefox I get a message above the forum posts which says "Hmm. We’re having trouble finding that site. We can’t connect to the server at www.snbforums.com&dtd=2082"

In Chrome I get a broken sad face graphic surrounded by grey background.

In Edge I get this message "There are no results for https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9579993617424571"

Doesn't seem to matter whether I use blocking "standard" or "standard+".
NB - I have cleared all browser caches - run ipconfig /fushdns - rebooted the router [which I hope clears the dnsmasq cache].
Installed pixelserv cert on all devices successfully.
Re-flashed firmware after full reset - applied settings manually. Re-installed Diversion and Skynet several times.

Diversion reports the following blocked domains - see Spoiler - but reluctant to whitelist any of these for fear of undermining excellent functionality of Diversion on all other sites.

08:11:57 blocked by blockinglist www.google-analytics.com
08:11:57 blocked by blockinglist www.google-analytics.com
08:11:57 blocked by blockinglist www.google-analytics.com
08:11:57 blocked by blockinglist pagead46.l.doubleclick.net
08:11:59 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist www.google-analytics.com
08:12:02 blocked by blockinglist www.google-analytics.com
08:12:02 blocked by blockinglist www.google-analytics.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist www.assoc-amazon.com
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist pagead46.l.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist ws-na.assoc-amazon.com
08:12:03 blocked by blockinglist ws-na.assoc-amazon.com
08:12:03 blocked by blockinglist pagead46.l.doubleclick.net
08:12:03 blocked by blockinglist www.google-analytics.com
08:12:03 blocked by blockinglist www.google-analytics.com
08:12:03 blocked by blockinglist www.google-analytics.com
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist www.google-analytics.com
08:12:05 blocked by blockinglist www.google-analytics.com
08:12:05 blocked by blockinglist www.google-analytics.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist pagead46.l.doubleclick.net
08:12:06 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist pagead46.l.doubleclick.net
08:12:06 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist www.assoc-amazon.com


Help?
 
I have struggled for some time to get adverts to display on this forum as stated in the Diversion install process [..." don't disallow ads on SNB" - which I have never done].

In Firefox I get a message above the forum posts which says "Hmm. We’re having trouble finding that site. We can’t connect to the server at www.snbforums.com&dtd=2082"

In Chrome I get a broken sad face graphic surrounded by grey background.

In Edge I get this message "There are no results for https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-9579993617424571"

Doesn't seem to matter whether I use blocking "standard" or "standard+".
NB - I have cleared all browser caches - run ipconfig /fushdns - rebooted the router [which I hope clears the dnsmasq cache].
Installed pixelserv cert on all devices successfully.
Re-flashed firmware after full reset - applied settings manually. Re-installed Diversion and Skynet several times.

Diversion reports the following blocked domains - see Spoiler - but reluctant to whitelist any of these for fear of undermining excellent functionality of Diversion on all other sites.

08:11:57 blocked by blockinglist www.google-analytics.com
08:11:57 blocked by blockinglist www.google-analytics.com
08:11:57 blocked by blockinglist www.google-analytics.com
08:11:57 blocked by blockinglist pagead46.l.doubleclick.net
08:11:59 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist www.google-analytics.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist adservice.google.com
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist googleads.g.doubleclick.net
08:12:01 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist www.google-analytics.com
08:12:02 blocked by blockinglist www.google-analytics.com
08:12:02 blocked by blockinglist www.google-analytics.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist adservice.google.com
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:02 blocked by blockinglist pagead46.l.doubleclick.net
08:12:02 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist www.assoc-amazon.com
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist pagead46.l.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist ws-na.assoc-amazon.com
08:12:03 blocked by blockinglist ws-na.assoc-amazon.com
08:12:03 blocked by blockinglist pagead46.l.doubleclick.net
08:12:03 blocked by blockinglist www.google-analytics.com
08:12:03 blocked by blockinglist www.google-analytics.com
08:12:03 blocked by blockinglist www.google-analytics.com
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:03 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist adservice.google.com
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist pagead46.l.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:04 blocked by blockinglist googleads.g.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist www.google-analytics.com
08:12:05 blocked by blockinglist www.google-analytics.com
08:12:05 blocked by blockinglist www.google-analytics.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist pagead46.l.doubleclick.net
08:12:05 blocked by blockinglist adservice.google.com
08:12:05 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist pagead46.l.doubleclick.net
08:12:06 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist pagead46.l.doubleclick.net
08:12:06 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist adservice.google.com
08:12:06 blocked by blockinglist www.assoc-amazon.com


Help?
See last paragraph https://www.snbforums.com/threads/diversion-the-router-ad-blocker.48538/page-57#post-441852

I have not seen any noticeable increase in ads since doing so and this site now loads correctly.
 
See last paragraph https://www.snbforums.com/threads/diversion-the-router-ad-blocker.48538/page-57#post-441852

I have not seen any noticeable increase in ads since doing so and this site now loads correctly.

Many thanks Jack - sorted at last ... +1

I SO wish this forum had separate sub-forums for popular add-ons like Diversion / Skynet / FreshJR etc - so that issues raised could conveniently be added under separate posts with appropriate titles.

I used to spend a lot of time on Avid's Media Composer Forums - and that was a real treat to use as it was organized as suggested above.
Trawling through pages and pages of divergent issues raised for say Diversion on a single thread is time consuming and often unproductive - even though the answer lurks somewhere in the thread.

Oh - and I do use the search tool on the forum extensively ... but despite that still struggle more often than not to pin down the issue I'm after.

Sigh!
 
In c edit email settings and remove the flag.
So, in c when I select 5. Edit email settings, send testmail I then select 10. Edit SSL flag: what do I enter?

(edit: i just press 'enter' got it)
 
Hi @thelonelycoder, noticed a typo in option 2 below - "highligted" -> "highlighted".

Code:
 What do you want to do?  f
____________________________________________________

  i  This follows the Dnsmasq log file (tail -f)

 1. Unfiltered log
 2. Unfiltered log extra highligted
 3. Filtered by blocked domains
 4. Filtered by term

 Enter selection [1-4 e=Exit]

A feature request is the option to update my block file more often than weekly (twice a week, every 48 hours, etc). Thanks!
 
Well I can't keep this running right.. after a day of running, I start getting everything blocked, even stuff in the whitelist file. I have to restart Diversion to fix daily.
Only running Diversion standard with standard block file with + Hosts.

Not running Pixelserv.

I installed Skynet to test and it still needs daily restart of Diversion.

Not sure why.
 
Hi @thelonelycoder, noticed a typo in option 2 below - "highligted" -> "highlighted".

Code:
 What do you want to do?  f
____________________________________________________

  i  This follows the Dnsmasq log file (tail -f)

 1. Unfiltered log
 2. Unfiltered log extra highligted
 3. Filtered by blocked domains
 4. Filtered by term

 Enter selection [1-4 e=Exit]

A feature request is the option to update my block file more often than weekly (twice a week, every 48 hours, etc). Thanks!
Typo is noted, thanks.

The updates of the hosts files are on a more glacial level than you think they are. Some update on a weekly basis, others do it bi-weekly or even only once a month. Some even less frequent.
A weekly update is a good compromise.
 
Well I can't keep this running right.. after a day of running, I start getting everything blocked, even stuff in the whitelist file. I have to restart Diversion to fix daily.
Only running Diversion standard with standard block file with + Hosts.

Not running Pixelserv.

I installed Skynet to test and it still needs daily restart of Diversion.

Not sure why.
Any syslog entries that might be of interest? Dnsmasq entries maybe?
Whitelisted content does not suddenly add itself back to the blocking file.
 
I just had to restart Diversion again, but after a restart it still didn't work right.. I had to change blocking file a few times to get it to start showing adds here on forums again, it's currently using small+
When it starts acting up again I'll check logs..
Do I just select "f" follow dnsmasq.log Is that what your looking for?
 
Following is log when working

Code:
Nov  7 18:54:02 dnsmasq[2503]: query[A] dns.msftncsi.com from 127.0.0.1
Nov  7 18:54:02 dnsmasq[2503]: cached dns.msftncsi.com is 131.107.255.255
Nov  7 18:54:03 dnsmasq[2503]: query[A] us-proxy.bnp.voice.battle.net from 192.168.1.220
Nov  7 18:54:03 dnsmasq[2503]: forwarded us-proxy.bnp.voice.battle.net to 1.0.0.1
Nov  7 18:54:03 dnsmasq[2503]: reply us-proxy.bnp.voice.battle.net is 24.105.27.93
Nov  7 18:54:03 dnsmasq[2503]: reply us-proxy.bnp.voice.battle.net is 24.105.27.102
Nov  7 18:54:03 dnsmasq[2503]: reply us-proxy.bnp.voice.battle.net is 24.105.26.21
Nov  7 18:54:03 dnsmasq[2503]: reply us-proxy.bnp.voice.battle.net is 24.105.26.31
Nov  7 18:54:07 dnsmasq[2503]: query[A] dns.msftncsi.com from 127.0.0.1
Nov  7 18:54:07 dnsmasq[2503]: cached dns.msftncsi.com is 131.107.255.255
Nov  7 18:54:12 dnsmasq[2503]: query[A] dns.msftncsi.com from 127.0.0.1
Nov  7 18:54:12 dnsmasq[2503]: cached dns.msftncsi.com is 131.107.255.255
Nov  7 18:54:15 dnsmasq[2503]: query[A] www.snbforums.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded www.snbforums.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: query[A] z-na.amazon-adsystem.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: cached z-na.amazon-adsystem.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: forwarded z-na.amazon-adsystem.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: query[A] www.google-analytics.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded www.google-analytics.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: reply www.snbforums.com is 104.25.234.15
Nov  7 18:54:15 dnsmasq[2503]: reply www.snbforums.com is 104.25.235.15
Nov  7 18:54:15 dnsmasq[2503]: reply z-na.amazon-adsystem.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply d1s8ai9yok3amy.cloudfront.net is 13.33.252.82
Nov  7 18:54:15 dnsmasq[2503]: query[A] adservice.google.ca from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: cached adservice.google.ca is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: cached pagead46.l.doubleclick.net is 172.217.12.194
Nov  7 18:54:15 dnsmasq[2503]: reply www.google-analytics.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply www-google-analytics.l.google.com is 172.217.10.110
Nov  7 18:54:15 dnsmasq[2503]: query[A] adservice.google.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded adservice.google.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: query[A] googleads.g.doubleclick.net from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded googleads.g.doubleclick.net to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: query[A] aax-us-east.amazon-adsystem.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded aax-us-east.amazon-adsystem.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: query[A] secure.gravatar.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded secure.gravatar.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: reply secure.gravatar.com is 192.0.73.2
Nov  7 18:54:15 dnsmasq[2503]: reply adservice.google.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply pagead46.l.doubleclick.net is 172.217.12.194
Nov  7 18:54:15 dnsmasq[2503]: reply googleads.g.doubleclick.net is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply pagead46.l.doubleclick.net is 172.217.12.194
Nov  7 18:54:15 dnsmasq[2503]: query[A] pagead2.googlesyndication.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: cached pagead2.googlesyndication.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: cached pagead46.l.doubleclick.net is 172.217.12.194
Nov  7 18:54:15 dnsmasq[2503]: reply aax-us-east.amazon-adsystem.com is 72.21.206.141
Nov  7 18:54:15 dnsmasq[2503]: query[A] images-na.ssl-images-amazon.com from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: cached images-na.ssl-images-amazon.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: forwarded images-na.ssl-images-amazon.com to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: query[A] s0.2mdn.net from 192.168.1.90
Nov  7 18:54:15 dnsmasq[2503]: forwarded s0.2mdn.net to 1.0.0.1
Nov  7 18:54:15 dnsmasq[2503]: reply s0.2mdn.net is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply s0-2mdn-net.l.google.com is 172.217.10.102
Nov  7 18:54:15 dnsmasq[2503]: reply images-na.ssl-images-amazon.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply m.media-amazon.com is <CNAME>
Nov  7 18:54:15 dnsmasq[2503]: reply c.media-amazon.com is 54.192.161.157
Nov  7 18:54:16 dnsmasq[2503]: query[A] www.google.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: forwarded www.google.com to 1.0.0.1
Nov  7 18:54:16 dnsmasq[2503]: reply www.google.com is 172.217.10.100
Nov  7 18:54:16 dnsmasq[2503]: query[A] gmtdmp.mookie1.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: cached gmtdmp.mookie1.com is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: forwarded gmtdmp.mookie1.com to 1.0.0.1
Nov  7 18:54:16 dnsmasq[2503]: reply gmtdmp.mookie1.com is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: reply na.gmtdmp.com is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 54.144.112.127
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 34.193.105.145
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 34.204.106.231
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 34.206.46.92
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 35.169.54.154
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 52.4.143.253
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 52.87.92.38
Nov  7 18:54:16 dnsmasq[2503]: reply lb1-217593028.us-east-1.elb.amazonaws.com is 52.203.214.164
Nov  7 18:54:16 dnsmasq[2503]: query[A] ad.turn.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: blocked by blockinglist ad.turn.com is 0.0.0.0
Nov  7 18:54:16 dnsmasq[2503]: query[A] c1.adform.net from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: forwarded c1.adform.net to 1.0.0.1
Nov  7 18:54:16 dnsmasq[2503]: reply c1.adform.net is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: reply track.adformnet.akadns.net is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: reply track-us.adformnet.akadns.net is 185.167.164.43
Nov  7 18:54:16 dnsmasq[2503]: reply track-us.adformnet.akadns.net is 185.167.164.42
Nov  7 18:54:16 dnsmasq[2503]: query[A] ad.turn.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: blocked by blockinglist ad.turn.com is 0.0.0.0
Nov  7 18:54:16 dnsmasq[2503]: query[A] ad.turn.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: blocked by blockinglist ad.turn.com is 0.0.0.0
Nov  7 18:54:16 dnsmasq[2503]: query[A] ad.turn.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: blocked by blockinglist ad.turn.com is 0.0.0.0
Nov  7 18:54:16 dnsmasq[2503]: query[A] ir-na.amazon-adsystem.com from 192.168.1.90
Nov  7 18:54:16 dnsmasq[2503]: cached ir-na.amazon-adsystem.com is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: forwarded ir-na.amazon-adsystem.com to 1.0.0.1
Nov  7 18:54:16 dnsmasq[2503]: reply ir-na.amazon-adsystem.com is <CNAME>
Nov  7 18:54:16 dnsmasq[2503]: reply www.assoc-amazon.com is 52.46.128.194
Nov  7 18:54:17 dnsmasq[2503]: query[A] dns.msftncsi.com from 127.0.0.1
Nov  7 18:54:17 dnsmasq[2503]: forwarded dns.msftncsi.com to 1.0.0.1
Nov  7 18:54:17 dnsmasq[2503]: reply dns.msftncsi.com is 131.107.255.255
Nov  7 18:54:18 dnsmasq[2503]: query[A] px.moatads.com from 192.168.1.90
Nov  7 18:54:18 dnsmasq[2503]: forwarded px.moatads.com to 1.0.0.1
Nov  7 18:54:18 dnsmasq[2503]: reply px.moatads.com is <CNAME>
Nov  7 18:54:18 dnsmasq[2503]: reply wildcard.moatads.com.edgekey.net is <CNAME>
Nov  7 18:54:18 dnsmasq[2503]: reply e13136.g.akamaiedge.net is 23.221.201.161
Nov  7 18:54:22 dnsmasq[2503]: query[A] dns.msftncsi.com from 127.0.0.1

I know not helpful but just throwing it out here.. ;)
 
I just had to restart Diversion again, but after a restart it still didn't work right.. I had to change blocking file a few times to get it to start showing adds here on forums again, it's currently using small+
When it starts acting up again I'll check logs..
Do I just select "f" follow dnsmasq.log Is that what your looking for?
The router Syslog, not dnsmasq.
Also, next time Diversion seems to play up, use sf and post the content of dnsmasq.conf.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top