Silly question?
Can anyone explain me whatis localnet, privatenet
because in one of the document they have given as
# cat /etc/networks
localnet 192.168.2.0
privatenet 10.0.0.0
## Authorizing Outbound traffic from anywhere to foreign network
/sbin/iptables --insert OUTPUT 1 --source 0.0.0.0/0.0.0.0 \
--destination privatenet/255.0.0.0 --jump ACCEPT \
--out-interface ppp0
I am getting confused at this point
is this privatenet is the remote machines ip
and localnet is intranet ip address
|