Hi,
I want to map a local ip address (192.168.88.2) to a public address (http://www.google.com). So whenever I enter 192.168.2 it will go to http://www.google.com. How do I do this? Is it possible to do this?
Hi,
I want to map a local ip address (192.168.88.2) to a public address (http://www.google.com). So whenever I enter 192.168.2 it will go to http://www.google.com. How do I do this? Is it possible to do this?
Are you sure you want to write 192.168.2 and see Google’s webpage? How it could be useful if it was possible?
Yes. I want redirect all traffic from an ip address to a web address.
In my situation, I want my Mikrotik router to talk to a radius server with no static ip. Radius client only can have a static ip address of the radius server. It’s a problem because my radius server’s ip address will change. So I thought if I have a dummy static local ip address, it can point to the radius server web address.
You can create a L2TP ot PPTP connection between your Radius (ptp Client) and your Mikrotik device(Ptp Server). If the radius server IP changes, the PtP connection reconnects and you will still have the same Ptp IP.
I am not not familiar with L2TP. Is this setup what you referring?
http://wiki.mikrotik.com/wiki/Manual:Interface/L2TP
This will work for me. But it will take some time for me to learn how to implement this.
Thanks
Yes; on your Mikrotik device put something like
/interface l2tp-server server
set default-profile=default enabled=yes
/ppp secret
add local-address=10.200.4.2 name=l2tp_radius password=123456etc remote-address=10.200.4.1 service=l2tp
Then on the radius side, use a pptp/l2tp client to connect to your mikrotik. Once connexion is established, your radius server can be accessed as 10.200.4.1, whatever is his real IP.