Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Paxxs/traefik-get-real-ip
traefik get the real IP from the X-Forwarded-For or CDN specified header field.
https://github.com/Paxxs/traefik-get-real-ip
traefik traefik-plugin
Last synced: 10 days ago
JSON representation
traefik get the real IP from the X-Forwarded-For or CDN specified header field.
- Host: GitHub
- URL: https://github.com/Paxxs/traefik-get-real-ip
- Owner: Paxxs
- Created: 2022-02-21T08:06:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-16T14:14:58.000Z (over 1 year ago)
- Last Synced: 2024-08-01T12:16:47.430Z (3 months ago)
- Topics: traefik, traefik-plugin
- Language: Go
- Homepage:
- Size: 104 KB
- Stars: 58
- Watchers: 2
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Traefik Get Real IP address
When traefik is deployed behind multiple load balancers, this plugin can be used to detect different load balancers and extract the real IP from different header fields, then output the value to the `x-real-ip` header.
This plugin can prevent IP spoofing by checking if the values form the received header information of the load balancer match before extracting the IP address.
For example, in the configuration of `CloudFlare` load balancer shown below, we configure it to only accept the header `x-from-cdn` with a value equal to `cf-foo`, and extract the IP address from the `Cf-Connecting-Ip` header. Since users never know about the existence of the `x-from-cdn` header or its required value `cf-foo`, it remains secure π‘οΈ. To increase complexity and avoid being guessed, you can use a random string :)
```
CloudFlare
βββββββββββ
β ββββββββββββββββββββββββββββββββββΊ βββββββββ¬βββββββββ
βββββββββββ x-from-cdn:cf-foo β β β
Cf-Connecting-Ip: realip β β β
CDN2 β β β
βββββββββββ β β paxxs'sβ
β ββββββββββββββββββββββββββββββββββΊ βtraefikβ β x-real-ip:realip
βββββββββββ x-from-cdn:mf-bar β βGet-rea βββββββββββββββΊ
Client-iP: realip β β l-ip β
CDN3 β βPlugin β
βββββββββββ β β β
β βββββββββββββββββββββββββββββββββΊ β β β
βββββββββββ x-from-cdn:mf-fun βββββββββ΄βββββββββ
x-forwarded-for: realip,x.x.x.x
(truthedIP) β² β²
β β
ββββββββββ β β
ββββββββββ βββββββββββββββββββββββββββββββββββββ β
"*" β
ββββββββββ RemoteAddr/etc.. β
ββββββββββ ββββββββββββββββββββββββββββββββββββββββ
```## CDN Configuration
E.g. Cloudflare:
Rules > Transform Rules > HTTP Request Header Modification > Add
- Set static Header: `X-From-Cdn`
- Value: `cf-foo`![image](https://user-images.githubusercontent.com/10364775/164590908-43edab8a-cdc8-4d4c-abd6-542b6c798f3b.png)
![image](https://user-images.githubusercontent.com/10364775/164591134-4dd2fc97-cd0e-4deb-8fe3-bcd4555ebbde.png)
## Traefik Configuration
### StaticPlugin Info:
- moduleName: `github.com/Paxxs/traefik-get-real-ip`
- version: `v1.0.2`Traefik Configuration:
- yml
- toml
- docker-labels```yml
pilot:
token: [REDACTED]experimental:
plugins:
real-ip:
moduleName: github.com/Paxxs/traefik-get-real-ip
version: [Please fill the latest version !]
```### Dynamic
- yml
- toml
- docker labels
- Kubernetes```yml
http:
middlewares:
real-ip-foo:
plugin:
real-ip:
Proxy:
- proxyHeadername: X-From-Cdn
proxyHeadervalue: mf-fun
realIP: X-Forwarded-For
- proxyHeadername: X-From-Cdn
proxyHeadervalue: mf-bar
realIP: Client-Ip
OverwriteXFF: true # default: false, v1.0.2 or above
- proxyHeadername: X-From-Cdn
proxyHeadervalue: cf-foo
realIP: Cf-Connecting-Ip
OverwriteXFF: true # default: false, v1.0.2 or above
- proxyHeadername: "*"
realIP: RemoteAddrrouters:
my-router:
rule: Host(`localhost`)
middlewares:
- real-ip-foo
service: my-serviceservices:
my-service:
loadBalancer:
servers:
- url: 'http://127.0.0.1'
```