Skip to content

Instantly share code, notes, and snippets.

@l4sh
Created March 18, 2018 19:14
Show Gist options
  • Save l4sh/b58915ba3745103c69b896f132186b2f to your computer and use it in GitHub Desktop.
Save l4sh/b58915ba3745103c69b896f132186b2f to your computer and use it in GitHub Desktop.
iptables rules for redirecting traffic from router to squid server
INTERNAL_NETWORK=192.168.1.0/24
LAN=br-lan
LANIP=192.168.1.1
SQUIDIP=192.168.1.10
SQUIDPORT=3128
iptables -t nat -A prerouting_rule -i $LAN ! -s $SQUIDIP -p tcp --dport 80 -j DNAT --to $SQUIDIP:$SQUIDPORT
iptables -t nat -A postrouting_rule -o $LAN -s $INTERNAL_NETWORK -d $SQUIDIP -j SNAT --to $LANIP
iptables -A forwarding_rule -s $INTERNAL_NETWORK -d $SQUIDIP -i $LAN -o $LAN -p tcp --dport $SQUIDPORT -j ACCEPT
INTERNAL_NETWORK=192.168.1.0/24 ;LAN=br-lan ;LANIP=192.168.1.1 ;SQUIDIP=192.168.1.10 ;SQUIDPORT=3128 ;iptables -t nat -A prerouting_rule -i $LAN ! -s $SQUIDIP -p tcp --dport 80 -j DNAT --to $SQUIDIP:$SQUIDPORT ;iptables -t nat -A postrouting_rule -o $LAN -s $INTERNAL_NETWORK -d $SQUIDIP -j SNAT --to $LANIP ;iptables -A forwarding_rule -s $INTERNAL_NETWORK -d $SQUIDIP -i $LAN -o $LAN -p tcp --dport $SQUIDPORT -j ACCEPT
INTERNAL_NETWORK=192.168.1.0/24 ;LAN=br-lan ;LANIP=192.168.1.0/24 ;SQUIDIP=192.168.1.10 ;SQUIDPORT=3128 ;iptables -t nat -A prerouting_rule -i $LAN !-s $SQUIDIP -p tcp --dport 80 -j DNAT --to $SQUIDIP:$SQUIDPORT ;iptables -t nat -A postrouting_rule -o $LAN -s $INTERNAL_NETWORK -d $SQUIDIP -j SNAT --to $LANIP ;iptables -A forwarding_rule -s $INTERNAL_NETWORK -d $SQUIDIP -i $LAN -o $LAN -p tcp --dport $SQUIDPORT -j ACCEPT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment