demo
Well-known member
As many of you know, an android cell phone or tablet is a linux machine.
So this pre-proposal is about to build a masternode in an android.
The main problem of mobile machines is that they have dynamic IPs, but I plan to solve this by using this script.
So what do you think? Would you like a masternode in your android cell phone or tablet?
Then main advantage of having masternodes in mobile machines having dynamic IPs is Anonymity, especially if your android is not connected to a cell-phone company and you are using public wi-fi.
This proposal is tagged as [android, masternodes, development,anonymity,dynamic IP]. In case it gets a lot of yes and I manage to get the 5 dash proposal fee, I will add it to the governance system.
So this pre-proposal is about to build a masternode in an android.
The main problem of mobile machines is that they have dynamic IPs, but I plan to solve this by using this script.
For the members of the community who have dynamic IPs, I wrote a script that changes all the IP related configuration files of the dashcore before starting the program. Here you are:
Code:#!/bin/bash myoldip=`cat ~/.dashcore/dash.conf|grep externalip|cut -f2 -d"="|cut -f1 -d":"` myip=`curl -s http://icanhazip.com` echo "my old ip=" $myoldip echo "my curr ip=" $myip mv ~/.dashcore/dash.conf ~/.dashcore/dash.confold cat ~/.dashcore/dash.confold|sed -e s/$myoldip/$myip/g > ~/.dashcore/dash.conf mv ~/.dashcore/masternode.conf ~/.dashcore/masternode.confold cat ~/.dashcore/masternode.confold|sed -e s/$myoldip/$myip/g > ~/.dashcore/masternode.conf mv ~/.dashcore/testnet3/masternode.conf ~/.dashcore/testnet3/masternode.confold cat ~/.dashcore/testnet3/masternode.confold|sed -e s/$myoldip/$myip/g > ~/.dashcore/testnet3/masternode.conf sleep 2 ./dash-qt
When your gui starts, you will initially see the old IP in the masternodes Tab.
Press the "Start alias" button to fix the problem.
So what do you think? Would you like a masternode in your android cell phone or tablet?
Then main advantage of having masternodes in mobile machines having dynamic IPs is Anonymity, especially if your android is not connected to a cell-phone company and you are using public wi-fi.
This proposal is tagged as [android, masternodes, development,anonymity,dynamic IP]. In case it gets a lot of yes and I manage to get the 5 dash proposal fee, I will add it to the governance system.
Last edited: