Compare commits
3 Commits
a41da749d7
...
a7abc0a338
Author | SHA1 | Date |
---|---|---|
Ze'ev Schurmann | a7abc0a338 | |
Ze'ev Schurmann | 2cd4cfc966 | |
Ze'ev Schurmann | 1c6413cf11 |
|
@ -0,0 +1,47 @@
|
||||||
|
# Own Your Cloud Key Gen2 / Gen2+
|
||||||
|
|
||||||
|
## DISCLAIMER
|
||||||
|
|
||||||
|
Running this script on your Cloud Key will VOID your warranty. I have tested several times and I have no failures, but there is a first time for everything. Do not run this script unless you are willing to brick your device.
|
||||||
|
|
||||||
|
## STEPS
|
||||||
|
|
||||||
|
### Step 1
|
||||||
|
|
||||||
|
Factory Reset the Cloud Key
|
||||||
|
|
||||||
|
### Step 2
|
||||||
|
|
||||||
|
Log on to the Cloud Key web interface
|
||||||
|
|
||||||
|
### Step 3
|
||||||
|
|
||||||
|
Disable and Uninstall any UniFi Apps on the Cloud Key
|
||||||
|
|
||||||
|
### Step 4
|
||||||
|
|
||||||
|
Configure your network for static IP (You CANNOT change this later).
|
||||||
|
|
||||||
|
Alternatively, do what I do, and use your router to assign the IP dynamically using MAC reservation.
|
||||||
|
|
||||||
|
### Step 5
|
||||||
|
|
||||||
|
Enable SSH Access
|
||||||
|
|
||||||
|
### Step 6
|
||||||
|
|
||||||
|
Reboot the cloudkey
|
||||||
|
|
||||||
|
### Step 7
|
||||||
|
|
||||||
|
Connect to the cloudkey via SSH (root@ipaddress) and use the password you chose in step 5.
|
||||||
|
|
||||||
|
### Step 8
|
||||||
|
|
||||||
|
```
|
||||||
|
wget https://git.zaks.web.za/thisiszeev/linux-server-tools/raw/branch/main/own-your-cloudkey/own.sh && bash own.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## COMING SOON
|
||||||
|
|
||||||
|
I have a lot more to still document and add so check back soon or what the Ubiquity Subreddit for when I post updates.
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
### This script will allow you to own your Cloudkey Gen2 and Gen2+.
|
### This script will allow you to own your Cloudkey Gen2 and Gen2+.
|
||||||
|
|
||||||
### This is an early version 0.1... more features to come.
|
### This is an early version 0.2... more features to come.
|
||||||
|
|
||||||
### If you use this it is at your own risk.
|
### If you use this it is at your own risk.
|
||||||
|
|
||||||
|
@ -14,9 +14,9 @@ echo "About to remove all the UniFi software. You act at your own choice."
|
||||||
echo "I am not responsible if anything goes wrong."
|
echo "I am not responsible if anything goes wrong."
|
||||||
echo
|
echo
|
||||||
echo "Type: \"I understand.\""
|
echo "Type: \"I understand.\""
|
||||||
read val
|
read check
|
||||||
|
|
||||||
if [[ $val == "I understand." ]]; then
|
if [[ $check == "I understand." ]]; then
|
||||||
echo "Here goes... hold thumbs..."
|
echo "Here goes... hold thumbs..."
|
||||||
else
|
else
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -58,6 +58,6 @@ cp sshd_config.backup /etc/ssh/sshd_config
|
||||||
|
|
||||||
echo "Press ENTER to reboot..."
|
echo "Press ENTER to reboot..."
|
||||||
|
|
||||||
read val
|
read check
|
||||||
|
|
||||||
reboot now
|
reboot now
|
||||||
|
|
Loading…
Reference in New Issue