Version: v7.16.2
Quick Set: Home AP Dual
For a number of users like me to know the basics of WinBox Quick Set button. Normally, when a new MikroTik router (for my case hAP ac^2) was received, we generally hooked it up to the Internet via the default mode "Automatic" mode. The router would get the IP automatically from a home public Internet router. In general the router would be like that for a number of years without changing another things. The following table show the settings given in hAP ac^2 and connected to the home router.
Table 1: Quick Set: Dynamic Public IP Address
Code: Select all
Static= Automatic=yes PPPoE=
IP Address=192.168.55.37
Netmask=255.245.255.0 (/24)
Gateway=192.168.55.1
Table 2: Quick Set: Static Public IP Address
Code: Select all
Static=yes Automatic= PPPoE=
IP Address=192.168.55.37 --> 192.168.55.21
Netmask=255.245.255.0 (/24)
Gateway= 0.0.0.0 --> 192.168.55.1
DNS Servers=<blank> -->192.168.55.1
Table 3: Rules settings for Table 1
Code: Select all
### Address List ###
Address=192.168.10.1/24 Network=192.168.10.0 Interface=bridge
D Address=192.168.55.37/24 Network=192.168.55.0 Interface=ether1
### Route List ###
DAd Dst. Address=0.0.0.0/0 Gateway=192.168.55.1 Distance=1 Routing Table=mian
DAC Dst. Address=192.168.10.0/24 Gateway=bridge Distance=0 Routing Table=mian
DAC Dst. Address=192.168.55.0/24 Gateway=ether1 Distance=0 Routing Table=mian
### DNS Setting ###
Dynamic servers=192.168.55.1,<IP Server 1>,<IP Server 2>
Code: Select all
### Address List ###
Address=192.168.10.1/24 Network=192.168.10.0 Interface=bridge
### Route List ###
USHI Dst. Address=0.0.0.0/0 Gateway=192.168.55.1 Distance=1 Routing Table=mian
DAC Dst. Address=192.168.10.0/24 Gateway=bridge Distance=0 Routing Table=mian
### DNS Setting ###
Servers=192.168.55.1
Dynamic servers=<Empty>
Code: Select all
/ip address add address=192.168.55.21/24 interface=ether1
Table 5: New rules for static mode
Code: Select all
### Address List ###
Address=192.168.10.1/24 Network=192.168.10.0 Interface=bridge
Address=192.168.55.21/24 Network=192.168.55.0 Interface=ether1
### Route List ###
AS Dst. Address=0.0.0.0/0 Gateway=192.168.55.1 Distance=1 Routing Table=mian
DAC Dst. Address=192.168.10.0/24 Gateway=bridge Distance=0 Routing Table=mian
DAC Dst. Address=192.168.55.0/24 Gateway=ether1 Distance=0 Routing Table=mian
### DNS Setting ###
Servers=192.168.55.1
Dynamic servers=<Empty>
MikroTik Engineers, please examine the code correctly amongst Static, Automatic, and PPPoE as I found additional or more rules added to tables.