I have a block of 5 Static IP Address from My ISP.
I want to Configure the router to forward each IP address to a different internal local IP Address
I purchased a BR750GR-3 because I was advised that it could do this.
I am a compete novice to this router and don’t even know where to look or what to configure.
I have configured many different types of single IP home routers.
I do know how to configure the router for a single IP Static IP Address.
And I know how to configure the local gateway address, DNS, mask, …
I have looked the NAT forwarding but haven’t resolved how to do it yet.
But I have not found a way to assign multiple addresses to ether1.
Yay! Welcome to MikroTik. If you have 5 public IPs you’ll want to assign 1 of them to the WAN interface (ether1). You then can create NAT rules to map the other 4 IPs to devices on your LAN. You can do this with a more generic 1:1 relationship or you can do it statefully for specific services. An example might be a web-server on port 80 only. You have to apply a firewall rule in the forward chain as well.
Lastly, you’ll need to turn proxy-arp on for your WAN (ether1) interface or for me, my preferred solution is to add each IP address to the WAN (ether1) with the /ip address command. This than also triggers RouterOS to reply to ARPs for that IP without having proxy ARP turned on which is generally considered a no-no from a security standpoint.
So this is my config
but it doesn’t work
the packet sniffer shows that the requests were received and forwarded, i think
but the server never received the packet
what did I do wrong?
thanks,
Doug
[admin@doughale.info] /ip address> print
Flags: X - disabled, I - invalid, D - dynamic
There is usually no need to do NAT for this.
I presume you get a /29 block from your provider. You can just put this on the LAN interface and everything will be routed,
Normally when you get “5 IP addresses” from an ISP you actually get a /29 where there is 1 router address.
In that case you can just put the /29 (and the router address) on an internal interface, and have your systems on the network using the external address.
With a random collection of addresses it is not so straightforward. Then, maybe the NAT kludge is best.