I need some help! I need to set up a mikrotik tomorrow with a static wan. The provider is some sort of satellite isp with these settings:
IPV4 address: 1.2.3.4
subnet: 255.255.255.252
default gateway: 1.2.3.3
dns servers: 5.6.7.8 & 5.6.7.9
Is this how I would do it? Is there anything I am missing? Thanks a lot!
/ip address
add address=1.2.3.4/30 interface=ether1-gateway
/ip dns
set servers=5.6.7.8,5.6.7.9 allow-remote-requests=yes
/ip route
add dst-address=0.0.0.0/0 gateway=1.2.3.3
/ip firewall nat
add action=masquerade chain=srcnat comment=”Masquerade” disabled=no out-interface=ether1-gateway