You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current supported login_hint formats include ipport, which consists of a mandatory ip address and an optional port. For example, ipport:80.90.34.2:16790, ipport:80.90.34.2, ipport:[2001:db8::1]:8080 or ipport:[2001:db8::1].
The CAMARA Device object defines an ipv4Address object that contains 2 IP address (publicAddress and privateAddress). For example:
Does the current ipport format support ipv4Address containing publicAddress and privateAddress? My interpretation is that it's not currently supported.
Should the format be updated to support ipv4Address containing publicAddress and privateAddress?
Expected action
Guidance on whether ipport can support ipv4Address containing publicAddress and privateAddress.
If not supported, an update to login_hint format to support this if it's deemed required.
The text was updated successfully, but these errors were encountered:
In this case, CAMARA ICM only defines the format of the login_hint:
ipport
For IPv4 and IPv6 addresses, that can optionally include a port. For example, ipport:80.90.34.2:16790, ipport:80.90.34.2, ipport:[2001:db8::1]:8080 or ipport:[2001:db8::1].
The device should be identified by either the public (observed) IP address and port as seen by the application server, or the private (local) and any public (observed) IP addresses in use by the device (this information can be obtained by various means, for example from some DNS servers).
If the allocated and observed IP addresses are the same (i.e. NAT is not in use) then the same address should be specified for both publicAddress and privateAddress.
If NAT64 is in use, the device should be identified by its publicAddress and publicPort, or separately by its allocated IPv6 address (field ipv6Address of the Device object)
In all cases, publicAddress must be specified, along with at least one of either privateAddress or publicPort, dependent upon which is known. In general, mobile devices cannot be identified by their public IPv4 address alone.
With existing CAMARA definitions, I think that under the scenarios above where both privateAddress and publicAddress are required, the current login_hint does not support this.
API consumer may need to use MSISDN as login_hint instead (or operator token) or use auth code flow with network based auth if applicable.
Problem description
The current supported login_hint formats include
ipport
, which consists of a mandatory ip address and an optional port. For example,ipport:80.90.34.2:16790
,ipport:80.90.34.2
,ipport:[2001:db8::1]:8080
oripport:[2001:db8::1]
.The CAMARA Device object defines an ipv4Address object that contains 2 IP address (publicAddress and privateAddress). For example:
Does the current
ipport
format support ipv4Address containing publicAddress and privateAddress? My interpretation is that it's not currently supported.Should the format be updated to support ipv4Address containing publicAddress and privateAddress?
Expected action
ipport
can support ipv4Address containing publicAddress and privateAddress.The text was updated successfully, but these errors were encountered: