Hello everyone,
I'm using exclusively Mikrotik for all my client, as an endpoint ISP I have all the option I need on Mikrotik Router. While I often use Chateau LTE6 which is all-in-one LTE+ethernet sometimes I need to use other LTE product like SXT/ATL/wAP.
And as my reseller had issue with delivery, I bought 3 wAP ac LTE6 kit who is named RBwAPGR-5HacD2HnD instead of router I already used.
I kindly copy-this pasta-that my template, the lte session on my custom APN work, I see ping between my 2 private IP with my backbone. Then I decide to SRC-NAT with my IPv4 public address. As an ISP I provide internet... And I save the client public IP Address like that.
My configuration is like :
/interface bridge
add comment=defconf name=bridge port-cost-mode=short protocol-mode=none
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface lte apn
set [ find default=yes ] apn=FQDN.PRIVATE authentication=pap ip-type=ipv4 use-network-apn=no user=Valid_UserName
/interface lte
set [ find default-name=lte1 ] allow-roaming=yes apn-profiles=APN1 band=""
/ip pool
add name=dhcp_pool0 ranges=192.168.1.20-192.168.1.120
/interface bridge port
add bridge=bridge comment=defconf interface=ether1 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=ether2 internal-path-cost=10 path-cost=10
/ipv6 settings
set disable-ipv6=yes forward=no max-neighbor-entries=8192
/interface list member
add comment=defconf interface=bridge list=LAN
add interface=lte1 list=WAN
/ip address
add address=192.168.1.254/24 interface=bridge network=192.168.1.0
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=yes interface=bridge name=dhcp1
/ip dhcp-server network
add address=192.168.1.0/24 dns-server=8.8.8.8,1.1.1.1 gateway=192.168.1.1
/ip dns
set servers=8.8.8.8,1.1.1.1
/ip firewall address-list
#Some address list for my rules
/ip firewall filter
add action=accept chain=input comment=AC dst-port=161 protocol=udp src-address-list=XXX
add action=accept chain=input dst-port=51022 protocol=tcp src-address-list=XXX
add action=accept chain=input dst-port=51021-51023 protocol=tcp src-address-list=XXX
add action=accept chain=input dst-port=51021-51023 protocol=tcp src-address-list=XXX
add action=accept chain=forward out-interface-list=LAN
add action=accept chain=forward in-interface-list=LAN out-interface-list=WAN
add action=accept chain=input comment="defconf: accept established,related,untracked" connection-state=established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=invalid
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment="defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" connection-state=established,related hw-offload=yes
add action=drop chain=input comment="defconf: drop all not coming from LAN" in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" ipsec-policy=out,ipsec
add action=accept chain=forward comment="defconf: accept established,related, untracked" connection-state=established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" connection-state=invalid
add action=drop chain=forward comment="defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat connection-state=new in-interface-list=WAN
/ip firewall nat
add action=src-nat chain=srcnat out-interface-list=WAN to-addresses=PUBLIC_IP_ADDRESS
/ip firewall service-port
set sip disabled=yes
And as long as my /ip/firewall/nat for the output has the action "SRC-NAT" I never see the packet reach my backbone. First I believed I missed something on my configuration on the endpoint, I check my backbone. I changed 3 times my SIM card, I changed the router, still the same issue with the same configuration.
So i decided to use another product, with the same configuration... same SIM card... and what a suprise, it work. With action src-nat my router can his packet out and he is able to talk with internet.
I'm sure that those product have an issue, at least for my usage which worked initially. And I did open a ticket (SUP-219238), with supout.rif, print screen, conf.rsc... but support told me I must have a configuration issue. Not software/hardware... How do I open my ticket with element that make Mikrotik happy and make them searching on this issue ?
Thank you, regards,
Nathan