added back listen-ip

This commit is contained in:
cubedro 2015-05-12 06:57:04 +03:00
parent f186b776b8
commit 99395e0e94
1 changed files with 5 additions and 4 deletions

View File

@ -5,14 +5,15 @@ trap "exit" INT
if [[ -f $(which ec2metadata 2>/dev/null) ]]
then
# If ec2 instance then get ips from ec2metadata
# LOCALIP=$(ec2metadata --local-ipv4)
LOCALIP=$(ec2metadata --local-ipv4)
IP=$(ec2metadata --public-ipv4)
else
# Else get IPs from ifconfig and dig
# LOCALIP=$(ifconfig | grep 'inet ' | grep -v '127.0.0.1' | head -n1 | awk '{print $2}' | cut -d':' -f2)
LOCALIP=$(ifconfig | grep 'inet ' | grep -v '127.0.0.1' | head -n1 | awk '{print $2}' | cut -d':' -f2)
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) ]]
@ -23,8 +24,8 @@ then
elif [[ -f $(which eth 2>/dev/null) ]]
then
echo "Starting eth"
echo eth --bootstrap --peers 50 --remote 52.16.188.185:30303 --mining off --json-rpc -v 5 --public-ip $IP
eth --bootstrap --peers 50 --remote 52.16.188.185:30303 --mining off --json-rpc -v 5 --public-ip $IP
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;