如何从 Mac 上的每个 DHCP 租约生成 resolv.conf?
我只想使用 DHCP 租约生成的 resolv.conf 文件,而不是系统的 /etc/resolv.conf,如何制作一个脚本,每次 DHCP 租约时都会生成 resolv.conf?
I just want to use a generated resolv.conf file from DHCP lease other than system's /etc/resolv.conf, how can I make a script that every time when DHCP lease then generate a resolv.conf?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题很难理解,但我会尝试一下...
/etc/resolv.conf
在 OS X 上不是规范的。如果你想更改系统 DNS 设置,那么你需要使用系统配置框架(从代码),或networksetup
或scutil
(从命令行)。 此处有一篇关于使用scutil
的文章。Your question is very hard to understand, but I'll give it a shot...
/etc/resolv.conf
is not canonical on OS X. If you want to change the system DNS settings then you need to use the System Configuration framework (from code), ornetworksetup
orscutil
(from the command line). There's an article about usingscutil
here.