This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Files
  • Records
  • Records
  • Records
  • Records
  • Records
  • Records
  • Records
  • Records
  • Records
  • Recipes
  • Article (Rating System)
  • News
  • News update
  • Videos
  • Images
  • More Options
  1. Forum
  2. News
  3. Hardware
    1. 3D-Accelerator
    2. CPU-Sockets
    3. RAM
    4. HDMI & Display Port
    5. USB
    6. Thunderbolt
    7. Connectors / Ports
  4. Timelines
    1. ICT Timeline
      1. Categories
      2. All Records
      3. ICT Timeline - The Beginnings
      4. ICT Timeline - 60s/70s
      5. ICT Timeline - 80s
      6. ICT Timeline - 90s
      7. ICT Timeline - 00s
      8. ICT Timeline - 10s
    2. OS Timeline
      1. Categories
      2. All Records
      3. DOS
      4. Windows
      5. MacOS
  5. Parcum
    1. Parcum - Map
    2. Parcum - All Entries
    3. Parcum - Countries
    4. Parcum - Categories
  6. Reviews
  7. Rezepte
  8. Other
    1. Downloads
    2. Link-Library
    3. Restaurants, Snacks and more
    4. ISeeT Tools
    5. ISeeT Photos
    6. YouTube Videos
    7. ISeeT TV
    8. ISeeT TV on Tour
  • Login
  • Register
  • Search
  1. ISeeT Forums
  2. ICT (Information & Communication Technology)
  3. OS
  4. Windows
  5. PowerShell

Bind & DDNS & PowerShell

  • ISeeTWizard
  • 26 October 2025 at 12:35
