Hello people,
I have the following configuration:
# jan/26/2016 09:11:19 by RouterOS 6.29.1
# software id = U7MF-PNSQ
#
/interface bridge
add name=LAN-WAN-bridge
add name=LAN-bridge
/interface ethernet
set [ find default-name=ether1 ] name=ether1-UPLINK
set [ find default-name=ether2 ] name=ether2-LAN
set [ find default-name=ether3 ] name=ether3-LAN
set [ find default-name=ether4 ] name=ether4-LAN
set [ find default-name=ether5 ] name=ether5-LAN
set [ find default-name=ether6 ] name=ether6-LAN
set [ find default-name=ether7 ] name=ether7-LAN
set [ find default-name=ether8 ] name=ether8-LAN
set [ find default-name=ether9 ] name=ether9-LAN
set [ find default-name=ether10 ] name=ether10-LAN-WAN
set [ find default-name=ether11 ] name=ether11-LAN-WAN
set [ find default-name=ether12 ] name=ether12-LAN-WAN
/ip firewall layer7-protocol
add name=Facebook regexp="^.+(facebook.com).*\$"
/ip pool
add name=lan ranges=192.168.1.10-192.168.1.254
add name=lan-wan ranges=a.b.c.90-a.b.c.94
/ip dhcp-server
add address-pool=lan bootp-lease-time=lease-time bootp-support=dynamic \
disabled=no interface=LAN-bridge name=lan
add address-pool=lan-wan bootp-lease-time=lease-time bootp-support=dynamic \
disabled=no interface=LAN-WAN-bridge name=lan-wan
/port
set 0 name=serial0
set 1 name=serial1
/ppp profile
set [ find name=default ] name=default
set [ find name=default-encryption ] name=default-encryption
/interface bridge port
add bridge=LAN-bridge interface=ether2-LAN
add bridge=LAN-bridge interface=ether3-LAN
add bridge=LAN-bridge interface=ether4-LAN
add bridge=LAN-bridge interface=ether5-LAN
add bridge=LAN-bridge interface=ether6-LAN
add bridge=LAN-bridge interface=ether7-LAN
add bridge=LAN-WAN-bridge interface=ether10-LAN-WAN
add bridge=LAN-WAN-bridge interface=ether11-LAN-WAN
add bridge=LAN-WAN-bridge interface=ether12-LAN-WAN
/ip address
add address=x.y.z.21/24 comment="default configuration" interface=\
ether1-UPLINK network=x.y.z.0
add address=192.168.1.1/24 interface=LAN-bridge network=192.168.1.0
add address=a.b.c.89/29 interface=LAN-WAN-bridge network=a.b.c.88
/ip dhcp-server network
add address=a.b.c.88/29 dns-server=8.8.8.8,8.8.4.4 gateway=a.b.c.89 \
netmask=29
add address=192.168.1.0/24 dns-server=8.8.8.8,8.8.4.4 gateway=192.168.1.1 \
netmask=24
/ip dns
set servers=8.8.8.8,8.8.4.4
/ip firewall filter
add chain=forward comment="Internal - allow" connection-state=established
add chain=forward comment="Internal - allow" connection-state=related
add chain=input comment="default configuration" protocol=icmp
add chain=forward dst-address=a.b.c.88/29 protocol=icmp src-address=\
0.0.0.0/0
add chain=input dst-address=a.b.c.88/29 protocol=tcp src-address=\
0.0.0.0/0
add chain=forward dst-address=a.b.c.88/29 protocol=tcp src-address=\
0.0.0.0/0
add chain=output protocol=tcp src-address=a.b.c.88/29
/ip firewall mangle
add action=passthrough chain=prerouting dst-address=a.b.c.88/29
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1-UPLINK src-address=\
!a.b.c.88/29
/ip route
add distance=1 gateway=ether1-UPLINK
add distance=1 dst-address=a.b.c.88/29 gateway=LAN-WAN-bridge
/ip route rule
add dst-address=0.0.0.0/0 interface=ether1-UPLINK routing-mark=main \
src-address=a.b.c.88/29 table=main
add dst-address=a.b.c.88/29 interface=LAN-WAN-bridge routing-mark=main \
src-address=0.0.0.0/0 table=main
/system clock
set time-zone-name=Europe/Bucharest
/system routerboard settings
set cpu-frequency=1200MHz memory-frequency=1066DDR protected-routerboot=\
disabled
/tool romon port
add disabled=no
I have a public subnet a.b.c.88/29 and I connect through x.y.z.21.
I can access the internet from both public subnet and private subnet. I can ping all the gateways from outside.
The problems are the following:
- I can’t access a.b.c.90-a.b.c.94
- from the same LAN I can ping the gateway
- I can’t ping other clients(I can’t even ping my client’s IP from router - same interface)
- ARP ping is working[/list]
- arp -a shows only local gateway(bridge’s gateway) - tested on ubuntu
- IP is shown in “IP > ARP”
P.S. The router has RouterOS 6.29.1
Can help me in solving this problem? I have already googled for hours but no relevant results were found.
Cheers.