/etc/network/interfaces에서 멀티캐스트를 설정하는 방법은 무엇입니까?

/etc/network/interfaces에서 멀티캐스트를 설정하는 방법은 무엇입니까?

다음 /etc/network/interfaces파일은 시작 시(또는 명령을 사용하여) dummy0 인터페이스를 자동으로 불러오지만 ifup멀티캐스트를 수행하지 않습니다. 이 파일에서 멀티캐스트를 활성화하는 올바른 방법은 무엇입니까?

# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

auto dummy0
iface dummy0 inet static
   address 10.10.0.1
   netmask 255.255.255.0
   multicast 1

source-directory interfaces.d

답변1

노력하다:

auto dummy0
iface dummy0 inet static
   address 10.10.0.1
   netmask 255.255.255.0
   post-up ifconfig dummy0 multicast

관련 정보