1st Official Post
  • ISeeTWizard
    Administrator
    Points
    4.845
    Posts
    160
    Files
    32
    News
    12
    Videos
    57
    Images
    185
    • 26 October 2025 at 12:35
    • Official Post
    • #1

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Code
    Den Key erstellt Ihr euch über SSH mit folgendem Befehl
    Achtung: Domainname natürlich mit eurem ersetzen!
    
    ddns-confgen -a hmac-sha512 -z Domainname


    Example: Named.conf

    Code
    //
    // named.conf
    //
    // Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
    // server as a caching only nameserver (as a localhost DNS resolver only).
    //
    // See /usr/share/doc/bind*/sample/ for example named configuration files.
    //
    
    options {
        listen-on port 53 {
                any;
            };
        // listen-on-v6 port 53 { ::1; };
        // filter-aaaa-on-v4 yes;
        directory     "/var/named";
        dump-file     "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
        secroots-file    "/var/named/data/named.secroots";
        recursing-file    "/var/named/data/named.recursing";
        allow-query {
            any;
            };
        allow-transfer {
            EDITED;
            };
        notify yes;
        also-notify {
            EDITED;
            };
        /* 
         - If you are building an AUTHORITATIVE DNS server, do NOT enable recursion.
         - If you are building a RECURSIVE (caching) DNS server, you need to enable 
           recursion. 
         - If your recursive DNS server has a public IP address, you MUST enable access 
           control to limit queries to your legitimate users. Failing to do so will
           cause your server to become part of large scale DNS amplification 
           attacks. Implementing BCP38 within your network would greatly
           reduce such attack surface 
        */
        recursion yes;
    
        dnssec-validation auto;
    
        managed-keys-directory "/var/named/dynamic";
        geoip-directory "/usr/share/GeoIP";
    
        pid-file "/run/named/named.pid";
        session-keyfile "/run/named/session.key";
    
        /*  https://fedoraproject.org/wiki/Changes/CryptoPolicy  */
        include "/etc/crypto-policies/back-ends/bind.config";
        forwarders {
            EDITED;
            8.8.8.8;
            8.8.4.4;
            };
        // dnssec-enable yes;
        // dnssec-enable yes;
    };
    
    logging {
        channel default_debug {
            file "/var/log/named.run";
            };
    };
    
    zone "." IN {
        type hint;
        file "named.ca";
    };
    
    include "/etc/named.rfc1912.zones";
    include "/etc/named.root.key";
    
    key rndc-key {
        algorithm hmac-sha256;
        secret "EDITED";
        };
    
    key "ddns-key.dyndns.datateam.center" {
            algorithm hmac-sha512;
            secret "Euer generierter Key";
    };
    
    controls {
        inet 127.0.0.1 port 953 allow { 127.0.0.1; } keys { rndc-key; };
    };
    
    server EDITED {
    };
    
    zone "datateam.center" {
        type master;
        file "/var/named/datateam.center.hosts";
        also-notify {
            EDITED;
            };
        notify yes;
        update-policy {
              grant ddns-key.dyndns.datateam.center zonesub ANY;
        };
        allow-transfer {
            127.0.0.1;
            EDITED;
            };
    };
    Display More

    I edited some things and replaced them with EDITED - so be careful

    What is actually just added is the following:

    Code
    key "ddns-key.dyndns.datateam.center" {
            algorithm hmac-sha512;
            secret "Euer generierter Key";
    };
    
    Unter der Zone kommt folgendes:    
        update-policy {
              grant ddns-key.dyndns.datateam.center zonesub ANY;
        };

    You will receive exactly what is entered when you generate your key.

    Example: Key File

    Code
    key "ddns-key.dyndns.datateam.center" {
            algorithm hmac-sha512;
            secret "Euer generierter Key";
    };

    PowerShell Script

    PowerShell
    <#
    Get full info:
    $providerinfo = Invoke-RestMethod  http://ipinfo.io/json 
    #>
    
    Param (
        [String]$KeyPath = "C:\dyndns\dyndns.datateam.center.key",
        [String]$NSScriptPath = "c:\dyndns\nsupdate.txt",
        [String]$NSUpdatePath = "C:\dyndns"
    )
    
    begin {
        #Gather status of system IP Addresses, DNS Servers, and domains
    $myip = (Invoke-WebRequest -uri "https://api.ipify.org/").Content
    $servername = "ns1.datateam.center"
    $dnszone = "datateam.center"
    $hostname = "holodeck.$dnszone"
    
    }
    
    process {
                        $script = "update delete $hostname
    update add $hostname. 60 A $myip
    
    "
            }
    
    end {
        $script | Out-File -FilePath $NSScriptPath -Encoding "ascii" -Force
        Start-Process -FilePath (Join-Path -Path $NSUpdatePath -ChildPath "nsupdate.exe") -ArgumentList "-d -k `"$KeyPath`" `"$NSScriptPath`"" -Wait -NoNewWindow -RedirectStandardError "c:\dyndns\nsstderr.log" -RedirectStandardOutput "c:\dyndns\nsstdout.log" -WorkingDirectory $NSUpdatePath | Out-Null
        
    }
    Display More

    Here I created the dyndns directory on C: on a Windows computer.

    Below I copied the DLL files and nsupdate.exe from the ZIP file from the Bind DNS server.

    dyndns.datateam.center.key is the file with the generated key. You can name it whatever you want, you just have to adapt the PowerShell file 🙂

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!

Register Yourself Login

Latest Posts

  1. Old News deleted

    ISeeTWizard
    10 July 2026 at 12:51
  2. 📢 Important Update: News & Reviews are Getting a New Home!

    ISeeTWizard
    6 July 2026 at 08:35
  3. Activate Office 2024 GVLK with your KMS Server

    ISeeTWizard
    1 July 2026 at 11:25
  4. Install Office 2024 GVLK

    ISeeTWizard
    1 July 2026 at 11:22
  5. Remove Office 365/2024

    ISeeTWizard
    1 July 2026 at 11:20

Did you know…?

“When I let go of what I am, I become what I might be.”

Lao Tzu

“Get busy living or get busy dying.”

Stephen King

“There are no regrets in life. Just lessons.”

Jennifer Aniston

“I believe that if you’ll just stand up and go, life will open up for you. Something just motivates you to keep moving.”

Tina Turner

“It is better to fail in originality than to succeed in imitation.”

Herman Melville

“You can be everything. You can be the infinite amount of things that people are.”

Kesha

“You only live once, but if you do it right, once is enough.”

Mae West

“In three words I can sum up everything I’ve learned about life: It goes on.”

Robert Frost

“The art of life is to know how to enjoy a little and to endure very much.”

William Hazlitt

“It’s amazing how a little tomorrow can make up for a whole lot of yesterday.”

John Guare

“Always do your best. What you plant now, you will harvest later.”

Og Mandino

“Dream big and dare to fail.”

Norman Vaughan

“All dreams are within reach. All you have to do is keep moving towards them.”

Viola Davis

“Spread love everywhere you go. Let no one ever come without leaving happier.”

Mother Teresa

“If you live long enough, you’ll make mistakes. But if you learn from them, you’ll be a better person.”

Bill Clinton

“Once you face your fear, nothing is ever as hard as you think.”

Olivia Newton-John

“For the great doesn’t happen through impulse alone, and is a succession of little things that are brought together.”

Vincent Van Gogh

“Let us make our future now, and let us make our dreams tomorrow’s reality.”

Malala Yousafzai

“The future is not something we enter. The future is something we create.”

Leonard I. Sweet

“The biggest adventure you can take is to live the life of your dreams.”

Oprah Winfrey

“Be where you are; otherwise you will miss your life.”

Buddha

“To succeed in life, you need three things: a wishbone, a backbone, and a funnybone.”

Reba McEntire

“When you have a dream, you’ve got to grab it and never let go.”

Carol Burnett

“It is during our darkest moments that we must focus to see the light.”

Aristotle

“It does not matter how slowly you go, as long as you do not stop.”

Confucius

“Tomorrow is a new day. You shall begin it serenely and with too high a spirit to be encumbered with your old nonsense.”

Ralph Waldo Emerson

“The only thing we have to fear is fear itself.”

Franklin D. Roosevelt

“It is better to be hated for what you are than to be loved for what you are not.”

Andre Gide

“Good friends, good books, and a sleepy conscience: This is the ideal life.”

Mark Twain

“Life is what happens to you when you are busy making other plans.”

John Lennon

“I’m not going to continue knocking on that old door that doesn’t open for me. I’m going to create my own door and walk through that.”

W.P. Kinsella

“The purpose of life is to live it, to taste experience to the utmost, to reach out eagerly and without fear for newer and richer experience.”

Eleanor Roosevelt

“Find out who you are and do it on purpose.”

Dolly Parton

“Do one thing every day that scares you.”

Eleanor Roosevelt

“Dreaming, after all, is a form of planning.”

Gloria Steinem

“Failure is a great teacher and, if you are open to it, every mistake has a lesson to offer.”

Oprah Winfrey

“You may not control all the events that happen to you, but you can decide not to be reduced by them.”

Maya Angelou

“There are so many great things in life; why dwell on negativity?”

Zendaya

“Always remember that you are absolutely unique. Just like everyone else.”

Margaret Mead

“We have to dare to be ourselves, however frightening or strange that self may prove to be.”

May Sarton

“Life does not have to be perfect to be wonderful.”

Annette Funicello

You cannot change what you refuse to confront.

“Life is like riding a bicycle. To keep your balance, you must keep moving.”

Albert Einstein

“We are here to add what we can to life, not to get what we can from life.”

William Osler

“Keep your face towards the sunshine and shadows will fall behind you.”

Walt Whitman

“We must let go of the life we have planned, so as to accept the one that is waiting for us.”

Joseph Campbell

“The future belongs to those who believe in the beauty of their dreams.”

Eleanor Roosevelt

“Live in the sunshine, swim the sea, drink the wild air.”

Ralph Waldo Emerson

“The simple things are also the most extraordinary things, and only the wise can see them.”

Paulo Coelho

“Never let the fear of striking out keep you from playing the game.”

Babe Ruth

“We make a living by what we get, but we make a life by what we give.”

Winston Churchill

“Be persistent and never give up hope.”

George Lucas

“Life is very interesting…in the end, some of your greatest pains become your greatest strengths.”

Drew Barrymore

“There is no passion to be found playing small—in settling for a life that is less than the one you are capable of living.”

Nelson Mandela

“Ambition is the path to success. Persistence is the vehicle you arrive in.”

Bill Bradley

“If you don’t have any shadows, you’re not in the light.”

Lady Gaga

“Be sure you put your feet in the right place, then stand firm.”

Abraham Lincoln

“Life is a daring adventure or it is nothing at all.”

Helen Keller

“The future belongs to those who prepare for it today.”

Malcolm X

“Yesterday is but today’s memory and tomorrow is today’s dream.”

Khalil Gibran

“Some people want it to happen, some wish it would happen, others make it happen.”

Michael Jordan

“Dreams do not come true just because you dream them. It’s hard work that makes things happen. It’s hard work that creates change.”

Shonda Rhimes

