This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

ping on VLAN and outside
#1
Good morning

I'm having a problem with an LTE reactor on which I've enabled ZeroTier. The device only responds to pings within its own VLAN. It doesn't respond from outside with the appropriate rules, and it's unreachable. Meanwhile, two Android panels with web browsers respond to pings from both inside and outside. What could it be? The network staff has already checked everything, and everything appears to be configured correctly.

As always, thanks for the information.
Reply
#2
Since you are using LTE, the default gateway comes from the mobile network. Due to this LM cannot reach another VLAN.

You can add a route manually via a script. Ask the network staff for correct destination network parameters and gateway address.
Code:
os.execute('route add -net 192.168.10.0/24 gw 192.168.1.1 eth0')

Then add the code to the init script so the route is added automatically after each reboot.
Reply
#3
(51 minutes ago)admin Wrote: Since you are using LTE, the default gateway comes from the mobile network. Due to this LM cannot reach another VLAN.

You can add a route manually via a script. Ask the network staff for correct destination network parameters and gateway address.
Code:
os.execute('route add -net 192.168.10.0/24 gw 192.168.1.1 eth0')

Then add the code to the init script so the route is added automatically after each reboot.

but work for little time and aftfer not work

os.execute('route add -net 10.255.28.128/27 gw 10.255.28.129 eth0')

the subnet is 255.255.255.224

also I have disable zerotier
Reply
#4
Try temporary disabling LTE and see if it makes any difference.
Reply


Forum Jump: