Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

First thing that you need is generate the key used in challenge response authentication as follow:

Code Block
languagebash
titleBash macro
# keytool -genkey -alias AliasChallengeResponse -keystore myKey.jceks -keypass "YourPassWord" -storepass "YourPassWord" -storetype JCEKS

 

Currently the alias option from keytool is hard coded and it is used in CryptoUtil class located at: floodlight/src/main/java/org/sdnplatform/sync/internal/util/CryptoUtil.java

 

public static final String CHALLENGE_RESPONSE_SECRET = "AliasChallengeResponse";

...


The floodlightdefault.properties file shall be defined as follow:

 

 

 

Code Block
languagejava
titleJava Macro
org.sdnplatform.sync.internal.SyncManager.authScheme=CHALLENGE_RESPONSE

...


org.sdnplatform.sync.internal.SyncManager.keyStorePath=/etc/floodlight/myKey.jceks

...


org.sdnplatform.sync.internal.SyncManager.dbPath=/var/lib/floodlight/

...


org.sdnplatform.sync.internal.SyncManager.keyStorePassword=YourPassWord

...


org.sdnplatform.sync.internal.SyncManager.port=6642

...


org.sdnplatform.sync.internal.SyncManager.thisNodeId=1

...


org.sdnplatform.sync.internal.SyncManager.persistenceEnabled=FALSE

...


org.sdnplatform.sync.internal.SyncManager.nodes=[\

...


{"nodeId": 1, "domainId": 1, "hostname": "192.168.1.100", "port": 6642},\

...


{"nodeId": 2, "domainId": 1, "hostname": "192.168.1.100", "port": 6643}\

...


]

 

 

 

 

 

To use the sync service, you need create two vars ISyncService and IStoreClient:
private ISyncService syncService;
private IStoreClient<String, String> storeFT;

...