How to assign public ip to client without NAT and local lan IP

HI All,

i have a wan connection with 6 fixed public ip address 1.1.1.1 to 1.1.1.6 / 255.255.255.248. how can i configure in mikrotik to assign public ip in client pc without NAT /Bridge.

any one can help?

thanks
Max

Maybe you can use bridge on wan side with eoip tunnels inside your network to bring interface with external ip to the client’s device.

You could try routing. If all hosts are connected to the same port on the Mikrotik router (through a switch for instance) you would add an entry for your public IP addresses to your route table (IP->Routes) and set the gateway to the port that connects to the hosts.

Using your example:
Address range: 1.1.1.1 - 1.1.1.6
Subnet ID/Network Address: 1.1.1.0
Broadcast Address: 1.1.1.7

Using the CLI, you could add an entry in your routing table using the following command using ether1 as the port you connect your hosts to:

/ip route dst-address=1.1.1.0/29 gateway=ether1

You would then need to assign IP addresses to your hosts. You could use DHCP or static assignment, whatever seems most reasonable.