I have two houses and we have them connected via a PTP (Mikrotik) wireless network. Here is a good idea of how the network looks like.
You can disregard some of the devices at the bottom, recently changed my APs to eero's (setup as bridge mode only). But gives you an idea of how its setup.
Issue I got is from the 2744 side (left side above) I cannot seem to ping a Windows10 box which has an IP of 192.168.0.10 (sitting on the 1750 side). Even on the 2nd Nic it has an IP of 192.168.0.87, still cant ping it. Devices on the 1750 side can ping that device no issue. Even turned off the firewall on the Windows10 box, still no go.
I had this firewall script put in awhile ago that helped fix this issue in the past, it was not allowing certain devices to flow through the firewall. So someone suggested putting this script in. Here is it (sitting on both sides):
#!/bin/sh
#
InsLoc1=`iptables -nvL FORWARD --lin | grep -i "INVALID" | tail -n 1 | awk '{ print $1 }'`
if [ "x$InsLoc1" == "x" ]
then
echo "Rule INVALID not found"
# Add rule to Drop unexpected traffic from Internet interface only
iptables -I FORWARD 1 -i eth0 -m state --state INVALID -j DROP
InsLoc1=1
else
echo "rule INVALID replaced at $InsLoc1"
# Replace rule with one changed to drop unexpected traffic from Internet interface only
iptables -D FORWARD $InsLoc1
iptables -I FORWARD $InsLoc1 -i eth0 -m state --state INVALID -j DROP
fi
#
Any idea on what is causing this? Trying to access files on that machine via UNC path like \\servername\share but it cant even ping it so that was step one to figure this out.
Dixit
You can disregard some of the devices at the bottom, recently changed my APs to eero's (setup as bridge mode only). But gives you an idea of how its setup.
Issue I got is from the 2744 side (left side above) I cannot seem to ping a Windows10 box which has an IP of 192.168.0.10 (sitting on the 1750 side). Even on the 2nd Nic it has an IP of 192.168.0.87, still cant ping it. Devices on the 1750 side can ping that device no issue. Even turned off the firewall on the Windows10 box, still no go.
I had this firewall script put in awhile ago that helped fix this issue in the past, it was not allowing certain devices to flow through the firewall. So someone suggested putting this script in. Here is it (sitting on both sides):
#!/bin/sh
#
InsLoc1=`iptables -nvL FORWARD --lin | grep -i "INVALID" | tail -n 1 | awk '{ print $1 }'`
if [ "x$InsLoc1" == "x" ]
then
echo "Rule INVALID not found"
# Add rule to Drop unexpected traffic from Internet interface only
iptables -I FORWARD 1 -i eth0 -m state --state INVALID -j DROP
InsLoc1=1
else
echo "rule INVALID replaced at $InsLoc1"
# Replace rule with one changed to drop unexpected traffic from Internet interface only
iptables -D FORWARD $InsLoc1
iptables -I FORWARD $InsLoc1 -i eth0 -m state --state INVALID -j DROP
fi
#
Any idea on what is causing this? Trying to access files on that machine via UNC path like \\servername\share but it cant even ping it so that was step one to figure this out.
Dixit