Last active
May 3, 2024 03:58
-
-
Save felipealfonsog/a544ac56fcbc225c906434419f758d76 to your computer and use it in GitHub Desktop.
This Bash script updates a Dynamic DNS hostname using the 'noip-duc' command with preset parameters.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# By Computer Science Engineer: Felipe Alfonso González | |
# Github.com/felipealfonsog | |
# Define command parameters | |
hostname="server.ddns.net" | |
username="......" | |
password="......" | |
# Execute the command | |
noip-duc -g $hostname --username $username --password $password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment