Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct forwarded_allowed_ips default for IPv6 #988

Merged
merged 1 commit into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/admins/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ Servers
* ``server.http.forwarded_allowed_ips``: a single IP or list of IPs from
which IRRd will trust the ``X-Forwarded-For`` header. This header is used
for IRRd to know the real client address, rather than the address of a
proxy.
|br| **Default**: ``127.0.0.1``.
proxy. Comma-separated.
|br| **Default**: ``127.0.0.1,::ffff:127.0.0.1,::1``.
|br| **Change takes effect**: after full IRRd restart.


Expand Down
2 changes: 1 addition & 1 deletion irrd/conf/default_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ irrd:
interface: 127.0.0.1
port: 8000
workers: 4
forwarded_allowed_ips: 127.0.0.1
forwarded_allowed_ips: 127.0.0.1,::ffff:127.0.0.1,::1
whois:
interface: '::0'
port: 43
Expand Down