Hello
I have problem with mikrotik configuration. My internet provider give me 5 Public IP adresses. I need to configure them in such a way that one of the services works on the first address and the second service on the next one.There are 3 vlans set up on the router at the moment. Both services run on the same port 443 on local addresses 192.168.2.225 and 192.168.2.226. I only have one cable connected from my internet provider. Will load balancing between individual pppoe clients be the solution to this problem? Is there any simpler solution to this problem?

General idea:
You have to assign both addresses to WAN interface and allow, if you can, service to be available for particular IP with filters.
Remeber that you need mangle incoming traffic according to “in interface”, to send it back the same interface.
If you have masquarade set then explicit source nat to proper IP has to be applied.
Can you give me some detailed example what it should look like?
I would search on the forum for multiwan threads etc..
In my limited knowledge set you probably need to use the first IP address for the router itself NAT etc…
The other IPs you can probably netmap to private IPs as you require.
→ netmap - creates a static 1:1 mapping of one set of IP addresses to another one. Often used to distribute public IP addresses to hosts on private networks
I did see a solution using sourcenat for servers… when the gateway is the same for all IPs.
add action=src-nat chain=srcnat out-interface=sfp1
src-address=192.168.200.64 to-addresses=PublicAddress.02
where .64 is the assigned IP to a server.