ping other devices on the same ip domain.

Hello,
I have RB433AH with two addresses:

  • 192.168.8.0/24
  • 192.168.9.0/24

when I connect to the first network and I get 192.168.8.1 (for example) I CAN ping and access any ip in this domain (ex. ping 192.168.8.22)
however when I connect to the second network say 192.168.9.1 I CAN’T ping to access any other ip in the domain. (ex. ping 192.168.8.33)

I am using PPPoE if it helps.

although all the configuration for both addresses are the same, where should I look into to fix this problem?

thanks

does ‘other IP’ knows about 192.168.9.0/24? does your machine knows about 192.168.8.0/24? what does ‘tracert’ says? do you have any rules in Mangle that change routing-mark?

this is what I am looking for, how can I tell the network about the ip addresses? I have 192.168.9.0/24 marked in Mangle and 192.168.8.0/24 is not, where can I find a help or an example?

thanks

the Manual is here: http://wiki.mikrotik.com/wiki/Category:Manual

post your configuration - it’s hard to guess

how can I post my configuration? supout.rif? or I have to write all the commands I have wrote when I configured it?

in CLI, simply type ‘export’ under any menu level, and post essential changes here

here is what I did:




/ip pool
add name=PPPoE_Pool ranges=192.168.8.0-192.168.8.250
add name=poolB ranges=192.168.9.0-192.168.9.250

/interface pppoe-server server
add authentication=pap,chap,mschap1,mschap2 default-profile=default disabled=
no interface=Wireless_Main keepalive-timeout=10 max-mru=1480 max-mtu=1480
max-sessions=0 mrru=disabled one-session-per-host=no service-name=PPPoE1

/ip address
add address=192.168.2.130/24 broadcast=192.168.2.255 comment=“” disabled=no
interface=DSL_Feed network=192.168.2.0
add address=192.168.8.254/24 broadcast=192.168.8.255 comment=“” disabled=no
interface=Wireless_Main network=192.168.8.0
add address=192.168.9.254/24 broadcast=192.168.9.255 comment=“” disabled=no
interface=Wireless_Main network=192.168.9.0

/ip firewall mangle
add action=mark-connection chain=forward comment=“” disabled=no
new-connection-mark=users-con passthrough=yes src-address=192.168.7.0/24
add action=mark-packet chain=forward comment=“” connection-mark=users-con
disabled=no new-packet-mark=users passthrough=yes
add action=mark-routing chain=prerouting comment=“” disabled=no
new-routing-mark=MarkB passthrough=no src-address=192.168.9.0/24
add action=accept chain=prerouting comment=“” disabled=yes dst-address-list=
192.168.9.0/24 in-interface=Wireless_Main

/ip firewall nat
add action=masquerade chain=srcnat comment=“” disabled=no out-interface=
DSL_Feed

/ip route
add check-gateway=ping comment=“” disabled=no distance=1 dst-address=
0.0.0.0/0 gateway=192.168.2.138 routing-mark=MarkB scope=30 target-scope=
10
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=192.168.2.252 scope=
30 target-scope=10