Skip to content

Commit

Permalink
Merge branch 'master' of github.com:capnspacehook/egress-eddie
Browse files Browse the repository at this point in the history
  • Loading branch information
capnspacehook committed Jan 19, 2022
2 parents 1c5030a + 62fa825 commit a4c4e78
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ inboundDNSQueue = 1
ipv6 = false

[[filters]]
name = "example"
dnsQueue = 1000
trafficQueue = 1001
ipv6 = false
Expand All @@ -156,7 +157,8 @@ filtering `IPv4` traffic. If you are filtering `IPv6` traffic and using ip6table
that to `true`.

Next we create a filter, setting the nfqueue numbers used for DNS requests and traffic
that we want filtered.
that we want filtered. The `name` of each filter is simply an identifier that will allow
you to more easily read or search through Egress Eddie's logs.

`allowAnswersFor` controls how long IPs and hostnames returned
from DNS responses are allowed for. The syntax for specifying a duration is the
Expand Down Expand Up @@ -212,6 +214,7 @@ ipv6 = false

# filter apt updating
[[filters]]
name = "apt updating"
dnsQueue = 1000
trafficQueue = 1001
ipv6 = false
Expand All @@ -223,6 +226,7 @@ allowedHostnames = [

# filter go module traffic
[[filters]]
name = "go modules"
dnsQueue = 2000
trafficQueue = 2001
ipv6 = false
Expand All @@ -234,6 +238,7 @@ allowedHostnames = [

# allow all root DNS requests
[[filters]]
name = "root allow all"
dnsQueue = 3000
ipv6 = false
allowAllHostnames = true
Expand Down

0 comments on commit a4c4e78

Please sign in to comment.