Connect your machine to port 1 on the Mikrotik hEX PoE RB960PGS (after the reset, this port will have IPv4 address 192.168.88.2 with netmask 255.255.255.0)
Ensure your local machine to IPv4 address 192.168.88.2 with netmask 255.255.255.0 (otherwise WinBox might not see the router, not even in discovery mode):
Have WinBox auto discover it:
Connect with user admin and no password:
Configure your Mikrotik hEX PoE RB960PGS as router or switch
For switch, I prefer a setting like this (the bold portions are different from the default configuration):
Cook-book recipe by @fbuster is good for ROS version<6.41. For newer version, the recipe would be:
/interface bridge
add name=bridge
/interface bridge port
add bridge=bridge interface=ether1
add bridge=bridge interface=ether2
add bridge=bridge interface=ether3
add bridge=bridge interface=ether4
add bridge=bridge interface=ether5
# optionally: add bridge=bridge interface=wlan1
# etc.
#
# For static IP address:
/ip address
add address=192.168.1.2/24 interface=bridge network=192.168.1.0
# for internet access - ROS updates etc.
/ip route
add gateway=192.168.1.1
/ip dns
set servers=192.168.1.1 # or some other DNS server
#
# To run DHCP client, set thus instead:
/ip dhcp-client
add interface=bridge
If device is used as router (as in your linked documentation), ether1 is not in switch (which in Mikrotik is the same as bridge) because it is used as interface to another devices/networks. If device is used as switch only (as OP), ether1 can be included in switch or left alone.
--jeroen
Embedded gist:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Leave a comment