Quickset is only intended to be used from a blank router setup.
Setup it as how you think it should be for Internet router role, then open a new terminal and issue:
then post the output here (edit out public IPs network bit with letters).
some points to check:
You cannot bridge all ports, the WAN port should be unbridged. that could be the problem on your first try.
Other things being right, most probable cause for this (the router itself pings internet but the lan behind it doesn't) is NAT doing masquerade on the wrong interface, or the nat rule having other parameters wrong.
Thank you for the response and the suggestions. This evening when the office closes, I will try your suggestions. I'm leaning towards the bridge possibility you mentioned. Thank you!
I set it up and I noticed that under Routes, the route to 0.0.0.0 going through my Internet GW (1.1.1.2) is unreachable. I imagine this is the issue. To be safe, I spoofed the MAC address to match the Netgear device, just in case my ISP required a certain MAC (even though they told me they do not.)
Since I'm setting the Internet IP to static, why would it say, "add dhcp-options=hostname,clientid interface=ether1" in the config below? I would think it would either not be there at all.
Below is what I get, edited with my fictitious IP info I outlined earlier:
[admin@MikroTik] > /export hide-sensitive
# jan/02/1970 00:13:33 by RouterOS 6.34.3
# software id = A1FS-JK82
#
/interface bridge
add name=bridge1
/interface ethernet
set [ find default-name=ether1 ] mac-address=20:4E:7F:16:C8:F5
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
add bridge=bridge1 interface=ether9
add bridge=bridge1 interface=ether10
add bridge=bridge1 interface=ether11
add bridge=bridge1 interface=ether12
add bridge=bridge1 interface=ether13
/ip address
add address=1.1.1.1/30 interface=ether1 network=1.1.1.120
add address=192.168.1.1/24 interface=ether2 network=192.168.1.0
/ip dhcp-client
add dhcp-options=hostname,clientid interface=ether1
/ip dns
set servers=8.8.8.8,4.2.2.2,75.75.75.75
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
/ip route
add distance=1 gateway=1.1.1.2
Any help would be greatly appreciated!