8

In my home network, I connect to the Internet through a router (192.168.1.1). I also have another router (192.168.1.15, 192.168.2.1), this one using OpenWRT, configured as a wireless client. One of my computers is connected to that router via an Ethernet cable, which is connected to my main router wirelessly.

Due to being connected through the OpenWRT router, my computer (192.168.2.4) is on a different subnet. I have a static route set up on my main router for this. The destination network is set as 192.168.2.0, the subnet mask is 255.255.255.0, and the gateway is set as 192.168.1.15. This computer can access both the Internet and other computers on the network without trouble.

Anyway, from a computer in subnet 192.168.1.x, I can ping 192.168.1.15 and 192.168.2.1 (both IP addresses of my OpenWRT router) just fine. However, when I try to ping 192.168.2.4, I get the following message:

PING 192.168.2.4 (192.168.2.4) 56(84) bytes of data.
From 192.168.1.15 icmp_seq=1 Destination Port Unreachable

Clearly it's using the static route I assigned. The problem seems to be that the OpenWRT router doesn't know how to route packets to 192.168.2.4, which is strange because that IP is directly connected to that router.

What am I doing wrong?

Sparkette
  • 724

4 Answers4

13

1 year late but your problem might be the OpenWRT firewall which seems to forbid ip forwarding on the LAN interface when the source&destination subnets aren't the same. retry pinging after this one : /etc/init.d/firewall stop

if it works, then u gonna have fun with the rules !

Fointard
  • 131
  • 1
  • 3
2

Similar error fixed by opening good old dos window (search for "cmd"), and typing these 3 separate lines:

ipconfig/release  
ipconfig/renew
exit
bummi
  • 1,725
  • 4
  • 16
  • 28
0

I got a very similar setup (OpenWrt, a couple of subnets). Same issue. When i turn of the firewall I don't get any message back anymore and have 100% packet loss. I seem to be able to use all TCP services I tried so far (ssh, smb) so the routing clearly works. I also tried pinging the target hosts from different subnets that dont go through this very router and have no problems in receiveing an echo reply.

0

Might not be a solution, but did you check if your gateway is configured correctly? As the gateway is connected to both the systems, ping might be working just fine, but did you check if the gateway does the routing from 192.168.1.x to 192.168.2.x?

Do check the request and responses using Wireshark on the gateway.

ds345
  • 101