“Coming together is a beginning; keeping together is progress; working together is success.”

Henry Ford

“Next time, ask ‘What’s the worst that will happen?’ Then push yourself a little further than you dare.”

Audre Lorde

“Living might mean taking chances, but they’re worth taking.”

Lee Ann Womack

“Life isn’t about finding yourself. Life is about creating yourself.”

George Bernard Shaw

“You have to believe in yourself when no one else does.”

Serena Williams

“Don’t worry about failure, you only have to be right once.”

Drew Houston

“Just when you think it can’t get any worse, it can. And just when you think it can’t get any better, it can.”

Nicholas Sparks

“Before anything else, preparation is the key to success.”

Alexander Graham Bell

“Keep smiling, because life is a beautiful thing and there’s so much to smile about.”

Marilyn Monroe

“I’m not going to continue knocking that old door that doesn’t open for me. I’m going to create my own door and walk through that.”

Ava DuVernay

“Everything you can imagine is real.”

Pablo Picasso

“Life has no limitations, except the ones you make.”

Les Brown

“You don’t always need a plan. Sometimes you just need to breathe, trust, let go and see what happens.”

Mandy Hale

“My wish for you is that you continue. Continue to be who you are, to astonish a mean world with your acts of kindness.”

Maya Angelou

“And when you want something, all the universe conspires in helping you achieve it.”

Paulo Coelho

“We pass through this world but once.”

Stephen Jay Gould

“There’s love enough in this world for everybody, if people will just look.”

Kurt Vonnegut

“For me, becoming isn’t about arriving somewhere or achieving a certain aim. I see it instead as forward motion, a means of evolving, a way to reach continuously toward a better self. The journey doesn’t end.”

Michelle Obama

“I may not have gone where I intended to go, but I think I have ended up where I needed to be.”

Douglas Adams

“It is never too late to be what you might have been.”

George Elliot

“There is no perfection, only life.”

Milan Kundera

“Don’t take yourself too seriously. Know when to laugh at yourself, and find a way to laugh at obstacles that inevitably present themselves.”

Halle Bailey

“The fear of death follows from the fear of life. A man who lives fully is prepared to die at any time.”

Mark Twain

“You can’t help what you feel, but you can help how you behave.”

Margaret Atwood

“Don’t judge each day by the harvest you reap but by the seeds that you plant.”

Robert Louis Stevenson

“Whatever we are, whatever we make of ourselves, is all we will ever have—and that, in its profound simplicity, is the meaning of life.”

Philip Appleman

“The great courageous act that we must all do is to have the courage to step out of our history and past so that we can live our dreams.”

Oprah Winfrey

“Always go with your passions. Never ask yourself if it’s realistic or not.”

Deepak Chopra

“If you have knowledge, let others light their candles in it.”

Margaret Fuller

“Be yourself; everyone else is already taken.”

Oscar Wilde

“Life is made of ever so many partings welded together.”

Charles Dickens

“Success is stumbling from failure to failure with no loss of enthusiasm.”

Winston Churchill

“Nothing is impossible. The word itself says ‘I’m possible!’”

Audrey Hepburn

“If you don’t like the road you’re walking, start paving another one.”

Dolly Parton

“No need to hurry. No need to sparkle. No need to be anybody but oneself.”

Virginia Woolf

“The world you desire can be won. It exists... it is real... it is possible... it’s yours.”

Ayn Rand

“You will face many defeats in life, but never let yourself be defeated.”

Maya Angelou

“One of the deep secrets of life is that all that is really worth doing is what we do for others.”

Lewis Carroll

“The new dawn blooms as we free it. For there is always light if only we’re brave enough to see it, if only we’re brave enough to be it.”

Amanda Gorman

Visits

  • 6 Today
  • 262 Yesterday
  • 914 This Week
  • 1.813 Last Week
  • 5.708 This Month
  • 3.139 Last Month
  • 13.331 This Year
  • 0 Last Year
  • Ø 113,94 per day
  • 13.331 Total

Last updated: 24 July 2026 at 01:32

  1. Cookie Policy
  2. Privacy Policy
  3. Contact
  4. Legal Notice
  1. IT-Tools
  2. Link-Library
  3. Downloads
  4. Restaurants, Snacks and more
Powered by WoltLab Suite™
Style: Ambience by cls-design
Stylename
Ambience
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design