Quick Set Bug v7.16.2
Posted: Thu Jan 09, 2025 7:56 am
MikroTik Engineers,
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
In some days I wanted to change the IP to a fixed and not allowing the dynamic public IP. Therefore I adjusted the Internet connection from "Automatic" mode to "Static" mode" as follows:
Table 2: Quick Set: Static Public IP Address
After the above settings were done, a system reboot was carried out. My PC was not able to connect the Internet. In order to find out what was wrong in the router, I checked rules as follows:
Table 3: Rules settings for Table 1
Table 4: Rules settings for Table 2
From the above Table 4, it showed rule was missing, which was compared with Table 3. So I added a rule below.
The modified rules were added in Table 5.
Table 5: New rules for static mode
The above rules in Table 5 worked correctly without any problems.
MikroTik Engineers, please examine the code correctly amongst Static, Automatic, and PPPoE as I found additional or more rules added to tables.
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.