Created
March 18, 2018 19:14
-
-
Save l4sh/b58915ba3745103c69b896f132186b2f to your computer and use it in GitHub Desktop.
iptables rules for redirecting traffic from router to squid server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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