Remmina: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
remmina --encrypt-password | remmina --encrypt-password | ||
echo | echo 'sadaqah!' | remmina --encrypt-password | ||
echo 'sadaqah!' | remmina --encrypt-password &>/dev/null | |||
</syntaxhighlight> | </syntaxhighlight> | ||
| valign="top" | | | valign="top" colspan="2"| | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
remmina -c rdp://admin:@10.19.83.110 | remmina -c rdp://admin:@10.19.83.110 | ||
remmina -c rdp://admin:[email protected] | remmina -c rdp://admin:[email protected] | ||
remmina -c vnc://admin:[email protected] | |||
</syntaxhighlight> | </syntaxhighlight> | ||
| valign="top" | | |- | ||
| colspan="3" | | |||
---- | |||
|- | |||
| valign="top" colspan="3"| | |||
<syntaxhighlight lang="bash"> | |||
REMMINA_RDP_USER='admin' | |||
REMMINA_RDP_PASS='sadaqah!' | |||
REMMINA_RDP_HOST=10.19.83.110 | |||
echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password &>/dev/null | |||
REMMINA_RDP_ENCR="$(echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password | grep 'Encrypted password: ' | cut -d':' -f2- | tr -d ' ')" | |||
remmina -c "rdp://${REMMINA_RDP_USER}:${REMMINA_RDP_ENCR}@${REMMINA_RDP_HOST}" | |||
</syntaxhighlight> | |||
|- | |- |
Revision as of 20:58, 8 May 2024
remmina -?
Playground
remmina --encrypt-password
echo 'sadaqah!' | remmina --encrypt-password
echo 'sadaqah!' | remmina --encrypt-password &>/dev/null
|
remmina -c rdp://admin:@10.19.83.110
remmina -c rdp://admin:C4z3tyEVgqKUAbLjLP1zKg==@10.19.83.110
remmina -c vnc://admin:C4z3tyEVgqKUAbLjLP1zKg==@10.19.83.110
| |
| ||
REMMINA_RDP_USER='admin'
REMMINA_RDP_PASS='sadaqah!'
REMMINA_RDP_HOST=10.19.83.110
echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password &>/dev/null
REMMINA_RDP_ENCR="$(echo "${REMMINA_RDP_PASS}" | remmina --encrypt-password | grep 'Encrypted password: ' | cut -d':' -f2- | tr -d ' ')"
remmina -c "rdp://${REMMINA_RDP_USER}:${REMMINA_RDP_ENCR}@${REMMINA_RDP_HOST}"
| ||
| ||
References
| ||