No devices show up

Chottomattekudasai! gn0000raisersystem at gmail.com
Fri Nov 16 19:58:21 EST 2018


Good night people (or morning/afternoon depending of where you are) I found
this program by pure luck, while trying to find something to remotely
manage devices. I am not much of a tech navy in this kind of things, so I
am kinda ashamed to ask about it in a community who knows probably far more
then I do about it. I order to not seem so dumb I started taking classes of
programming and database management. But leaving all that aside, the main
issue is here.

I have modified my json file, added a host in my host file (as I have a
public static IP), modified my nginx following examples on the forum. Yet I
kind of am lost to when it comes to how to generate or know what should I
introduce on the device's tr069 link. I know I should put in my server's
address with the port, but I am not quite sure if I am doing something
wrong as I haven't actually got any device to show up yet. On a second
note, I haven't really found much about the config auth.js so that may also
be a issue.  For security reasons, I have changed the IP to a random one in
the examples. I have attached it on a txt file to avoid making a mail
longer then this already is.

Any help would be appreciated. I am sorry if my question is too much of a
burden. If it is, let me know, I will understand if my question is to broad
by itself.

Thanks in advance and sorry if my English is a bit messed up.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.genieacs.com/pipermail/users/attachments/20181116/a52b262a/attachment.html>
-------------- next part --------------
{
  "MONGODB_CONNECTION_URL" : "mongodb://127.0.0.1/genieacs",
  
   "REDIS_PORT" : "6379",
  
   "REDIS_HOST" : "127.0.0.1",
  
   "CWMP_INTERFACE" : "0.0.0.0",
  
   "CWMP_PORT" : 7547,
  
   "CWMP_SSL" : false,
  
   "NBI_INTERFACE" : "0.0.0.0",
  
   "NBI_PORT" : 7557,
  
   "FS_INTERFACE" : "0.0.0.0",
  
   "FS_PORT" : 7567,
  
   "FS_IP" : "tr069.tdt.de",
  
   "LOG_INFORMS" : true,
  
   "DEBUG" : false

}


-----------------------------------------------------------------------------------------------------




server {
        
	listen         80;

        server_name    test.com.py;

        return         301 https://$server_name$request_uri;

}




server {
        listen 192.168.5.205;

        server_name test.com.py;

        ssl on;
        
	ssl_certificate_key /home/tr069/genieacs/genieacs-trunk/config/acs_key.$

        ssl_certificate /home/tr069/genieacs/genieacs-trunk/config/acs_cert.pem;


        access_log /var/log/nginx/example.de.cwmp.gui.log combined;

        error_log /var/log/nginx/example.cwmp.gui.log;

        client_max_body_size 50M;

        
	location / {
                proxy_pass http://192.168.5.205:8080;

                #proxy_http_version 1.1;

                #proxy_set_header Upgrade $http_upgrade;

                #proxy_set_header Connection 'upgrade';

                #proxy_set_header Host $host;

                #proxy_cache_bypass $http_upgrade;

       }

}




server {
        listen 192.168.5.205:7557;

        	server_name test.com.py;

        	ssl on;

	        ssl_certificate_key /home/tr069/genieacs/genieacs-trunk/config/acs_key.pem;

	        ssl_certificate /home/tr069/genieacs/genieacs-trunk/config/acs_cert.pem;


	        access_log /var/log/nginx/example.de.nbi.log combined;

	        error_log /var/log/nginx/example.de.nbi.log;


	        location / {

                proxy_pass http://0.0.0.0:7557;

                #proxy_http_version 1.1;

                #proxy_set_header Upgrade $http_upgrade;

                #proxy_set_header Connection 'upgrade';

                #proxy_set_header Host $host;

                #proxy_cache_bypass $http_upgrade;

                proxy_set_header Authorization "";

                auth_basic "Restricted";

                auth_basic_user_file /etc/nginx/ms-htpasswd;

        }

}



server {
        listen 192.168.5.205:7547;

	        server_name test.com.py;
        
		ssl on;

        	ssl_certificate_key /home/tr069/genieacs/genieacs-trunk/config/acs_key.pem;

	        ssl_certificate /home/tr069/genieacs/genieacs-trunk/config/acs_cert.pem;


		access_log /var/log/nginx/example.de.cwmp.log combined;

		error_log /var/log/nginx/example.de.cwmp.log;


	location / {

    	proxy_pass http://0.0.0.0:7547;

        #proxy_http_version 1.1;

        #proxy_set_header Upgrade $http_upgrade;

        #proxy_set_header Connection 'upgrade';
        
	#proxy_set_header Host $host;

        #proxy_cache_bypass $http_upgrade;

        proxy_set_header Authorization "";

        auth_basic "Restricted";

        auth_basic_user_file /etc/nginx/ms-htpasswd;

	}



}



server {
        listen 192.168.5.205:7567;

        	server_name test.com.py;

        	ssl on;

	        ssl_certificate_key /home/tr069/genieacs/genieacs-trunk/config/acs_key.pem;

	        ssl_certificate /home/tr069/genieacs/genieacs-trunk/config/acs_cert.pem;
	

        access_log /var/log/nginx/example.de.fs.log combined;
	        error_log /var/log/nginx/example.de.fs.log;
	

        location / {

                proxy_pass https://192.168.5.205:7567;

                #proxy_http_version 1.1;

                #proxy_set_header Upgrade $http_upgrade;

                #proxy_set_header Connection 'upgrade';

                #proxy_set_header Host $host;

                #proxy_cache_bypass $http_upgrade;

                proxy_set_header Authorization "";

                auth_basic "Restricted";

                auth_basic_user_file /etc/nginx/ms-htpasswd;

        }

}


More information about the Users mailing list