From bc0bee5cc151374a000452b922941e045c5d4502 Mon Sep 17 00:00:00 2001 From: cubedro Date: Tue, 12 May 2015 05:19:32 +0300 Subject: [PATCH] added public-ip for eth --- bin/eth.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/bin/eth.sh b/bin/eth.sh index 32e335d..e62c4d9 100755 --- a/bin/eth.sh +++ b/bin/eth.sh @@ -13,12 +13,19 @@ else IP=$(dig +short myip.opendns.com @resolver1.opendns.com) fi +echo "Local IP: $LOCALIP" +echo "Public IP: $IP" + if [[ -f $(which geth 2>/dev/null) ]] then + echo "Starting geth" + echo geth -rpc -maxpeers "50" -verbosity "3" -bootnodes "enode://09fbeec0d047e9a37e63f60f8618aa9df0e49271f3fadb2c070dc09e2099b95827b63a8b837c6fd01d0802d457dd83e3bd48bd3e6509f8209ed90dabbc30e3d3@52.16.188.185:30303" -nat "extip:$IP" geth -rpc -maxpeers "50" -verbosity "3" -bootnodes "enode://09fbeec0d047e9a37e63f60f8618aa9df0e49271f3fadb2c070dc09e2099b95827b63a8b837c6fd01d0802d457dd83e3bd48bd3e6509f8209ed90dabbc30e3d3@52.16.188.185:30303" -nat "extip:$IP" elif [[ -f $(which eth 2>/dev/null) ]] then - eth --bootstrap --peers 50 --remote 52.16.188.185:30303 --mining off --json-rpc --listen-ip $LOCALIP -v 5 + echo "Starting eth" + echo eth --bootstrap --peers 50 --remote 52.16.188.185:30303 --mining off --json-rpc -v 5 --public-ip $IP --listen-ip $LOCALIP + eth --bootstrap --peers 50 --remote 52.16.188.185:30303 --mining off --json-rpc -v 5 --public-ip $IP --listen-ip $LOCALIP else echo "Ethereum was not found!" exit 1;