-
Notifications
You must be signed in to change notification settings - Fork 36
TASK-6411 IPv6 improvements, draft 5.1 changelog #794
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,15 +16,15 @@ The following example demonstrates how to configure Momentum to pass LOGIN crede | |
``` | ||
# Configure the RADIUS client | ||
auth_radius { | ||
NAS-IP-Address = 10.0.0.1 # the IP address of this SMTP server | ||
NAS-IP-Address = fd01:345::1 # the IP address of this SMTP server | ||
server "one" { | ||
host = "radius-1.example.com" | ||
secret = "secret1" | ||
max_tries = "1" | ||
timeout = "30" | ||
} | ||
server "two" { | ||
host = "radius-2.example.com" | ||
server "ipv6wport" { | ||
host = "[2001:fd3::1]:2812" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can keep the example in IPv4. |
||
secret = "secret2" | ||
max_tries = "2" | ||
timeout = "30" | ||
|
@@ -85,7 +85,7 @@ RADIUS servers can be defined using the dictionary syntax shown above; the dicti | |
|
||
<dd> | ||
|
||
The hostname or IP address of the RADIUS server. If a colon is present in the string then the left side of the string will be used as the hostname/IP address and the right hand side will be used as the port number on the server. If left unspecified, the RADIUS standard port number of 1812 will be used. | ||
The hostname or IP address of the RADIUS server. The hostname/IP address can be followed by a colon and the port number on the server. If left unspecified, the RADIUS standard port number of 1812 will be used. An IPv6 address must be enclosed in brackets if a port was added. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can mention that since 5.1, IPv6 address can be used but must be enclosed in bracket if a port is specified. |
||
|
||
</dd> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
lastUpdated: "06/11/2025" | ||
title: "Momentum 5.1 Changelog" | ||
description: "Momentum 5.1 was released on 2025-07-01. This section will list all of the major changes that happened with the release of Momentum 5.1. Depending on installation type, all changes may not be applicable" | ||
--- | ||
|
||
This section will list all of the major changes that happened with the release of **Momentum 5.1**. Depending on installation type, all changes may not be applicable | ||
|
||
<a name="changelog.5.1.table"></a> | ||
|
||
| Type | Ticket | Description | | ||
| --- | --- | --- | | ||
| Fix | | | | ||
| Feature | TASK-6489 | Add IPv6 support to rbldnsd RBL lookups performed with the msys.pbp module | | ||
| Feature | TASK-2248 | Add IPv6 support to mail_loop module | | ||
| Feature | TASK-6411 | Add IPv6 support to url_ripper module | | ||
| Feature | TASK-6411 | Add IPv6 support to auth_radius module | |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
--- | ||
lastUpdated: "03/01/2025" | ||
lastUpdated: "06/11/2025" | ||
title: "Category File" | ||
type: "custom" | ||
name: "Momentum 5.x Changelogs" | ||
description: "Momentum 5.x Changelogs" | ||
--- | ||
|
||
* [Momentum 5.0 Changelogs](/momentum/changelog/5/5-0) | ||
* [Momentum 5.1 Changelogs](/momentum/changelog/5/5-1) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could you please point me to where 5-1 changelog is? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just added it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did we test with IPv6 address? If not, we shall keep the example in IPv4.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was asked to add IPv6 examples.