Go to file
Brett b845e89a3c add GPL copyright notice 2023-10-26 15:41:34 -04:00
GPL_Copyright_notice.txt add GPL copyright notice 2023-10-26 15:41:34 -04:00
LICENSE Initial commit 2023-03-16 13:49:07 -04:00
README.md Update README.md 2023-05-07 15:44:19 -04:00
clion_header_conf.txt add GPL copyright notice 2023-10-26 15:41:34 -04:00
dns_fetch.py Upload files to '' 2023-03-16 13:53:27 -04:00
site_gen.py update site_gen.py 2023-05-07 15:51:51 -04:00

README.md

Scripts

General useful scripts (mostly for Linux)

dns_fetch.py


This lovely python script allows you to fetch ip address form cloudflare dns records. This is useful for remote servers with dynamic ips you wish to keep private. Pretty nifty eh?

Env file


The script searches for a file named dns_resolv_env.json in:

  • your home directory (~/)
  • the config folder (~/.local/share/dns_helper/)
  • the local folder (./)
  • the parent folder (../) The file is a json file with 3 possible attributes
{
        "auth_key": "key here",
        "zone_id": "zone id here",
        "default_name": "website name here"
}

Notes


  • The env file and its arguments are optional.
  • If no auth key is specified, the script will require you to pass your auth key with --auth "key here"
  • Zone id can be provided via the commandline arg --zone or in the env file.
  • If no zone id is provided the script will fetch and print from ALL zones on your cloudflare account.
  • If default_name is not specified by either file or via -n "name", filtering will be ignored.
  • Commandline args are always prefered.

Usage Examples


  • python3 dns_fetch.py -a -n -i
    • Returns only the ip address of the A record corresponding to default_name.
      • This can be used in bash commands: ssh username@$(python3 dns_fetch.py -a -n -i)
  • python3 dns_fetch.py -a
    • Returns all A records
  • python3 dns_fetch.py -c
    • Returns all CNAME records
  • python3 dns_fetch.py
    • Prints the raw json from cloudflare
  • python3 dns_fetch.py -n
    • Prints all records corresponding to default_name

site_gen.py


Allows you to easily generate and install nginx site configs.