hello, i have made a web server and in Nat Firewall i have redirect ip client to this ip web server, but what is the different of the Protocol..for example what happen when i chose
1(icmp),2 igmp,6(tcp),17 udp etc..etc, dont forget something, im wanna redirect this client, and stop the internet working, No MSN , No Web Browser, Notething..
I don't understand what you are wanting to do. If you want to redirect a customer's web requests to another host, you can do (for example):
/ip firewall nat
add chain=dstnat src-address=x.x.x.x protocol=tcp dst-port=80 action=dst-nat to-addresses=y.y.y.y to-ports=80
In this example, any web requests from x.x.x.x will be sent to y.y.y.y.
If you are looking for a tutorial on how to do firewall, then I'd recommend attending a training class that covers firewalling (such as mine for example). Perhaps you can look at something like
http://www.learntcpip.com/ for further understanding of what tcp vs udp vs icmp and so forth are all about. Perhaps I'm just not understanding your question.