Bridge RouterBoard, using it as a switch

My knowledge of RouterOS is limited, so can someone please confirm that this configuration is good to use for a routerboard that i now just want to use as a switch. I will connect ether1 to my ISP where i get 5 external IP-addresses, the other ether port shall then give the inserted gear external IP’s.
Any changes i should make to the configuration for optimation?

RouterBOARD 962UiGS-5HacT2HnT
MikroTik RouterOS 6.41.2
/interface bridge
add admin-mac=64:D1:54:56:2F:E8 auto-mac=no comment=defconf igmp-snooping=yes
name=bridge1
/interface ethernet switch
set 0 name=MasterSwitch
/interface list
add name=WAN
add name=LAN
/ip ipsec proposal
set [ find default=yes ] auth-algorithms=sha512 enc-algorithms=
aes-256-cbc,aes-256-gcm
/snmp community
set [ find default=yes ] addresses=0.0.0.0/0
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=sfp1
/interface list member
add 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
/ip dns static
add address=192.168.10.3 name=router
/ip firewall filter
add action=accept chain=forward comment=“defconf: accept established,related”
connection-state=established,related
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www disabled=yes
set api disabled=yes
set api-ssl disabled=yes
/ip smb shares
set [ find default=yes ] directory=/pub
/ip upnp
set show-dummy-rule=no
/system clock
set time-zone-name=Europe/Stockholm
/system identity
set name=“RouterOS Bridge”
/system leds
set 0 leds=“” type=off
set 1 type=off
set 2 type=off
/system logging
set 0 disabled=yes
add disabled=yes topics=debug
/system routerboard settings
set boot-protocol=dhcp silent-boot=yes
/system scheduler
add interval=12h name=Update_RouterOS on-event=Auto_Update_RouterOS policy=
ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon
start-date=aug/13/2017 start-time=03:00:00
/system script
add name=Auto_Update_RouterOS owner=admin policy=
ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source=“/
system package update\r
\ncheck-for-updates once\r
\n:delay 1s;\r
\n:if ( [get status] = "New version is available") do={ install }”
/system watchdog
set automatic-supout=no no-ping-delay=0ms watchdog-timer=no

There isn’t much to do, just bridge everything together and that’s it.

You might want to add some other tweaks, e.g. if you’d give the router (now switch) public address for management (probably not), you’d want firewall to control access. Stuff like that. But it’s not important for your main goal.

Don’t forget to disable the DHCP server. No need for it if you’ve just got a bridge. Unless you want it of course. But from your explanation you probably don’t want it.