slimp
(usa Slackware)
Enviado em 28/10/2008 - 18:05h
de ser por eu ser novato em linux por isso deve dar tanto problema assim!!!
kkkkkkkkkkkkkkkkkkk
mas vamos la to usando um squid 2.6
minhas regras de firewall ainda estão basica
#!/bin/bash
case "$1" in
start)
echo "----------- Iniciando Firewall ------------"
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t filter -F
iptables -t nat -F
iptables -A FORWARD -p icmp -j DROP
iptables -t nat -A PREROUTING -p tcp -s 192.168.1.0/25 --dport 80 -j REDIRECT --to-port 3128
iptables -t nat -A POSTROUTING -j MASQUERADE
iptables -t filter -L
echo "----------- Tablela nat ------------------"
iptables -t nat -L
;;
stop)
echo "----------- Parando Firewall --------------"
iptables -t filter -F
iptables -t nat -F
mas pretendo melhorar elas!!!
se puderem me ajudar agradeço!!!