gpt4 book ai didi

Ansible - 有没有办法使用 Ansible 更改 Windows Server IP 地址?

转载 作者:行者123 更新时间:2023-12-04 16:41:22 25 4
gpt4 key购买 nike

我想使用 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com