Hi,
Please help me set up my home network.
I have a:
- Fiber optic modem router (from ISP)(wifi disabled)
- Mikrotik hex S (rb760iGS)
- 2 x 5-port switch (to wired devices)
- 3 x Tenda nova mesh wifi nodes (each one wired to the switch ports)
My IP setup so far:
- Fiber optic modem router 192.168.1.1 - DHCP server 192.168.1.3 - 192.168.1.63
- Mikrotik hex S (rb760iGS) 192.168.1.2 - mode ROUTER - DHCP server OFF - NAT OFF
- 2 x 5-port switch (to wired devices)
- 3 x Tenda nova mesh wifi nodes (each one wired to the switch ports) - set as BRIDGE
My goal is:
I want to make a hotspot system at my home, so that users who wishes to connect to the wifi would need to login through mikrotik.
How do I do this?
Is my initial setup correct?
I seems to have some trouble connecting the mesh wifi nodes to each other, this does not happen before when I just use the switches in my system. It seems like their access is being blocked by mikrotik somehow.
# apr/26/2020 15:54:05 by RouterOS 6.46.5
# software id = E0QH-G6RQ
#
# model = RB760iGS
# serial number = A36A0BFEA28A
/interface bridge
add admin-mac=C4:AD:34:4E:4B:C1 auto-mac=no comment=defconf name=bridge
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=default-dhcp interface=bridge name=defconf
/interface bridge port
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=ether3
add bridge=bridge comment=defconf interface=ether4
add bridge=bridge comment=defconf interface=ether5
add bridge=bridge comment=defconf interface=sfp1
add bridge=bridge disabled=yes interface=ether1
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface list member
add comment=defconf interface=ether1 list=WAN
add interface=ether2 list=LAN
add interface=ether3 list=LAN
add interface=ether4 list=LAN
add interface=ether5 list=LAN
add interface=sfp1 list=LAN
add interface=bridge list=LAN
/ip address
add address=192.168.1.2/24 comment=defconf interface=ether2 network=\
192.168.1.0
add address=192.168.1.2/24 interface=ether1 network=192.168.1.0
/ip dhcp-client
add comment=defconf interface=ether1
/ip dhcp-server network
add address=192.168.1.0/24 comment=defconf gateway=192.168.1.62 netmask=24
/ip dns
set allow-remote-requests=yes servers=45.126.80.8,45.126.80.88
/ip dns static
add address=192.168.1.2 comment=defconf name=router.lan
/ip firewall filter
add action=accept chain=input comment=\
"defconf: accept established,related,untracked" connection-state=\
established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
invalid
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment=\
"defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=drop chain=input comment="defconf: drop all not coming from LAN" \
in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" \
ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" \
ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
connection-state=established,related
add action=accept chain=forward comment=\
"defconf: accept established,related, untracked" connection-state=\
established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" \
connection-state=invalid
add action=drop chain=forward comment=\
"defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat \
connection-state=new in-interface-list=WAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" disabled=yes \
ipsec-policy=out,none out-interface-list=WAN
/ip route
add distance=1 gateway=192.168.1.1
/system clock
set time-zone-name=Asia/Jakarta
/tool mac-server
set allowed-interface-list=LAN
/tool mac-server mac-winbox
set allowed-interface-list=LAN
I’ve finally managed to setup a hotspot network at my home, with my tenda nova mesh wifi.
However a new problem emerged now, which I will ask in another thread so as not to blur the topic.
Wifi signal dropping every few minutes (and then got back up). I don’t know what could have caused this.
When I set my mesh access point as ‘bridge’, interface always link down link up.
What could have caused this?