From 3fd858367e7413312404c4d43adb9d94bddf3069 Mon Sep 17 00:00:00 2001 From: datafx Date: Sat, 24 Nov 2018 07:38:30 -0500 Subject: [PATCH] Fix indentation for advanced configuration (#7608) * Fix indentation for advanced configuration Corrected indentation per original PR at https://github.com/home-assistant/home-assistant/pull/15143 * Add note about MDNS --- source/_components/cast.markdown | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/source/_components/cast.markdown b/source/_components/cast.markdown index 1bd86aef388..7b67fe98aa8 100644 --- a/source/_components/cast.markdown +++ b/source/_components/cast.markdown @@ -34,9 +34,13 @@ you want to configure the IP address of the Cast device directly: # Example configuration.yaml entry cast: media_player: - - host: 192.168.1.10 + - host: 192.168.1.10 ``` +

+You may need to enable Multicast DNS (MDNS) on your router if you are on a different subnet or VLAN. +

+ {% configuration %} media_player: description: A list that contains all Cast devices. @@ -62,6 +66,6 @@ those as follows: # Example configuration.yaml entry for multiple devices cast: media_player: - - host: IP_ADDRESS_DEVICE_1 - - host: IP_ADDRESS_DEVICE_2 + - host: IP_ADDRESS_DEVICE_1 + - host: IP_ADDRESS_DEVICE_2 ```