feat: define RADIUS database entities and initialize PostgreSQL schema with FreeRADIUS support
Build and Push Docker Image to Gitea Container Registry / build-and-push (push) Successful in 1m11s

This commit is contained in:
Tygozwolle
2026-07-24 16:44:44 +02:00
parent c85b598b82
commit aebf757f26
2 changed files with 28 additions and 7 deletions
+19 -4
View File
@@ -105,11 +105,11 @@ public class RadAcct
[Column("acctauthentic")]
public string? AcctAuthentic { get; set; }
[Column("connectinfo_in")]
public string? ConnectInfoIn { get; set; }
[Column("connectinfo_start")]
public string? ConnectInfoStart { get; set; }
[Column("connectinfo_out")]
public string? ConnectInfoOut { get; set; }
[Column("connectinfo_stop")]
public string? ConnectInfoStop { get; set; }
[Column("acctinputoctets")]
public long? AcctInputOctets { get; set; }
@@ -134,6 +134,21 @@ public class RadAcct
[Column("framedipaddress")]
public string? FramedIpAddress { get; set; }
[Column("framedipv6address")]
public string? FramedIpV6Address { get; set; }
[Column("framedipv6prefix")]
public string? FramedIpV6Prefix { get; set; }
[Column("framedinterfaceid")]
public string? FramedInterfaceId { get; set; }
[Column("delegatedipv6prefix")]
public string? DelegatedIpV6Prefix { get; set; }
[Column("class")]
public string? Class { get; set; }
}
[Table("guest_profiles")]