Puppet-从 netplan yaml 配置中获取接口名称

Puppet-从 netplan yaml 配置中获取接口名称

如何获取已经nameservers定义的接口名称?

我想获取接口名称,以便将其传递给另一个netplanpuppet 模块,从而替换名称服务器。但我只想获取已nameservers配置的接口名称 (ens160)。

    ethernets:
            ens160:
                dhcp4: no
                addresses: [10.10.10.10/24]
                gateway4: 10.10.10.1
                nameservers:
                    addresses: [20.20.20.20, 30.30.30.30]
                    search: [mydomain.local]
            ens192:
                dhcp4: no
                addresses: [10.10.10.20/24]

相关内容