modification

This commit is contained in:
root 2023-02-07 17:02:52 +01:00
parent 81478df279
commit 272ef9ac07

View File

@ -33,13 +33,12 @@ table filter {
# we provide DNS and SMTP services for the internal net
interface $DEV_PRIVATE saddr $NET_PRIVATE {
proto (udp tcp) dport domain ACCEPT;
proto udp dport bootps ACCEPT;
proto udp dport bootps ACCEPT;
}
# interface réseau
# interface réseau
interface $DEV_WORLD {
}
# the rest is dropped by the above policy
@ -47,8 +46,8 @@ table filter {
# outgoing connections are not limited
chain OUTPUT {policy ACCEPT;
}
}#FIN OUTPUT
}#FIN OUTPUT
chain FORWARD {
policy ACCEPT;
@ -56,9 +55,9 @@ table filter {
# respond to ping
proto icmp icmp-type echo-request ACCEPT;
# disallow ssh
saddr proto tcp dport ssh DROP;
saddr($DEV_VPN) proto tcp dport ssh DROP;
# allow ssh
daddr proto tcp dport ssh ACCEPT;
daddr($DEV_VPN) proto tcp dport ssh ACCEPT;
}
# connection tracking