diff --git a/config/examples/9.transparent_proxy_without_dnsmasq/README.md b/config/examples/9.transparent_proxy_without_dnsmasq/README.md index 5186b98..4d6bd44 100644 --- a/config/examples/9.transparent_proxy_without_dnsmasq/README.md +++ b/config/examples/9.transparent_proxy_without_dnsmasq/README.md @@ -10,6 +10,11 @@ PC Client -> Gateway with glider running(linux box) -> Upstream Forwarders -> In so you don't need any dns server in your network. +#### Create a ipset manually +```bash +ipset create glider hash:net +``` + #### Glider Configuration ##### glider.conf ```bash diff --git a/config/glider.conf.example b/config/glider.conf.example index fb70285..fb4fae4 100644 --- a/config/glider.conf.example +++ b/config/glider.conf.example @@ -49,6 +49,12 @@ listen=socks5://:1080 # listen on 1082 as a tcp tunnel, all requests to :1082 will be forward to 1.1.1.1:80 # listen=tcptun://:1082=1.1.1.1:80 +# listen on 1083 as a udp tunnel, all requests to :1083 will be forward to 1.1.1.1:53 +# listen=udptun://:1083=1.1.1.1:53 + +# listen on 1084 as a udp over tcp tunnel, all requests to :1084 will be forward to 1.1.1.1:53 +# listen=uottun://:1084=1.1.1.1:53 + # a dnstun is a special dns forwarder server with a fixed remote dns # listen on udp port 5353, act as a local dns server, # forward all requests to 8.8.8.8:53 via tcp protocol