Skip to content

Commit

Permalink
server should be ready on IPv6 by default
Browse files Browse the repository at this point in the history
FR should be ready for IPv6 out of the box. auth/acct done.
  • Loading branch information
alanbuxey authored and arr2036 committed Jun 25, 2014
1 parent c5de11a commit 2efeaaa
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions raddb/sites-available/default
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,35 @@ listen {
}
}

# IPv6 versions of the above - read their full config to understand options
listen {
type = auth
ipv6addr = :: # any. ::1 == localhost
port = 0
# interface = eth0
# clients = per_socket_clients
limit {
max_connections = 16
lifetime = 0
idle_timeout = 30
}
}

listen {
ipv6addr = ::
port = 0
type = acct
# interface = eth0
# clients = per_socket_clients

limit {
# max_pps = 0
# idle_timeout = 0
# lifetime = 0
# max_connections = 0
}
}

# Authorization. First preprocess (hints and huntgroups files),
# then realms, and finally look in the "users" file.
#
Expand Down

0 comments on commit 2efeaaa

Please sign in to comment.