User's Manual
INDUSTRIAL 4G LTE CELLULAR ROUTER - UM V1.1.8
207
Modify FS_HOSTNAME field in genieacs/config/config.json for device retrieve firmware file
Original configuration:
"FS_HOSTNAME" : "acs.example.com"
New configuration example.:
"FS_HOSTNAME" : "192.168.0.199"
Note: It is the place where the device firmware file stored. Generally, it is the IP address on where
your GenieACS server installed.
Modify connect request username/password in genieacs/config/auth.js to stimulate
connection
Original configuration:
function connectionRequest(deviceId, url, username, password, callback) {
return callback(username || deviceId, password || "");
}
New configuration example:
function connectionRequest(deviceId, url, username, password, callback) {
return callback('
tr069','tr069');
}
Note: The hard code username/password MUST same with device's connection request
username/password, otherwise the ACS stimulate connection will fail.
11) Install genieACS-Gui
git clone https://github.com/zaidka/genieacs-gui
cd genieacs-gui
bundle
gem install json
bundle update
rm -f db/*.sqlite3
rake db:create
RAILS_ENV=development rake db:migrate
cd /opt
cd genieacs-gui/config
cp index_parameters-sample.yml index_parameters.yml
cp parameter_renderers-sample.yml parameter_renderers.yml
cp parameters_edit-sample.yml parameters_edit.yml
cp roles-sample.yml roles.yml
cp summary_parameters-sample.yml summary_parameters.yml
cp users-sample.yml users.yml
cp graphs-sample.json.erb graphs.json.erb
GenieACS startup script: