Can I map 146.112.61.106 IP address to my 127.0.0.1 adress ?
so when I type 146.112.61.106 I got redirected to 127.0.0.1 ? (some netsh command maybe ?)
Can I map 146.112.61.106 IP address to my 127.0.0.1 adress ?
so when I type 146.112.61.106 I got redirected to 127.0.0.1 ? (some netsh command maybe ?)
As you spoke about netsh, I assume that you are working on Windows.
netsh int ip sh int
and press "Enter".netsh int ip add addr <IDX> <IP>/32 st=ac sk=tr
and press "Enter". In my case, with IDX=1 I exec: netsh int ip add addr 1 146.112.61.106/32 st=ac sk=tr
.To delete the rule use the command: exec netsh int ip delete addr <IDX> <IP>
.
tracert -d 146.112.61.106
.
You must see just one hop.