Ajout du fichier config DNS forwarding et de squid.conf

This commit is contained in:
yann.lereuille 2025-03-26 15:41:12 +01:00
parent 63f08bf8a6
commit ce37dc2ec9
2 changed files with 9166 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/bash
echo "1" > /proc/sys/net/ipv4/ip_forward
nft add table dnsfwd
nft add chain dnsfwd prerouting {type nat hook prerouting priority 0 \; }
nft add chain dnsfwd postrouting {type nat hook postrouting priority 0 \; }
nft add rule dnsfwd postrouting tcp dport 53 masquerade
nft add rule dnsfwd postrouting udp dport 53 masquerade
nft add rule dnsfwd prerouting tcp dport 53 masquerade
nft add rule dnsfwd prerouting udp dport 53 masquerade
nft add rule dnsfwd prerouting ct state established,related accept
nft add rule dnsfwd postrouting ct state established,related accept

9155
sisr1/tp05-proxy/squid.conf Normal file

File diff suppressed because it is too large Load Diff