you can definitely do it
bcos of the posix compliance in linux it works better and faster than windows
you can configure your system as a router by doing the following things
routing between lan& wan ___ i mean natting
/etc/sysctl.conf
change the following value to one
net.ipv4.ip_forward = 0 <-> 1
write a simple snat rule using tcp wrappers i.e your iptables
iptables -t nat -A POSTROUTING -i <interface_internal_network> -s <ur_network/CIDR.no>
-j SNAT --to-source <ur_external_ipaddress>


Reply With Quote

Bookmarks