mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-20 19:27:16 +00:00

* Create hassio network layer / allow linking * rename docker * fix lint * fix lint p2 * Set network options * First version of network code * Finish network layer * Remove old api_endpoint stuff * Add DNS forwarding * Fix DNS recorder * Fix lint p1 * Fix lint p2 * Fix lint p3 * Fix spell * Fix ipam struct * Fix ip to str * Fix ip to str v2 * Fix spell * Fix hass on host * Fix host attach to network * Cleanup network code * Fix lint & add debug * fix link * Remove log * Fix network * fix reattach of supervisor * set options * Fix containers * Fix remapping & add a test * Fix dict bug * Fix prop * Test with run container * Fix problem
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
"""Setup the internal DNS service for host applications."""
|
|
import asyncio
|
|
import logging
|
|
import shlex
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
COMMAND = "socat UDP-LISTEN:53,fork UDP:127.0.0.11:53"
|
|
|
|
|
|
class DNSForward(object):
|
|
"""Manage DNS forwarding to internal DNS."""
|
|
|
|
def __init__(self):
|
|
"""Initialize DNS forwarding."""
|
|
self.proc = None
|
|
|
|
async def start(self):
|
|
"""Start DNS forwarding."""
|
|
try:
|
|
self.proc = await asyncio.create_subprocess_exec(
|
|
*shlex.split(COMMAND),
|
|
stdin=asyncio.subprocess.DEVNULL,
|
|
stdout=asyncio.subprocess.DEVNULL,
|
|
stderr=asyncio.subprocess.DEVNULL,
|
|
)
|
|
except OSError as err:
|
|
_LOGGER.error("Can't start DNS forwarding -> %s", err)
|
|
else:
|
|
_LOGGER.info("Start DNS port forwarding for host add-ons")
|
|
|
|
async def stop(self):
|
|
"""Stop DNS forwarding."""
|
|
if not self.proc:
|
|
_LOGGER.warning("DNS forwarding is not running!")
|
|
return
|
|
|
|
self.proc.kill()
|
|
await self.proc.wait()
|
|
_LOGGER.info("Stop DNS forwarding")
|