作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 Ansible 来设置一个新的域 Controller 。我有一个从模板克隆新服务器的脚本,现在如何使用 Ansible 静态设置 Windows Server 的 IP 地址?
最佳答案
花了好几个小时找到同一个问题的答案 :) 希望以下内容对您有所帮助:
- name: Set up static IP address
win_shell: "Get-NetIpAddress -InterfaceAlias 'Ethernet' | New-NetIpAddress -IpAddress 192.168.1.120 -PrefixLength 24 -DefaultGateway 192.168.1.1"
async: 100 # Using "fire-and-forget" asynchronous execution for this task, otherwise it will always fail and timeout
poll: 0
- name: Change ansible's ip address for each host
set_fact:
ansible_host: "192.168.1.120"
- name: Wait for the hosts network interface to come back up
local_action:
module: wait_for
host: "{{ ansible_host }}"
port: 5985
delay: 10
state: started
register: wait_result
- name: Create a test folder to celebrate success
win_file:
path: C:\itworks
state: directory
关于Ansible - 有没有办法使用 Ansible 更改 Windows Server IP 地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60181867/
我是一名优秀的程序员,十分优秀!