I'm getting this error when trying to connect to a front-end behind a firewall...front-end port is open.
REJECTED: http:xxx.xxx.xxx.xxx (Invalid account or shared secret)
I can't find any mention of what this error really means...assuming my secret key is the same on both the front-end and back-end...what does this mean?
front-end command on host A
python pagekite.py --clean --isfrontend --ports=7332 --protos=http,https --domain=http,https:xxx.xxx.xxx.xxx:SECRET
back-end command on host B python pagekite.py --clean --frontend=xxx.xxx.xxx.xxx:7332 --service_on=http:xxx.xxx.xxx.xxx:localhost:1337:SECRET
Comments
from: somethingsomething:localhost:80:SECRET
to: somethingsomething:localhost:80:@kitesecret
Then it was OK.
Some syntax parsing discrepancies slipped through version updates?
somethingsomething:localhost:80:@kitesecret
raw/22:somethingsomething:localhost:80:SECRET
The SECRET 22 port would work but the @kitesecret would not . When I changed the port 80 to SECRET it worked.
Which is the complete reverse from the above.
Some inconsistencies here.