Code Monkey home page Code Monkey logo

ansible-dynamic-ntp-dns's Introduction

Dynamic set NTP or DNS based on destination IP

Ansible playbook to dynamic set NTP or DNS based on client/server destination IP.

note: You could of course use group_vars to get the same result.

Role Variables

Edit the /var/main.yml file and change the IPs of your dns or ntp servers. Base on the first 2 octets of the IP the client/server has, it will configure the settings.

in case the 1st 2 octets does not suits your needs, change the template regex.

Variables

Variables for resolv

nameserverXX: 192.168.x.x 
nameserverXY: 192.169.x.x 

Variables for ntp

ntpserver1: ntp1.domain.local
ntpserver2: ntp2.domain.local
ntpserver3: ntp3.domain.local

Example code for ntp j2

{% if "192.168" in ansible_all_ipv4_addresses[0].split(".")[0:2]|join(".")  %}
server {{ ntpserver1 }}  iburst
server {{ ntpserver2 }}  iburst
server {{ ntpserver3 }}  iburst

Supported platforms

RedHat/CentOS 6.x

License

MIT

Author Information

alens

ansible-dynamic-ntp-dns's People

Contributors

alens avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

kushalkumar101

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.