@gigabyte091
The WaP Ax is intended mainly for:
- countryside getaway
- rural gas station
- bus stop
where a router/Ap would make sense.
@RonK
You should have (only snippets of the relevant parts):
/interface bridge port
add bridge=bridge comment=myconf interface ether1
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=wifi1
add bridge=bridge comment=defconf interface=wifi2
/interface list member
add comment=defconf interface=bridge list=LAN
[add comment=defconf interface=ether1 list=WAN
/ip dhcp-client
'# Interface not active
add comment=defconf interface=ether1
You can then remove the whole
/ip firewall filter
and
/ip firewall nat
sections
and all the
/ipv6
ones
Now the IP address DNS and DHCP server, relevant parts:
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip address
add address=192.168.88.1/24 comment=defconf interface=bridge network=
192.168.88.0
/ip dhcp-server
add address-pool=default-dhcp interface=bridge name=defconf
/ip dhcp-server network
add address=192.168.88.0/24 comment=defconf dns-server=192.168.88.1 gateway=
192.168.88.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 comment=defconf name=router.lan type=A
Right now the Wap Ax has the (default mikrotik) IP 192.168.88.1, serves via DHCP addresses in the range 192.168.88.10-192.168.88.254, with gateway and DNS set as "itself".
You want instead to use the DHCP server on your main router, and as well the DNS should be provided by the main router.
So, remove :
/ip dhcp-server
/ip dhcp-server network
/ip pool
and:
/ip dns
/ip dns static
If you use Winbox, you can continue connecting even without assigning an IP to the Wap Ax (bridge), but for Webfig you need to assign one, the easiest would be a static IP address in your main network but outside the DHCP assigned range, only as an example, if your main router is using 192.168.1.1, and giving addresses 192.168.1.10-192.168.1.254, give to the Wap Ax a static IP address of 192.168.1.9:
/ip address
add address=192.168.1.9/24 comment=myconf interface=bridge network=
192.168.1.0