WIFI-1695: Gateway: SSID configuration populate radsecproxy when using APC

This commit is contained in:
Mike Hansen
2021-03-11 16:10:52 -05:00
parent 7928dceefb
commit 1e0fd00d98
2 changed files with 2 additions and 2 deletions

View File

@@ -136,7 +136,7 @@ tip.wlan.manufacturerServiceBaseUrl=https://localhost:9092
tip.wlan.portalUserServiceBaseUrl=https://localhost:9092
tip.wlan.fileStoreDirectory=/tmp/tip-wlan-filestore
tip.wlan.externalFileStoreURL=localhost:9096
tip.wlan.externalFileStoreURL=https://localhost:9092
#server.session-timeout= # session timeout in seconds
#server.tomcat.max-threads = 0 # number of threads in protocol handler

View File

@@ -77,7 +77,7 @@ public class OvsdbRadSecConfig extends OvsdbDaoBase {
updateColumns.put("radius_config_name", new Atom<>(rsc.getName()));
updateColumns.put("client_key", new Atom<>(externalFileStoreURL + rsc.getClientKey().getApExportUrl()));
updateColumns.put("ca_cert", new Atom<>(externalFileStoreURL + rsc.getCaCert().getApExportUrl()));
updateColumns.put("passpharase", new Atom<>(rsc.getPassphrase()));
updateColumns.put("passphrase", new Atom<>(rsc.getPassphrase()));
Row row = new Row(updateColumns);
operations.add(new Insert(radiusConfigDbTable, row));
}