summaryrefslogtreecommitdiff
path: root/hosts/vidhar/ruleset.nft
blob: ae91af00f698a7c90cbff4d7884847bb87a70bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
table inet filter {
  chain forward {
    type filter hook forward priority filter
    policy drop


    iifname eno1 accept

    ct state {established, related} accept

    meta l4proto ipv6-icmp accept
    meta l4proto icmp accept
    meta l4proto igmp accept


    log prefix "drop forward:"
    counter
  }

  chain input {
    type filter hook input priority filter
    policy drop


    iifname lo accept
    iif != lo ip daddr 127.0.0.1/8 counter drop
    iif != lo ip6 daddr ::1/128 counter drop

    ct state {established, related} accept

    tcp dport 22 accept
    udp dport 51820 accept
    udp dport 60000-61000 accept

    meta l4proto ipv6-icmp accept
    meta l4proto icmp accept
    meta l4proto igmp accept

    log prefix "drop input:"
    counter
  }

  chain output {
    type filter hook output priority filter
    policy accept

    counter
  }
}

table ip nat {
  chain postrouting {
    type nat hook postrouting priority srcnat
    policy accept

    oifname dsl counter masquerade

    counter
  }
}

table inet mangle {
  chain postrouting {
    type filter hook postrouting priority mangle
    policy accept

    oifname dsl meta l4proto tcp tcp flags & (syn|rst) == syn counter tcp option maxseg size set rt mtu

    counter
  }
}