I am sorry to ask such a simple question but after I read the document on MikroTik’s web site, I really don’t know how to do it.
IMO, those documents maybe good for expert but really too hard for beginners like me.
I think more examples for simple setup should be included.
My Existing Setup
RB133 (2.9.50 L4)
ethernet 1 - “WAN” - (PPPoE)
ethernet 2 - “LAN” - (IP : 192.168.1.1/24 with dhcp server (192.168.1.101-192.168.1.120))
ethernet 3 - Not Used
Simple NAT rule (Masquerade) were set to let all PC connected to “LAN” can connect internet.
Everything is fine and I am really happy with it until I got a wireless lan card.
Bought a R52 and installed but I don’t know how to set it up as a wireless AP to let all my wireless client to
a) join the “LAN” segment and get IP from dhcp server
b) can connected to internet and other PCs that connected “LAN”
Please Help!
I tried to set the new wireless lan card with IP 192.168.1.201, my wireless client can connect to R52 and get an IP from dhcp but that cannot connected to internet.
Please Help!
Part of my setup file
/ ip address
add address=192.168.1.1/24 network=192.168.1.0 broadcast=192.168.1.255 \
interface=LAN comment="LAN" disabled=no
add address=192.168.1.201/24 network=192.168.1.0 broadcast=192.168.1.255 \
interface=WLAN comment="WLAN" disabled=no
/ ip firewall nat
add chain=srcnat action=masquerade out-interface=WAN1 comment="Outgoing NAT" \
disabled=no
/ ip dhcp-server
add name="LAN_DHCP" interface=LAN lease-time=1d address-pool=LAN_DHCP_POOL \
bootp-support=static authoritative=after-2sec-delay disabled=no
add name="WLAN_DHCP" interface=WLAN lease-time=1d address-pool=LAN_DHCP_POOL \
bootp-support=static authoritative=after-2sec-delay disabled=no