Not able to create network in ODA machine

Network screen is not allowing to create new network.

Screen was greyed out. Administrators were not able to do any n/w activity on ODA console.

Reason

In the file “app.js”, there is a typo, hardwareversion is mispelled.

It’s spelled as “haredwareversion” form “X9_2”

if (data.haredwareVersion === “X9_2” ||<<<<<<<<<<<<<<<<<< Mispelled
data.hardwareVersion === “X8_2” ||
data.hardwareVersion === “X6_2” ||
data.hardwareVersion === “X5_2”) {
self.createNetworkTemplate(‘createFlexNetworkTemplate’);

Action Plan

1- Take backup of the file  app.js file under  /opt/oracle/dcs/dcs-ui/public_html/js/modules/

/opt/oracle/dcs/dcs-ui/public_html/js/modules/app.js

2- Edit the app.js file and correct the spelling to “hardwareVersion” instead of “haredwareVersion

“data.haredwareVersion === “X9_2″ ||”

should be:

data.hardwareVersion === “X9_2” ||

Now network screen can be verified in ODA console, login to console and verify.

See also