diff --git a/misc/config/example.yaml b/misc/config/example.yaml index 571e3d4..325a949 100644 --- a/misc/config/example.yaml +++ b/misc/config/example.yaml @@ -8,7 +8,7 @@ route-table: 300 # This means any traffic send to 127.0.0.1 and ::1 will be directly send # without influenced by the tproxy configuration. bypass: - - 127.0.0.1/8 + - 127.0.0.0/8 - ::1 tproxies: diff --git a/pkg/cgtproxy/config/config_test.go b/pkg/cgtproxy/config/config_test.go index f518c79..eabb6f3 100644 --- a/pkg/cgtproxy/config/config_test.go +++ b/pkg/cgtproxy/config/config_test.go @@ -43,6 +43,7 @@ var _ = Describe("Configuration", func() { Expect(err).To(BeNil()) }) }, + ContextTableEntry("../../../misc/config/example.yaml"), ContextTableEntry("../../../test/data/example_config.yaml"), )