Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
a3a92ff1
Commit
a3a92ff1
authored
Aug 31, 2017
by
Manuel Friedli
Browse files
Fix formatting errors.
parent
103fa959
Changes
1
Hide whitespace changes
Inline
Side-by-side
deploy/fritzbox.sh
View file @
a3a92ff1
...
@@ -61,11 +61,11 @@ fritzbox_deploy() {
...
@@ -61,11 +61,11 @@ fritzbox_deploy() {
_saveaccountconf DEPLOY_FRITZBOX_URL
"
${
_fritzbox_url
}
"
_saveaccountconf DEPLOY_FRITZBOX_URL
"
${
_fritzbox_url
}
"
_info
"Log in to the FRITZ!Box"
_info
"Log in to the FRITZ!Box"
_fritzbox_challenge
=
"
$(
wget
--no-check-certificate
-q
-O
-
${
_fritzbox_url
}
/login_sid.lua |
sed
-e
's/^.*<Challenge>//'
-e
's/<\/Challenge>.*$//'
)
"
_fritzbox_challenge
=
"
$(
wget
--no-check-certificate
-q
-O
-
"
${
_fritzbox_url
}
/login_sid.lua
"
|
sed
-e
's/^.*<Challenge>//'
-e
's/<\/Challenge>.*$//'
)
"
_fritzbox_hash
=
"
$(
echo
-n
${
_fritzbox_challenge
}
-
${
_fritzbox_password
}
| iconv
-f
ASCII
-t
UTF16LE |
md5sum
|
awk
'{print $1}'
)
"
_fritzbox_hash
=
"
$(
echo
-n
"
${
_fritzbox_challenge
}
-
${
_fritzbox_password
}
"
| iconv
-f
ASCII
-t
UTF16LE |
md5sum
|
awk
'{print $1}'
)
"
_fritzbox_sid
=
"
$(
wget
--no-check-certificate
-q
-O
-
${
_fritzbox_url
}
/login_sid.lua?sid
=
0000000000000000
\&
username
=
${
_fritzbox_username
}
\&
response
=
${
_fritzbox_challenge
}
-
${
_fritzbox_hash
}
|
sed
-e
's/^.*<SID>//'
-e
's/<\/SID>.*$//'
)
"
_fritzbox_sid
=
"
$(
wget
--no-check-certificate
-q
-O
-
"
${
_fritzbox_url
}
/login_sid.lua?sid=0000000000000000
\&
username=
${
_fritzbox_username
}
\&
response=
${
_fritzbox_challenge
}
-
${
_fritzbox_hash
}
"
|
sed
-e
's/^.*<SID>//'
-e
's/<\/SID>.*$//'
)
"
if
[
-z
"
${
_fritzbox_sid
}
"
-o
"
${
_fritzbox_sid
}
"
=
"0000000000000000"
]
;
then
if
[
-z
"
${
_fritzbox_sid
}
"
]
||
[
"
${
_fritzbox_sid
}
"
=
"0000000000000000"
]
;
then
_err
"Logging in to the FRITZ!Box failed. Please check username, password and URL."
_err
"Logging in to the FRITZ!Box failed. Please check username, password and URL."
return
1
return
1
fi
fi
...
@@ -73,19 +73,24 @@ fritzbox_deploy() {
...
@@ -73,19 +73,24 @@ fritzbox_deploy() {
_info
"Generate form POST request"
_info
"Generate form POST request"
_post_request
=
"
$(
_mktemp
)
"
_post_request
=
"
$(
_mktemp
)
"
_post_boundary
=
"---------------------------
$(
date
+%Y%m%d%H%M%S
)
"
_post_boundary
=
"---------------------------
$(
date
+%Y%m%d%H%M%S
)
"
printf
--
"--
${
_post_boundary
}
\r\n
"
>>
"
${
_post_request
}
"
{
printf
"Content-Disposition: form-data; name=
\"
sid
\"\r\n\r\n
${
_fritzbox_sid
}
\r\n
"
>>
"
${
_post_request
}
"
printf
--
"--%s
\r\n
"
"
${
_post_boundary
}
"
;
printf
--
"--
${
_post_boundary
}
\r\n
"
>>
"
${
_post_request
}
"
printf
"Content-Disposition: form-data; name=
\"
sid
\"\r\n\r\n
%s
\r\n
"
"
${
_fritzbox_sid
}
"
;
printf
--
"--%s
\r\n
""
${
_post_boundary
}
"
;
}
>>
"
${
_post_request
}
"
# _CERTPASSWORD_ is unset because Let's Encrypt certificates don't have a passwort. But if they ever do, here's the place to use it!
# _CERTPASSWORD_ is unset because Let's Encrypt certificates don't have a passwort. But if they ever do, here's the place to use it!
_CERTPASSWORD_
=
_CERTPASSWORD_
=
printf
"Content-Disposition: form-data; name=
\"
BoxCertPassword
\"\r\n\r\n
${
_CERTPASSWORD_
}
\r\n
"
>>
"
${
_post_request
}
"
{
printf
--
"--
${
_post_boundary
}
\r\n
"
>>
"
${
_post_request
}
"
printf
"Content-Disposition: form-data; name=
\"
BoxCertPassword
\"\r\n\r\n
%s
\r\n
"
"
${
_CERTPASSWORD_
}
"
;
printf
"Content-Disposition: form-data; name=
\"
BoxCertImportFile
\"
; filename=
\"
BoxCert.pem
\"\r\n
"
>>
"
${
_post_request
}
"
printf
--
"--%s
\r\n
"
"
${
_post_boundary
}
"
;
printf
"Content-Type: application/octet-stream
\r\n\r\n
"
>>
"
${
_post_request
}
"
printf
"Content-Disposition: form-data; name=
\"
BoxCertImportFile
\"
; filename=
\"
BoxCert.pem
\"\r\n
"
;
cat
"
${
_ckey
}
"
>>
"
${
_post_request
}
"
printf
"Content-Type: application/octet-stream
\r\n\r\n
"
;
cat
"
${
_cfullchain
}
"
>>
"
${
_post_request
}
"
}
>>
"
${
_post_request
}
"
printf
"
\r\n
"
>>
"
${
_post_request
}
"
cat
"
${
_ckey
}${
_cfullchain
}
"
>>
"
${
_post_request
}
"
printf
--
"--
${
_post_boundary
}
--"
>>
"
${
_post_request
}
"
{
printf
"
\r\n
"
;
printf
--
"--%s--"
"
${
_post_boundary
}
"
;
}
>>
"
${
_post_request
}
"
_info
"Upload certificate to the FRITZ!Box"
_info
"Upload certificate to the FRITZ!Box"
wget
--no-check-certificate
-q
-O
-
"
${
_fritzbox_url
}
/cgi-bin/firmwarecfg"
--header
=
"Content-type: multipart/form-data boundary=
${
_post_boundary
}
"
--post-file
"
${
_post_request
}
"
|
grep
SSL
wget
--no-check-certificate
-q
-O
-
"
${
_fritzbox_url
}
/cgi-bin/firmwarecfg"
--header
=
"Content-type: multipart/form-data boundary=
${
_post_boundary
}
"
--post-file
"
${
_post_request
}
"
|
grep
SSL
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment