标签: python dns
我希望为localhost配置搜索域,这意味着在查找DNS时会将域名附加到主机名,例如example.com或some.other.example.com。
example.com
some.other.example.com
在Linux中,它们保存在/etc/resolv.conf中,如下所示:
/etc/resolv.conf
search example.com some.other.example.com
This answer有适用于Windows的操作系统特定解决方案。
是否有以平台无关的方式在Python中获取主机的DNS搜索域?