The following is how to create a bridge, add an untagged ethernet port, setup the DHCP server, and enable DNS. NOTE this does not include the firewall rules REQUIRED to protect your MikroTik from DNS attacks.
- Create the LAN Bridge.
- /interface bridge add name=LAN
- Create the IP Pool for DHCP.
- /ip pool add name=dhcp_pool1 ranges=192.168.60.2-192.168.60.254
- Create the DHCP Server on the LAN Bridge.
- /ip dhcp-server add address-pool=dhcp_pool1 interface=LAN name=dhcp1
- Add the Interface to the LAN Bridge
- /interface bridge port add bridge=LAN interface=ether2
- Create the IP used on the LAN Bridge
- /ip address add address=192.168.60.1/24 interface=LAN network=192.168.60.0
- Create the DHCP Network and DNS server used for clients.
- /ip dhcp-server network add address=192.168.60.0/24 dns-server=8.8.8.8 gateway=192.168.60.1